I'm trying to implement a custom slider in Cocoa with 5 values. See my demo project, which can be downloaded here: http://s000.tinyupload.com/index.php?file_id=07311576247413689572.
I've subclassed the NSSliderCell and implemented methods like drawKnob:(NSRect)knobRect
and drawBarInside:(NSRect)cellFrame flipped:(BOOL)flipped
etc.
I'm facing some issues:
drawBarInside:(NSRect)cellFrame flipped:(BOOL)flipped
I change the height of the frame to 41px as well, but the entire background is not visible. Why?I found a mistake in your calculation of the x position of the knob rectangle: You used the height of the image where you should have used the width.
The cell drawing is being clipped to the frame of the control. Maybe you could expand the control frame when your cell awakes.
You need to use the NSImage method drawInRect:fromRect:operation:fraction:respectFlipped:hints:
, and pass YES for the respectFlipped:
parameter. Apple's controls generally do use flipped coordinates.
Added: Expanding the frame in awakeFromNib
doesn't seem to work, the frame gets set back. Here's something that does work. Instead of overriding drawBarInside:flipped:
, add this override:
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
NSRect controlFrame = [controlView frame];
float bgHeight = self.backgroundImage.size.height;
if (controlFrame.size.height < bgHeight)
{
controlFrame.size.height = bgHeight;
[controlView setFrame: controlFrame];
}
[self.backgroundImage
drawInRect: [controlView bounds]
fromRect: NSZeroRect
operation: NSCompositeSourceOver
fraction: 1.0
respectFlipped: YES
hints: NULL];
[self drawKnob];
}