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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
// Copyright (c) 2012 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/widget/tooltip_manager_aura.h"
#include "base/logging.h"
#include "ui/aura/client/screen_position_client.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/screen.h"
#include "ui/views/widget/widget.h"
#include "ui/wm/public/tooltip_client.h"
namespace views {
////////////////////////////////////////////////////////////////////////////////
// TooltipManagerAura public:
TooltipManagerAura::TooltipManagerAura(Widget* widget) : widget_(widget) {
aura::client::SetTooltipText(GetWindow(), &tooltip_text_);
}
TooltipManagerAura::~TooltipManagerAura() {
aura::client::SetTooltipText(GetWindow(), NULL);
}
// static
const gfx::FontList& TooltipManagerAura::GetDefaultFontList() {
return ui::ResourceBundle::GetSharedInstance().GetFontList(
ui::ResourceBundle::BaseFont);
}
// static
void TooltipManagerAura::UpdateTooltipManagerForCapture(Widget* source) {
if (!source->HasCapture())
return;
aura::Window* root_window = source->GetNativeView()->GetRootWindow();
if (!root_window)
return;
gfx::Point screen_loc(
root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot());
aura::client::ScreenPositionClient* screen_position_client =
aura::client::GetScreenPositionClient(root_window);
if (!screen_position_client)
return;
screen_position_client->ConvertPointToScreen(root_window, &screen_loc);
gfx::Screen* screen = gfx::Screen::GetScreenFor(root_window);
aura::Window* target = screen->GetWindowAtScreenPoint(screen_loc);
if (!target)
return;
gfx::Point target_loc(screen_loc);
screen_position_client =
aura::client::GetScreenPositionClient(target->GetRootWindow());
if (!screen_position_client)
return;
screen_position_client->ConvertPointFromScreen(target, &target_loc);
target = target->GetEventHandlerForPoint(target_loc);
while (target) {
Widget* target_widget = Widget::GetWidgetForNativeView(target);
if (target_widget == source)
return;
if (target_widget) {
if (target_widget->GetTooltipManager())
target_widget->GetTooltipManager()->UpdateTooltip();
return;
}
target = target->parent();
}
}
////////////////////////////////////////////////////////////////////////////////
// TooltipManagerAura, TooltipManager implementation:
const gfx::FontList& TooltipManagerAura::GetFontList() const {
return GetDefaultFontList();
}
void TooltipManagerAura::UpdateTooltip() {
aura::Window* root_window = GetWindow()->GetRootWindow();
if (aura::client::GetTooltipClient(root_window)) {
gfx::Point view_point =
root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot();
aura::Window::ConvertPointToTarget(root_window, GetWindow(), &view_point);
View* view = GetViewUnderPoint(view_point);
UpdateTooltipForTarget(view, view_point, root_window);
}
}
void TooltipManagerAura::TooltipTextChanged(View* view) {
aura::Window* root_window = GetWindow()->GetRootWindow();
if (aura::client::GetTooltipClient(root_window)) {
gfx::Point view_point =
root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot();
aura::Window::ConvertPointToTarget(root_window, GetWindow(), &view_point);
View* target = GetViewUnderPoint(view_point);
if (target != view)
return;
UpdateTooltipForTarget(view, view_point, root_window);
}
}
View* TooltipManagerAura::GetViewUnderPoint(const gfx::Point& point) {
View* root_view = widget_->GetRootView();
if (root_view)
return root_view->GetTooltipHandlerForPoint(point);
return NULL;
}
void TooltipManagerAura::UpdateTooltipForTarget(View* target,
const gfx::Point& point,
aura::Window* root_window) {
if (target) {
gfx::Point view_point = point;
View::ConvertPointFromWidget(target, &view_point);
base::string16 new_tooltip_text;
if (!target->GetTooltipText(view_point, &new_tooltip_text))
tooltip_text_.clear();
else
tooltip_text_ = new_tooltip_text;
} else {
tooltip_text_.clear();
}
aura::client::SetTooltipId(GetWindow(), target);
aura::client::GetTooltipClient(root_window)->UpdateTooltip(GetWindow());
}
aura::Window* TooltipManagerAura::GetWindow() {
return widget_->GetNativeView();
}
} // namespace views.
|