VLCSidebarController.h 981 B

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * VLCSidebarController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Author: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <Foundation/Foundation.h>
  13. @interface VLCSidebarController : NSObject
  14. + (instancetype)sharedInstance;
  15. - (void)hideSidebar;
  16. - (void)toggleSidebar;
  17. - (void)resizeContentView;
  18. - (void)selectRowAtIndexPath:(NSIndexPath *)indexPath scrollPosition:(UITableViewScrollPosition)scrollPosition;
  19. - (void)performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem;
  20. @property (readonly) UIViewController *fullViewController;
  21. @property (readwrite, retain) UIViewController *contentViewController;
  22. @end