VLCPlaylistViewController.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 VLCAddMediaViewController;
  13. @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate, UITabBarDelegate, UIPopoverControllerDelegate>
  14. {
  15. BOOL _editMode;
  16. }
  17. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  18. @property (nonatomic, strong) VLCAboutViewController *aboutViewController;
  19. @property (nonatomic, strong) VLCAddMediaViewController *addMediaViewController;
  20. @property (nonatomic, strong) UIPopoverController *addMediaPopoverController;
  21. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  22. @property (nonatomic, strong) IBOutlet AQGridView *gridView;
  23. @property (nonatomic, strong) IBOutlet UIView *emptyLibraryView;
  24. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  25. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  26. - (IBAction)leftButtonAction:(id)sender;
  27. - (void)updateViewContents;
  28. - (void)openMovieFromURL:(NSURL *)url;
  29. - (void)removeMediaObject:(MLFile *)mediaObject;
  30. @end