VLCAddMediaViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // VLCAddMediaViewController.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. @class VLCSettingsViewController;
  10. @interface VLCAddMediaViewController : UIViewController
  11. @property (strong, nonatomic) VLCSettingsViewController *settingsViewController;
  12. @property (strong, nonatomic) IBOutlet UIButton *dismissButton;
  13. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  14. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  15. @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton;
  16. @property (strong, nonatomic) IBOutlet UIButton *settingsButton;
  17. @property (strong, nonatomic) IBOutlet UIButton *showInformationOnHTTPUploadButton;
  18. @property (strong, nonatomic) IBOutlet UISwitch *httpUploadServerSwitch;
  19. @property (strong, nonatomic) IBOutlet UIView *openURLView;
  20. @property (strong, nonatomic) IBOutlet UITextField *openURLField;
  21. @property (strong, nonatomic) IBOutlet UIButton *openURLButton;
  22. - (IBAction)openAboutPanel:(id)sender;
  23. - (IBAction)openNetworkStream:(id)sender;
  24. - (IBAction)downloadFromHTTPServer:(id)sender;
  25. - (IBAction)showSettings:(id)sender;
  26. - (IBAction)showInformationOnHTTPServer:(id)sender;
  27. - (IBAction)toggleHTTPServer:(id)sender;
  28. @end