VLCSettingsViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // VLCSettingsViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 19.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCSettingsViewController : UIViewController <UIPickerViewDataSource, UIPickerViewDelegate>
  10. @property (nonatomic, strong) IBOutlet UIBarButtonItem *dismissButton;
  11. @property (nonatomic, strong) IBOutlet UISwitch *passcodeLockSwitch;
  12. @property (nonatomic, strong) IBOutlet UILabel *passcodeLockLabel;
  13. @property (nonatomic, strong) IBOutlet UISwitch *audioPlaybackInBackgroundSwitch;
  14. @property (nonatomic, strong) IBOutlet UILabel *audioPlaybackInBackgroundLabel;
  15. @property (nonatomic, strong) IBOutlet UISwitch *audioStretchingSwitch;
  16. @property (nonatomic, strong) IBOutlet UILabel *audioStretchingLabel;
  17. @property (nonatomic, strong) IBOutlet UISwitch *debugOutputSwitch;
  18. @property (nonatomic, strong) IBOutlet UILabel *debugOutputLabel;
  19. @property (nonatomic, strong) IBOutlet UIPickerView *textEncodingPicker;
  20. @property (nonatomic, strong) IBOutlet UILabel *textEncodingLabel;
  21. - (IBAction)toggleSetting:(id)sender;
  22. - (IBAction)dismiss:(id)sender;
  23. @end