VLCPlaylistViewController.h 972 B

123456789101112131415161718192021222324252627282930313233
  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. @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate, UITabBarDelegate>
  13. {
  14. NSURL *_pasteURL;
  15. }
  16. @property (nonatomic, strong) VLCMovieViewController *movieViewController;
  17. @property (nonatomic, strong) VLCAboutViewController *aboutViewController;
  18. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  19. @property (nonatomic, strong) IBOutlet AQGridView *gridView;
  20. @property (nonatomic, strong) IBOutlet UITabBar *tabBar;
  21. @property (nonatomic, strong) IBOutlet UITabBarItem *localFilesBarItem;
  22. @property (nonatomic, strong) IBOutlet UITabBarItem *networkStreamsBarItem;
  23. - (void)updateViewContents;
  24. @end