VLCAppDelegate.h 977 B

1234567891011121314151617181920212223242526272829303132333435
  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. @class VLCPlaylistViewController;
  14. @class PAPasscodeViewController;
  15. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  16. - (void)updateMediaList;
  17. - (void)disableIdleTimer;
  18. - (void)activateIdleTimer;
  19. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  20. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  21. @property (nonatomic, strong) UIWindow *window;
  22. @property (nonatomic, strong) GHRevealViewController *revealController;
  23. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  24. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  25. @end