VLCPlaylistViewController.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "AQGridView.h"
  12. @class VLCMovieViewController;
  13. @class EmptyLibraryView;
  14. @interface VLCPlaylistViewController : UIViewController <UITabBarDelegate, UIPopoverControllerDelegate>
  15. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  16. @property (nonatomic, strong) UIViewController *menuViewController;
  17. @property (nonatomic, strong) UIPopoverController *addMediaPopoverController;
  18. @property (nonatomic, strong) UITableView *tableView;
  19. @property (nonatomic, strong) AQGridView *gridView;
  20. @property (nonatomic, strong) EmptyLibraryView *emptyLibraryView;
  21. - (IBAction)leftButtonAction:(id)sender;
  22. - (void)updateViewContents;
  23. - (void)openMovieFromURL:(NSURL *)url;
  24. - (void)removeMediaObject:(MLFile *)mediaObject;
  25. @end
  26. @interface EmptyLibraryView: UIView
  27. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  28. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  29. @end