VLCAppDelegate.h 1.2 KB

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