/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
- //
- // BWTexturedSlider.h
- // BWToolkit
- //
- // Created by Brandon Walkin (www.brandonwalkin.com)
- // All code is provided under the New BSD license.
- //
- #import <Cocoa/Cocoa.h>
- @interface BWTexturedSlider : NSSlider
- {
- int trackHeight, indicatorIndex;
- NSRect sliderCellRect;
- NSButton *minButton, *maxButton;
- }
- @property int indicatorIndex;
- @property (retain) NSButton *minButton;
- @property (retain) NSButton *maxButton;
- - (int)trackHeight;
- - (void)setTrackHeight:(int)newTrackHeight;
- @end