VLCAppDelegate.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*****************************************************************************
  2. * VLCAppDelegate.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2015 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 "VLCHTTPUploaderController.h"
  18. #import "GHRevealViewController.h"
  19. #import "VLCMenuTableViewController.h"
  20. #import "VLCDownloadViewController.h"
  21. @class VLCPlaylistViewController;
  22. @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
  23. - (void)updateMediaList;
  24. - (void)disableIdleTimer;
  25. - (void)activateIdleTimer;
  26. - (void)networkActivityStarted;
  27. - (BOOL)haveNetworkActivity;
  28. - (void)networkActivityStopped;
  29. - (void)cleanCache;
  30. - (void)presentMovieViewController;
  31. - (void)openMediaFromManagedObject:(NSManagedObject *)file;
  32. - (void)openMovieFromURL:(NSURL *)url;
  33. - (void)openMovieWithExternalSubtitleFromURL:(NSURL *)url externalSubURL:(NSString *)SubtitlePath;
  34. @property (nonatomic, readonly) VLCPlaylistViewController *playlistViewController;
  35. @property (nonatomic, readonly) VLCDropboxTableViewController *dropboxTableViewController;
  36. @property (nonatomic, readonly) VLCDownloadViewController *downloadViewController;
  37. @property (nonatomic, strong) UIWindow *window;
  38. @property (nonatomic, strong) GHRevealViewController *revealController;
  39. @property (nonatomic, strong) VLCMenuTableViewController *menuViewController;
  40. @property (nonatomic) VLCHTTPUploaderController *uploadController;
  41. @property (nonatomic, readonly) BOOL passcodeValidated;
  42. @end