| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // FLEXExplorerViewController.h
- // Flipboard
- //
- // Created by Ryan Olson on 4/4/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol FLEXExplorerViewControllerDelegate;
- @interface FLEXExplorerViewController : UIViewController
- @property (nonatomic, weak) id <FLEXExplorerViewControllerDelegate> 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 <NSObject>
- - (void)explorerViewControllerDidFinish:(FLEXExplorerViewController *)explorerViewController;
- @end
|