VLCPlaylistViewController.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #define EXPERIMENTAL_LIBRARY 1
  13. #define kVLCLibraryModeAllFiles 0
  14. #define kVLCLibraryModeAllAlbums 1
  15. #define kVLCLibraryModeAllSeries 2
  16. @class VLCMovieViewController;
  17. @class EmptyLibraryView;
  18. @interface VLCPlaylistViewController : UIViewController <UITabBarDelegate, UIPopoverControllerDelegate>
  19. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  20. @property (nonatomic, strong) UIViewController *menuViewController;
  21. @property (nonatomic, strong) UIPopoverController *addMediaPopoverController;
  22. @property (nonatomic, strong) UITableView *tableView;
  23. @property (nonatomic, strong) AQGridView *gridView;
  24. @property (nonatomic, strong) EmptyLibraryView *emptyLibraryView;
  25. - (IBAction)leftButtonAction:(id)sender;
  26. - (void)updateViewContents;
  27. - (void)openMovieFromURL:(NSURL *)url;
  28. - (void)removeMediaObject:(MLFile *)mediaObject;
  29. - (void)setLibraryMode:(NSUInteger)mode;
  30. @end
  31. @interface EmptyLibraryView: UIView
  32. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  33. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  34. @end