Я создал подкласс класса NSButtonCell, чтобы по-другому взглянуть на мою кнопку. У меня есть код рисования работает нормально. Это закругленная кнопка с CGGradients, похожая на элементы управления воспроизведением в iTunes. Они не полностью одинаковы, но они достаточно похожи на меня.
Теперь моя проблема - тип кнопки. Я установил тип кнопки в -[PlayerButtonCell initImageCell:]
, но у меня не получается, чтобы он рисовал только толчок в нажатом состоянии, когда кнопка нажата. Представляю вам кусок моего кода:
//
// 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
Как вы можете видеть, я проверяю статус входа в систему методом [NSButtonCell state]
. Но ячейка кнопки действует как флажок, как в NSSwitchButton
. Такого я не хочу. Я хочу, чтобы это было на мгновение.
Надеюсь, кто-нибудь может мне помочь,
ief2
EDIT:
Я создаю кнопку с этим кодом, который имеет какое-либо применение:
- (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];
}