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
Search Repo:
photosync / LocEditController.h
100644 22 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
/* 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