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