VLCMenuViewController.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // VLCMenuViewController.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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @class VLCSettingsController;
  12. @class IASKAppSettingsViewController;
  13. @interface VLCMenuViewController : UIViewController
  14. @property (strong, nonatomic) IASKAppSettingsViewController *settingsViewController;
  15. @property (strong, nonatomic) VLCSettingsController *settingsController;
  16. @property (strong, nonatomic) IBOutlet UIButton *allFilesButton;
  17. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  18. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  19. @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton;
  20. @property (strong, nonatomic) IBOutlet UIButton *settingsButton;
  21. @property (strong, nonatomic) IBOutlet UISwitch *httpUploadServerSwitch;
  22. @property (strong, nonatomic) IBOutlet UILabel *httpUploadLabel;
  23. @property (strong, nonatomic) IBOutlet UILabel *httpUploadServerLocationLabel;
  24. @property (strong, nonatomic) IBOutlet UIButton *dropboxButton;
  25. - (IBAction)showAllFiles:(id)sender;
  26. - (IBAction)openAboutPanel:(id)sender;
  27. - (IBAction)openNetworkStream:(id)sender;
  28. - (IBAction)downloadFromHTTPServer:(id)sender;
  29. - (IBAction)showDropbox:(id)sender;
  30. - (IBAction)showSettings:(id)sender;
  31. - (IBAction)toggleHTTPServer:(id)sender;
  32. @end