blob: f2569aac149481051eac0ffa7467b76aac75e568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* PreferencesController */
@interface PreferencesController : NSObject
{
IBOutlet NSWindow *theWindow;
IBOutlet NSTextField *theDownloadField;
IBOutlet NSTextField *theHostnameFieldDescription;
IBOutlet NSTextField *theHostnameField;
IBOutlet NSButton *theNetworkEnabledButton;
}
- (IBAction)applyChanges:(id)sender;
- (IBAction)selectDownloadDirectory:(id)sender;
- (IBAction)toggleNetworkEnabled:(id)sender;
- (void)showWindow;
@property (retain) NSWindow *theWindow;
@property (retain) NSButton *theNetworkEnabledButton;
@property (retain) NSTextField *theHostnameFieldDescription;
@property (retain) NSTextField *theDownloadField;
@property (retain) NSTextField *theHostnameField;
@end
|