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

Side by Side Diff: chrome/browser/ui/cocoa/profiles/avatar_button_controller.mm

Issue 303463010: [Mac] Show a warning in the new avatar button/menu if there's an auth error (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rachel comments and a sneaked in rebase (the IsSupervised() stuff) Created 6 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #import "chrome/browser/ui/cocoa/profiles/avatar_button_controller.h" 5 #import "chrome/browser/ui/cocoa/profiles/avatar_button_controller.h"
6 6
7 #include "base/mac/foundation_util.h" 7 #include "base/mac/foundation_util.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "chrome/browser/profiles/profiles_state.h" 9 #include "chrome/browser/profiles/profiles_state.h"
10 #include "chrome/browser/themes/theme_service.h" 10 #include "chrome/browser/themes/theme_service.h"
11 #include "chrome/browser/themes/theme_service_factory.h" 11 #include "chrome/browser/themes/theme_service_factory.h"
12 #include "chrome/browser/ui/browser.h" 12 #include "chrome/browser/ui/browser.h"
13 #include "chrome/browser/ui/browser_window.h" 13 #include "chrome/browser/ui/browser_window.h"
14 #import "chrome/browser/ui/cocoa/browser_window_controller.h" 14 #import "chrome/browser/ui/cocoa/browser_window_controller.h"
15 #include "components/signin/core/browser/signin_error_controller.h"
15 #include "grit/generated_resources.h" 16 #include "grit/generated_resources.h"
16 #include "grit/theme_resources.h" 17 #include "grit/theme_resources.h"
17 #import "ui/base/cocoa/appkit_utils.h" 18 #import "ui/base/cocoa/appkit_utils.h"
18 #import "ui/base/cocoa/hover_image_button.h" 19 #import "ui/base/cocoa/hover_image_button.h"
19 #include "ui/base/l10n/l10n_util_mac.h" 20 #include "ui/base/l10n/l10n_util_mac.h"
20 #include "ui/base/nine_image_painter_factory.h" 21 #include "ui/base/nine_image_painter_factory.h"
21 #include "ui/base/resource/resource_bundle.h" 22 #include "ui/base/resource/resource_bundle.h"
23 #include "ui/gfx/image/image_skia_operations.h"
24 #include "ui/gfx/image/image_skia_util_mac.h"
22 #include "ui/gfx/text_elider.h" 25 #include "ui/gfx/text_elider.h"
23 26
24 namespace { 27 namespace {
25 28
26 const CGFloat kButtonPadding = 12; 29 const CGFloat kButtonPadding = 12;
27 const CGFloat kButtonDefaultPadding = 5; 30 const CGFloat kButtonDefaultPadding = 5;
28 const CGFloat kButtonHeight = 27; 31 const CGFloat kButtonHeight = 27;
29 const CGFloat kButtonTitleImageSpacing = 10; 32 const CGFloat kButtonTitleImageSpacing = 10;
30 const CGFloat kMaxButtonContentWidth = 100; 33 const CGFloat kMaxButtonContentWidth = 100;
31 34
(...skipping 10 matching lines...) Expand all
42 return ui::ResourceBundle::GetSharedInstance().GetNativeImageNamed( 45 return ui::ResourceBundle::GetSharedInstance().GetNativeImageNamed(
43 resourceId).ToNSImage(); 46 resourceId).ToNSImage();
44 } 47 }
45 48
46 } // namespace 49 } // namespace
47 50
48 // Button cell with a custom border given by a set of nine-patch image grids. 51 // Button cell with a custom border given by a set of nine-patch image grids.
49 @interface CustomThemeButtonCell : NSButtonCell { 52 @interface CustomThemeButtonCell : NSButtonCell {
50 @private 53 @private
51 BOOL isThemedWindow_; 54 BOOL isThemedWindow_;
55 base::scoped_nsobject<NSImage> authenticationErrorImage_;
52 } 56 }
53 - (void)setIsThemedWindow:(BOOL)isThemedWindow; 57 - (void)setIsThemedWindow:(BOOL)isThemedWindow;
58 - (void)setHasError:(BOOL)hasError;
59
54 @end 60 @end
55 61
56 @implementation CustomThemeButtonCell 62 @implementation CustomThemeButtonCell
57 - (id)initWithThemedWindow:(BOOL)isThemedWindow { 63 - (id)initWithThemedWindow:(BOOL)isThemedWindow {
58 if ((self = [super init])) { 64 if ((self = [super init])) {
59 isThemedWindow_ = isThemedWindow; 65 isThemedWindow_ = isThemedWindow;
66 authenticationErrorImage_.reset(nil);
60 } 67 }
61 return self; 68 return self;
62 } 69 }
63 70
64 - (NSSize)cellSize { 71 - (NSSize)cellSize {
65 NSSize buttonSize = [super cellSize]; 72 NSSize buttonSize = [super cellSize];
66 buttonSize.width += 2 * kButtonPadding - 2 * kButtonDefaultPadding; 73 CGFloat errorWidth = [authenticationErrorImage_ size].width;
74 buttonSize.width += 2 * (kButtonPadding - kButtonDefaultPadding) + errorWidth;
67 buttonSize.height = kButtonHeight; 75 buttonSize.height = kButtonHeight;
68 return buttonSize; 76 return buttonSize;
69 } 77 }
70 78
71 - (NSRect)drawTitle:(NSAttributedString*)title 79 - (NSRect)drawTitle:(NSAttributedString*)title
72 withFrame:(NSRect)frame 80 withFrame:(NSRect)frame
73 inView:(NSView*)controlView { 81 inView:(NSView*)controlView {
74 frame.origin.x = kButtonPadding; 82 frame.origin.x = kButtonPadding;
75 // Ensure there's always a padding between the text and the image. 83
84 // If there's an auth error, draw a warning icon before the cell image.
85 if (authenticationErrorImage_) {
86 NSSize imageSize = [authenticationErrorImage_ size];
87 NSRect rect = NSMakeRect(
88 frame.size.width - imageSize.width,
89 (kButtonHeight - imageSize.height) / 2,
90 imageSize.width,
91 imageSize.height);
92 [authenticationErrorImage_ drawInRect:rect
93 fromRect:NSZeroRect
94 operation:NSCompositeSourceOver
95 fraction:1.0
96 respectFlipped:YES
97 hints:nil];
98 // Padding between the title and the error image.
99 frame.size.width -= kButtonTitleImageSpacing;
100 }
101
102 // Padding between the title (or error image, if it exists) and the
103 // button's drop down image.
groby-ooo-7-16 2014/06/17 17:16:41 It does indeed, provided you never size smaller th
76 frame.size.width -= kButtonTitleImageSpacing; 104 frame.size.width -= kButtonTitleImageSpacing;
77 return [super drawTitle:title withFrame:frame inView:controlView]; 105 return [super drawTitle:title withFrame:frame inView:controlView];
78 } 106 }
79 107
80 - (void)drawImage:(NSImage*)image 108 - (void)drawImage:(NSImage*)image
81 withFrame:(NSRect)frame 109 withFrame:(NSRect)frame
82 inView:(NSView*)controlView { 110 inView:(NSView*)controlView {
83 // For the x-offset, we need to undo the default padding and apply the 111 // For the x-offset, we need to undo the default padding and apply the
84 // new one. For the y-offset, increasing the button height means we need 112 // new one. For the y-offset, increasing the button height means we need
85 // to move the image a little down to align it nicely with the text; this 113 // to move the image a little down to align it nicely with the text; this
(...skipping 13 matching lines...) Expand all
99 if (hoverState == kHoverStateMouseDown) 127 if (hoverState == kHoverStateMouseDown)
100 imageIds = kPressedBorderImageIds; 128 imageIds = kPressedBorderImageIds;
101 else if (hoverState == kHoverStateMouseOver) 129 else if (hoverState == kHoverStateMouseOver)
102 imageIds = kHoverBorderImageIds; 130 imageIds = kHoverBorderImageIds;
103 ui::DrawNinePartImage(frame, imageIds, NSCompositeSourceOver, 1.0, true); 131 ui::DrawNinePartImage(frame, imageIds, NSCompositeSourceOver, 1.0, true);
104 } 132 }
105 133
106 - (void)setIsThemedWindow:(BOOL)isThemedWindow { 134 - (void)setIsThemedWindow:(BOOL)isThemedWindow {
107 isThemedWindow_ = isThemedWindow; 135 isThemedWindow_ = isThemedWindow;
108 } 136 }
137
138 - (void)setHasError:(BOOL)hasError {
139 if (hasError) {
140 authenticationErrorImage_.reset(
141 [ui::ResourceBundle::GetSharedInstance().GetImageNamed(
142 IDR_ICON_PROFILES_AVATAR_BUTTON_ERROR).ToNSImage() retain]);
143 } else {
144 authenticationErrorImage_.reset(nil);
groby-ooo-7-16 2014/06/17 17:13:27 nit: can skip the nil
noms (inactive) 2014/06/17 18:12:44 Hmm, if we skip the nil then we can't clear the er
groby-ooo-7-16 2014/06/17 18:20:26 Maybe I was too terse :) What I meant is that just
noms (inactive) 2014/06/17 18:27:23 OH, herp derp. I think I'm losing my mind. Done.
145 }
146 }
147
109 @end 148 @end
110 149
111 @interface AvatarButtonController (Private) 150 @interface AvatarButtonController (Private)
112 - (base::string16)getElidedAvatarName; 151 - (base::string16)getElidedAvatarName;
113 - (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent; 152 - (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent;
153 - (void)updateErrorStatus:(BOOL)hasError;
114 - (void)dealloc; 154 - (void)dealloc;
115 - (void)themeDidChangeNotification:(NSNotification*)aNotification; 155 - (void)themeDidChangeNotification:(NSNotification*)aNotification;
116 @end 156 @end
117 157
118 @implementation AvatarButtonController 158 @implementation AvatarButtonController
119 159
120 - (id)initWithBrowser:(Browser*)browser { 160 - (id)initWithBrowser:(Browser*)browser {
121 if ((self = [super initWithBrowser:browser])) { 161 if ((self = [super initWithBrowser:browser])) {
122 ThemeService* themeService = 162 ThemeService* themeService =
123 ThemeServiceFactory::GetForProfile(browser->profile()); 163 ThemeServiceFactory::GetForProfile(browser->profile());
124 isThemedWindow_ = !themeService->UsingSystemTheme(); 164 isThemedWindow_ = !themeService->UsingSystemTheme();
125 165
126 HoverImageButton* hoverButton = 166 HoverImageButton* hoverButton =
127 [[HoverImageButton alloc] initWithFrame:NSZeroRect]; 167 [[HoverImageButton alloc] initWithFrame:NSZeroRect];
128 [hoverButton setDefaultImage:GetImageFromResourceID( 168 [hoverButton setDefaultImage:GetImageFromResourceID(
129 IDR_AVATAR_MAC_BUTTON_DROPARROW)]; 169 IDR_AVATAR_MAC_BUTTON_DROPARROW)];
130 [hoverButton setHoverImage:GetImageFromResourceID( 170 [hoverButton setHoverImage:GetImageFromResourceID(
131 IDR_AVATAR_MAC_BUTTON_DROPARROW_HOVER)]; 171 IDR_AVATAR_MAC_BUTTON_DROPARROW_HOVER)];
132 [hoverButton setPressedImage:GetImageFromResourceID( 172 [hoverButton setPressedImage:GetImageFromResourceID(
133 IDR_AVATAR_MAC_BUTTON_DROPARROW_PRESSED)]; 173 IDR_AVATAR_MAC_BUTTON_DROPARROW_PRESSED)];
134 174
135 button_.reset(hoverButton); 175 button_.reset(hoverButton);
136 base::scoped_nsobject<CustomThemeButtonCell> cell( 176 base::scoped_nsobject<CustomThemeButtonCell> cell(
137 [[CustomThemeButtonCell alloc] initWithThemedWindow:isThemedWindow_]); 177 [[CustomThemeButtonCell alloc] initWithThemedWindow:isThemedWindow_]);
178 SigninErrorController* errorController =
179 profiles::GetSigninErrorController(browser->profile());
180 if (errorController)
181 [cell setHasError:errorController->HasError()];
138 [button_ setCell:cell.get()]; 182 [button_ setCell:cell.get()];
139 [self setView:button_]; 183 [self setView:button_];
140 184
141 [button_ setBezelStyle:NSShadowlessSquareBezelStyle]; 185 [button_ setBezelStyle:NSShadowlessSquareBezelStyle];
142 [button_ setButtonType:NSMomentaryChangeButton]; 186 [button_ setButtonType:NSMomentaryChangeButton];
143 [button_ setBordered:YES]; 187 [button_ setBordered:YES];
144 // This is a workaround for an issue in the HoverImageButton where the 188 // This is a workaround for an issue in the HoverImageButton where the
145 // button is initially sized incorrectly unless a default image is provided. 189 // button is initially sized incorrectly unless a default image is provided.
146 [button_ setImage:GetImageFromResourceID(IDR_AVATAR_MAC_BUTTON_DROPARROW)]; 190 [button_ setImage:GetImageFromResourceID(IDR_AVATAR_MAC_BUTTON_DROPARROW)];
147 [button_ setImagePosition:NSImageRight]; 191 [button_ setImagePosition:NSImageRight];
148 [button_ setAutoresizingMask:NSViewMinXMargin | NSViewMinYMargin]; 192 [button_ setAutoresizingMask:NSViewMinXMargin | NSViewMinYMargin];
149 [button_ setTarget:self]; 193 [button_ setTarget:self];
150 [button_ setAction:@selector(buttonClicked:)]; 194 [button_ setAction:@selector(buttonClicked:)];
151 195
152 [self updateAvatarButtonAndLayoutParent:NO]; 196 [self updateAvatarButtonAndLayoutParent:NO];
153 197
154 NSNotificationCenter* center = [NSNotificationCenter defaultCenter]; 198 NSNotificationCenter* center = [NSNotificationCenter defaultCenter];
155 [center addObserver:self 199 [center addObserver:self
156 selector:@selector(themeDidChangeNotification:) 200 selector:@selector(themeDidChangeNotification:)
157 name:kBrowserThemeDidChangeNotification 201 name:kBrowserThemeDidChangeNotification
158 object:nil]; 202 object:nil];
159
160 } 203 }
161 return self; 204 return self;
162 } 205 }
163 206
164 - (void)dealloc { 207 - (void)dealloc {
165 [[NSNotificationCenter defaultCenter] removeObserver:self]; 208 [[NSNotificationCenter defaultCenter] removeObserver:self];
166 [super dealloc]; 209 [super dealloc];
167 } 210 }
168 211
169 - (void)themeDidChangeNotification:(NSNotification*)aNotification { 212 - (void)themeDidChangeNotification:(NSNotification*)aNotification {
(...skipping 12 matching lines...) Expand all
182 base::string16 name = profiles::GetAvatarNameForProfile(browser_->profile()); 225 base::string16 name = profiles::GetAvatarNameForProfile(browser_->profile());
183 int maxTextWidth = kMaxButtonContentWidth - [[button_ image] size].width; 226 int maxTextWidth = kMaxButtonContentWidth - [[button_ image] size].width;
184 return gfx::ElideText(name, gfx::FontList(gfx::Font([button_ font])), 227 return gfx::ElideText(name, gfx::FontList(gfx::Font([button_ font])),
185 maxTextWidth, gfx::ELIDE_TAIL); 228 maxTextWidth, gfx::ELIDE_TAIL);
186 } 229 }
187 230
188 - (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent { 231 - (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent {
189 // The button text has a black foreground and a white drop shadow for regular 232 // The button text has a black foreground and a white drop shadow for regular
190 // windows, and a light text with a dark drop shadow for guest windows 233 // windows, and a light text with a dark drop shadow for guest windows
191 // which are themed with a dark background. 234 // which are themed with a dark background.
192 // TODO(noms): Figure out something similar for themed windows, if possible.
193 base::scoped_nsobject<NSShadow> shadow([[NSShadow alloc] init]); 235 base::scoped_nsobject<NSShadow> shadow([[NSShadow alloc] init]);
194 [shadow setShadowOffset:NSMakeSize(0, -1)]; 236 [shadow setShadowOffset:NSMakeSize(0, -1)];
195 [shadow setShadowBlurRadius:0]; 237 [shadow setShadowBlurRadius:0];
196 238
197 NSColor* foregroundColor; 239 NSColor* foregroundColor;
198 if (browser_->profile()->IsGuestSession()) { 240 if (browser_->profile()->IsGuestSession()) {
199 foregroundColor = [NSColor colorWithCalibratedWhite:1.0 alpha:0.9]; 241 foregroundColor = [NSColor colorWithCalibratedWhite:1.0 alpha:0.9];
200 [shadow setShadowColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.4]]; 242 [shadow setShadowColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.4]];
201 } else if (!isThemedWindow_) { 243 } else if (!isThemedWindow_) {
202 foregroundColor = [NSColor blackColor]; 244 foregroundColor = [NSColor blackColor];
(...skipping 29 matching lines...) Expand all
232 274
233 if (layoutParent) { 275 if (layoutParent) {
234 // Because the width of the button might have changed, the parent browser 276 // Because the width of the button might have changed, the parent browser
235 // frame needs to recalculate the button bounds and redraw it. 277 // frame needs to recalculate the button bounds and redraw it.
236 [[BrowserWindowController 278 [[BrowserWindowController
237 browserWindowControllerForWindow:browser_->window()->GetNativeWindow()] 279 browserWindowControllerForWindow:browser_->window()->GetNativeWindow()]
238 layoutSubviews]; 280 layoutSubviews];
239 } 281 }
240 } 282 }
241 283
284 - (void)updateErrorStatus:(BOOL)hasError {
285 [[button_ cell] setHasError:hasError];
286 [self updateAvatarButtonAndLayoutParent:YES];
287 }
288
242 @end 289 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698