mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
* merged moonlight-mac with moonlight-ios * reverted to the original project.pbxproj * cleaned up the code, fixed lots of unnecessary code duplications * multicontroller support (not tested) * new class that can be used for further modularization of the MainFrameViewController
23 lines
733 B
Objective-C
23 lines
733 B
Objective-C
//
|
|
// SettingsViewController.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 10/27/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
@interface SettingsViewController : UIViewController
|
|
@property (strong, nonatomic) IBOutlet UILabel *bitrateLabel;
|
|
@property (strong, nonatomic) IBOutlet UISlider *bitrateSlider;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *framerateSelector;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *resolutionSelector;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *onscreenControlSelector;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *remoteSelector;
|
|
|
|
- (void) saveSettings;
|
|
|
|
@end
|