VLCAddMediaViewController.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 VLCSettingsController;
  10. @class VLCCircularProgressIndicator;
  11. @class IASKAppSettingsViewController;
  12. @interface VLCAddMediaViewController : UIViewController
  13. @property (strong, nonatomic) IASKAppSettingsViewController *settingsViewController;
  14. @property (strong, nonatomic) VLCSettingsController *settingsController;
  15. @property (strong, nonatomic) IBOutlet UIButton *dismissButton;
  16. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  17. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  18. @property (strong, nonatomic) IBOutlet VLCCircularProgressIndicator *httpDownloadProgressIndicator;
  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. @property (strong, nonatomic) IBOutlet UIView *openURLView;
  26. @property (strong, nonatomic) IBOutlet UITextField *openURLField;
  27. @property (strong, nonatomic) IBOutlet UIButton *openURLButton;
  28. - (IBAction)dismiss:(id)sender;
  29. - (IBAction)openAboutPanel:(id)sender;
  30. - (IBAction)openNetworkStream:(id)sender;
  31. - (IBAction)downloadFromHTTPServer:(id)sender;
  32. - (IBAction)showDropbox:(id)sender;
  33. - (IBAction)showSettings:(id)sender;
  34. - (IBAction)toggleHTTPServer:(id)sender;
  35. @end