blob: 4cae74f7dfa70816e1470a22365226db2da0a053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/controls/button/md_text_button.h"
#include "base/i18n/case_conversion.h"
#include "ui/gfx/render_text.h"
#include "ui/native_theme/native_theme.h"
namespace views {
namespace {
// Inset between clickable region border and button contents (text).
const int kHorizontalPadding = 12;
const int kVerticalPadding = 6;
// Minimum size to reserve for the button contents.
const int kMinWidth = 48;
const gfx::FontList& GetFontList() {
static base::LazyInstance<gfx::FontList>::Leaky font_list =
LAZY_INSTANCE_INITIALIZER;
return font_list.Get();
}
} // namespace
MdTextButton::MdTextButton(ButtonListener* listener, const base::string16& text)
: CustomButton(listener),
render_text_(gfx::RenderText::CreateInstance()) {
render_text_->SetFontList(GetFontList());
render_text_->SetCursorEnabled(false);
render_text_->SetText(base::i18n::ToUpper(text));
SetFocusable(true);
}
MdTextButton::~MdTextButton() {}
void MdTextButton::OnPaint(gfx::Canvas* canvas) {
UpdateColor();
gfx::Rect rect = GetLocalBounds();
rect.Inset(kHorizontalPadding, kVerticalPadding);
render_text_->SetDisplayRect(rect);
render_text_->Draw(canvas);
}
gfx::Size MdTextButton::GetPreferredSize() const {
gfx::Size size = render_text_->GetStringSize();
size.SetToMax(gfx::Size(kMinWidth, 0));
size.Enlarge(kHorizontalPadding * 2, kVerticalPadding * 2);
return size;
}
void MdTextButton::UpdateColor() {
// TODO(estade): handle call to action theming and other things that can
// affect the text color.
render_text_->SetColor(GetNativeTheme()->GetSystemColor(
enabled() ? ui::NativeTheme::kColorId_MdTextButtonEnabledColor
: ui::NativeTheme::kColorId_MdTextButtonDisabledColor));
}
} // namespace views
|