VLCAppDelegate.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. *
  13. * Refer to the COPYING file of the official project for license.
  14. *****************************************************************************/
  15. #import "VLCDropboxTableViewController.h"
  16. #import "VLCGoogleDriveTableViewController.h"
  17. #import "VLCHTTPUploaderController.h"
  18. #import "GHRevealViewController.h"
  19. #import "VLCMenuTableViewController.h"
  20. #import "VLCDownloadViewController.h"
  21. #import "BWQuincyManager.h"
  22. @class VLCPlaylistViewController;
  23. @class PAPasscodeViewController;
  24. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  25. - (void)updateMediaList;
  26. - (void)disableIdleTimer;
  27. - (void)activateIdleTimer;
  28. - (void)networkActivityStarted;
  29. - (BOOL)haveNetworkActivity;
  30. - (void)networkActivityStopped;
  31. - (void)cleanCache;
  32. - (void)openMediaFromManagedObject:(NSManagedObject *)file;
  33. - (void)openMovieFromURL:(NSURL *)url;
  34. - (void)openMediaList:(VLCMediaList*)list atIndex:(int)index;
  35. - (void)openMovieWithExternalSubtitleFromURL:(NSURL *)url externalSubURL:(NSString *)SubtitlePath;
  36. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  37. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  38. @property (nonatomic, readonly) VLCGoogleDriveTableViewController *googleDriveTableViewController;
  39. @property (nonatomic, readonly) VLCDownloadViewController *downloadViewController;
  40. @property (nonatomic, strong) UIWindow *window;
  41. @property (nonatomic, strong) GHRevealViewController *revealController;
  42. @property (nonatomic, strong) VLCMenuTableViewController *menuViewController;
  43. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  44. @end