I'm dealing with an issue that is driving me crazy.
I have an NSTableView with columns. One of them with my custom cell:
celaStepper * celastepper = [[celaStepper alloc] init];
[column setDataCell:celastepper];
celaStepper is a subclassed NSActionCell:
- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}
return self;
}
-(NSColor *)highlightColorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
return nil;
}
-(void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
int ampladastep = 5;
NSString * valortexte = [[NSString alloc]initWithFormat:@"%@",[self objectValue]];
valortexte = [valortexte stringByReplacingOccurrencesOfString:@"." withString:@","];
NSTextFieldCell * textCell = [[NSTextFieldCell alloc] initTextCell:valortexte];
if([self isHighlighted]){
NSMutableDictionary *attrs = [NSMutableDictionary dictionaryWithCapacity:2];
NSColor * color = [NSColor whiteColor];
[attrs setObject:color forKey:NSForegroundColorAttributeName];
[attrs setObject:[NSFont fontWithName:@"Lucida Grande" size:13] f orKey:NSFontAttributeName];
[textCell setAttributedStringValue:[[NSAttributedString alloc]initWithString:valortexte attributes:attrs]];
}
[textCell setEditable:NO];
[textCell setUsesSingleLineMode:YES];
[textCell setLineBreakMode:NSLineBreakByTruncatingMiddle];
NSStepperCell * stepperCell = [[NSStepperCell alloc] init];
steppercell = stepperCell;
[stepperCell setControlSize:NSSmallControlSize];
[stepperCell setEnabled:YES];
NSRect stepFrame = NSMakeRect(cellFrame.origin.x + cellFrame.size.width - ampladastep - 10, cellFrame.origin.y, ampladastep, cellFrame.size.height);
NSRect textFrame = NSMakeRect(cellFrame.origin.x + 4, cellFrame.origin.y+4, stepFrame.origin.x - 5 - (cellFrame.origin.x + 5), cellFrame.size.height);
[textCell drawWithFrame:textFrame inView:controlView];
[stepperCell drawWithFrame:stepFrame inView:controlView];
[super drawInteriorWithFrame:cellFrame inView:controlView];
}
Drawing result:
column unselected: http://i43.tinypic.com/2n72g7s.png
column selected: http://i40.tinypic.com/rbwgti.png
All fine: drawing column, resizing column, moving column, etc. ALL PERFECT.
The problem is dealing with mouse clicks: my stepper looks like a static image (no problem with NSTextFieldCell because acts as a label -not editable-). When I click arrow up or arrow down stepper is not highlighted. I have tried with a long list of methods that I have read on internet: hitTestForEvent, prefersTrackingUntilMouseUp, startTrackingAt, etc. I think I have tested all possible methods with no result.
Could someone help me? I want my stepper highlighted when pressed and know if user have clicked step up or down.
Thanks for all !!!!