I subclassed the NSButtonCell class to give a different look to my button. I have the drawing code working fine. It's a rounded button filled with CGGradients to look like the iTunes playback controls. They are not completely the same, but they resemble enough to me.

Now my problem is the button type. I set the button type in the -[PlayerButtonCell initImageCell:] but I'm not getting it working to only draw the pushed in look when the button is pressed. I present you a piece of my code:

//
//  PlayerButtonCell.m
//  DownTube
//

#import "PlayerButtonCell.h"

@implementation PlayerButtonCell
/* MARK: Init */
- (id)initImageCell:(NSImage *)image {
    self = [super initImageCell:image];
    if(self != nil) {
        [self setImage:image];
        [self setButtonType:NSMomentaryPushInButton];
    }
    return self;
}

- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
    NSImage *myImage;
    NSBezierPath *myPath;
    NSRect myFrame;
    NSInteger myState;

    myFrame = NSInsetRect(cellFrame , STROKE_WIDTH / 2.0 , STROKE_WIDTH / 2.0);
    myImage = [self image];
    myState = [self state];

    NSLog(@"%d", [self buttonType]);

    /* Create bezier path */
    {
        myPath = [NSBezierPath bezierPathWithOvalInRect:myFrame];
    }

    /* Fill with background color */
    {
        /* Fill code here */
    }


    /* Draw gradient if on */
    if(myState == NSOffState) {
        /* Code to draw the button when it's not pushed in */

    } else {
        /* Code to draw the button when it IS pressed */
    }

    /* Stroke */
    {
        /* Code to stroke the bezier path's edge. */
    }
}
@end

As you can see, I check the pushed in status by the [NSButtonCell state] method. But the button cell acts like a check box, as in NSSwitchButton. This, I do not want. I want it to momentary light.

Hope someone can help me,
ief2

EDIT: I create a button with this code of it is of any use:

- (NSButton *)makeRefreshButton {
    NSButton *myButton;
    NSRect myFrame;
    NSImage *myIcon;
    PlayerButtonCell *myCell;

    myIcon = [NSImage imageNamed:kPlayerViewRefreshIconName];
    myCell = [[PlayerButtonCell alloc] initImageCell:myIcon];

    myFrame.origin = NSMakePoint(CONTENT_PADDING , CONTENT_PADDING);
    myFrame.size = CONTROL_PLAYBACK_SIZE;

    myButton = [[NSButton alloc] initWithFrame:myFrame];
    [myButton setCell:myCell];
    [myButton setButtonType:NSMomentaryPushInButton];

    [myCell release];

    return [myButton autorelease];
}
link|improve this question

feedback

2 Answers

have you tried [self setButtonType:NSMomentaryLightButton]; in the init?

link|improve this answer
I have tried all of them. :( – Ief2 Jun 19 '11 at 7:01
feedback
up vote 0 down vote accepted

Solved my problem. I also created an NSButton subclass which made use if this cell. I woke up with the idea this morning. I haven't tested it for the action and the target yet, if it still works. But it displays right.

Button code:

#import "PlayerButton.h"


@implementation PlayerButton
- (id)initWithFrame:(NSRect)frameRect  {
    self = [super initWithFrame:frameRect];
    if(self != nil) {
        PlayerButtonCell *myCell;
        myCell = [[PlayerButtonCell alloc] initImageCell:nil];
        [self setCell:myCell];
        [myCell release];
        }
    return self;
}

- (void)setImage:(NSImage *)i {
    [[self cell] setImage:i];
    [self setNeedsDisplay];
}

+ (Class)cellClass {
    return [PlayerButtonCell class];
}

- (void)mouseDown:(NSEvent *)ev {
    [self setState:NSOnState];
    [self setNeedsDisplay];
    [super mouseDown:ev];
}

- (void)mouseUp:(NSEvent *)theEvent {
    [self setState:NSOffState];
    [self setNeedsDisplay];
    [super mouseUp:theEvent];
}

- (void)drawRect:(NSRect)fr {
    NSView *myView = [self superview];
    if(myView) {
        [[self cell] drawWithFrame:[self bounds] inView:myView];
    }
}
@end

I hope someone else gets helped by this,
ief2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.