修改 web控件

This commit is contained in:
Maicss
2020-08-26 09:26:59 +08:00
parent 18c3965742
commit 4e4f55995e
9 changed files with 209 additions and 352 deletions

21
progressload.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef PROGRESSLOAD_H
#define PROGRESSLOAD_H
#include <QWidget>
#include <QTimer>
class ProgressLoad : public QWidget
{
Q_OBJECT
public:
explicit ProgressLoad(QWidget *parent = nullptr);
void setValue(int v);
signals:
public slots:
private:
QWidget *m_progess;
int value;
QTimer *timer;
};
#endif // PROGRESSLOAD_H