VLCHTTPDownloadViewController.h 961 B

123456789101112131415161718192021222324252627
  1. //
  2. // VLCHTTPDownloadViewController.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 VLCHTTPDownloadViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, VLCHTTPFileDownloader>
  12. @property (nonatomic, strong) IBOutlet UIButton *downloadButton;
  13. @property (nonatomic, strong) IBOutlet UITextField *urlField;
  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. @end