-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathprogressbar.cc
219 lines (178 loc) · 4.56 KB
/
progressbar.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
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
#include "progressbar.hpp"
#include <QPainter>
#include <QPropertyAnimation>
struct ProgressBar::ProgressBarPrivate
{
double minValue = 0;
double maxValue = 100;
double value = 0;
double radius = -1;
bool autoRadius = true;
QColor chunkColor = QColor(QLatin1String("#4da1ff"));
QColor textColor = QColor(64, 65, 66);
QColor baseColor = QColor(179, 179, 179);
QColor backgroundColor = Qt::transparent;
bool percent = true;
QPropertyAnimation *animation;
};
ProgressBar::ProgressBar(QWidget *parent)
: QWidget{parent}
, d_ptr(new ProgressBarPrivate)
{
d_ptr->animation = new QPropertyAnimation(this, "value", this);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
connect(this, &ProgressBar::valueChanged, this, &ProgressBar::onStartAnimation);
}
ProgressBar::~ProgressBar() = default;
auto ProgressBar::sizeHint() const -> QSize
{
return {165, 15};
}
auto ProgressBar::minimumSizeHint() const -> QSize
{
return {100, 15};
}
void ProgressBar::setValue(const double value)
{
d_ptr->value = value;
update();
}
auto ProgressBar::value() const -> double
{
return d_ptr->value;
}
void ProgressBar::setPercent(const bool percent)
{
d_ptr->percent = percent;
update();
}
auto ProgressBar::percent() const -> bool
{
return d_ptr->percent;
}
void ProgressBar::setMin(const double min)
{
d_ptr->minValue = min;
update();
}
auto ProgressBar::min() const -> double
{
return d_ptr->minValue;
}
void ProgressBar::setmax(const double max)
{
d_ptr->maxValue = max;
update();
}
auto ProgressBar::max() const -> double
{
return d_ptr->maxValue;
}
void ProgressBar::setRadius(const double radius)
{
d_ptr->radius = radius;
update();
}
auto ProgressBar::radius() const -> double
{
return d_ptr->radius;
}
void ProgressBar::setAutoRadius(bool autoRadius)
{
d_ptr->autoRadius = autoRadius;
update();
}
auto ProgressBar::autoRadius() const -> double
{
return d_ptr->autoRadius;
}
void ProgressBar::setChunkColor(const QColor &color)
{
d_ptr->chunkColor = color;
update();
}
auto ProgressBar::chunkColor() const -> QColor
{
return d_ptr->chunkColor;
}
void ProgressBar::setTextColor(const QColor &color)
{
d_ptr->textColor = color;
update();
}
auto ProgressBar::textColor() const -> QColor
{
return d_ptr->textColor;
}
void ProgressBar::setBaseColor(const QColor &color)
{
d_ptr->baseColor = color;
update();
}
auto ProgressBar::baseColor() const -> QColor
{
return d_ptr->baseColor;
}
void ProgressBar::setBackgroundColor(const QColor &color)
{
d_ptr->backgroundColor = color;
update();
}
auto ProgressBar::backgroundColor() const -> QColor
{
return d_ptr->backgroundColor;
}
void ProgressBar::onStartAnimation(const double value)
{
if (value < d_ptr->minValue || value > d_ptr->maxValue || value == d_ptr->value) {
return;
}
int start = d_ptr->value;
int end = value;
d_ptr->animation->setStartValue(start);
d_ptr->animation->setEndValue(end);
d_ptr->animation->start();
}
void ProgressBar::paintEvent(QPaintEvent *event)
{
QWidget::paintEvent(event);
QPainter painter(this);
painter.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing);
// 背景
if (d_ptr->backgroundColor != Qt::transparent) {
painter.setPen(Qt::NoPen);
painter.fillRect(rect(), d_ptr->backgroundColor);
}
drawProgressBar(&painter);
drawText(&painter);
}
void ProgressBar::drawProgressBar(QPainter *painter)
{
QRectF rect = this->rect();
if (d_ptr->radius <= 0 && d_ptr->autoRadius) {
d_ptr->radius = qMin(width(), height()) / 2.0;
}
painter->setPen(Qt::NoPen);
painter->setBrush(d_ptr->baseColor);
painter->drawRoundedRect(rect, d_ptr->radius, d_ptr->radius);
double width = this->width()
* ((d_ptr->value - d_ptr->minValue) / (d_ptr->maxValue - d_ptr->minValue));
rect.setWidth(width);
painter->setBrush(d_ptr->chunkColor);
painter->drawRoundedRect(rect, d_ptr->radius, d_ptr->radius);
}
void ProgressBar::drawText(QPainter *painter)
{
double min = qMin(width(), height());
painter->setPen(d_ptr->textColor);
QFont font("Microsoft YaHei", min / 1.5);
painter->setFont(font);
QString strValue;
if (d_ptr->percent) {
double temp = d_ptr->value / (d_ptr->maxValue - d_ptr->minValue) * 100;
strValue = QString("%1%").arg(temp, 0, 'f', 2);
} else {
strValue = QString("%1").arg(d_ptr->value, 0, 'f', 2);
}
painter->drawText(rect(), Qt::AlignCenter, strValue);
}