| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // FLEXExplorerToolbar.h
- // Flipboard
- //
- // Created by Ryan Olson on 4/4/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class FLEXToolbarItem;
- @interface FLEXExplorerToolbar : UIView
- /// Toolbar item for selecting views.
- /// Users of the toolbar can configure the enabled/selected state and event targets/actions.
- @property (nonatomic, strong, readonly) FLEXToolbarItem *selectItem;
- /// Toolbar item for presenting a list with the view hierarchy.
- /// Users of the toolbar can configure the enabled state and event targets/actions.
- @property (nonatomic, strong, readonly) FLEXToolbarItem *hierarchyItem;
- /// Toolbar item for moving views.
- /// Users of the toolbar can configure the enabled/selected state and event targets/actions.
- @property (nonatomic, strong, readonly) FLEXToolbarItem *moveItem;
- /// Toolbar item for inspecting details of the selected view.
- /// Users of the toolbar can configure the enabled state and event targets/actions.
- @property (nonatomic, strong, readonly) FLEXToolbarItem *globalsItem;
- /// Toolbar item for hiding the explorer.
- /// Users of the toolbar can configure the event targets/actions.
- @property (nonatomic, strong, readonly) FLEXToolbarItem *closeItem;
- /// A view for moving the entire toolbar.
- /// Users of the toolbar can attach a pan gesture recognizer to decide how to reposition the toolbar.
- @property (nonatomic, strong, readonly) UIView *dragHandle;
- /// A color matching the overlay on color on the selected view.
- @property (nonatomic, strong) UIColor *selectedViewOverlayColor;
- /// Description text for the selected view displayed below the toolbar items.
- @property (nonatomic, copy) NSString *selectedViewDescription;
- /// Area where details of the selected view are shown
- /// Users of the toolbar can attach a tap gesture recognizer to show additional details.
- @property (nonatomic, strong, readonly) UIView *selectedViewDescriptionContainer;
- @end
|