2005-06-29 11:53:00 -04:00
|
|
|
/* TrackingCell */
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface TrackingCell : NSSliderCell {
|
2005-06-29 11:53:00 -04: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 19:28:09 -03:00
|
|
|
|
|
|
|
- (BOOL)isTracking;
|
2005-06-29 11:53:00 -04:00
|
|
|
|
|
|
|
@end
|