SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
Cocoa/GBApp.h
1 #import <Cocoa/Cocoa.h>
2 #import <WebKit/WebKit.h>
3 #import <JoyKit/JoyKit.h>
4
5 @interface GBApp : NSApplication <NSApplicationDelegate, NSUserNotificationCenterDelegate, NSMenuDelegate, WebUIDelegate, WebPolicyDelegate, WebFrameLoadDelegate, JOYListener>
6
7 @property (nonatomic, strong) IBOutlet NSWindow *preferencesWindow;
8 @property (nonatomic, strong) IBOutlet NSView *graphicsTab;
9 @property (nonatomic, strong) IBOutlet NSView *emulationTab;
10 @property (nonatomic, strong) IBOutlet NSView *audioTab;
11 @property (nonatomic, strong) IBOutlet NSView *controlsTab;
12 @property (nonatomic, strong) IBOutlet NSView *updatesTab;
13 - (IBAction)showPreferences: (id) sender;
14 - (IBAction)toggleDeveloperMode:(id)sender;
15 - (IBAction)switchPreferencesTab:(id)sender;
16 @property (nonatomic, weak) IBOutlet NSMenuItem *linkCableMenuItem;
17 @property (nonatomic, strong) IBOutlet NSWindow *updateWindow;
18 @property (nonatomic, strong) IBOutlet WebView *updateChanges;
19 @property (nonatomic, strong) IBOutlet NSProgressIndicator *updatesSpinner;
20 @property (strong) IBOutlet NSButton *updatesButton;
21 @property (strong) IBOutlet NSTextField *updateProgressLabel;
22 @property (strong) IBOutlet NSButton *updateProgressButton;
23 @property (strong) IBOutlet NSWindow *updateProgressWindow;
24 @property (strong) IBOutlet NSProgressIndicator *updateProgressSpinner;
25 - (void)updateThemesDefault:(bool)overwrite;
26 @end
27
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.