Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: chrome/browser/ui/cocoa/infobars/infobar_gradient_view.mm

Issue 240193003: Move Infobars core files to the Infobars component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nib name on mac Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/cocoa/infobars/infobar_gradient_view.h" 5 #include "chrome/browser/ui/cocoa/infobars/infobar_gradient_view.h"
6 6
7 #include "base/mac/scoped_nsobject.h" 7 #include "base/mac/scoped_nsobject.h"
8 #include "chrome/browser/infobars/infobar.h"
9 #import "chrome/browser/themes/theme_properties.h" 8 #import "chrome/browser/themes/theme_properties.h"
10 #import "chrome/browser/ui/cocoa/browser_window_controller.h" 9 #import "chrome/browser/ui/cocoa/browser_window_controller.h"
11 #import "chrome/browser/ui/cocoa/infobars/infobar_container_controller.h" 10 #import "chrome/browser/ui/cocoa/infobars/infobar_container_controller.h"
12 #import "chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h" 11 #import "chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h"
13 #import "chrome/browser/ui/cocoa/nsview_additions.h" 12 #import "chrome/browser/ui/cocoa/nsview_additions.h"
14 #import "chrome/browser/ui/cocoa/themed_window.h" 13 #import "chrome/browser/ui/cocoa/themed_window.h"
14 #include "components/infobars/core/infobar.h"
15 #include "skia/ext/skia_utils_mac.h" 15 #include "skia/ext/skia_utils_mac.h"
16 #include "ui/base/theme_provider.h" 16 #include "ui/base/theme_provider.h"
17 17
18 @implementation InfoBarGradientView 18 @implementation InfoBarGradientView
19 19
20 @synthesize arrowHeight = arrowHeight_; 20 @synthesize arrowHeight = arrowHeight_;
21 @synthesize arrowHalfWidth = arrowHalfWidth_; 21 @synthesize arrowHalfWidth = arrowHalfWidth_;
22 @synthesize arrowX = arrowX_; 22 @synthesize arrowX = arrowX_;
23 @synthesize hasTip = hasTip_; 23 @synthesize hasTip = hasTip_;
24 24
25 - (id)initWithFrame:(NSRect)frame { 25 - (id)initWithFrame:(NSRect)frame {
26 if ((self = [super initWithFrame:frame])) { 26 if ((self = [super initWithFrame:frame])) {
27 hasTip_ = YES; 27 hasTip_ = YES;
28 } 28 }
29 return self; 29 return self;
30 } 30 }
31 31
32 - (id)initWithCoder:(NSCoder*)decoder { 32 - (id)initWithCoder:(NSCoder*)decoder {
33 if ((self = [super initWithCoder:decoder])) { 33 if ((self = [super initWithCoder:decoder])) {
34 hasTip_ = YES; 34 hasTip_ = YES;
35 } 35 }
36 return self; 36 return self;
37 } 37 }
38 38
39 - (void)setInfobarType:(InfoBarDelegate::Type)infobarType { 39 - (void)setInfobarType:(infobars::InfoBarDelegate::Type)infobarType {
40 SkColor topColor = InfoBar::GetTopColor(infobarType); 40 SkColor topColor = infobars::InfoBar::GetTopColor(infobarType);
41 SkColor bottomColor = InfoBar::GetBottomColor(infobarType); 41 SkColor bottomColor = infobars::InfoBar::GetBottomColor(infobarType);
42 base::scoped_nsobject<NSGradient> gradient([[NSGradient alloc] 42 base::scoped_nsobject<NSGradient> gradient([[NSGradient alloc]
43 initWithStartingColor:gfx::SkColorToCalibratedNSColor(topColor) 43 initWithStartingColor:gfx::SkColorToCalibratedNSColor(topColor)
44 endingColor:gfx::SkColorToCalibratedNSColor(bottomColor)]); 44 endingColor:gfx::SkColorToCalibratedNSColor(bottomColor)]);
45 [self setGradient:gradient]; 45 [self setGradient:gradient];
46 } 46 }
47 47
48 - (NSColor*)strokeColor { 48 - (NSColor*)strokeColor {
49 ui::ThemeProvider* themeProvider = [[self window] themeProvider]; 49 ui::ThemeProvider* themeProvider = [[self window] themeProvider];
50 if (!themeProvider) 50 if (!themeProvider)
51 return [NSColor blackColor]; 51 return [NSColor blackColor];
52 52
53 BOOL active = [[self window] isMainWindow]; 53 BOOL active = [[self window] isMainWindow];
54 return themeProvider->GetNSColor( 54 return themeProvider->GetNSColor(
55 active ? ThemeProperties::COLOR_TOOLBAR_STROKE : 55 active ? ThemeProperties::COLOR_TOOLBAR_STROKE :
56 ThemeProperties::COLOR_TOOLBAR_STROKE_INACTIVE); 56 ThemeProperties::COLOR_TOOLBAR_STROKE_INACTIVE);
57 } 57 }
58 58
59 - (void)drawRect:(NSRect)rect { 59 - (void)drawRect:(NSRect)rect {
60 NSRect bounds = [self bounds]; 60 NSRect bounds = [self bounds];
61 bounds.size.height = InfoBar::kDefaultBarTargetHeight; 61 bounds.size.height = infobars::InfoBar::kDefaultBarTargetHeight;
62 62
63 CGFloat tipXOffset = arrowX_ - arrowHalfWidth_; 63 CGFloat tipXOffset = arrowX_ - arrowHalfWidth_;
64 64
65 // Around the bounds of the infobar, continue drawing the path into which the 65 // Around the bounds of the infobar, continue drawing the path into which the
66 // gradient will be drawn. 66 // gradient will be drawn.
67 NSBezierPath* infoBarPath = [NSBezierPath bezierPath]; 67 NSBezierPath* infoBarPath = [NSBezierPath bezierPath];
68 [infoBarPath moveToPoint:NSMakePoint(NSMinX(bounds), NSMaxY(bounds))]; 68 [infoBarPath moveToPoint:NSMakePoint(NSMinX(bounds), NSMaxY(bounds))];
69 69
70 // Draw the tip. 70 // Draw the tip.
71 if (hasTip_) { 71 if (hasTip_) {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 } 136 }
137 137
138 - (void)setHasTip:(BOOL)hasTip { 138 - (void)setHasTip:(BOOL)hasTip {
139 if (hasTip_ == hasTip) 139 if (hasTip_ == hasTip)
140 return; 140 return;
141 hasTip_ = hasTip; 141 hasTip_ = hasTip;
142 [self setNeedsDisplay:YES]; 142 [self setNeedsDisplay:YES];
143 } 143 }
144 144
145 @end 145 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/infobars/infobar_gradient_view.h ('k') | chrome/browser/ui/cocoa/infobars/infobar_utilities.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698