blob: 1ecd7f5d7cdb13d5cfae915745cb4f8da0615996 (
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
|
// Copyright (c) 2011 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.
#include "base/strings/utf_string_conversions.h"
#include "ui/views/bubble/bubble_border.h"
#include "ui/views/bubble/bubble_delegate.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/widget/widget.h"
namespace ash {
namespace shell {
struct BubbleConfig {
base::string16 label;
views::View* anchor_view;
views::BubbleBorder::Arrow arrow;
};
class ExampleBubbleDelegateView : public views::BubbleDelegateView {
public:
explicit ExampleBubbleDelegateView(const BubbleConfig& config);
~ExampleBubbleDelegateView() override;
void Init() override {
SetLayoutManager(new views::FillLayout());
views::Label* label = new views::Label(label_);
AddChildView(label);
}
private:
base::string16 label_;
};
ExampleBubbleDelegateView::ExampleBubbleDelegateView(const BubbleConfig& config)
: BubbleDelegateView(config.anchor_view, config.arrow),
label_(config.label) {
}
ExampleBubbleDelegateView::~ExampleBubbleDelegateView() {
}
void CreatePointyBubble(views::View* anchor_view) {
BubbleConfig config;
config.label = base::ASCIIToUTF16("PointyBubble");
config.anchor_view = anchor_view;
config.arrow = views::BubbleBorder::TOP_LEFT;
ExampleBubbleDelegateView* bubble = new ExampleBubbleDelegateView(config);
views::BubbleDelegateView::CreateBubble(bubble)->Show();
}
} // namespace shell
} // namespace ash
|