unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

PreferencesController.h (548B)


      1 /* PreferencesController */
      2 
      3 #import <Cocoa/Cocoa.h>
      4 
      5 @interface PreferencesController : NSObject
      6 {
      7     IBOutlet NSTextField *firstRootText;
      8     IBOutlet NSButtonCell *localButtonCell;
      9     IBOutlet NSTextField *profileNameText;
     10     IBOutlet NSButtonCell *remoteButtonCell;
     11     IBOutlet NSTextField *secondRootHost;
     12     IBOutlet NSTextField *secondRootText;
     13     IBOutlet NSTextField *secondRootUser;
     14 }
     15 - (IBAction)anyEnter:(id)sender;
     16 - (IBAction)localClick:(id)sender;
     17 - (IBAction)remoteClick:(id)sender;
     18 - (BOOL)validatePrefs;
     19 - (void)reset;
     20 @end