VLCPlaylistViewController.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // VLCMasterViewController.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 27.02.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AQGridView.h"
  10. @class VLCMovieViewController;
  11. @class VLCAboutViewController;
  12. @class VLCPasscodeLockViewController;
  13. @class VLCAddMediaViewController;
  14. @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate, UITabBarDelegate, UIPopoverControllerDelegate>
  15. {
  16. BOOL _editMode;
  17. }
  18. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  19. @property (nonatomic) BOOL passcodeValidated;
  20. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  21. @property (nonatomic, strong) VLCAboutViewController *aboutViewController;
  22. @property (nonatomic, strong) VLCPasscodeLockViewController *passcodeLockViewController;
  23. @property (nonatomic, strong) VLCAddMediaViewController *addMediaViewController;
  24. @property (nonatomic, strong) UIPopoverController *addMediaPopoverController;
  25. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  26. @property (nonatomic, strong) IBOutlet AQGridView *gridView;
  27. @property (nonatomic, strong) IBOutlet UIView *emptyLibraryView;
  28. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  29. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  30. - (IBAction)leftButtonAction:(id)sender;
  31. - (void)validatePasscode;
  32. - (void)updateViewContents;
  33. - (void)openMovieFromURL:(NSURL *)url;
  34. - (void)removeMediaObject:(MLFile *)mediaObject;
  35. @end