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)
Sun Feb 13 02:13:13 -0800 2005
commit  56926f7e1398a0a603d02d836dfa5a0431f623b0
tree    e9b511a43d6e580133f75d605cd78701fdb1e44b
parent  752d28871fb9bafc8c299203b4d99414a855ea71
photosync / Controller.h
100644 27 lines (20 sloc) 0.552 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Controller */
 
#import <AppKit/AppKit.h>
 
#define BUTTON_SYNC 1
#define BUTTON_STOP 2
 
@interface Controller : NSWindowController
{
    IBOutlet id locEdit;
    IBOutlet id locTable;
    IBOutlet NSProgressIndicator *progressIndicator;
    IBOutlet NSTextField *statusText;
    IBOutlet NSButton *syncButton;
 
  NSMutableArray *stuffToDo;
}
- (IBAction)newLocation:(id)sender;
- (IBAction)performSync:(id)sender;
- (IBAction)rmLocation:(id)sender;
- (IBAction)editHighlighted:(id)sender;
 
-(void)addLocation:(id)loc;
-(void)showEditor:(id)loc;
 
@end