VLCAppDelegate.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*****************************************************************************
  2. * VLCAppDelegate.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2014 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. * Jean-Romain Prévost <jr # 3on.fr>
  11. * Carola Nitz <nitz.carola # googlemail.com>
  12. * Tamas Timar <ttimar.vlc # gmail.com>
  13. *
  14. * Refer to the COPYING file of the official project for license.
  15. *****************************************************************************/
  16. #import "VLCDropboxTableViewController.h"
  17. #import "VLCGoogleDriveTableViewController.h"
  18. #import "VLCOneDriveTableViewController.h"
  19. #import "VLCHTTPUploaderController.h"
  20. #import "GHRevealViewController.h"
  21. #import "VLCMenuTableViewController.h"
  22. #import "VLCDownloadViewController.h"
  23. #import "BWQuincyManager.h"
  24. #import "VLCDocumentPickerController.h"
  25. @class VLCPlaylistViewController;
  26. @class PAPasscodeViewController;
  27. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  28. - (void)updateMediaList;
  29. - (void)disableIdleTimer;
  30. - (void)activateIdleTimer;
  31. - (void)networkActivityStarted;
  32. - (BOOL)haveNetworkActivity;
  33. - (void)networkActivityStopped;
  34. - (void)cleanCache;
  35. - (void)openMediaFromManagedObject:(NSManagedObject *)file;
  36. - (void)openMovieFromURL:(NSURL *)url;
  37. - (void)openMediaList:(VLCMediaList*)list atIndex:(int)index;
  38. - (void)openMovieWithExternalSubtitleFromURL:(NSURL *)url externalSubURL:(NSString *)SubtitlePath;
  39. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  40. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  41. @property (nonatomic, readonly) VLCGoogleDriveTableViewController *googleDriveTableViewController;
  42. @property (nonatomic, readonly) VLCOneDriveTableViewController *oneDriveTableViewController;
  43. @property (nonatomic, readonly) VLCDownloadViewController *downloadViewController;
  44. @property (nonatomic, readonly) VLCDocumentPickerController *documentPickerController;
  45. @property (nonatomic, strong) UIWindow *window;
  46. @property (nonatomic, strong) GHRevealViewController *revealController;
  47. @property (nonatomic, strong) VLCMenuTableViewController *menuViewController;
  48. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  49. @end