/BWToolkitFramework.framework/Versions/A/Headers/BWAnchoredButtonBar.h
http://rtm2cocoa.googlecode.com/ · C++ Header · 27 lines · 12 code · 6 blank · 9 comment · 0 complexity · 9fd6a7107258a934ddf5198568196299 MD5 · raw file
- //
- // BWAnchoredButtonBar.h
- // BWToolkit
- //
- // Created by Brandon Walkin (www.brandonwalkin.com)
- // All code is provided under the New BSD license.
- //
- #import <Cocoa/Cocoa.h>
- @interface BWAnchoredButtonBar : NSView
- {
- BOOL isResizable, isAtBottom, handleIsRightAligned;
- int selectedIndex;
- id splitViewDelegate;
- }
- @property BOOL isResizable, isAtBottom, handleIsRightAligned;
- @property int selectedIndex;
- // The mode of this bar with a resize handle makes use of some NSSplitView delegate methods. Use the splitViewDelegate for any custom delegate implementations
- // you'd like to provide.
- @property (assign) id splitViewDelegate;
- + (BOOL)wasBorderedBar;
- @end