SameBoy/Cocoa/GBPreferencesWindow.h

28 lines
1.4 KiB
Objective-C
Raw Normal View History

2016-04-13 19:43:16 +00:00
#import <Cocoa/Cocoa.h>
#import <JoyKit/JoyKit.h>
2016-04-13 19:43:16 +00:00
@interface GBPreferencesWindow : NSWindow <NSTableViewDelegate, NSTableViewDataSource, JOYListener>
2016-04-13 19:43:16 +00:00
@property IBOutlet NSTableView *controlsTableView;
@property IBOutlet NSPopUpButton *graphicsFilterPopupButton;
@property (strong) IBOutlet NSButton *analogControlsCheckbox;
@property (strong) IBOutlet NSButton *aspectRatioCheckbox;
@property (strong) IBOutlet NSPopUpButton *highpassFilterPopupButton;
@property (strong) IBOutlet NSPopUpButton *colorCorrectionPopupButton;
2020-03-26 18:54:18 +00:00
@property (strong) IBOutlet NSPopUpButton *frameBlendingModePopupButton;
@property (strong) IBOutlet NSPopUpButton *colorPalettePopupButton;
@property (strong) IBOutlet NSPopUpButton *displayBorderPopupButton;
@property (strong) IBOutlet NSPopUpButton *rewindPopupButton;
2017-12-30 14:23:17 +00:00
@property (strong) IBOutlet NSButton *configureJoypadButton;
@property (strong) IBOutlet NSButton *skipButton;
@property (strong) IBOutlet NSMenuItem *bootROMsFolderItem;
@property (strong) IBOutlet NSPopUpButtonCell *bootROMsButton;
2020-04-29 13:50:31 +00:00
@property (strong) IBOutlet NSPopUpButton *rumbleModePopupButton;
2018-12-01 15:16:50 +00:00
@property (weak) IBOutlet NSPopUpButton *dmgPopupButton;
@property (weak) IBOutlet NSPopUpButton *sgbPopupButton;
@property (weak) IBOutlet NSPopUpButton *cgbPopupButton;
@property (weak) IBOutlet NSPopUpButton *preferredJoypadButton;
@property (weak) IBOutlet NSPopUpButton *playerListButton;
2018-12-01 15:16:50 +00:00
2016-04-13 19:43:16 +00:00
@end