Vuo 2.4.4
Loading...
Searching...
No Matches
VuoToolbarTitleCell.mm
Go to the documentation of this file.
1
11
12@implementation VuoToolbarTitleCell
13
14- (NSRect)titleRectForBounds:(NSRect)frame
15{
16 CGFloat stringHeight = self.attributedStringValue.size.height;
17 NSRect titleRect = [super titleRectForBounds:frame];
18 CGFloat oldOriginY = frame.origin.y;
19 titleRect.origin.y = frame.origin.y + (frame.size.height - stringHeight) / 2.0;
20 titleRect.size.height = titleRect.size.height - (titleRect.origin.y - oldOriginY);
21 return titleRect;
22}
23
24- (void)drawInteriorWithFrame:(NSRect)cFrame inView:(NSView*)cView
25{
26 [super drawInteriorWithFrame:[self titleRectForBounds:cFrame] inView:cView];
27}
28
29@end