-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbuttoniconstatemanager.cc
More file actions
201 lines (171 loc) · 4.78 KB
/
buttoniconstatemanager.cc
File metadata and controls
201 lines (171 loc) · 4.78 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include "buttoniconstatemanager.hpp"
#include <QEnterEvent>
#include <QEvent>
#include <QMouseEvent>
#include <QPointer>
namespace {
QIcon createIconFromPaths(const QStringList &paths)
{
QIcon icon;
for (const QString &path : paths) {
if (!path.isEmpty()) {
icon.addFile(path);
}
}
return icon;
}
} // namespace
class ButtonIconStateManager::ButtonIconStateManagerPrivate
{
public:
explicit ButtonIconStateManagerPrivate(ButtonIconStateManager *q)
: q_ptr(q)
{}
ButtonIconStateManager *q_ptr;
QPointer<QAbstractButton> buttonPtr;
QIcon normalIcon;
QIcon hoverIcon;
QIcon pressedIcon;
QIcon checkedIcon;
bool isMousePressed = false;
bool isMouseHover = false;
};
ButtonIconStateManager::ButtonIconStateManager(QAbstractButton *parent)
: QObject(parent)
, d_ptr(new ButtonIconStateManagerPrivate(this))
{
d_ptr->buttonPtr = parent;
if (d_ptr->buttonPtr) {
d_ptr->buttonPtr->installEventFilter(this);
setupConnections();
// 设置初始图标
if (!d_ptr->normalIcon.isNull()) {
d_ptr->buttonPtr->setIcon(d_ptr->normalIcon);
}
}
}
ButtonIconStateManager::~ButtonIconStateManager()
{
if (d_ptr->buttonPtr) {
d_ptr->buttonPtr->removeEventFilter(this);
}
}
void ButtonIconStateManager::setNormalIcon(const QIcon &icon)
{
if (!icon.isNull()) {
d_ptr->normalIcon = icon;
if (d_ptr->buttonPtr && !d_ptr->isMouseHover && !d_ptr->isMousePressed) {
d_ptr->buttonPtr->setIcon(d_ptr->normalIcon);
}
}
}
void ButtonIconStateManager::setNormalIcon(const QStringList &iconPaths)
{
setNormalIcon(createIconFromPaths(iconPaths));
}
void ButtonIconStateManager::setHoverIcon(const QIcon &icon)
{
if (!icon.isNull()) {
d_ptr->hoverIcon = icon;
}
}
void ButtonIconStateManager::setHoverIcon(const QStringList &iconPaths)
{
setHoverIcon(createIconFromPaths(iconPaths));
}
void ButtonIconStateManager::setPressedIcon(const QIcon &icon)
{
if (!icon.isNull()) {
d_ptr->pressedIcon = icon;
}
}
void ButtonIconStateManager::setPressedIcon(const QStringList &iconPaths)
{
setPressedIcon(createIconFromPaths(iconPaths));
}
void ButtonIconStateManager::setCheckedIcon(const QIcon &icon)
{
if (!icon.isNull()) {
d_ptr->checkedIcon = icon;
updateIconBasedOnState();
}
}
void ButtonIconStateManager::setCheckedIcon(const QStringList &iconPaths)
{
setCheckedIcon(createIconFromPaths(iconPaths));
}
void ButtonIconStateManager::resetToNormal()
{
if (d_ptr->buttonPtr) {
d_ptr->buttonPtr->setIcon(d_ptr->normalIcon);
}
}
void ButtonIconStateManager::onButtonToggled(bool checked)
{
Q_UNUSED(checked)
updateIconBasedOnState();
}
bool ButtonIconStateManager::eventFilter(QObject *watched, QEvent *event)
{
if (!d_ptr->buttonPtr || watched != d_ptr->buttonPtr) {
return QObject::eventFilter(watched, event);
}
switch (event->type()) {
case QEvent::Enter:
d_ptr->isMouseHover = true;
updateIconBasedOnState();
break;
case QEvent::Leave:
d_ptr->isMouseHover = false;
updateIconBasedOnState();
break;
case QEvent::MouseButtonPress:
if (static_cast<QMouseEvent *>(event)->button() == Qt::LeftButton) {
d_ptr->isMousePressed = true;
updateIconBasedOnState();
}
break;
case QEvent::MouseButtonRelease:
if (static_cast<QMouseEvent *>(event)->button() == Qt::LeftButton) {
d_ptr->isMousePressed = false;
updateIconBasedOnState();
}
break;
case QEvent::EnabledChange: updateIconBasedOnState(); break;
default: break;
}
return QObject::eventFilter(watched, event);
}
void ButtonIconStateManager::setupConnections()
{
if (d_ptr->buttonPtr) {
connect(d_ptr->buttonPtr,
&QAbstractButton::toggled,
this,
&ButtonIconStateManager::onButtonToggled,
Qt::UniqueConnection);
}
}
void ButtonIconStateManager::updateIconBasedOnState()
{
if (!d_ptr->buttonPtr || !d_ptr->buttonPtr->isEnabled()) {
return;
}
QIcon targetIcon;
if (d_ptr->isMousePressed && !d_ptr->pressedIcon.isNull()) {
// 鼠标按下状态
targetIcon = d_ptr->pressedIcon;
} else if (d_ptr->isMouseHover && !d_ptr->hoverIcon.isNull()) {
// 鼠标悬停状态
targetIcon = d_ptr->hoverIcon;
} else if (d_ptr->buttonPtr->isChecked() && !d_ptr->checkedIcon.isNull()) {
// 选中状态
targetIcon = d_ptr->checkedIcon;
} else {
// 正常状态
targetIcon = d_ptr->normalIcon;
}
if (!targetIcon.isNull()) {
d_ptr->buttonPtr->setIcon(targetIcon);
}
}