blob: 67682577ae66bc3ef19e7501fd0d63712248a357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_
#define ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_
#include "ash/ash_export.h"
#include "ash/shelf/shelf_layout_manager_observer.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
#include "base/timer/timer.h"
#include "ui/events/event_handler.h"
namespace views {
class BubbleDelegateView;
class View;
}
namespace ash {
class ShelfLayoutManager;
class ShelfView;
namespace test {
class ShelfTooltipManagerTest;
class ShelfViewTest;
}
// ShelfTooltipManager manages the tooltip bubble that appears for shelf items.
class ASH_EXPORT ShelfTooltipManager : public ui::EventHandler,
public ShelfLayoutManagerObserver {
public:
explicit ShelfTooltipManager(ShelfView* shelf_view);
~ShelfTooltipManager() override;
// Initializes the tooltip manager once the shelf is shown.
void Init();
// Closes the tooltip.
void Close();
// Returns true if the tooltip is currently visible.
bool IsVisible() const;
// Returns the view to which the tooltip bubble is anchored. May be null.
views::View* GetCurrentAnchorView() const;
// Show the tooltip bubble for the specified view.
void ShowTooltip(views::View* view);
void ShowTooltipWithDelay(views::View* view);
// Set the timer delay in ms for testing.
void set_timer_delay_for_test(int timer_delay) { timer_delay_ = timer_delay; }
protected:
// ui::EventHandler overrides:
void OnEvent(ui::Event* event) override;
// ShelfLayoutManagerObserver overrides:
void WillDeleteShelf() override;
void WillChangeVisibilityState(ShelfVisibilityState new_state) override;
void OnAutoHideStateChanged(ShelfAutoHideState new_state) override;
private:
class ShelfTooltipBubble;
friend class test::ShelfViewTest;
friend class test::ShelfTooltipManagerTest;
int timer_delay_;
base::OneShotTimer timer_;
ShelfView* shelf_view_;
ShelfLayoutManager* shelf_layout_manager_;
views::BubbleDelegateView* bubble_;
base::WeakPtrFactory<ShelfTooltipManager> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(ShelfTooltipManager);
};
} // namespace ash
#endif // ASH_SHELF_SHELF_TOOLTIP_MANAGER_H_
|