unison

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

ProfileController.h (658B)


      1 /* ProfileController */
      2 /* Copyright (c) 2003, see file COPYING for details. */
      3 
      4 #import <Cocoa/Cocoa.h>
      5 
      6 @interface ProfileController : NSObject
      7 {
      8     IBOutlet NSTableView *tableView;
      9     NSMutableArray *profiles;
     10     NSUInteger defaultIndex; // -1 if no default, else the index in profiles of @"default"
     11 }
     12 - (void)initProfiles;
     13 - (NSUInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
     14 - (id)tableView:(NSTableView *)aTableView
     15     objectValueForTableColumn:(NSTableColumn *)aTableColumn
     16     row:(int)rowIndex;
     17 - (NSString *)selected;
     18 - (NSTableView *)tableView; // allows MyController to set up firstResponder
     19 - (NSMutableArray*) getProfiles;
     20 @end