| 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/shelf/shelf_layout_manager.h" | 7 #include "ash/shelf/shelf_layout_manager.h" |
| 8 #include "ash/shelf/shelf_view.h" | 8 #include "ash/shelf/shelf_view.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
| 11 #include "ash/wm/window_animations.h" | 11 #include "ash/wm/window_animations.h" |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 16 #include "ui/aura/window.h" | 16 #include "ui/aura/window.h" |
| 17 #include "ui/aura/window_event_dispatcher.h" | 17 #include "ui/aura/window_event_dispatcher.h" |
| 18 #include "ui/events/event.h" | 18 #include "ui/events/event.h" |
| 19 #include "ui/events/event_constants.h" | 19 #include "ui/events/event_constants.h" |
| 20 #include "ui/gfx/insets.h" | 20 #include "ui/gfx/insets.h" |
| 21 #include "ui/views/bubble/bubble_delegate.h" | 21 #include "ui/views/bubble/bubble_delegate.h" |
| 22 #include "ui/views/bubble/bubble_frame_view.h" | 22 #include "ui/views/bubble/bubble_frame_view.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 | 26 |
| 27 namespace ash { | 27 namespace ash { |
| 28 namespace internal { | |
| 29 namespace { | 28 namespace { |
| 30 const int kTooltipTopBottomMargin = 3; | 29 const int kTooltipTopBottomMargin = 3; |
| 31 const int kTooltipLeftRightMargin = 10; | 30 const int kTooltipLeftRightMargin = 10; |
| 32 const int kTooltipAppearanceDelay = 1000; // msec | 31 const int kTooltipAppearanceDelay = 1000; // msec |
| 33 const int kTooltipMinHeight = 29 - 2 * kTooltipTopBottomMargin; | 32 const int kTooltipMinHeight = 29 - 2 * kTooltipTopBottomMargin; |
| 34 const SkColor kTooltipTextColor = SkColorSetRGB(0x22, 0x22, 0x22); | 33 const SkColor kTooltipTextColor = SkColorSetRGB(0x22, 0x22, 0x22); |
| 35 | 34 |
| 36 // The maximum width of the tooltip bubble. Borrowed the value from | 35 // The maximum width of the tooltip bubble. Borrowed the value from |
| 37 // ash/tooltip/tooltip_controller.cc | 36 // ash/tooltip/tooltip_controller.cc |
| 38 const int kTooltipMaxWidth = 250; | 37 const int kTooltipMaxWidth = 250; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 set_accept_events(false); | 91 set_accept_events(false); |
| 93 set_margins(gfx::Insets(kTooltipTopBottomMargin, kTooltipLeftRightMargin, | 92 set_margins(gfx::Insets(kTooltipTopBottomMargin, kTooltipLeftRightMargin, |
| 94 kTooltipTopBottomMargin, kTooltipLeftRightMargin)); | 93 kTooltipTopBottomMargin, kTooltipLeftRightMargin)); |
| 95 set_shadow(views::BubbleBorder::SMALL_SHADOW); | 94 set_shadow(views::BubbleBorder::SMALL_SHADOW); |
| 96 SetLayoutManager(new views::FillLayout()); | 95 SetLayoutManager(new views::FillLayout()); |
| 97 // The anchor may not have the widget in tests. | 96 // The anchor may not have the widget in tests. |
| 98 if (anchor->GetWidget() && anchor->GetWidget()->GetNativeView()) { | 97 if (anchor->GetWidget() && anchor->GetWidget()->GetNativeView()) { |
| 99 aura::Window* root_window = | 98 aura::Window* root_window = |
| 100 anchor->GetWidget()->GetNativeView()->GetRootWindow(); | 99 anchor->GetWidget()->GetNativeView()->GetRootWindow(); |
| 101 set_parent_window(ash::Shell::GetInstance()->GetContainer( | 100 set_parent_window(ash::Shell::GetInstance()->GetContainer( |
| 102 root_window, ash::internal::kShellWindowId_SettingBubbleContainer)); | 101 root_window, ash::kShellWindowId_SettingBubbleContainer)); |
| 103 } | 102 } |
| 104 label_ = new views::Label; | 103 label_ = new views::Label; |
| 105 label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); | 104 label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
| 106 label_->SetEnabledColor(kTooltipTextColor); | 105 label_->SetEnabledColor(kTooltipTextColor); |
| 107 AddChildView(label_); | 106 AddChildView(label_); |
| 108 views::BubbleDelegateView::CreateBubble(this); | 107 views::BubbleDelegateView::CreateBubble(this); |
| 109 } | 108 } |
| 110 | 109 |
| 111 void ShelfTooltipManager::ShelfTooltipBubble::SetText( | 110 void ShelfTooltipManager::ShelfTooltipBubble::SetText( |
| 112 const base::string16& text) { | 111 const base::string16& text) { |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 void ShelfTooltipManager::CreateTimer(int delay_in_ms) { | 367 void ShelfTooltipManager::CreateTimer(int delay_in_ms) { |
| 369 base::OneShotTimer<ShelfTooltipManager>* new_timer = | 368 base::OneShotTimer<ShelfTooltipManager>* new_timer = |
| 370 new base::OneShotTimer<ShelfTooltipManager>(); | 369 new base::OneShotTimer<ShelfTooltipManager>(); |
| 371 new_timer->Start(FROM_HERE, | 370 new_timer->Start(FROM_HERE, |
| 372 base::TimeDelta::FromMilliseconds(delay_in_ms), | 371 base::TimeDelta::FromMilliseconds(delay_in_ms), |
| 373 this, | 372 this, |
| 374 &ShelfTooltipManager::ShowInternal); | 373 &ShelfTooltipManager::ShowInternal); |
| 375 timer_.reset(new_timer); | 374 timer_.reset(new_timer); |
| 376 } | 375 } |
| 377 | 376 |
| 378 } // namespace internal | |
| 379 } // namespace ash | 377 } // namespace ash |
| OLD | NEW |