-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnavigationprogressbar.h
48 lines (36 loc) · 1.6 KB
/
navigationprogressbar.h
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
#ifndef NAVIGATIONPROGRESSBAR_H
#define NAVIGATIONPROGRESSBAR_H
#include <QWidget>
class NavigationProgressBarPrivate;
class NavigationProgressBar : public QWidget
{
Q_OBJECT
Q_PROPERTY(QStringList messageList READ messageList WRITE setMessageList)
Q_PROPERTY(int step READ step WRITE setStep)
Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor)
Q_PROPERTY(
QColor currentBackgroundColor READ currentBackgroundColor WRITE setCurrentBackgroundColor)
Q_PROPERTY(QColor foregroundColor READ foregroundColor WRITE setForegroundColor)
public:
explicit NavigationProgressBar(QWidget *parent = nullptr);
~NavigationProgressBar() override;
[[nodiscard]] auto sizeHint() const -> QSize override;
[[nodiscard]] auto minimumSizeHint() const -> QSize override;
void setMessageList(const QStringList &list);
[[nodiscard]] auto messageList() const -> QStringList;
void setStep(const int step);
[[nodiscard]] auto step() const -> int;
void setBackgroundColor(const QColor &color);
[[nodiscard]] auto backgroundColor() const -> QColor;
void setCurrentBackgroundColor(const QColor &color);
[[nodiscard]] auto currentBackgroundColor() const -> QColor;
void setForegroundColor(const QColor &color);
[[nodiscard]] auto foregroundColor() const -> QColor;
protected:
void paintEvent(QPaintEvent *event) override;
private:
void drawBackground(QPainter *painter, const bool ok);
void drawText(QPainter *painter, const bool ok);
QScopedPointer<NavigationProgressBarPrivate> d;
};
#endif // NAVIGATIONPROGRESSBAR_H