1 Star 2 Fork 2

GXDE OS/garma

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gprogressdialog.h 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
#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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/GXDE-OS/garma.git
git@gitee.com:GXDE-OS/garma.git
GXDE-OS
garma
garma
master

搜索帮助