OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/ui/views/profiles/new_avatar_button.h" | |
6 | |
7 #include <utility> | |
8 | |
9 #include "build/build_config.h" | |
10 #include "chrome/app/vector_icons/vector_icons.h" | |
11 #include "chrome/browser/browser_process.h" | |
12 #include "chrome/browser/profiles/profile_attributes_entry.h" | |
13 #include "chrome/browser/profiles/profile_manager.h" | |
14 #include "chrome/browser/profiles/profiles_state.h" | |
15 #include "chrome/browser/ui/views/profiles/avatar_button_delegate.h" | |
16 #include "chrome/browser/ui/views/profiles/profile_chooser_view.h" | |
17 #include "chrome/grit/theme_resources.h" | |
18 #include "components/signin/core/common/profile_management_switches.h" | |
19 #include "ui/base/resource/resource_bundle.h" | |
20 #include "ui/gfx/canvas.h" | |
21 #include "ui/gfx/color_palette.h" | |
22 #include "ui/gfx/geometry/vector2d.h" | |
23 #include "ui/gfx/paint_vector_icon.h" | |
24 #include "ui/vector_icons/vector_icons.h" | |
25 #include "ui/views/border.h" | |
26 #include "ui/views/controls/button/label_button_border.h" | |
27 #include "ui/views/painter.h" | |
28 | |
29 #if defined(OS_WIN) | |
30 #include "base/win/windows_version.h" | |
31 #endif | |
32 | |
33 namespace { | |
34 | |
35 std::unique_ptr<views::Border> CreateBorder(const int normal_image_set[], | |
36 const int hot_image_set[], | |
37 const int pushed_image_set[]) { | |
38 std::unique_ptr<views::LabelButtonAssetBorder> border( | |
39 new views::LabelButtonAssetBorder(views::Button::STYLE_TEXTBUTTON)); | |
40 border->SetPainter(false, views::Button::STATE_NORMAL, | |
41 views::Painter::CreateImageGridPainter(normal_image_set)); | |
42 border->SetPainter(false, views::Button::STATE_HOVERED, | |
43 views::Painter::CreateImageGridPainter(hot_image_set)); | |
44 border->SetPainter(false, views::Button::STATE_PRESSED, | |
45 views::Painter::CreateImageGridPainter(pushed_image_set)); | |
46 | |
47 const int kLeftRightInset = 8; | |
48 const int kTopInset = 2; | |
49 const int kBottomInset = 4; | |
50 border->set_insets(gfx::Insets(kTopInset, kLeftRightInset, | |
51 kBottomInset, kLeftRightInset)); | |
52 | |
53 return std::move(border); | |
54 } | |
55 | |
56 } // namespace | |
57 | |
58 NewAvatarButton::NewAvatarButton(AvatarButtonDelegate* delegate, | |
59 AvatarButtonStyle button_style, | |
60 Profile* profile) | |
61 : LabelButton(delegate, base::string16()), | |
62 delegate_(delegate), | |
63 error_controller_(this, profile), | |
64 profile_(profile), | |
65 suppress_mouse_released_action_(false) { | |
66 set_triggerable_event_flags( | |
67 ui::EF_LEFT_MOUSE_BUTTON | ui::EF_RIGHT_MOUSE_BUTTON); | |
68 set_animate_on_state_change(false); | |
69 SetEnabledTextColors(SK_ColorWHITE); | |
70 SetTextSubpixelRenderingEnabled(false); | |
71 SetHorizontalAlignment(gfx::ALIGN_CENTER); | |
72 | |
73 // The largest text height that fits in the button. If the font list height | |
74 // is larger than this, it will be shrunk to match it. | |
75 // TODO(noms): Calculate this constant algorithmically from the button's size. | |
76 const int kDisplayFontHeight = 16; | |
77 SetFontList( | |
78 label()->font_list().DeriveWithHeightUpperBound(kDisplayFontHeight)); | |
79 | |
80 ui::ResourceBundle* rb = &ui::ResourceBundle::GetSharedInstance(); | |
81 if (button_style == AvatarButtonStyle::THEMED) { | |
82 const int kNormalImageSet[] = IMAGE_GRID(IDR_AVATAR_THEMED_BUTTON_NORMAL); | |
83 const int kHotImageSet[] = IMAGE_GRID(IDR_AVATAR_THEMED_BUTTON_HOVER); | |
84 const int kPushedImageSet[] = IMAGE_GRID(IDR_AVATAR_THEMED_BUTTON_PRESSED); | |
85 | |
86 SetBorder(CreateBorder(kNormalImageSet, kHotImageSet, kPushedImageSet)); | |
87 generic_avatar_ = | |
88 *rb->GetImageNamed(IDR_AVATAR_THEMED_BUTTON_AVATAR).ToImageSkia(); | |
89 #if defined(OS_WIN) | |
90 } else if (base::win::GetVersion() < base::win::VERSION_WIN8) { | |
91 const int kNormalImageSet[] = IMAGE_GRID(IDR_AVATAR_GLASS_BUTTON_NORMAL); | |
92 const int kHotImageSet[] = IMAGE_GRID(IDR_AVATAR_GLASS_BUTTON_HOVER); | |
93 const int kPushedImageSet[] = IMAGE_GRID(IDR_AVATAR_GLASS_BUTTON_PRESSED); | |
94 | |
95 SetBorder(CreateBorder(kNormalImageSet, kHotImageSet, kPushedImageSet)); | |
96 generic_avatar_ = | |
97 *rb->GetImageNamed(IDR_AVATAR_GLASS_BUTTON_AVATAR).ToImageSkia(); | |
98 #endif | |
99 } else { | |
100 const int kNormalImageSet[] = IMAGE_GRID(IDR_AVATAR_NATIVE_BUTTON_NORMAL); | |
101 const int kHotImageSet[] = IMAGE_GRID(IDR_AVATAR_NATIVE_BUTTON_HOVER); | |
102 const int kPushedImageSet[] = IMAGE_GRID(IDR_AVATAR_NATIVE_BUTTON_PRESSED); | |
103 | |
104 SetBorder(CreateBorder(kNormalImageSet, kHotImageSet, kPushedImageSet)); | |
105 generic_avatar_ = | |
106 *rb->GetImageNamed(IDR_AVATAR_NATIVE_BUTTON_AVATAR).ToImageSkia(); | |
107 } | |
108 | |
109 g_browser_process->profile_manager()-> | |
110 GetProfileAttributesStorage().AddObserver(this); | |
111 Update(); | |
112 SchedulePaint(); | |
113 } | |
114 | |
115 NewAvatarButton::~NewAvatarButton() { | |
116 g_browser_process->profile_manager()-> | |
117 GetProfileAttributesStorage().RemoveObserver(this); | |
118 } | |
119 | |
120 bool NewAvatarButton::OnMousePressed(const ui::MouseEvent& event) { | |
121 // Prevent the bubble from being re-shown if it's already showing. | |
122 suppress_mouse_released_action_ = ProfileChooserView::IsShowing(); | |
123 return LabelButton::OnMousePressed(event); | |
124 } | |
125 | |
126 void NewAvatarButton::OnMouseReleased(const ui::MouseEvent& event) { | |
127 if (suppress_mouse_released_action_) | |
128 suppress_mouse_released_action_ = false; | |
129 else | |
130 LabelButton::OnMouseReleased(event); | |
131 } | |
132 | |
133 void NewAvatarButton::OnGestureEvent(ui::GestureEvent* event) { | |
134 // TODO(wjmaclean): The check for ET_GESTURE_LONG_PRESS is done here since | |
135 // no other UI button based on CustomButton appears to handle mouse | |
136 // right-click. If other cases are identified, it may make sense to move this | |
137 // check to CustomButton. | |
138 if (event->type() == ui::ET_GESTURE_LONG_PRESS) | |
139 NotifyClick(*event); | |
140 else | |
141 LabelButton::OnGestureEvent(event); | |
142 } | |
143 | |
144 void NewAvatarButton::OnAvatarErrorChanged() { | |
145 Update(); | |
146 } | |
147 | |
148 void NewAvatarButton::OnProfileAdded(const base::FilePath& profile_path) { | |
149 Update(); | |
150 } | |
151 | |
152 void NewAvatarButton::OnProfileWasRemoved( | |
153 const base::FilePath& profile_path, | |
154 const base::string16& profile_name) { | |
155 // If deleting the active profile, don't bother updating the avatar | |
156 // button, as the browser window is being closed anyway. | |
157 if (profile_->GetPath() != profile_path) | |
158 Update(); | |
159 } | |
160 | |
161 void NewAvatarButton::OnProfileNameChanged( | |
162 const base::FilePath& profile_path, | |
163 const base::string16& old_profile_name) { | |
164 if (profile_->GetPath() == profile_path) | |
165 Update(); | |
166 } | |
167 | |
168 void NewAvatarButton::OnProfileSupervisedUserIdChanged( | |
169 const base::FilePath& profile_path) { | |
170 if (profile_->GetPath() == profile_path) | |
171 Update(); | |
172 } | |
173 | |
174 void NewAvatarButton::Update() { | |
175 ProfileAttributesStorage& storage = | |
176 g_browser_process->profile_manager()->GetProfileAttributesStorage(); | |
177 | |
178 // If we have a single local profile, then use the generic avatar | |
179 // button instead of the profile name. Never use the generic button if | |
180 // the active profile is Guest. | |
181 const bool use_generic_button = | |
182 !profile_->IsGuestSession() && | |
183 storage.GetNumberOfProfiles() == 1 && | |
184 !storage.GetAllProfilesAttributes().front()->IsAuthenticated(); | |
185 | |
186 SetText(use_generic_button | |
187 ? base::string16() | |
188 : profiles::GetAvatarButtonTextForProfile(profile_)); | |
189 | |
190 // If the button has no text, clear the text shadows to make sure the | |
191 // image is centered correctly. | |
192 SetTextShadows( | |
193 use_generic_button | |
194 ? gfx::ShadowValues() | |
195 : gfx::ShadowValues( | |
196 10, gfx::ShadowValue(gfx::Vector2d(), 2.0f, SK_ColorDKGRAY))); | |
197 | |
198 // We want the button to resize if the new text is shorter. | |
199 SetMinSize(gfx::Size()); | |
200 | |
201 if (use_generic_button) { | |
202 SetImage(views::Button::STATE_NORMAL, generic_avatar_); | |
203 } else if (error_controller_.HasAvatarError()) { | |
204 SetImage(views::Button::STATE_NORMAL, | |
205 gfx::CreateVectorIcon(kSyncProblemIcon, 16, gfx::kGoogleRed700)); | |
206 } else { | |
207 SetImage(views::Button::STATE_NORMAL, gfx::ImageSkia()); | |
208 } | |
209 | |
210 // If we are not using the generic button, then reset the spacing between | |
211 // the text and the possible authentication error icon. | |
212 const int kDefaultImageTextSpacing = 5; | |
213 SetImageLabelSpacing(use_generic_button ? 0 : kDefaultImageTextSpacing); | |
214 | |
215 PreferredSizeChanged(); | |
216 delegate_->ButtonPreferredSizeChanged(); | |
217 } | |
OLD | NEW |