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 19:16:29 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-04 19:16:29 +0000
commite8799fe621a86267ea50ae45ec03b5fb05c66905 (patch)
treef4735dcbe52001b96db037d4a1ac0cf09d8baf1f /macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
parentdd7da2fae96b9ba6bdbc28f7b26469373801f21e (diff)
downloadpcsxr-e8799fe621a86267ea50ae45ec03b5fb05c66905.tar.gz
Copy over DFCdrom to bladesio1 on OS X. to begin the process for the OS X plug-in.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85814 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/Bladesio1/macsrc/PluginConfigController.h')
-rwxr-xr-xmacosx/plugins/Bladesio1/macsrc/PluginConfigController.h18
1 files changed, 18 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..b7f6fafb
--- /dev/null
+++ b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.h
@@ -0,0 +1,18 @@
+#define PluginConfigController DFCdromPluginConfigController
+
+#import <Cocoa/Cocoa.h>
+
+@interface PluginConfigController : NSWindowController
+{
+ IBOutlet NSControl *Cached;
+ IBOutlet NSSlider *CacheSize;
+ IBOutlet NSPopUpButton *CdSpeed;
+
+ NSMutableDictionary *keyValues;
+}
+- (IBAction)cancel:(id)sender;
+- (IBAction)ok:(id)sender;
+
+- (void)loadValues;
+
+@end