VLCPlaylistViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 VLCMenuViewController;
  12. @class EmptyLibraryView;
  13. @interface VLCPlaylistViewController : UIViewController <UITabBarDelegate, UIPopoverControllerDelegate>
  14. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  15. @property (nonatomic, strong) VLCMenuViewController *addMediaViewController;
  16. @property (nonatomic, strong) UIPopoverController *addMediaPopoverController;
  17. @property (nonatomic, strong) UITableView *tableView;
  18. @property (nonatomic, strong) AQGridView *gridView;
  19. @property (nonatomic, strong) EmptyLibraryView *emptyLibraryView;
  20. - (IBAction)leftButtonAction:(id)sender;
  21. - (void)updateViewContents;
  22. - (void)openMovieFromURL:(NSURL *)url;
  23. - (void)removeMediaObject:(MLFile *)mediaObject;
  24. @end
  25. @interface EmptyLibraryView: UIView
  26. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  27. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  28. @end