VLCAppDelegate.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // VLCAppDelegate.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 "VLCDropboxTableViewController.h"
  11. #import "VLCHTTPUploaderController.h"
  12. #import "GHRevealViewController.h"
  13. #import "VLCMenuTableViewController.h"
  14. @class VLCPlaylistViewController;
  15. @class PAPasscodeViewController;
  16. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  17. - (void)updateMediaList;
  18. - (void)disableIdleTimer;
  19. - (void)activateIdleTimer;
  20. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  21. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  22. @property (nonatomic, strong) UIWindow *window;
  23. @property (nonatomic, strong) GHRevealViewController *revealController;
  24. @property (nonatomic, strong) VLCMenuTableViewController *menuViewController;
  25. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  26. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  27. @end