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

Unified Diff: ash/shelf/shelf_tooltip_manager.cc

Issue 1834203003: Revert of Refine ash shelf tooltip closing on non-mash ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shelf/shelf_layout_manager.cc ('k') | ash/shelf/shelf_tooltip_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_tooltip_manager.cc
diff --git a/ash/shelf/shelf_tooltip_manager.cc b/ash/shelf/shelf_tooltip_manager.cc
index 0f1d1fd299e4d6249788e68e0d62071cd2ed879d..5e25fb2aae0391ef29d2e9cd7169290bacb22e59 100644
--- a/ash/shelf/shelf_tooltip_manager.cc
+++ b/ash/shelf/shelf_tooltip_manager.cc
@@ -24,7 +24,6 @@
namespace ash {
namespace {
-
const int kTooltipTopBottomMargin = 3;
const int kTooltipLeftRightMargin = 10;
const int kTooltipAppearanceDelay = 1000; // msec
@@ -49,46 +48,53 @@
public:
ShelfTooltipBubble(views::View* anchor,
views::BubbleBorder::Arrow arrow,
- const base::string16& text)
- : views::BubbleDelegateView(anchor, arrow) {
- gfx::Insets insets =
- gfx::Insets(kArrowOffsetTopBottom, kArrowOffsetLeftRight);
- // Adjust the anchor location for asymmetrical borders of shelf item.
- if (anchor->border())
- insets += anchor->border()->GetInsets();
-
- set_anchor_view_insets(insets);
- set_close_on_esc(false);
- set_close_on_deactivate(false);
- set_can_activate(false);
- set_accept_events(false);
- set_margins(gfx::Insets(kTooltipTopBottomMargin, kTooltipLeftRightMargin));
- set_shadow(views::BubbleBorder::SMALL_SHADOW);
- SetLayoutManager(new views::FillLayout());
- // The anchor may not have the widget in tests.
- if (anchor->GetWidget() && anchor->GetWidget()->GetNativeWindow()) {
- set_parent_window(ash::Shell::GetContainer(
- anchor->GetWidget()->GetNativeWindow()->GetRootWindow(),
- ash::kShellWindowId_SettingBubbleContainer));
- }
- views::Label* label = new views::Label(text);
- label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
- label->SetEnabledColor(kTooltipTextColor);
- AddChildView(label);
- views::BubbleDelegateView::CreateBubble(this);
- SizeToContents();
- }
+ const base::string16& text);
private:
// views::View overrides:
- gfx::Size GetPreferredSize() const override {
- const gfx::Size size = views::BubbleDelegateView::GetPreferredSize();
- return gfx::Size(std::min(size.width(), kTooltipMaxWidth),
- std::max(size.height(), kTooltipMinHeight));
- }
+ gfx::Size GetPreferredSize() const override;
DISALLOW_COPY_AND_ASSIGN(ShelfTooltipBubble);
};
+
+ShelfTooltipManager::ShelfTooltipBubble::ShelfTooltipBubble(
+ views::View* anchor,
+ views::BubbleBorder::Arrow arrow,
+ const base::string16& text)
+ : views::BubbleDelegateView(anchor, arrow) {
+ gfx::Insets insets = gfx::Insets(kArrowOffsetTopBottom,
+ kArrowOffsetLeftRight);
+ // Adjust the anchor location for asymmetrical borders of shelf item.
+ if (anchor->border())
+ insets += anchor->border()->GetInsets();
+
+ set_anchor_view_insets(insets);
+ set_close_on_esc(false);
+ set_close_on_deactivate(false);
+ set_can_activate(false);
+ set_accept_events(false);
+ set_margins(gfx::Insets(kTooltipTopBottomMargin, kTooltipLeftRightMargin));
+ set_shadow(views::BubbleBorder::SMALL_SHADOW);
+ SetLayoutManager(new views::FillLayout());
+ // The anchor may not have the widget in tests.
+ if (anchor->GetWidget() && anchor->GetWidget()->GetNativeWindow()) {
+ set_parent_window(ash::Shell::GetContainer(
+ anchor->GetWidget()->GetNativeWindow()->GetRootWindow(),
+ ash::kShellWindowId_SettingBubbleContainer));
+ }
+ views::Label* label = new views::Label(text);
+ label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label->SetEnabledColor(kTooltipTextColor);
+ AddChildView(label);
+ views::BubbleDelegateView::CreateBubble(this);
+ SizeToContents();
+}
+
+gfx::Size ShelfTooltipManager::ShelfTooltipBubble::GetPreferredSize() const {
+ const gfx::Size size = views::BubbleDelegateView::GetPreferredSize();
+ return gfx::Size(std::min(size.width(), kTooltipMaxWidth),
+ std::max(size.height(), kTooltipMinHeight));
+}
ShelfTooltipManager::ShelfTooltipManager(ShelfView* shelf_view)
: timer_delay_(kTooltipAppearanceDelay),
@@ -104,10 +110,8 @@
void ShelfTooltipManager::Init() {
shelf_layout_manager_ = shelf_view_->shelf()->shelf_layout_manager();
shelf_layout_manager_->AddObserver(this);
-
- // TODO(msw): Observe events outside the shelf in mash, to close tooltips.
- aura::Window* shelf_window = shelf_view_->GetWidget()->GetNativeWindow();
- shelf_window->GetRootWindow()->AddPreTargetHandler(this);
+ // TODO(msw): Capture events outside the shelf to close tooltips?
+ shelf_view_->GetWidget()->GetNativeWindow()->AddPreTargetHandler(this);
}
void ShelfTooltipManager::Close() {
@@ -160,29 +164,31 @@
}
void ShelfTooltipManager::OnEvent(ui::Event* event) {
+ // Close the tooltip on mouse press or exit, and on most non-mouse events.
if (event->type() == ui::ET_MOUSE_PRESSED ||
- event->type() == ui::ET_MOUSE_EXITED || !event->IsMouseEvent() ||
- event->target() != shelf_view_->GetWidget()->GetNativeWindow()) {
+ event->type() == ui::ET_MOUSE_EXITED || !event->IsMouseEvent()) {
if (!event->IsKeyEvent())
Close();
return;
}
gfx::Point point = static_cast<ui::LocatedEvent*>(event)->location();
- aura::Window::ConvertPointToTarget(
- static_cast<aura::Window*>(event->target()),
- shelf_view_->GetWidget()->GetNativeWindow(), &point);
views::View::ConvertPointFromWidget(shelf_view_, &point);
+ if (IsVisible() && shelf_view_->ShouldHideTooltip(point)) {
+ Close();
+ return;
+ }
+
views::View* view = shelf_view_->GetTooltipHandlerForPoint(point);
const bool should_show = shelf_view_->ShouldShowTooltipForView(view);
-
- timer_.Stop();
- if (IsVisible() && should_show && bubble_->GetAnchorView() != view)
+ if (IsVisible() && bubble_->GetAnchorView() != view && should_show)
ShowTooltip(view);
- else if (!IsVisible() && should_show && event->type() == ui::ET_MOUSE_MOVED)
- ShowTooltipWithDelay(view);
- else if (IsVisible() && shelf_view_->ShouldHideTooltip(point))
- Close();
+
+ if (!IsVisible() && event->type() == ui::ET_MOUSE_MOVED) {
+ timer_.Stop();
+ if (should_show)
+ ShowTooltipWithDelay(view);
+ }
}
void ShelfTooltipManager::WillDeleteShelf() {
@@ -190,11 +196,9 @@
shelf_layout_manager_->RemoveObserver(this);
shelf_layout_manager_ = nullptr;
- if (shelf_view_ && shelf_view_->GetWidget()) {
- aura::Window* shelf_window = shelf_view_->GetWidget()->GetNativeWindow();
- if (shelf_window && shelf_window->GetRootWindow())
- shelf_window->GetRootWindow()->RemovePreTargetHandler(this);
- }
+ views::Widget* widget = shelf_view_ ? shelf_view_->GetWidget() : nullptr;
+ if (widget && widget->GetNativeWindow())
+ widget->GetNativeWindow()->RemovePreTargetHandler(this);
shelf_view_ = nullptr;
}
« no previous file with comments | « ash/shelf/shelf_layout_manager.cc ('k') | ash/shelf/shelf_tooltip_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698