-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQelButton.cpp
More file actions
300 lines (257 loc) · 9.11 KB
/
Copy pathQelButton.cpp
File metadata and controls
300 lines (257 loc) · 9.11 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#include "QelButton.h"
#include "../QelTheme/QelTheme.h"
#include "../QelStyleHelper/QelStyleHelper.h"
namespace qel
{
//QelButton::QelButton(QWidget *parent,
// QString text,
// ButtonSize btnSize,
// ButtonType btnType,
// bool isPlain,
// bool isRound,
// bool isCircle,
// bool isDisabled,
// bool isLoading)
// : QPushButton(parent),
// btn_text_(text),
// btn_size_(btnSize),
// btn_type_(btnType),
// is_plain_(isPlain),
// is_round_(isRound),
// is_circle_(isCircle),
// is_loading_(isLoading),
// is_disabled_(isDisabled)
//{
// this->updateStyle();
//}
//QelButton::~QelButton()
//{
//}
//ButtonSize QelButton::getSize()
//{
// return ButtonSize::Medium;
//}
//void QelButton::updateStyle()
//{
// switch (btn_size_) {
// case ButtonSize::Medium:
// this->setFixedSize(98, 36);
// break;
// case ButtonSize::Small:
// this->setFixedSize(80, 32);
// break;
// case ButtonSize::Mini:
// this->setFixedSize(80, 28);
// break;
// default:
// break;
// }
// QString type_qss = "";
// QString hover_qss = "";
// QString pressed_qss = "";
// QString type_hover_qss = "";
// switch (btn_type_)
// {
// case qel::ButtonType::Default:
// type_qss = QString("color:#606266;background-color:%1; border: 1px solid #dcdfe6;").arg(MACRO_STR(DEFAULT_COLOR));
// type_hover_qss = QString("color:#606266;background-color:%1;").arg(MACRO_STR(DEFAULT_HOVER_COLOR));
// break;
// break;
// case qel::ButtonType::Warning:
// break;
// case qel::ButtonType::Danger:
// break;
// case qel::ButtonType::Info:
// break;
// case qel::ButtonType::Text:
// break;
// case ButtonType::Primary:
// type_qss = QString("color:white;background-color:#%1;").arg(MACRO_STR(PRIMARY_COLOR));
// type_hover_qss = QString("color:white;background-color:#%1;").arg(MACRO_STR(PRIMARY_HOVER_COLOR));
// break;
// case ButtonType::Success:
// type_qss = QString("color:white;background-color:#%1;").arg(MACRO_STR(SUCCESS_COLOR));
// type_hover_qss = QString("color:white;background-color:#%1;").arg(MACRO_STR(SUCCESS_HOVER_COLOR));
// break;
// default:
// break;
// }
// QString round_qss;
// if (is_round_)
// round_qss = QString("border-radius:%1px;").arg(QString::number(this->height()/2));
// else
// round_qss = QString("border-radius:4px;");
// if (is_circle_)
// {
// round_qss = QString("border-radius:%1px;").arg(QString::number(this->height()/2));
// this->setFixedWidth(this->height());
// }
// this->setStyleSheet(QString("QPushButton{")
// + type_qss
// + round_qss
// + "}"
// + "QPushButton:hover{"
// + type_hover_qss
// + round_qss
// + "}");
// this->setText(btn_text_);
//}
QelButton::QelButton(ButtonType type,
ButtonSize size,
bool isPlain,
bool isRound,
bool isCircle,
bool isLoading,
NativeButtonType nativeType,
const QIcon &icon,
const QString &text,
QWidget *parent)
: QPushButton(text, parent),
type_(type),
size_(size),
isPlain_(isPlain),
isRound_(isRound),
isCircle_(isCircle),
isLoading_(isLoading),
nativeType_(nativeType)
{
setIcon(icon);
setProperty("qel-loading", isLoading_);
setEnabled(!isLoading_);
updateButtonStyle();
}
void QelButton::setType(ButtonType type) {
type_ = type;
updateButtonStyle();
}
void QelButton::setSize(ButtonSize size) {
size_ = size;
updateButtonStyle();
}
void QelButton::setPlain(bool isPlain) {
isPlain_ = isPlain;
updateButtonStyle();
}
void QelButton::setRound(bool isRound) {
isRound_ = isRound;
updateButtonStyle();
}
void QelButton::setCircle(bool isCircle) {
isCircle_ = isCircle;
updateButtonStyle();
}
void QelButton::setLoading(bool isLoading) {
isLoading_ = isLoading;
setEnabled(!isLoading_);
setProperty("qel-loading", isLoading_);
updateButtonStyle();
}
void QelButton::setDisabled(bool isDisabled) {
setEnabled(!isDisabled);
updateButtonStyle();
}
void QelButton::setIcon(const QIcon &icon) {
QPushButton::setIcon(icon);
}
void QelButton::setAutofocus(bool autofocus) {
setFocusPolicy(autofocus ? Qt::StrongFocus : Qt::NoFocus);
}
void QelButton::setNativeType(NativeButtonType nativeType) {
nativeType_ = nativeType;
// 设置为表单按钮类型(submit, reset, button)
if (nativeType == Submit) {
setProperty("type", "submit");
} else if (nativeType == Reset) {
setProperty("type", "reset");
} else {
setProperty("type", "button");
}
}
void QelButton::updateButtonStyle() {
QString style;
QelTheme::ButtonKind kind = QelTheme::ButtonKind::Default;
switch (type_) {
case Primary:
kind = QelTheme::ButtonKind::Primary;
break;
case Success:
kind = QelTheme::ButtonKind::Success;
break;
case Warning:
kind = QelTheme::ButtonKind::Warning;
break;
case Danger:
kind = QelTheme::ButtonKind::Danger;
break;
case Info:
kind = QelTheme::ButtonKind::Info;
break;
case Text:
kind = QelTheme::ButtonKind::Text;
break;
case Default:
default:
kind = QelTheme::ButtonKind::Default;
break;
}
const QelStyleHelper::ButtonStyle normalStyle =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Normal);
const QelStyleHelper::ButtonStyle hoverStyleToken =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Hover);
const QelStyleHelper::ButtonStyle activeStyleToken =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Active);
const QelStyleHelper::ButtonStyle focusStyleToken =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Focus);
const QelStyleHelper::ButtonStyle disabledStyleToken =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Disabled);
const QelStyleHelper::ButtonStyle loadingStyleToken =
QelStyleHelper::buttonStyle(kind, isPlain_, QelVisualState::Loading);
style += QString("QPushButton { background-color: %1; color: %2; border: 1px solid %3;")
.arg(normalStyle.background)
.arg(normalStyle.text)
.arg(normalStyle.border);
QString hoverStyle = QString("QPushButton:hover { background-color: %1; color: %2; border: 1px solid %3; }")
.arg(hoverStyleToken.background)
.arg(hoverStyleToken.text)
.arg(hoverStyleToken.border);
QString activeStyle = QString("QPushButton:pressed { background-color: %1; color: %2; border: 1px solid %3; }")
.arg(activeStyleToken.background)
.arg(activeStyleToken.text)
.arg(activeStyleToken.border);
QString focusStyle = QString("QPushButton:focus { background-color: %1; color: %2; border: 1px solid %3; outline: none; }")
.arg(focusStyleToken.background)
.arg(focusStyleToken.text)
.arg(focusStyleToken.border);
QString disabledStyle = QString("QPushButton:disabled { background-color: %1; color: %2; border: 1px solid %3; }")
.arg(disabledStyleToken.background)
.arg(disabledStyleToken.text)
.arg(disabledStyleToken.border);
QString loadingStyle = QString("QPushButton[qel-loading=\"true\"] { background-color: %1; color: %2; border: 1px solid %3; }")
.arg(loadingStyleToken.background)
.arg(loadingStyleToken.text)
.arg(loadingStyleToken.border);
switch (size_) {
case Large: style += " font-size: 16px; padding: 10px 20px;"; break;
case Medium: style += " font-size: 14px; padding: 8px 16px;"; break;
case Small: style += " font-size: 12px; padding: 6px 12px;"; break;
case Mini: style += " font-size: 10px; padding: 4px 8px;"; break;
}
QString roundQSS;
if (isRound_) {
roundQSS = QString(" border-radius: %1px;").arg(this->height()/2);
} else {
roundQSS = " border-radius: 4px;";
}
if (isCircle_) {
roundQSS = QString(" border-radius: %1px;").arg(this->height()/2);
setFixedWidth(this->height());
}
style += roundQSS + " }";
style += hoverStyle;
style += activeStyle;
style += focusStyle;
style += disabledStyle;
style += loadingStyle;
this->setStyleSheet(style);
}
} // namespace qel