OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 "ash/shelf/shelf_tooltip_manager.h" | 5 #include "ash/shelf/shelf_tooltip_manager.h" |
6 | 6 |
7 #include "ash/public/cpp/shell_window_ids.h" | 7 #include "ash/public/cpp/shell_window_ids.h" |
8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
9 #include "ash/shelf/shelf.h" | 9 #include "ash/shelf/shelf.h" |
10 #include "ash/shelf/shelf_view.h" | 10 #include "ash/shelf/shelf_view.h" |
11 #include "ash/shell_port.h" | 11 #include "ash/shell_port.h" |
12 #include "ash/system/tray/tray_constants.h" | 12 #include "ash/system/tray/tray_constants.h" |
13 #include "ash/wm_window.h" | 13 #include "ash/wm/window_util.h" |
14 #include "base/bind.h" | 14 #include "base/bind.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "ui/base/material_design/material_design_controller.h" | 18 #include "ui/base/material_design/material_design_controller.h" |
19 #include "ui/events/event.h" | 19 #include "ui/events/event.h" |
20 #include "ui/events/event_constants.h" | 20 #include "ui/events/event_constants.h" |
21 #include "ui/gfx/geometry/insets.h" | 21 #include "ui/gfx/geometry/insets.h" |
22 #include "ui/views/bubble/bubble_dialog_delegate.h" | 22 #include "ui/views/bubble/bubble_dialog_delegate.h" |
23 #include "ui/views/controls/label.h" | 23 #include "ui/views/controls/label.h" |
24 #include "ui/views/layout/fill_layout.h" | 24 #include "ui/views/layout/fill_layout.h" |
25 #include "ui/views/widget/widget.h" | 25 #include "ui/views/widget/widget.h" |
| 26 #include "ui/wm/core/window_animations.h" |
26 | 27 |
27 namespace ash { | 28 namespace ash { |
28 namespace { | 29 namespace { |
29 | 30 |
30 const int kTooltipAppearanceDelay = 1000; // msec | 31 const int kTooltipAppearanceDelay = 1000; // msec |
31 | 32 |
32 // Tooltip layout constants. | 33 // Tooltip layout constants. |
33 | 34 |
34 // Shelf item tooltip height. | 35 // Shelf item tooltip height. |
35 const int kTooltipHeight = 24; | 36 const int kTooltipHeight = 24; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 gfx::Size CalculatePreferredSize() const override { | 102 gfx::Size CalculatePreferredSize() const override { |
102 const gfx::Size size = BubbleDialogDelegateView::GetPreferredSize(); | 103 const gfx::Size size = BubbleDialogDelegateView::GetPreferredSize(); |
103 const int kTooltipMinHeight = kTooltipHeight - 2 * kTooltipTopBottomMargin; | 104 const int kTooltipMinHeight = kTooltipHeight - 2 * kTooltipTopBottomMargin; |
104 return gfx::Size(std::min(size.width(), kTooltipMaxWidth), | 105 return gfx::Size(std::min(size.width(), kTooltipMaxWidth), |
105 std::max(size.height(), kTooltipMinHeight)); | 106 std::max(size.height(), kTooltipMinHeight)); |
106 } | 107 } |
107 | 108 |
108 void OnBeforeBubbleWidgetInit(views::Widget::InitParams* params, | 109 void OnBeforeBubbleWidgetInit(views::Widget::InitParams* params, |
109 views::Widget* bubble_widget) const override { | 110 views::Widget* bubble_widget) const override { |
110 // Place the bubble in the same display as the anchor. | 111 // Place the bubble in the same display as the anchor. |
111 WmWindow::Get(anchor_widget()->GetNativeWindow()) | 112 RootWindowController::ForWindow(anchor_widget()->GetNativeWindow()) |
112 ->GetRootWindowController() | |
113 ->ConfigureWidgetInitParamsForContainer( | 113 ->ConfigureWidgetInitParamsForContainer( |
114 bubble_widget, kShellWindowId_SettingBubbleContainer, params); | 114 bubble_widget, kShellWindowId_SettingBubbleContainer, params); |
115 } | 115 } |
116 | 116 |
117 int GetDialogButtons() const override { return ui::DIALOG_BUTTON_NONE; } | 117 int GetDialogButtons() const override { return ui::DIALOG_BUTTON_NONE; } |
118 | 118 |
119 DISALLOW_COPY_AND_ASSIGN(ShelfTooltipBubble); | 119 DISALLOW_COPY_AND_ASSIGN(ShelfTooltipBubble); |
120 }; | 120 }; |
121 | 121 |
122 ShelfTooltipManager::ShelfTooltipManager(ShelfView* shelf_view) | 122 ShelfTooltipManager::ShelfTooltipManager(ShelfView* shelf_view) |
123 : timer_delay_(kTooltipAppearanceDelay), | 123 : timer_delay_(kTooltipAppearanceDelay), |
124 shelf_view_(shelf_view), | 124 shelf_view_(shelf_view), |
125 bubble_(nullptr), | 125 bubble_(nullptr), |
126 weak_factory_(this) { | 126 weak_factory_(this) { |
127 shelf_view_->shelf()->AddObserver(this); | 127 shelf_view_->shelf()->AddObserver(this); |
128 ShellPort::Get()->AddPointerWatcher(this, | 128 ShellPort::Get()->AddPointerWatcher(this, |
129 views::PointerWatcherEventTypes::BASIC); | 129 views::PointerWatcherEventTypes::BASIC); |
130 } | 130 } |
131 | 131 |
132 ShelfTooltipManager::~ShelfTooltipManager() { | 132 ShelfTooltipManager::~ShelfTooltipManager() { |
133 ShellPort::Get()->RemovePointerWatcher(this); | 133 ShellPort::Get()->RemovePointerWatcher(this); |
134 shelf_view_->shelf()->RemoveObserver(this); | 134 shelf_view_->shelf()->RemoveObserver(this); |
135 WmWindow* window = nullptr; | 135 aura::Window* window = nullptr; |
136 if (shelf_view_->GetWidget()) | 136 if (shelf_view_->GetWidget()) |
137 window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow()); | 137 window = shelf_view_->GetWidget()->GetNativeWindow(); |
138 if (window) | 138 if (window) |
139 window->RemoveLimitedPreTargetHandler(this); | 139 wm::RemoveLimitedPreTargetHandlerForWindow(this, window); |
140 } | 140 } |
141 | 141 |
142 void ShelfTooltipManager::Init() { | 142 void ShelfTooltipManager::Init() { |
143 WmWindow* window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow()); | 143 wm::AddLimitedPreTargetHandlerForWindow( |
144 window->AddLimitedPreTargetHandler(this); | 144 this, shelf_view_->GetWidget()->GetNativeWindow()); |
145 } | 145 } |
146 | 146 |
147 void ShelfTooltipManager::Close() { | 147 void ShelfTooltipManager::Close() { |
148 timer_.Stop(); | 148 timer_.Stop(); |
149 if (bubble_) | 149 if (bubble_) |
150 bubble_->GetWidget()->Close(); | 150 bubble_->GetWidget()->Close(); |
151 bubble_ = nullptr; | 151 bubble_ = nullptr; |
152 } | 152 } |
153 | 153 |
154 bool ShelfTooltipManager::IsVisible() const { | 154 bool ShelfTooltipManager::IsVisible() const { |
155 return bubble_ && bubble_->GetWidget()->IsVisible(); | 155 return bubble_ && bubble_->GetWidget()->IsVisible(); |
156 } | 156 } |
157 | 157 |
158 views::View* ShelfTooltipManager::GetCurrentAnchorView() const { | 158 views::View* ShelfTooltipManager::GetCurrentAnchorView() const { |
159 return bubble_ ? bubble_->GetAnchorView() : nullptr; | 159 return bubble_ ? bubble_->GetAnchorView() : nullptr; |
160 } | 160 } |
161 | 161 |
162 void ShelfTooltipManager::ShowTooltip(views::View* view) { | 162 void ShelfTooltipManager::ShowTooltip(views::View* view) { |
163 timer_.Stop(); | 163 timer_.Stop(); |
164 if (bubble_) { | 164 if (bubble_) { |
165 // Cancel the hiding animation to hide the old bubble immediately. | 165 // Cancel the hiding animation to hide the old bubble immediately. |
166 WmWindow::Get(bubble_->GetWidget()->GetNativeWindow()) | 166 ::wm::SetWindowVisibilityAnimationTransition( |
167 ->SetVisibilityAnimationTransition(::wm::ANIMATE_NONE); | 167 bubble_->GetWidget()->GetNativeWindow(), ::wm::ANIMATE_NONE); |
168 Close(); | 168 Close(); |
169 } | 169 } |
170 | 170 |
171 if (!ShouldShowTooltipForView(view)) | 171 if (!ShouldShowTooltipForView(view)) |
172 return; | 172 return; |
173 | 173 |
174 views::BubbleBorder::Arrow arrow = views::BubbleBorder::Arrow::NONE; | 174 views::BubbleBorder::Arrow arrow = views::BubbleBorder::Arrow::NONE; |
175 switch (shelf_view_->shelf()->alignment()) { | 175 switch (shelf_view_->shelf()->alignment()) { |
176 case SHELF_ALIGNMENT_BOTTOM: | 176 case SHELF_ALIGNMENT_BOTTOM: |
177 case SHELF_ALIGNMENT_BOTTOM_LOCKED: | 177 case SHELF_ALIGNMENT_BOTTOM_LOCKED: |
178 arrow = views::BubbleBorder::BOTTOM_CENTER; | 178 arrow = views::BubbleBorder::BOTTOM_CENTER; |
179 break; | 179 break; |
180 case SHELF_ALIGNMENT_LEFT: | 180 case SHELF_ALIGNMENT_LEFT: |
181 arrow = views::BubbleBorder::LEFT_CENTER; | 181 arrow = views::BubbleBorder::LEFT_CENTER; |
182 break; | 182 break; |
183 case SHELF_ALIGNMENT_RIGHT: | 183 case SHELF_ALIGNMENT_RIGHT: |
184 arrow = views::BubbleBorder::RIGHT_CENTER; | 184 arrow = views::BubbleBorder::RIGHT_CENTER; |
185 break; | 185 break; |
186 } | 186 } |
187 | 187 |
188 base::string16 text = shelf_view_->GetTitleForView(view); | 188 base::string16 text = shelf_view_->GetTitleForView(view); |
189 bubble_ = new ShelfTooltipBubble(view, arrow, text); | 189 bubble_ = new ShelfTooltipBubble(view, arrow, text); |
190 WmWindow* window = WmWindow::Get(bubble_->GetWidget()->GetNativeWindow()); | 190 aura::Window* window = bubble_->GetWidget()->GetNativeWindow(); |
191 window->SetVisibilityAnimationType( | 191 ::wm::SetWindowVisibilityAnimationType( |
192 ::wm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL); | 192 window, ::wm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL); |
193 window->SetVisibilityAnimationTransition(::wm::ANIMATE_HIDE); | 193 ::wm::SetWindowVisibilityAnimationTransition(window, ::wm::ANIMATE_HIDE); |
194 bubble_->GetWidget()->Show(); | 194 bubble_->GetWidget()->Show(); |
195 } | 195 } |
196 | 196 |
197 void ShelfTooltipManager::ShowTooltipWithDelay(views::View* view) { | 197 void ShelfTooltipManager::ShowTooltipWithDelay(views::View* view) { |
198 if (ShouldShowTooltipForView(view)) { | 198 if (ShouldShowTooltipForView(view)) { |
199 timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(timer_delay_), | 199 timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(timer_delay_), |
200 base::Bind(&ShelfTooltipManager::ShowTooltip, | 200 base::Bind(&ShelfTooltipManager::ShowTooltip, |
201 weak_factory_.GetWeakPtr(), view)); | 201 weak_factory_.GetWeakPtr(), view)); |
202 } | 202 } |
203 } | 203 } |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 254 |
255 bool ShelfTooltipManager::ShouldShowTooltipForView(views::View* view) { | 255 bool ShelfTooltipManager::ShouldShowTooltipForView(views::View* view) { |
256 Shelf* shelf = shelf_view_ ? shelf_view_->shelf() : nullptr; | 256 Shelf* shelf = shelf_view_ ? shelf_view_->shelf() : nullptr; |
257 return shelf && shelf_view_->ShouldShowTooltipForView(view) && | 257 return shelf && shelf_view_->ShouldShowTooltipForView(view) && |
258 (shelf->GetVisibilityState() == SHELF_VISIBLE || | 258 (shelf->GetVisibilityState() == SHELF_VISIBLE || |
259 (shelf->GetVisibilityState() == SHELF_AUTO_HIDE && | 259 (shelf->GetVisibilityState() == SHELF_AUTO_HIDE && |
260 shelf->GetAutoHideState() == SHELF_AUTO_HIDE_SHOWN)); | 260 shelf->GetAutoHideState() == SHELF_AUTO_HIDE_SHOWN)); |
261 } | 261 } |
262 | 262 |
263 } // namespace ash | 263 } // namespace ash |
OLD | NEW |