VLCAppDelegate.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // VLCAppDelegate.h
  3. // VLC for iOS
  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 "VLCGoogleDriveTableViewController.h"
  12. #import "VLCHTTPUploaderController.h"
  13. #import "GHRevealViewController.h"
  14. #import "VLCMenuTableViewController.h"
  15. #import "VLCDownloadViewController.h"
  16. @class VLCPlaylistViewController;
  17. @class PAPasscodeViewController;
  18. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  19. - (void)updateMediaList;
  20. - (void)disableIdleTimer;
  21. - (void)activateIdleTimer;
  22. - (void)openMediaFromManagedObject:(NSManagedObject *)file;
  23. - (void)openMovieFromURL:(NSURL *)url;
  24. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  25. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  26. @property (nonatomic, readonly) VLCGoogleDriveTableViewController *googleDriveTableViewController;
  27. @property (nonatomic, readonly) VLCDownloadViewController *downloadViewController;
  28. @property (nonatomic, strong) UIWindow *window;
  29. @property (nonatomic, strong) GHRevealViewController *revealController;
  30. @property (nonatomic, strong) VLCMenuTableViewController *menuViewController;
  31. @property (nonatomic, retain) NSDate *nextPasscodeCheckDate;
  32. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  33. @end