mitsuba/tools/darwin/BWToolkitFramework.framework/Versions/A/Headers/BWTexturedSlider.h

26 lines
495 B
C
Raw Normal View History

//
// 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