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

Side by Side Diff: ui/views/controls/button/blue_button.cc

Issue 288983010: fix text color of BlueButton on GTK-theme-mode Linux Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add colors to common theme 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
« no previous file with comments | « ui/native_theme/native_theme.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ui/views/controls/button/blue_button.h" 5 #include "ui/views/controls/button/blue_button.h"
6 6
7 #include "grit/ui_resources.h" 7 #include "grit/ui_resources.h"
8 #include "ui/base/resource/resource_bundle.h" 8 #include "ui/base/resource/resource_bundle.h"
9 #include "ui/gfx/sys_color_change_listener.h" 9 #include "ui/gfx/sys_color_change_listener.h"
10 #include "ui/views/controls/button/label_button_border.h" 10 #include "ui/views/controls/button/label_button_border.h"
11 11
12 namespace { 12 namespace {
13 13
14 // Default text and shadow colors for the blue button. 14 // Default shadow color for the blue button.
15 const SkColor kBlueButtonTextColor = SK_ColorWHITE;
16 const SkColor kBlueButtonShadowColor = SkColorSetRGB(0x53, 0x8C, 0xEA); 15 const SkColor kBlueButtonShadowColor = SkColorSetRGB(0x53, 0x8C, 0xEA);
17 16
18 } // namespace 17 } // namespace
19 18
20 namespace views { 19 namespace views {
21 20
22 // static 21 // static
23 const char BlueButton::kViewClassName[] = "views/BlueButton"; 22 const char BlueButton::kViewClassName[] = "views/BlueButton";
24 23
25 BlueButton::BlueButton(ButtonListener* listener, const base::string16& text) 24 BlueButton::BlueButton(ButtonListener* listener, const base::string16& text)
26 : LabelButton(listener, text) { 25 : LabelButton(listener, text) {
27 // Inherit STYLE_BUTTON insets, minimum size, alignment, etc. 26 // Inherit STYLE_BUTTON insets, minimum size, alignment, etc.
28 SetStyle(STYLE_BUTTON); 27 SetStyle(STYLE_BUTTON);
29 UpdateThemedBorder(); 28 UpdateThemedBorder();
30 } 29 }
31 30
32 BlueButton::~BlueButton() {} 31 BlueButton::~BlueButton() {}
33 32
34 void BlueButton::ResetColorsFromNativeTheme() { 33 void BlueButton::ResetColorsFromNativeTheme() {
35 LabelButton::ResetColorsFromNativeTheme(); 34 LabelButton::ResetColorsFromNativeTheme();
36 if (!gfx::IsInvertedColorScheme()) { 35 if (!gfx::IsInvertedColorScheme()) {
37 for (size_t state = STATE_NORMAL; state < STATE_COUNT; ++state) 36 SetTextColor(STATE_NORMAL, GetNativeTheme()->
38 SetTextColor(static_cast<ButtonState>(state), kBlueButtonTextColor); 37 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonEnabledColor));
38 SetTextColor(STATE_HOVERED, GetNativeTheme()->
39 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonHoverColor));
40 SetTextColor(STATE_PRESSED, GetNativeTheme()->
41 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonHighlightColor));
42 SetTextColor(STATE_DISABLED, GetNativeTheme()->
43 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonDisabledColor));
44
45 // TODO(estade): this is not great on system themes.
39 label()->SetShadowColors(kBlueButtonShadowColor, kBlueButtonShadowColor); 46 label()->SetShadowColors(kBlueButtonShadowColor, kBlueButtonShadowColor);
40 label()->SetShadowOffset(0, 1); 47 label()->SetShadowOffset(0, 1);
41 } 48 }
42 } 49 }
43 50
44 const char* BlueButton::GetClassName() const { 51 const char* BlueButton::GetClassName() const {
45 return BlueButton::kViewClassName; 52 return BlueButton::kViewClassName;
46 } 53 }
47 54
48 scoped_ptr<LabelButtonBorder> BlueButton::CreateDefaultBorder() const { 55 scoped_ptr<LabelButtonBorder> BlueButton::CreateDefaultBorder() const {
(...skipping 14 matching lines...) Expand all
63 button_border->SetPainter(true, STATE_HOVERED, Painter::CreateImagePainter( 70 button_border->SetPainter(true, STATE_HOVERED, Painter::CreateImagePainter(
64 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_FOCUSED_HOVER), insets)); 71 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_FOCUSED_HOVER), insets));
65 button_border->SetPainter(true, STATE_PRESSED, Painter::CreateImagePainter( 72 button_border->SetPainter(true, STATE_PRESSED, Painter::CreateImagePainter(
66 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_FOCUSED_PRESSED), insets)); 73 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_FOCUSED_PRESSED), insets));
67 button_border->SetPainter(true, STATE_DISABLED, Painter::CreateImagePainter( 74 button_border->SetPainter(true, STATE_DISABLED, Painter::CreateImagePainter(
68 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_DISABLED), insets)); 75 *rb.GetImageSkiaNamed(IDR_BLUE_BUTTON_DISABLED), insets));
69 return button_border.Pass(); 76 return button_border.Pass();
70 } 77 }
71 78
72 } // namespace views 79 } // namespace views
OLDNEW
« no previous file with comments | « ui/native_theme/native_theme.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698