下你所需,载你所想!
汇集开发技术源码资料

自写QMessageBox

:1.256KB :1 :2022-10-01 13:52:19

部分简介

自写QMessageBox如果开发者对于本文件有需要的可以参考。自己写的QMessageBox,界面要比原装的QMessageBox要好看的多
#include "CCustomMessageBox.h"
#include
#include
#include

#define LAYOUT_SPACING 20
#define DEFAULT_HEIGHT (100)
#define DEFAULT_WIDTH (350)
#define MIN_WEIGHT (100)
#define MIN_WIDTH (150)
#define FONT_SIZE (14)

CCustomMessageBox::CCustomMessageBox(CUSTOM_MESSAGE_TYPE type, const QString &strTitle, const QString &strInfo, QWidget *parent, Qt::WindowFlags flags)
:QDialog(parent, flags), m_eCustomType(type)
{
initialize(strInfo);
alignment();
setWindowTitle(strTitle);
resize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
setMinimumSize(MIN_WIDTH, MIN_WEIGHT);
}
CCustomMessageBox::~CCustomMessageBox()
{

自写QMessageBox

热门推荐

相关文章