| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |