Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ash / shelf / shelf_tooltip_manager.h
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
3 // found in the LICENSE file.
4
5 #ifndef ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_
6 #define ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_
7
8 #include "ash/ash_export.h"
9 #include "ash/shelf/shelf_layout_manager_observer.h"
10 #include "ash/shelf/shelf_types.h"
11 #include "base/basictypes.h"
12 #include "base/memory/weak_ptr.h"
13 #include "base/strings/string16.h"
14 #include "ui/events/event_handler.h"
15 #include "ui/gfx/rect.h"
16 #include "ui/views/bubble/bubble_border.h"
17 #include "ui/views/bubble/bubble_delegate.h"
18
19 namespace base {
20 class Timer;
21 }
22
23 namespace views {
24 class BubbleDelegateView;
25 class Label;
26 }
27
28 namespace ash {
29 class ShelfView;
30 class ShelfLayoutManager;
31
32 namespace test {
33 class ShelfTooltipManagerTest;
34 class ShelfViewTest;
35 }
36
37 // ShelfTooltipManager manages the tooltip balloon poping up on shelf items.
38 class ASH_EXPORT ShelfTooltipManager : public ui::EventHandler,
39                                        public ShelfLayoutManagerObserver {
40  public:
41   ShelfTooltipManager(ShelfLayoutManager* shelf_layout_manager,
42                       ShelfView* shelf_view);
43   ~ShelfTooltipManager() override;
44
45   ShelfLayoutManager* shelf_layout_manager() { return shelf_layout_manager_; }
46
47   // Called when the bubble is closed.
48   void OnBubbleClosed(views::BubbleDelegateView* view);
49
50   // Shows the tooltip after a delay.  It also has the appearing animation.
51   void ShowDelayed(views::View* anchor, const base::string16& text);
52
53   // Shows the tooltip immediately.  It omits the appearing animation.
54   void ShowImmediately(views::View* anchor, const base::string16& text);
55
56   // Closes the tooltip.
57   void Close();
58
59   // Changes the arrow location of the tooltip in case that the launcher
60   // arrangement has changed.
61   void UpdateArrow();
62
63   // Resets the timer for the delayed showing |view_|.  If the timer isn't
64   // running, it starts a new timer.
65   void ResetTimer();
66
67   // Stops the timer for the delayed showing |view_|.
68   void StopTimer();
69
70   // Returns true if the tooltip is currently visible.
71   bool IsVisible();
72
73   // Returns the view to which the tooltip bubble is anchored. May be NULL.
74   views::View* GetCurrentAnchorView() { return anchor_; }
75
76   // Create an instant timer for test purposes.
77   void CreateZeroDelayTimerForTest();
78
79 protected:
80   // ui::EventHandler overrides:
81  void OnMouseEvent(ui::MouseEvent* event) override;
82  void OnTouchEvent(ui::TouchEvent* event) override;
83  void OnGestureEvent(ui::GestureEvent* event) override;
84  void OnCancelMode(ui::CancelModeEvent* event) override;
85
86   // ShelfLayoutManagerObserver overrides:
87  void WillDeleteShelf() override;
88  void WillChangeVisibilityState(ShelfVisibilityState new_state) override;
89  void OnAutoHideStateChanged(ShelfAutoHideState new_state) override;
90
91  private:
92   class ShelfTooltipBubble;
93   friend class test::ShelfViewTest;
94   friend class test::ShelfTooltipManagerTest;
95
96   void CancelHidingAnimation();
97   void CloseSoon();
98   void ShowInternal();
99   void CreateBubble(views::View* anchor, const base::string16& text);
100   void CreateTimer(int delay_in_ms);
101
102   ShelfTooltipBubble* view_;
103   views::Widget* widget_;
104   views::View* anchor_;
105   base::string16 text_;
106   scoped_ptr<base::Timer> timer_;
107
108   ShelfLayoutManager* shelf_layout_manager_;
109   ShelfView* shelf_view_;
110
111   base::WeakPtrFactory<ShelfTooltipManager> weak_factory_;
112
113   DISALLOW_COPY_AND_ASSIGN(ShelfTooltipManager);
114 };
115
116 }  // namespace ash
117
118 #endif  // ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_