15 lines
317 B
C
15 lines
317 B
C
|
/* TrackingCell */
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface TrackingCell : NSSliderCell
|
||
|
{
|
||
|
BOOL tracking;
|
||
|
}
|
||
|
|
||
|
- (BOOL)startTrackingAt:(NSPoint)startPoint inView:(NSView *)controlView;
|
||
|
- (void)stopTracking:(NSPoint)lastPoint at:(NSPoint)stopPoint inView:(NSView *)controlView mouseIsUp:(BOOL)flags;
|
||
|
- (BOOL)tracking;
|
||
|
|
||
|
@end
|