Ai
81 Star 380 Fork 168

LibQQt应用程序开发组织/LibQQt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
qqtmsgbox.h 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
tianduanrui 提交于 2019-10-03 12:18 +08:00 . 全部析构函数加virtual
#ifndef QQTMSGBOX_H
#define QQTMSGBOX_H
#include "qqtdialog.h"
#include <qqt-local.h>
namespace Ui {
class QQtMsgBox;
}
/**
* @brief The QQtMsgBox class
*
*/
class QQTSHARED_EXPORT QQtMsgBox : public QQtDialog
{
Q_OBJECT
public:
explicit QQtMsgBox ( QWidget* parent = 0 );
virtual ~QQtMsgBox();
void warning ( QString content );
void question ( QString content );
void information ( QString content );
/*
* 警告,不可选择
*/
static int warning ( QWidget* parent = 0, QString content = "" );
/*
* 提醒,供用户选择
*/
static int question ( QWidget* parent = 0, QString content = "" );
protected:
int _warning ( QString content );
int _question ( QString content );
private:
Ui::QQtMsgBox* ui;
quint32 m_time;
int delayShow;
void showYes();
void showYesAndNo();
void showNull();
int widgetW;
int widgetH;
int btnW;
int btnH;
int botoomH;
int xSpaceYes;
int xSpaceYesNo;
int ySpace;
// QObject interface
protected:
void timerEvent ( QTimerEvent* );
};
#endif // QQTMSGBOX_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/drabel/LibQQt.git
git@gitee.com:drabel/LibQQt.git
drabel
LibQQt
LibQQt
master

搜索帮助