26 lines
495 B
Objective-C
Executable File
26 lines
495 B
Objective-C
Executable 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
|