/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

  1. //
  2. // BWAnchoredButtonBar.h
  3. // BWToolkit
  4. //
  5. // Created by Brandon Walkin (www.brandonwalkin.com)
  6. // All code is provided under the New BSD license.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface BWAnchoredButtonBar : NSView
  10. {
  11. BOOL isResizable, isAtBottom, handleIsRightAligned;
  12. int selectedIndex;
  13. id splitViewDelegate;
  14. }
  15. @property BOOL isResizable, isAtBottom, handleIsRightAligned;
  16. @property int selectedIndex;
  17. // The mode of this bar with a resize handle makes use of some NSSplitView delegate methods. Use the splitViewDelegate for any custom delegate implementations
  18. // you'd like to provide.
  19. @property (assign) id splitViewDelegate;
  20. + (BOOL)wasBorderedBar;
  21. @end