forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp_bubble_view.h
118 lines (90 loc) · 3.94 KB
/
help_bubble_view.h
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_USER_EDUCATION_VIEWS_HELP_BUBBLE_VIEW_H_
#define COMPONENTS_USER_EDUCATION_VIEWS_HELP_BUBBLE_VIEW_H_
#include <cstddef>
#include <memory>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "components/user_education/common/help_bubble_params.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/bubble/bubble_border.h"
#include "ui/views/bubble/bubble_dialog_delegate_view.h"
#include "ui/views/controls/button/label_button.h"
namespace ui {
class MouseEvent;
} // namespace ui
namespace views {
class ImageView;
class Label;
class MdTextButton;
} // namespace views
namespace user_education {
class HelpBubbleDelegate;
// The HelpBubbleView is a special BubbleDialogDelegateView for
// in-product help which educates users about certain Chrome features in
// a deferred context.
class HelpBubbleView : public views::BubbleDialogDelegateView {
public:
METADATA_HEADER(HelpBubbleView);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kHelpBubbleElementIdForTesting);
HelpBubbleView(const HelpBubbleDelegate* delegate,
views::View* anchor_view,
HelpBubbleParams params,
absl::optional<gfx::Rect> anchor_rect = absl::nullopt);
HelpBubbleView(const HelpBubbleView&) = delete;
HelpBubbleView& operator=(const HelpBubbleView&) = delete;
~HelpBubbleView() override;
// Returns whether the given dialog is a help bubble.
static bool IsHelpBubble(views::DialogDelegate* dialog);
bool IsFocusInHelpBubble() const;
views::LabelButton* GetDefaultButtonForTesting() const;
views::LabelButton* GetNonDefaultButtonForTesting(int index) const;
protected:
// BubbleDialogDelegateView:
bool OnMousePressed(const ui::MouseEvent& event) override;
std::u16string GetAccessibleWindowTitle() const override;
void OnWidgetActivationChanged(views::Widget* widget, bool active) override;
void OnThemeChanged() override;
gfx::Size CalculatePreferredSize() const override;
gfx::Rect GetAnchorRect() const override;
private:
FRIEND_TEST_ALL_PREFIXES(HelpBubbleViewTimeoutTest,
RespectsProvidedTimeoutAfterActivate);
void MaybeStartAutoCloseTimer();
void OnTimeout();
const base::raw_ptr<const HelpBubbleDelegate> delegate_;
// Forces the anchor rect to the specified rectangle (in screen coordinates).
// If an artificial anchor rect is used, we assume the exact target cannot be
// localized, and a visible arrow is not shown.
absl::optional<gfx::Rect> force_anchor_rect_;
base::raw_ptr<views::ImageView> icon_view_ = nullptr;
std::vector<views::Label*> labels_;
// If the bubble has buttons, it must be focusable.
std::vector<views::MdTextButton*> non_default_buttons_;
base::raw_ptr<views::MdTextButton> default_button_ = nullptr;
base::raw_ptr<views::Button> close_button_ = nullptr;
// This is the base accessible name of the window.
std::u16string accessible_name_;
// This is any additional hint text to read.
std::u16string screenreader_hint_text_;
// Track the number of times the widget has been activated; if it's greater
// than 1 we won't re-read the screenreader hint again.
int activate_count_ = 0;
// Prevents the widget we're anchored to from disappearing when it loses
// focus, even if it's marked as close_on_deactivate.
std::unique_ptr<CloseOnDeactivatePin> anchor_pin_;
// Auto close timeout. If the value is 0 (default), the bubble never times
// out.
base::TimeDelta timeout_;
base::OneShotTimer auto_close_timer_;
base::OnceClosure timeout_callback_;
};
} // namespace user_education
#endif // COMPONENTS_USER_EDUCATION_VIEWS_HELP_BUBBLE_VIEW_H_