diff options
| author | iCatButler <i.am.catbutler@gmail.com> | 2018-03-13 17:25:03 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-13 17:25:03 +0000 |
| commit | 2d0b10f982e0b835f4b27be26b138703907a4219 (patch) | |
| tree | e6ca381effb72ccc4161d40f224b817a6631bc03 /macosx/Source/PgxpController.h | |
| parent | ed3dc690e04382dce36305091ad2e14038147ab4 (diff) | |
| parent | 15fe3782c1375634b7a9bd9bbbadfd75e7b06fed (diff) | |
| download | pcsxr-2d0b10f982e0b835f4b27be26b138703907a4219.tar.gz | |
Merge branch 'master' into fix-linux-build
Diffstat (limited to 'macosx/Source/PgxpController.h')
| -rw-r--r-- | macosx/Source/PgxpController.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/macosx/Source/PgxpController.h b/macosx/Source/PgxpController.h new file mode 100644 index 00000000..fee659ef --- /dev/null +++ b/macosx/Source/PgxpController.h @@ -0,0 +1,24 @@ +// +// PgxpController.h +// Pcsxr +// +// Created by MrLavender on 29/06/2017. +// + +#import <Cocoa/Cocoa.h> + +@interface PgxpController : NSViewController + +@property (weak) IBOutlet NSButton *vertexCreation; +@property (weak) IBOutlet NSButton *vertexCaching; +@property (weak) IBOutlet NSButton *perspectiveCorrect; +@property (weak) IBOutlet NSPopUpButton *pgxpModeButton; +@property (weak) IBOutlet NSTextField *pgxpModeLabel; + +- (IBAction)onOptionChange:(NSButton*)sender; +- (IBAction)onModeChange:(NSPopUpButton*)sender; + ++ (void)loadPgxpSettings; ++ (void)savePgxpSettings; + +@end |
