OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/style/platform_style.h" | 5 #include "ui/views/style/platform_style.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
8 #include "ui/base/resource/resource_bundle.h" | 8 #include "ui/base/resource/resource_bundle.h" |
9 #include "ui/gfx/color_utils.h" | 9 #include "ui/gfx/color_utils.h" |
10 #include "ui/gfx/paint_vector_icon.h" | 10 #include "ui/gfx/paint_vector_icon.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // static | 89 // static |
90 void PlatformStyle::ApplyLabelButtonTextStyle( | 90 void PlatformStyle::ApplyLabelButtonTextStyle( |
91 views::Label* label, | 91 views::Label* label, |
92 ButtonColorByState* color_by_state) { | 92 ButtonColorByState* color_by_state) { |
93 const ui::NativeTheme* theme = label->GetNativeTheme(); | 93 const ui::NativeTheme* theme = label->GetNativeTheme(); |
94 ButtonColorByState& colors = *color_by_state; | 94 ButtonColorByState& colors = *color_by_state; |
95 colors[Button::STATE_PRESSED] = | 95 colors[Button::STATE_PRESSED] = |
96 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHighlightColor); | 96 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHighlightColor); |
97 } | 97 } |
98 | 98 |
99 // static | |
100 SkColor PlatformStyle::BackgroundColorForMdButton( | |
101 SkColor color, | |
102 Button::ButtonState state) { | |
103 // Per Harmony specs: Pressed state on Mac is + #000 at 0.05 alpha. | |
104 if (state == Button::STATE_PRESSED) | |
105 return color_utils::AlphaBlend(SK_ColorBLACK, color, 0x08); | |
106 return color; | |
107 } | |
108 | |
109 } // namespace views | 99 } // namespace views |
OLD | NEW |