VLCDownloadViewController.h 968 B

12345678910111213141516171819202122232425262728
  1. //
  2. // VLCDownloadViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 16.06.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. @interface VLCDownloadViewController : UIViewController
  11. @property (nonatomic, strong) IBOutlet UIButton *downloadButton;
  12. @property (nonatomic, strong) IBOutlet UITextField *urlField;
  13. @property (nonatomic, strong) IBOutlet UILabel *whatToDownloadHelpLabel;
  14. @property (nonatomic, strong) IBOutlet UITableView *downloadsTable;
  15. @property (nonatomic, strong) IBOutlet UIProgressView *progressView;
  16. @property (nonatomic, strong) IBOutlet UIButton *cancelButton;
  17. @property (nonatomic, strong) IBOutlet UILabel *currentDownloadLabel;
  18. @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator;
  19. - (IBAction)downloadAction:(id)sender;
  20. - (IBAction)cancelDownload:(id)sender;
  21. - (void)addURLToDownloadList:(NSURL *)aURL;
  22. @end