From: Joseph Spiros Date: Wed, 1 Oct 2003 19:19:55 +0000 (+0000) Subject: Updated ITButtonCell with custom drawing of title. Stupid NSButtonCell X-Git-Tag: v0.1~26 X-Git-Url: http://git.ithinksw.org/ITKit.git/commitdiff_plain/5dfdc05f6f8ff481bac0251bbe842366160df214 Updated ITButtonCell with custom drawing of title. Stupid NSButtonCell not aligning things :(. --- diff --git a/ITButtonCell.m b/ITButtonCell.m index 0f60271..30ac956 100755 --- a/ITButtonCell.m +++ b/ITButtonCell.m @@ -50,7 +50,18 @@ { if ( _subStyle == ITGrayRoundedBezelStyle ) { [self drawGrayRoundedBezelWithFrame:rect inView:controlView]; - [super drawInteriorWithFrame:rect inView:controlView]; + if ( [self attributedTitle] ) { + NSPoint stringOrigin; + NSSize stringSize; + stringSize = [[self attributedTitle] size]; + stringOrigin.x = rect.origin.x + (rect.size.width - stringSize.width)/2; + stringOrigin.y = (rect.origin.y + (rect.size.height - stringSize.height)/2) - 2; + [controlView lockFocus]; + [[self attributedTitle] drawAtPoint:stringOrigin]; + [controlView unlockFocus]; + } else { + [super drawInteriorWithFrame:rect inView:controlView]; + } [[controlView superview] setNeedsDisplay:YES]; } else { [super drawWithFrame:rect inView:controlView];