/**
An NSSliderCell controls the behaviour and appearance of an associated NSSlider, or a single slider in an NSMatrix. Tick marks are defined in the official standard, but are not implemented in GNUstep.
An NSSliderCell can be customized through its
set...
methods. If these do not provide enough
customization, a subclass can be created, which overrides any of the
follwing methods: knobRectFlipped:
,
drawBarInside:flipped:
, drawKnob:
, or
prefersTrackingUntilMouseUp
.
Draws the slider's track, not including the bezel, in aRect flipped indicates whether the control view has a flipped coordinate system.
Do not call this method directly, it is provided for subclassing only.
*/ - (void) drawBarInside: (NSRect)rect flipped: (BOOL)flipped { [[NSColor scrollBarColor] set]; NSRectFill(rect); } /**Returns the rect in which to draw the knob, based on the
coordinate system of the NSSlider or NSMatrix this NSSliderCell is
associated with. flipped indicates whether or not that
coordinate system is flipped, which can be determined by sending the
isFlipped
message to the associated NSSlider or
NSMatrix.
Do not call this method directly. It is included for subclassing only.
*/ - (NSRect) knobRectFlipped: (BOOL)flipped { NSImage *image = [_knobCell image]; NSSize size; NSPoint origin; float floatValue = [self floatValue]; if (_isVertical && flipped) { floatValue = _maxValue + _minValue - floatValue; } floatValue = (floatValue - _minValue) / (_maxValue - _minValue); size = [image size]; if (_isVertical == YES) { origin = _trackRect.origin; origin.y += (_trackRect.size.height - size.height) * floatValue; } else { origin = _trackRect.origin; origin.x += (_trackRect.size.width - size.width) * floatValue; } return NSMakeRect (origin.x, origin.y, size.width, size.height); } /**Calculates the rect in which to draw the knob, then calls
drawKnob:
Before calling this method, a
lockFocus
message must be sent to the cell's control
view.
When subclassing NSSliderCell, do not override this method.
Override drawKnob:
instead.
Draws the knob in knobRect. Before calling this
method, a lockFocus
message must be sent to the cell's
control view.
Do not call this method directly. It is included for subclassing only.
*/ - (void) drawKnob: (NSRect)knobRect { [_knobCell drawInteriorWithFrame: knobRect inView: _control_view]; } - (void) drawInteriorWithFrame: (NSRect)cellFrame inView: (NSView*)controlView { BOOL vertical = (cellFrame.size.height > cellFrame.size.width); NSImage *image; NSSize size; cellFrame = [self drawingRectForBounds: cellFrame]; [controlView lockFocus]; if (vertical != _isVertical) { if (vertical == YES) { image = [NSImage imageNamed: @"common_SliderVert"]; size = [image size]; [_knobCell setImage: image]; [image setSize: NSMakeSize (cellFrame.size.width, size.height)]; } else { image = [NSImage imageNamed: @"common_SliderHoriz"]; size = [image size]; [_knobCell setImage: image]; [image setSize: NSMakeSize (size.width, cellFrame.size.height)]; } } _isVertical = vertical; _trackRect = cellFrame; [self drawBarInside: cellFrame flipped: [controlView isFlipped]]; /* Draw title - Uhmmm - shouldn't this better go into drawBarInside:flipped: ? */ if (_isVertical == NO) { [_titleCell drawInteriorWithFrame: cellFrame inView: controlView]; } [self drawKnob]; [controlView unlockFocus]; } - (BOOL) isOpaque { return YES; } /** Returns the thickness of the slider's knob. This value is in pixels, and is the size of the knob along the slider's track. */ - (float) knobThickness { NSImage *image = [_knobCell image]; NSSize size = [image size]; return _isVertical ? size.height : size.width; } /** Sets the thickness of the knob to thickness, in pixels. This value sets the amount of space which the knob takes up in the slider's track. */ - (void) setKnobThickness: (float)thickness { NSImage *image = [_knobCell image]; NSSize size = [image size]; if (_isVertical == YES) size.height = thickness; else size.width = thickness; [image setSize: size]; } /** Sets the value by which the slider will be be incremented when with the ALT key down to increment. */ - (void) setAltIncrementValue: (double)increment { _altIncrementValue = increment; } /** Sets the minimum value that the sliders represents to maxValue. */ - (void) setMinValue: (double)aDouble { _minValue = aDouble; } /** Sets the maximum value that the sliders represents to maxValue. */ - (void) setMaxValue: (double)aDouble { _maxValue = aDouble; } /** Returns the cell used to draw the title. */ - (id) titleCell { return _titleCell; } /** Returns the colour used to draw the title. */ - (NSColor*) titleColor { return [_titleCell textColor]; } /** Returns the font used to draw the title. */ - (NSFont*) titleFont { return [_titleCell font]; } /** Sets the title of the slider to barTitle. This title is displayed on the slider's track, behind the knob. */ - (void) setTitle: (NSString*)title { [_titleCell setStringValue: title]; } - (NSString*) title { return [_titleCell stringValue]; } /** Sets the cell used to draw the title to titleCell. */ - (void) setTitleCell: (NSCell*)aCell { ASSIGN(_titleCell, aCell); } /** Sets the colour with which the title will be drawn to color. */ - (void) setTitleColor: (NSColor*)color { [_titleCell setTextColor: color]; } /** Sets the font with which the title will be drawm to font. */ - (void) setTitleFont: (NSFont*)font { [_titleCell setFont: font]; } /** Returns whether or not the slider is vertical. If, for some reason, this cannot be determined, for such reasons as the slider is not yet displayed, this method returns -1. Generally, a slider is considered vertical if its height is greater than its width. */ - (int) isVertical { return _isVertical; } /** Returns the value by which the slider is incremented when the user holds down the ALT key. */ - (double) altIncrementValue { return _altIncrementValue; } /**The default implementation returns YES
, so that the
slider continues to track the user's movement even if the cursor
leaves the slider's track.
Do not call this method directly. Override it in subclasses where the tracking behaviour needs to be different.
*/ + (BOOL) prefersTrackingUntilMouseUp { return YES; } /** Returns the rect of the track, minus the bezel. */ - (NSRect) trackRect { return _trackRect; } /** Returns the minimum value that the slider represents. */ - (double) minValue { return _minValue; } /** Returns the maximum value that the slider represents. */ - (double) maxValue { return _maxValue; } - (float) floatValue { float aFloat = [super floatValue]; if (aFloat < _minValue) return _minValue; else if (aFloat > _maxValue) return _maxValue; return aFloat; } // ticks - (BOOL) allowsTickMarkValuesOnly { return _allowsTickMarkValuesOnly; } - (double) closestTickMarkValueToValue: (double)aValue { if (aValue < _minValue) return _minValue; else if (aValue > _maxValue) return _maxValue; if (_numberOfTickMarks == 0) return aValue; // FIXME return 0.0; } - (int) indexOfTickMarkAtPoint: (NSPoint)point { // FIXME return 0; } - (int) numberOfTickMarks { return _numberOfTickMarks; } - (NSRect) rectOfTickMarkAtIndex: (int)index { // FIXME return NSZeroRect; } - (void) setAllowsTickMarkValuesOnly: (BOOL)flag { _allowsTickMarkValuesOnly = flag; } - (void) setNumberOfTickMarks: (int)numberOfTickMarks { _numberOfTickMarks = numberOfTickMarks; } - (void) setTickMarkPosition: (NSTickMarkPosition)position { _tickMarkPosition = position; } - (NSTickMarkPosition) tickMarkPosition { return _tickMarkPosition; } - (double) tickMarkValueAtIndex: (int)index { if (index >= _numberOfTickMarks) return _maxValue; if (index <= 0) return _minValue; return _minValue + index * (_maxValue - _minValue) / _numberOfTickMarks; } - (id) initWithCoder: (NSCoder*)decoder { self = [super initWithCoder: decoder]; [decoder decodeValuesOfObjCTypes: "fffi", &_minValue, &_maxValue, &_altIncrementValue, &_isVertical]; [decoder decodeValueOfObjCType: @encode(id) at: &_titleCell]; [decoder decodeValueOfObjCType: @encode(id) at: &_knobCell]; return self; } - (void) encodeWithCoder: (NSCoder*)coder { [super encodeWithCoder: coder]; [coder encodeValuesOfObjCTypes: "fffi", &_minValue, &_maxValue, &_altIncrementValue, &_isVertical]; [coder encodeValueOfObjCType: @encode(id) at: &_titleCell]; [coder encodeValueOfObjCType: @encode(id) at: &_knobCell]; } @end