summaryrefslogtreecommitdiff
path: root/macosx/ConfigurationController.h
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-06-09 11:34:52 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-06-09 11:34:52 +0000
commit10eac4b4928e7dd9f79de454641889f2a0b77250 (patch)
tree0f9c98f659552ed2406a6159bc123889ca46b919 /macosx/ConfigurationController.h
parent568526e291e9743751d8632327b94e01e7181efc (diff)
downloadpcsxr-10eac4b4928e7dd9f79de454641889f2a0b77250.tar.gz
added prelimiary Mac OS X port (still not working)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@23667 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/ConfigurationController.h')
-rw-r--r--macosx/ConfigurationController.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/macosx/ConfigurationController.h b/macosx/ConfigurationController.h
new file mode 100644
index 00000000..a85c2579
--- /dev/null
+++ b/macosx/ConfigurationController.h
@@ -0,0 +1,36 @@
+/* ConfigurationController */
+
+#import <Cocoa/Cocoa.h>
+#import "PluginController.h"
+#import "PluginList.h"
+
+@interface ConfigurationController : NSWindowController
+{
+ IBOutlet PluginController *cdromPlugin;
+ IBOutlet PluginController *graphicsPlugin;
+ IBOutlet PluginController *padPlugin;
+ IBOutlet PluginController *soundPlugin;
+
+ IBOutlet id noXaAudioCell;
+ IBOutlet id sioIrqAlwaysCell;
+ IBOutlet id bwMdecCell;
+ IBOutlet id autoVTypeCell;
+ IBOutlet id vTypePALCell;
+ IBOutlet id noCDAudioCell;
+ IBOutlet id usesHleCell;
+ IBOutlet id usesDynarecCell;
+ IBOutlet id consoleOutputCell;
+ IBOutlet id spuIrqAlwaysCell;
+ IBOutlet id rCountFixCell;
+ IBOutlet id vSyncWAFixCell;
+ IBOutlet id noFastBootCell;
+
+ NSMutableDictionary *checkBoxDefaults;
+}
+- (IBAction)setCheckbox:(id)sender;
+- (IBAction)setCheckboxInverse:(id)sender;
+- (IBAction)setVideoType:(id)sender;
+
+- (NSString *)keyForSender:(id)sender;
+
+@end