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