summaryrefslogtreecommitdiffstats
path: root/Liaison/PreferencesController.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:45:08 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:45:08 -0400
commit17349a5e426dc7acf1216a3767a22f69974cbca0 (patch)
tree20029d02f07ab6257cccec36d34fb312f796e1d1 /Liaison/PreferencesController.h
downloadliaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz
liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip
Initial commit.
Diffstat (limited to 'Liaison/PreferencesController.h')
-rw-r--r--Liaison/PreferencesController.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Liaison/PreferencesController.h b/Liaison/PreferencesController.h
new file mode 100644
index 0000000..f2569aa
--- /dev/null
+++ b/Liaison/PreferencesController.h
@@ -0,0 +1,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