summaryrefslogtreecommitdiff
path: root/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-04 21:55:52 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-04 21:55:52 +0000
commitb05c91bb3b900edee49546451a0eecf54988a3b7 (patch)
treef1577eb03d855fcf098a3200713026c193ced78a /macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
parent887a72f1270ac12e39b08391c280f076b687d95f (diff)
downloadpcsxr-b05c91bb3b900edee49546451a0eecf54988a3b7.tar.gz
This should get the bladesio plug-in building on OS X.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85824 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/Bladesio1/macsrc/PluginConfigController.h')
-rwxr-xr-xmacosx/plugins/Bladesio1/macsrc/PluginConfigController.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
new file mode 100755
index 00000000..595dce02
--- /dev/null
+++ b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
@@ -0,0 +1,23 @@
+#define PluginConfigController Bladesio1PluginConfigController
+
+#import <Cocoa/Cocoa.h>
+
+@interface Bladesio1PluginConfigController : NSWindowController
+{
+ IBOutlet NSButton *enabledButton;
+ IBOutlet NSTextField *ipAddressField;
+ IBOutlet NSTextField *portField;
+ IBOutlet NSPopUpButton *playerMenu;
+ IBOutlet NSBox *configBox;
+
+ NSMutableDictionary *keyValues;
+}
+- (IBAction)cancel:(id)sender;
+- (IBAction)ok:(id)sender;
+- (IBAction)toggleEnabled:(id)sender;
+- (IBAction)resetPreferences:(id)sender;
+
+
+- (void)loadValues;
+
+@end