VLCPlaylistViewController.h 1.2 KB

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