VLCAddMediaViewController.h 680 B

1234567891011121314151617181920212223242526
  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. @interface VLCAddMediaViewController : UIViewController
  10. {
  11. NSURL *_pasteURL;
  12. }
  13. @property (strong, nonatomic) IBOutlet UIButton *dismissButton;
  14. @property (strong, nonatomic) IBOutlet UIButton *aboutButton;
  15. @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton;
  16. @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton;
  17. - (IBAction)openAboutPanel:(id)sender;
  18. - (IBAction)openNetworkStream:(id)sender;
  19. - (IBAction)downloadFromHTTPServer:(id)sender;
  20. @end