Play-/Source/ui_ios/SettingsViewController.h

36 lines
1 KiB
C
Raw Normal View History

#import <UIKit/UIKit.h>
@interface SettingsViewController : UITableViewController
{
2018-04-30 21:01:23 +01:00
IBOutlet UISwitch* showFpsSwitch;
IBOutlet UISwitch* showVirtualPadSwitch;
2021-07-07 07:30:11 -10:00
IBOutlet UISlider* virtualPadOpacitySlider;
IBOutlet UISwitch* hideVirtualPadWhenControllerConnected;
2021-07-07 08:38:06 -10:00
IBOutlet UISwitch* virtualPadHapticFeedbackSwitch;
2018-04-30 21:01:23 +01:00
2021-06-28 19:16:02 -04:00
IBOutlet UILabel* gsHandlerName;
2019-04-08 20:27:54 -04:00
IBOutlet UILabel* resolutionFactor;
IBOutlet UISwitch* resizeOutputToWidescreen;
2018-04-30 21:01:23 +01:00
IBOutlet UISwitch* forceBilinearFiltering;
IBOutlet UISwitch* enableAudioOutput;
IBOutlet UISwitch* enableAltServerJIT;
2018-04-30 21:01:23 +01:00
IBOutlet UILabel* versionInfoLabel;
}
@property bool allowGsHandlerSelection;
@property bool allowFullDeviceScan;
@property(copy, nonatomic) void (^completionHandler)(bool);
//Internal: This is set when the user presses the Full Device Scan button.
@property bool fullDeviceScanRequested;
2021-06-28 19:16:02 -04:00
- (IBAction)selectedGsHandler:(UIStoryboardSegue*)segue;
- (IBAction)selectedResolutionFactor:(UIStoryboardSegue*)segue;
- (IBAction)startFullDeviceScan;
- (IBAction)returnToParent;
2019-04-08 20:27:54 -04:00
@end