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
|
// Copyright 2014 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/system/user/button_from_view.h"
#include "ash/ash_constants.h"
#include "ash/system/tray/tray_constants.h"
#include "ui/gfx/canvas.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/layout/box_layout.h"
namespace ash {
namespace {
// The border color of the user button.
const SkColor kBorderColor = 0xffdcdcdc;
} // namespace
namespace tray {
ButtonFromView::ButtonFromView(views::View* content,
views::ButtonListener* listener,
bool highlight_on_hover,
const gfx::Insets& tab_frame_inset)
: CustomButton(listener),
content_(content),
highlight_on_hover_(highlight_on_hover),
button_hovered_(false),
show_border_(false),
tab_frame_inset_(tab_frame_inset) {
set_notify_enter_exit_on_child(true);
SetLayoutManager(
new views::BoxLayout(views::BoxLayout::kHorizontal, 1, 1, 0));
AddChildView(content_);
ShowActive();
// Only make it focusable when we are active/interested in clicks.
if (listener)
SetFocusable(true);
}
ButtonFromView::~ButtonFromView() {}
void ButtonFromView::ForceBorderVisible(bool show) {
show_border_ = show;
ShowActive();
}
void ButtonFromView::OnMouseEntered(const ui::MouseEvent& event) {
button_hovered_ = true;
ShowActive();
}
void ButtonFromView::OnMouseExited(const ui::MouseEvent& event) {
button_hovered_ = false;
ShowActive();
}
void ButtonFromView::OnPaint(gfx::Canvas* canvas) {
View::OnPaint(canvas);
if (HasFocus()) {
gfx::Rect rect(GetLocalBounds());
rect.Inset(tab_frame_inset_);
canvas->DrawSolidFocusRect(rect, kFocusBorderColor);
}
}
void ButtonFromView::OnFocus() {
View::OnFocus();
// Adding focus frame.
SchedulePaint();
}
void ButtonFromView::OnBlur() {
View::OnBlur();
// Removing focus frame.
SchedulePaint();
}
void ButtonFromView::ShowActive() {
bool border_visible =
(button_hovered_ && highlight_on_hover_) || show_border_;
SkColor border_color = border_visible ? kBorderColor : SK_ColorTRANSPARENT;
SetBorder(views::Border::CreateSolidBorder(1, border_color));
if (highlight_on_hover_) {
SkColor background_color =
button_hovered_ ? kHoverBackgroundColor : kBackgroundColor;
content_->set_background(
views::Background::CreateSolidBackground(background_color));
set_background(views::Background::CreateSolidBackground(background_color));
}
SchedulePaint();
}
} // namespace tray
} // namespace ash
|