代码拉取完成,页面将自动刷新
#ifndef GPROGRESSDIALOG_H
#define GPROGRESSDIALOG_H
#include <QObject>
#include <QLabel>
#include <QPushButton>
#include <QVBoxLayout>
#include <QGridLayout>
#include <QKeyEvent>
#include "dabstractdialog.h"
#include "dwaterprogress.h"
#include "ddialog.h"
#include <QDebug>
DWIDGET_BEGIN_NAMESPACE
class GProgressDialog: public DDialog
{
public:
GProgressDialog(QWidget *parent = nullptr);
void setLabelText(QString text);
void setValue(int value);
int maximum();
int minimum();
int value();
void setCancelButtonText(QString text);
void setRange(int min, int max);
void setCloseButtonVisiable(bool status);
bool closeButtonVisiable() const;
private:
DWaterProgress *m_progressbar;
QLabel *m_tipsText;
QPushButton *m_cancelButton;
QGridLayout *m_layout;
QWidget *m_dialogWidget;
// 需要自行实现范围的计算
int m_maximum = 100;
int m_minimum = 0;
int m_value = 0;
bool m_busy = false;
bool m_isEnabledCloseButton = true;
void reject();
};
DWIDGET_END_NAMESPACE
#endif // GPROGRESSDIALOG_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。