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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/views/autofill/decorated_textfield.h"
7 #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
8 #include "chrome/browser/ui/views/autofill/tooltip_icon.h"
9 #include "ui/gfx/canvas.h"
10 #include "ui/views/background.h"
11 #include "ui/views/controls/button/label_button.h"
12 #include "ui/views/controls/focusable_border.h"
13 #include "ui/views/controls/textfield/textfield_controller.h"
17 // Padding around icons inside DecoratedTextfields.
18 const int kTextfieldIconPadding
= 3;
25 const char DecoratedTextfield::kViewClassName
[] = "autofill/DecoratedTextfield";
27 DecoratedTextfield::DecoratedTextfield(
28 const base::string16
& default_value
,
29 const base::string16
& placeholder
,
30 views::TextfieldController
* controller
)
36 set_placeholder_text(placeholder
);
37 SetText(default_value
);
38 set_controller(controller
);
41 DecoratedTextfield::~DecoratedTextfield() {}
43 void DecoratedTextfield::SetInvalid(bool invalid
) {
44 if (invalid_
== invalid
)
52 void DecoratedTextfield::SetEditable(bool editable
) {
53 if (editable_
== editable
)
63 void DecoratedTextfield::SetIcon(const gfx::Image
& icon
) {
64 if (!icon_view_
&& icon
.IsEmpty())
68 RemoveChildView(icon_view_
.get());
70 if (!icon
.IsEmpty()) {
71 icon_view_
.reset(new views::ImageView());
72 icon_view_
->set_owned_by_client();
73 icon_view_
->SetImage(icon
.ToImageSkia());
74 AddChildView(icon_view_
.get());
80 void DecoratedTextfield::SetTooltipIcon(const base::string16
& text
) {
81 if (!icon_view_
&& text
.empty())
85 RemoveChildView(icon_view_
.get());
88 icon_view_
.reset(new TooltipIcon(text
));
89 AddChildView(icon_view_
.get());
95 base::string16
DecoratedTextfield::GetPlaceholderText() const {
96 return editable_
? views::Textfield::GetPlaceholderText() : base::string16();
99 const char* DecoratedTextfield::GetClassName() const {
100 return kViewClassName
;
103 views::View
* DecoratedTextfield::GetEventHandlerForRect(const gfx::Rect
& rect
) {
104 views::View
* handler
= views::Textfield::GetEventHandlerForRect(rect
);
105 if (handler
->GetClassName() == TooltipIcon::kViewClassName
)
110 gfx::Size
DecoratedTextfield::GetPreferredSize() {
111 static const int height
=
112 views::LabelButton(NULL
, base::string16()).GetPreferredSize().height();
113 const gfx::Size size
= views::Textfield::GetPreferredSize();
114 return gfx::Size(size
.width(), std::max(size
.height(), height
));
117 void DecoratedTextfield::Layout() {
118 views::Textfield::Layout();
120 if (icon_view_
&& icon_view_
->visible()) {
121 gfx::Rect bounds
= GetContentsBounds();
122 gfx::Size icon_size
= icon_view_
->GetPreferredSize();
123 int x
= base::i18n::IsRTL() ?
124 kTextfieldIconPadding
:
125 bounds
.right() - icon_size
.width() - kTextfieldIconPadding
;
126 // Vertically centered.
127 int y
= bounds
.y() + (bounds
.height() - icon_size
.height()) / 2;
128 icon_view_
->SetBounds(x
, y
, icon_size
.width(), icon_size
.height());
132 void DecoratedTextfield::UpdateBackground() {
134 UseDefaultBackgroundColor();
136 SetBackgroundColor(SK_ColorTRANSPARENT
);
138 views::Background::CreateSolidBackground(GetBackgroundColor()));
141 void DecoratedTextfield::UpdateBorder() {
142 scoped_ptr
<views::FocusableBorder
> border(new views::FocusableBorder());
144 border
->SetColor(kWarningColor
);
146 border
->SetColor(SK_ColorTRANSPARENT
);
147 SetBorder(border
.PassAs
<views::Border
>());
150 void DecoratedTextfield::IconChanged() {
151 // Don't show the icon if nothing else is showing.
152 icon_view_
->SetVisible(editable_
|| !text().empty());
156 } // namespace autofill