2016-03-30 20:07:55 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
|
2016-04-13 19:43:16 +00:00
|
|
|
@property IBOutlet NSWindow *preferencesWindow;
|
2018-12-01 14:08:59 +00:00
|
|
|
@property (strong) IBOutlet NSView *graphicsTab;
|
|
|
|
@property (strong) IBOutlet NSView *emulationTab;
|
|
|
|
@property (strong) IBOutlet NSView *audioTab;
|
|
|
|
@property (strong) IBOutlet NSView *controlsTab;
|
2016-04-13 19:43:16 +00:00
|
|
|
- (IBAction)showPreferences: (id) sender;
|
2016-04-08 10:54:34 +00:00
|
|
|
- (IBAction)toggleDeveloperMode:(id)sender;
|
2018-12-01 14:08:59 +00:00
|
|
|
- (IBAction)switchPreferencesTab:(id)sender;
|
2016-03-30 20:07:55 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|