Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Side by Side Diff: ash/shelf/shelf_tooltip_manager.cc

Issue 2899253002: chromeos: Rename ash::WmShelf to Shelf (Closed)
Patch Set: cleanup Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_view.h" 10 #include "ash/shelf/shelf_view.h"
10 #include "ash/shelf/wm_shelf.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.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"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_->wm_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_->wm_shelf()->RemoveObserver(this); 134 shelf_view_->shelf()->RemoveObserver(this);
135 WmWindow* window = nullptr; 135 WmWindow* window = nullptr;
136 if (shelf_view_->GetWidget()) 136 if (shelf_view_->GetWidget())
137 window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow()); 137 window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow());
138 if (window) 138 if (window)
139 window->RemoveLimitedPreTargetHandler(this); 139 window->RemoveLimitedPreTargetHandler(this);
140 } 140 }
141 141
142 void ShelfTooltipManager::Init() { 142 void ShelfTooltipManager::Init() {
143 WmWindow* window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow()); 143 WmWindow* window = WmWindow::Get(shelf_view_->GetWidget()->GetNativeWindow());
144 window->AddLimitedPreTargetHandler(this); 144 window->AddLimitedPreTargetHandler(this);
(...skipping 20 matching lines...) Expand all
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 WmWindow::Get(bubble_->GetWidget()->GetNativeWindow())
167 ->SetVisibilityAnimationTransition(::wm::ANIMATE_NONE); 167 ->SetVisibilityAnimationTransition(::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_->wm_shelf()->GetAlignment()) { 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;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 // AutoHide state change happens during an event filter, so immediate close 246 // AutoHide state change happens during an event filter, so immediate close
247 // may cause a crash in the HandleMouseEvent() after the filter. So we just 247 // may cause a crash in the HandleMouseEvent() after the filter. So we just
248 // schedule the Close here. 248 // schedule the Close here.
249 base::ThreadTaskRunnerHandle::Get()->PostTask( 249 base::ThreadTaskRunnerHandle::Get()->PostTask(
250 FROM_HERE, 250 FROM_HERE,
251 base::Bind(&ShelfTooltipManager::Close, weak_factory_.GetWeakPtr())); 251 base::Bind(&ShelfTooltipManager::Close, weak_factory_.GetWeakPtr()));
252 } 252 }
253 } 253 }
254 254
255 bool ShelfTooltipManager::ShouldShowTooltipForView(views::View* view) { 255 bool ShelfTooltipManager::ShouldShowTooltipForView(views::View* view) {
256 WmShelf* shelf = shelf_view_ ? shelf_view_->wm_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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698