VLCMenuViewController.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 VLCCircularProgressIndicator;
  13. @class IASKAppSettingsViewController;
  14. @interface VLCMenuViewController : UIViewController
  15. @property (strong, nonatomic) IASKAppSettingsViewController *settingsViewController;
  16. @property (strong, nonatomic) VLCSettingsController *settingsController;
  17. @property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  18. @property (strong, nonatomic) IBOutlet UIToolbar *dismissToolBar;
  19. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  20. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  21. @property (strong, nonatomic) IBOutlet VLCCircularProgressIndicator *httpDownloadProgressIndicator;
  22. @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton;
  23. @property (strong, nonatomic) IBOutlet UIButton *settingsButton;
  24. @property (strong, nonatomic) IBOutlet UISwitch *httpUploadServerSwitch;
  25. @property (strong, nonatomic) IBOutlet UILabel *httpUploadLabel;
  26. @property (strong, nonatomic) IBOutlet UILabel *httpUploadServerLocationLabel;
  27. @property (strong, nonatomic) IBOutlet UIButton *dropboxButton;
  28. @property (strong, nonatomic) IBOutlet UIView *openURLView;
  29. @property (strong, nonatomic) IBOutlet UITextField *openURLField;
  30. @property (strong, nonatomic) IBOutlet UIButton *openURLButton;
  31. - (IBAction)dismiss:(id)sender;
  32. - (IBAction)openAboutPanel:(id)sender;
  33. - (IBAction)openNetworkStream:(id)sender;
  34. - (IBAction)downloadFromHTTPServer:(id)sender;
  35. - (IBAction)showDropbox:(id)sender;
  36. - (IBAction)showSettings:(id)sender;
  37. - (IBAction)toggleHTTPServer:(id)sender;
  38. @end