VLCDownloadViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930
  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. #import "VLCHTTPFileDownloader.h"
  11. @interface VLCDownloadViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, VLCHTTPFileDownloader>
  12. @property (nonatomic, strong) IBOutlet UIButton *downloadButton;
  13. @property (nonatomic, strong) IBOutlet UITextField *urlField;
  14. @property (nonatomic, strong) IBOutlet UILabel *whatToDownloadHelpLabel;
  15. @property (nonatomic, strong) IBOutlet UITableView *downloadsTable;
  16. @property (nonatomic, strong) IBOutlet UIProgressView *progressView;
  17. @property (nonatomic, strong) IBOutlet UIButton *cancelButton;
  18. @property (nonatomic, strong) IBOutlet UILabel *currentDownloadLabel;
  19. @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator;
  20. - (IBAction)downloadAction:(id)sender;
  21. - (IBAction)cancelDownload:(id)sender;
  22. - (void)addURLToDownloadList:(NSURL *)aURL;
  23. @end