public
Description: An OS X application to build a standalone web site as an export from my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photosync/
Clone URL: git://github.com/dustin/photosync.git
dustin (author)
Sat Apr 05 13:41:45 -0700 2008
commit  9f8e5028800371f034fa82b2feffe677e95a86ce
tree    554ee7c313efd6d9d03ac539d2a23292a62fd6fa
parent  2dceca4018192b712c3dcbd872354326347bca00
photosync / LocEditController.h
100644 23 lines (17 sloc) 0.403 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* LocEditController */
 
#import <AppKit/AppKit.h>
#import "Location.h"
 
@interface LocEditController : NSWindowController
{
    IBOutlet id destination;
    IBOutlet id password;
    IBOutlet id url;
    IBOutlet id username;
  IBOutlet id forUser;
  
  Location *_loc;
}
- (IBAction)browse:(id)sender;
- (IBAction)cancel:(id)sender;
- (IBAction)save:(id)sender;
 
-(void)setLocation:(Location *)to;
 
@end