GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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)
Wed Nov 30 21:51:37 -0800 2005
commit  2dceca4018192b712c3dcbd872354326347bca00
tree    ad7e3af5f358026eee3aca0e8acc7a23e1024380
parent  08dbe9d7485be04072af84b3db49e976a0564577
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