2005-06-29 15:53:00 +00:00
|
|
|
/* TrackingCell */
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface TrackingCell : NSSliderCell {
|
2005-06-29 15:53:00 +00:00
|
|
|
BOOL tracking;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)startTrackingAt:(NSPoint)startPoint inView:(NSView *)controlView;
|
|
|
|
- (void)stopTracking:(NSPoint)lastPoint at:(NSPoint)stopPoint inView:(NSView *)controlView mouseIsUp:(BOOL)flags;
|
2009-02-22 22:28:09 +00:00
|
|
|
|
|
|
|
- (BOOL)isTracking;
|
2005-06-29 15:53:00 +00:00
|
|
|
|
|
|
|
@end
|