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
|
// 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/bookmark_bar_toolbar_view.h"
#include "app/gfx/canvas_paint.h"
#include "app/theme_provider.h"
#include "base/gfx/rect.h"
#include "chrome/browser/browser_theme_provider.h"
#import "chrome/browser/cocoa/browser_window_controller.h"
#import "chrome/browser/cocoa/bookmark_bar_constants.h"
#import "chrome/browser/cocoa/bookmark_bar_controller.h"
#include "chrome/browser/ntp_background_util.h"
#import "third_party/GTM/AppKit/GTMTheme.h"
const CGFloat kBorderRadius = 3.0;
@interface BookmarkBarToolbarView (Private)
- (void)drawRectAsFloating:(NSRect)rect;
@end
@implementation BookmarkBarToolbarView
- (BOOL)isOpaque {
return [controller_ drawAsFloatingBar];
}
- (void)drawRect:(NSRect)rect {
if ([controller_ drawAsFloatingBar]) {
[self drawRectAsFloating:rect];
} else {
NSPoint phase = [self gtm_themePatternPhase];
[[NSGraphicsContext currentContext] setPatternPhase:phase];
[self drawBackground];
}
}
- (void)layoutViews {
if ([controller_ drawAsFloatingBar]) {
// The internal bookmark bar should have padding to center it.
NSRect frame = [self frame];
[buttonView_ setFrame:
NSMakeRect(bookmarks::kNTPBookmarkBarPadding,
bookmarks::kNTPBookmarkBarPadding,
NSWidth(frame) -
bookmarks::kNTPBookmarkBarPadding,
NSHeight(frame) -
bookmarks::kNTPBookmarkBarPadding)];
} else {
// The frame of our child should be equal to our frame.
NSRect frame = [self frame];
[buttonView_ setFrame:NSMakeRect(0, 0, NSWidth(frame), NSHeight(frame))];
}
}
@end
@implementation BookmarkBarToolbarView (Private)
- (void)drawRectAsFloating:(NSRect)rect {
NSRect bounds = [self bounds];
ThemeProvider* themeProvider = [controller_ themeProvider];
if (!themeProvider)
return;
NSGraphicsContext* theContext = [NSGraphicsContext currentContext];
[theContext saveGraphicsState];
// Draw the background
{
// CanvasPaint draws to the NSGraphicsContext during its destructor, so
// explicitly scope this.
gfx::CanvasPaint canvas(rect, true);
gfx::Rect area(0, 0, NSWidth(rect), NSHeight(rect));
NtpBackgroundUtil::PaintBackgroundDetachedMode(themeProvider, &canvas,
area, [controller_ currentTabContentsHeight]);
}
// Draw our bookmark bar border on top of the background.
NSRect frame_rect =
NSMakeRect(bookmarks::kNTPBookmarkBarPadding,
bookmarks::kNTPBookmarkBarPadding,
NSWidth(bounds) - 2 * bookmarks::kNTPBookmarkBarPadding,
NSHeight(bounds) - 2 * bookmarks::kNTPBookmarkBarPadding);
// Now draw a beizer path with rounded rectangles around the area
NSBezierPath* border =
[NSBezierPath bezierPathWithRoundedRect:frame_rect
xRadius:kBorderRadius
yRadius:kBorderRadius];
[themeProvider->GetNSColor(BrowserThemeProvider::COLOR_TOOLBAR) set];;
[border fill];
[themeProvider->GetNSColor(BrowserThemeProvider::COLOR_NTP_HEADER) set];
[border stroke];
[theContext restoreGraphicsState];
}
@end // @implementation BookmarkBarToolbarView
|