1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/frame/qqtprogressdialog.h
2017-08-15 15:49:51 +08:00

32 lines
533 B
C++

#ifndef QPROGRESSWINDOW_H
#define QPROGRESSWINDOW_H
#include "qqtdialog.h"
#include "qqtprogressbar.h"
namespace Ui {
class QQTProgressDialog;
}
class QQTProgressDialog : public QQTDialog
{
Q_OBJECT
public:
explicit QQTProgressDialog(QWidget *parent = 0);
~QQTProgressDialog();
void initAll();
void setRange(int min, int max);
void setContent(QString content);
public slots:
void setValue(int value);
private:
Ui::QQTProgressDialog *ui;
QQTProgressBar* bar;
};
#endif // QPROGRESSWINDOW_H