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/tooltip_icon.h"
7 #include "base/basictypes.h"
8 #include "base/timer/timer.h"
9 #include "chrome/browser/ui/views/autofill/info_bubble.h"
10 #include "grit/theme_resources.h"
11 #include "ui/accessibility/ax_view_state.h"
12 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/views/bubble/bubble_frame_view.h"
14 #include "ui/views/mouse_watcher_view_host.h"
15 #include "ui/views/painter.h"
21 gfx::Insets
GetPreferredInsets(const views::View
* view
) {
22 gfx::Size pref_size
= view
->GetPreferredSize();
23 gfx::Rect local_bounds
= view
->GetLocalBounds();
24 gfx::Point origin
= local_bounds
.CenterPoint();
25 origin
.Offset(-pref_size
.width() / 2, -pref_size
.height() / 2);
26 return gfx::Insets(origin
.y(),
28 local_bounds
.bottom() - (origin
.y() + pref_size
.height()),
29 local_bounds
.right() - (origin
.x() + pref_size
.width()));
32 // An info bubble with some extra positioning magic for tooltip icons.
33 class TooltipBubble
: public InfoBubble
{
35 TooltipBubble(views::View
* anchor
, const base::string16
& message
)
36 : InfoBubble(anchor
, message
) {}
37 virtual ~TooltipBubble() {}
41 virtual gfx::Rect
GetAnchorRect() const OVERRIDE
{
42 gfx::Rect bounds
= views::BubbleDelegateView::GetAnchorRect();
43 bounds
.Inset(GetPreferredInsets(anchor()));
48 DISALLOW_COPY_AND_ASSIGN(TooltipBubble
);
53 TooltipIcon::TooltipIcon(const base::string16
& tooltip
)
58 ChangeImageTo(IDR_AUTOFILL_TOOLTIP_ICON
);
61 TooltipIcon::~TooltipIcon() {
66 const char TooltipIcon::kViewClassName
[] = "autofill/TooltipIcon";
68 const char* TooltipIcon::GetClassName() const {
69 return TooltipIcon::kViewClassName
;
72 void TooltipIcon::OnMouseEntered(const ui::MouseEvent
& event
) {
74 show_timer_
.Start(FROM_HERE
, base::TimeDelta::FromMilliseconds(150), this,
75 &TooltipIcon::ShowBubble
);
78 void TooltipIcon::OnMouseExited(const ui::MouseEvent
& event
) {
82 void TooltipIcon::OnGestureEvent(ui::GestureEvent
* event
) {
83 if (event
->type() == ui::ET_GESTURE_TAP
) {
89 void TooltipIcon::GetAccessibleState(ui::AXViewState
* state
) {
90 state
->name
= tooltip_
;
93 void TooltipIcon::MouseMovedOutOfHost() {
94 if (IsMouseHovered()) {
95 mouse_watcher_
->Start();
99 mouse_inside_
= false;
103 void TooltipIcon::ChangeImageTo(int idr
) {
104 ui::ResourceBundle
& rb
= ui::ResourceBundle::GetSharedInstance();
105 SetImage(rb
.GetImageNamed(idr
).ToImageSkia());
108 void TooltipIcon::ShowBubble() {
112 ChangeImageTo(IDR_AUTOFILL_TOOLTIP_ICON_H
);
114 bubble_
= new TooltipBubble(this, tooltip_
);
115 // When shown due to a gesture event, close on deactivate (i.e. don't use
117 bubble_
->set_use_focusless(mouse_inside_
);
120 observer_
.Add(bubble_
->GetWidget());
123 views::View
* frame
= bubble_
->GetWidget()->non_client_view()->frame_view();
124 scoped_ptr
<views::MouseWatcherHost
> host(
125 new views::MouseWatcherViewHost(frame
, gfx::Insets()));
126 mouse_watcher_
.reset(new views::MouseWatcher(host
.release(), this));
127 mouse_watcher_
->Start();
131 void TooltipIcon::HideBubble() {
136 void TooltipIcon::OnWidgetDestroyed(views::Widget
* widget
) {
137 observer_
.Remove(widget
);
139 ChangeImageTo(IDR_AUTOFILL_TOOLTIP_ICON
);
140 mouse_watcher_
.reset();
144 } // namespace autofill