20 lines
303 B
Objective-C
Executable File
20 lines
303 B
Objective-C
Executable File
//
|
|
// BWTexturedSliderCell.h
|
|
// BWToolkit
|
|
//
|
|
// Created by Brandon Walkin (www.brandonwalkin.com)
|
|
// All code is provided under the New BSD license.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface BWTexturedSliderCell : NSSliderCell
|
|
{
|
|
BOOL isPressed;
|
|
int trackHeight;
|
|
}
|
|
|
|
@property int trackHeight;
|
|
|
|
@end
|