VLCMenuViewController.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 *localNetworkButton;
  18. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  19. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  20. @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton;
  21. @property (strong, nonatomic) IBOutlet UIButton *settingsButton;
  22. @property (strong, nonatomic) IBOutlet UISwitch *httpUploadServerSwitch;
  23. @property (strong, nonatomic) IBOutlet UILabel *httpUploadLabel;
  24. @property (strong, nonatomic) IBOutlet UILabel *httpUploadServerLocationLabel;
  25. @property (strong, nonatomic) IBOutlet UIButton *dropboxButton;
  26. - (IBAction)showAllFiles:(id)sender;
  27. - (IBAction)showLocalNetwork:(id)sender;
  28. - (IBAction)openAboutPanel:(id)sender;
  29. - (IBAction)openNetworkStream:(id)sender;
  30. - (IBAction)downloadFromHTTPServer:(id)sender;
  31. - (IBAction)showDropbox:(id)sender;
  32. - (IBAction)showSettings:(id)sender;
  33. - (IBAction)toggleHTTPServer:(id)sender;
  34. @end