12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // VLCMasterViewController.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 27.02.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AQGridView.h"
- @class VLCMovieViewController;
- @class VLCAboutViewController;
- @class VLCPasscodeLockViewController;
- @interface VLCPlaylistViewController : UIViewController <AQGridViewDataSource, AQGridViewDelegate, UITableViewDataSource, UITableViewDelegate, UITabBarDelegate>
- {
- NSURL *_pasteURL;
- BOOL _editMode;
- }
- @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
- @property (nonatomic) BOOL passcodeValidated;
- @property (nonatomic, strong) VLCMovieViewController *movieViewController;
- @property (nonatomic, strong) VLCAboutViewController *aboutViewController;
- @property (nonatomic, strong) VLCPasscodeLockViewController *passcodeLockViewController;
- @property (nonatomic, strong) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) IBOutlet AQGridView *gridView;
- @property (nonatomic, strong) IBOutlet UITabBar *tabBar;
- @property (nonatomic, strong) IBOutlet UITabBarItem *localFilesBarItem;
- @property (nonatomic, strong) IBOutlet UITabBarItem *networkStreamsBarItem;
- @property (nonatomic, strong) IBOutlet UIView *emptyLibraryView;
- @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
- @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
- - (void)validatePasscode;
- - (void)updateViewContents;
- - (void)openMovieFromURL:(NSURL *)url;
- - (void)removeMediaObject:(MLFile *)mediaObject;
- @end
|