VLCDownloadViewController.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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 <UIKit/UIKit.h>
  11. @interface VLCDownloadViewController : UIViewController
  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. @property (weak, nonatomic) IBOutlet UILabel *progressPercent;
  21. @property (weak, nonatomic) IBOutlet UILabel *speedRate;
  22. @property (weak, nonatomic) IBOutlet UILabel *timeDL;
  23. - (IBAction)downloadAction:(id)sender;
  24. - (IBAction)cancelDownload:(id)sender;
  25. - (void)addURLToDownloadList:(NSURL *)aURL fileNameOfMedia:(NSString*) fileName;;
  26. @end