forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshelf_bubble.cc
62 lines (49 loc) · 1.95 KB
/
shelf_bubble.cc
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
// Copyright 2018 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 "ash/shelf/shelf_bubble.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "ui/aura/window.h"
#include "ui/views/bubble/bubble_frame_view.h"
namespace {
views::BubbleBorder::Arrow GetArrow(ash::ShelfAlignment alignment) {
switch (alignment) {
case ash::SHELF_ALIGNMENT_BOTTOM:
case ash::SHELF_ALIGNMENT_BOTTOM_LOCKED:
return views::BubbleBorder::BOTTOM_CENTER;
case ash::SHELF_ALIGNMENT_LEFT:
return views::BubbleBorder::LEFT_CENTER;
case ash::SHELF_ALIGNMENT_RIGHT:
return views::BubbleBorder::RIGHT_CENTER;
}
return views::BubbleBorder::Arrow::NONE;
}
} // namespace
namespace ash {
ShelfBubble::ShelfBubble(views::View* anchor,
ShelfAlignment alignment,
SkColor background_color)
: views::BubbleDialogDelegateView(anchor, GetArrow(alignment)) {
set_color(background_color);
// Place the bubble in the same display as the anchor.
set_parent_window(
anchor_widget()->GetNativeWindow()->GetRootWindow()->GetChildById(
kShellWindowId_SettingBubbleContainer));
}
ax::mojom::Role ShelfBubble::GetAccessibleWindowRole() const {
// We override the role because the base class sets it to alert dialog,
// which results in each tooltip title being announced twice on screen
// readers each time it is shown.
return ax::mojom::Role::kDialog;
}
void ShelfBubble::CreateBubble() {
// Actually create the bubble.
views::BubbleDialogDelegateView::CreateBubble(this);
// Settings that should only be changed just after bubble creation.
GetBubbleFrameView()->bubble_border()->SetCornerRadius(border_radius_);
GetBubbleFrameView()->bubble_border()->set_background_color(color());
}
int ShelfBubble::GetDialogButtons() const {
return ui::DIALOG_BUTTON_NONE;
}
} // namespace ash