dustin / photosync

An OS X application to build a standalone web site as an export from my photo album.

This URL has Read+Write access

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