1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/cocoa/tab_cell.h"
#import "third_party/GTM/AppKit/GTMTheme.h"
#import "third_party/GTM/AppKit/GTMNSColor+Luminance.h"
#define INSET_MULTIPLIER 2.0/3.0
#define CP1_MULTIPLIER 1.0/3.0
#define CP2_MULTIPLIER 3.0/8.0
@implementation TabCell
- (id)initTextCell:(NSString *)aString {
self = [super initTextCell:aString];
if (self != nil) {
// nothing for now...
}
return self;
}
- (NSBackgroundStyle)interiorBackgroundStyle {
return [[GTMTheme defaultTheme]
interiorBackgroundStyleForStyle:GTMThemeStyleTabBarSelected
active:YES];
}
// Override drawing the button so that it looks like a Chromium tab instead
// of just a normal MacOS button.
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
[[NSGraphicsContext currentContext] saveGraphicsState];
NSRect rect = cellFrame;
BOOL active =
[[controlView window] isKeyWindow] || [[controlView window] isMainWindow];
BOOL selected = [(NSButton *)controlView state];
// Inset by 0.5 in order to draw on pixels rather than on borders (which would
// cause blurry pixels). Decrease height by 1 in order to move away from the
// edge for the dark shadow.
rect = NSInsetRect(rect, 0.5, selected ? 0 : -0.5);
rect.size.height -= 1;
rect.origin.y += 1;
NSPoint bottomLeft = NSMakePoint(NSMinX(rect), NSMaxY(rect));
NSPoint bottomRight = NSMakePoint(NSMaxX(rect), NSMaxY(rect));
NSPoint topRight =
NSMakePoint(NSMaxX(rect) - INSET_MULTIPLIER * NSHeight(rect),
NSMinY(rect));
NSPoint topLeft =
NSMakePoint(NSMinX(rect) + INSET_MULTIPLIER * NSHeight(rect),
NSMinY(rect));
float baseControlPointOutset = NSHeight(rect) * CP1_MULTIPLIER;
float bottomControlPointInset = NSHeight(rect) * CP2_MULTIPLIER;
// Outset many of these values by 1 to cause the fill to bleed outside the
// clip area
NSBezierPath *path = [NSBezierPath bezierPath];
[path moveToPoint:NSMakePoint(bottomLeft.x - 1, bottomLeft.y + 1)];
[path lineToPoint:NSMakePoint(bottomLeft.x - 1, bottomLeft.y)];
[path lineToPoint:bottomLeft];
[path curveToPoint:topLeft
controlPoint1:NSMakePoint(bottomLeft.x + baseControlPointOutset,
bottomLeft.y)
controlPoint2:NSMakePoint(topLeft.x - bottomControlPointInset,
topLeft.y)];
[path lineToPoint:topRight];
[path curveToPoint:bottomRight
controlPoint1:NSMakePoint(topRight.x + bottomControlPointInset,
topRight.y)
controlPoint2:NSMakePoint(bottomRight.x - baseControlPointOutset,
bottomRight.y)];
[path lineToPoint:NSMakePoint(bottomRight.x + 1, bottomRight.y)];
[path lineToPoint:NSMakePoint(bottomRight.x + 1, bottomRight.y + 1)];
GTMTheme *theme = [GTMTheme defaultTheme];
NSGradient *gradient = nil;
if (selected) {
gradient = [theme gradientForStyle:GTMThemeStyleTabBarSelected
active:active];
// Stroke with a translucent black
[[NSColor colorWithCalibratedWhite:0.0 alpha:active ? 0.5 : 0.3] set];
[[NSGraphicsContext currentContext] saveGraphicsState];
NSShadow *shadow = [[[NSShadow alloc] init] autorelease];
[shadow setShadowOffset:NSMakeSize(2, -1)];
[shadow setShadowBlurRadius:2.0];
[path fill];
[[NSGraphicsContext currentContext] restoreGraphicsState];
} else {
gradient = [theme gradientForStyle:GTMThemeStyleTabBarDeselected
active:active];
// Stroke with a translucent black
[[NSColor colorWithCalibratedWhite:0.0 alpha:active ? 0.3 : 0.1] set];
}
[[NSGraphicsContext currentContext] saveGraphicsState];
[[NSBezierPath bezierPathWithRect:NSOffsetRect(cellFrame, 0, -1)] addClip];
[[NSColor colorWithCalibratedWhite:0.0 alpha:0.2] set];
[path setLineWidth:selected ? 2.0 : 1.0];
[path stroke];
[[NSGraphicsContext currentContext] restoreGraphicsState];
[gradient drawInBezierPath:path angle:90.0];
if (!selected) {
[path addClip];
NSRect borderRect, contentRect;
NSDivideRect(rect, &borderRect, &contentRect, 1, NSMaxYEdge);
[[NSColor colorWithCalibratedWhite:0.0 alpha:0.4] set];
NSRectFillUsingOperation(borderRect, NSCompositeSourceOver);
}
[[NSGraphicsContext currentContext] restoreGraphicsState];
// Inset where the text and favicon are drawn to keep them away from the
// sloping edges of the tab and the close box.
int kInteriorInset = cellFrame.size.height / 2.0;
NSRect frame = NSInsetRect(cellFrame, kInteriorInset, 0);
frame.size.width -= 16; // Inset for close box
[self drawInteriorWithFrame:frame
inView:controlView];
}
- (void)highlight:(BOOL)flag
withFrame:(NSRect)cellFrame
inView:(NSView *)controlView {
// Don't do normal highlighting
}
@end
|