// // FLEXExplorerViewController.h // Flipboard // // Created by Ryan Olson on 4/4/14. // Copyright (c) 2014 Flipboard. All rights reserved. // #import @protocol FLEXExplorerViewControllerDelegate; @interface FLEXExplorerViewController : UIViewController @property (nonatomic, weak) id delegate; - (BOOL)shouldReceiveTouchAtWindowPoint:(CGPoint)pointInWindowCoordinates; - (BOOL)wantsWindowToBecomeKey; // Keyboard shortcut helpers - (void)toggleSelectTool; - (void)toggleMoveTool; - (void)toggleViewsTool; - (void)toggleMenuTool; - (void)handleDownArrowKeyPressed; - (void)handleUpArrowKeyPressed; - (void)handleRightArrowKeyPressed; - (void)handleLeftArrowKeyPressed; @end @protocol FLEXExplorerViewControllerDelegate - (void)explorerViewControllerDidFinish:(FLEXExplorerViewController *)explorerViewController; @end