summaryrefslogtreecommitdiff
path: root/macosx/ConfigurationController.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-13 21:31:56 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-13 21:31:56 +0000
commitde50d760fd03a7eed9a614a3d4a701f2097c88d9 (patch)
treeabd27fe9c76372b7b819670dd15ec859de94e164 /macosx/ConfigurationController.h
parent56d5b481986072f06ac516f43b68ec1d5b3aac1b (diff)
downloadpcsxr-de50d760fd03a7eed9a614a3d4a701f2097c88d9.tar.gz
Changing a few Objective C classes to have their ivars hidden.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87167 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/ConfigurationController.h')
-rwxr-xr-xmacosx/ConfigurationController.h38
1 files changed, 18 insertions, 20 deletions
diff --git a/macosx/ConfigurationController.h b/macosx/ConfigurationController.h
index dea18c1d..b3e5e471 100755
--- a/macosx/ConfigurationController.h
+++ b/macosx/ConfigurationController.h
@@ -20,34 +20,32 @@ extern NSString *const memCardChangeNumberKey;
IBOutlet PluginController *sio1Plugin;
IBOutlet PcsxrMemCardController *memCardEdit;
-
- 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;
- IBOutlet id enableNetPlayCell;
- IBOutlet id widescreen;
// Hotkeys
IBOutlet HotkeyController *hkController;
- IBOutlet NSTabViewItem *hkTab;
-
- NSMutableDictionary *checkBoxDefaults;
+ IBOutlet NSTabViewItem *hkTab;
}
+
+@property (weak) IBOutlet NSButtonCell *noXaAudioCell;
+@property (weak) IBOutlet NSButtonCell *sioIrqAlwaysCell;
+@property (weak) IBOutlet NSButtonCell *bwMdecCell;
+@property (weak) IBOutlet NSButtonCell *autoVTypeCell;
+@property (weak) IBOutlet NSPopUpButton *vTypePALCell;
+@property (weak) IBOutlet NSButtonCell *noCDAudioCell;
+@property (weak) IBOutlet NSButtonCell *usesHleCell;
+@property (weak) IBOutlet NSButtonCell *usesDynarecCell;
+@property (weak) IBOutlet NSButtonCell *consoleOutputCell;
+@property (weak) IBOutlet NSButtonCell *spuIrqAlwaysCell;
+@property (weak) IBOutlet NSButtonCell *rCountFixCell;
+@property (weak) IBOutlet NSButtonCell *vSyncWAFixCell;
+@property (weak) IBOutlet NSButtonCell *noFastBootCell;
+@property (weak) IBOutlet NSButtonCell *enableNetPlayCell;
+@property (weak) IBOutlet NSButtonCell *widescreen;
+
- (IBAction)setCheckbox:(id)sender;
- (IBAction)setCheckboxInverse:(id)sender;
- (IBAction)setVideoType:(id)sender;
-- (NSString *)keyForSender:(id)sender;
+ (void)setMemoryCard:(NSInteger)theCard toPath:(NSString *)theFile;
+ (void)setMemoryCard:(NSInteger)theCard toURL:(NSURL *)theURL;