代码拉取完成,页面将自动刷新
#ifndef WATERPROGRESSBAR_H
#define WATERPROGRESSBAR_H
#include <QWidget>
#include <QPaintEvent>
#include <QPainter>
#include <QTimer>
class WaterProgressBar : public QWidget
{
Q_OBJECT
Q_PROPERTY(double value READ getValue WRITE setValue)
Q_PROPERTY(int radius READ getRadius WRITE setRadius)
Q_PROPERTY(QColor waterColor READ getWaterColor WRITE setWaterColor)
Q_PROPERTY(QColor bgColor READ getBgColor WRITE setBgColor)
public:
explicit WaterProgressBar(QWidget *parent = nullptr);
double getValue() const;
int getRadius() const;
QColor getWaterColor() const;
QColor getBgColor() const;
void start();
void stop();
signals:
public Q_SLOTS:
void setValue(int m_Value);
void setRadius(int m_Radius);
void setWaterColor(QColor m_WaterColor);
void setBgColor(QColor m_BgColor);
protected:
virtual void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE;
void drawWater(QPainter *);
void drawText(QPainter *);
void drawBg(QPainter *);
private:
double value;
int radius;
int offset;
QColor waterColor;
QColor bgColor;
QTimer *timer;
};
#endif // WATERPROGRESSBAR_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。