/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSlider.h

http://rtm2cocoa.googlecode.com/ · C++ Header · 25 lines · 13 code · 5 blank · 7 comment · 0 complexity · 2e9880784e310ce43edb9a85bbea54c2 MD5 · raw file

  1. //
  2. // BWTexturedSlider.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 BWTexturedSlider : NSSlider
  10. {
  11. int trackHeight, indicatorIndex;
  12. NSRect sliderCellRect;
  13. NSButton *minButton, *maxButton;
  14. }
  15. @property int indicatorIndex;
  16. @property (retain) NSButton *minButton;
  17. @property (retain) NSButton *maxButton;
  18. - (int)trackHeight;
  19. - (void)setTrackHeight:(int)newTrackHeight;
  20. @end