技术专栏
Qt自定义MessageBox
Qt自定义MessageBox
Qt自带的MessageBox很多时候都不满足需求,这时候就需要自定义MessageBox,这里只是简单的介绍自定义MessageBox的实现框架,具体想要实现什么样的内容还是需要自己实现,内容实现很简单,就和普通的界面一样。
代码实现:
#ifndef GDMCONFIGWIDGET_H
#define GDMCONFIGWIDGET_H
#include <QDialog>
#include <QEventLoop>
#include <QDebug>
#include <QLabel>
#include <QToolButton>
class myMessageBox : public QDialog
{
Q_OBJECT
public:
myMessageBox(QWidget *parent = nullptr);
~myMessageBox();
public:
bool static showMessageBox(QWidget* parent,QString title,QString text);
void setText(QString str);
public slots:
void okClicked();
void cancelClicked();
private:
void closeEvent(QCloseEvent *event);
bool execs();
private:
QEventLoop* m_eventLoop;
bool ok = false;
QLabel *text;
QToolButton *okButton = nullptr;
QToolButton *cancelButton = nullptr;
};
#endif // GDMCONFIGWIDGET_H
#include "mymessagebox.h"
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QCloseEvent>
myMessageBox::myMessageBox(QWidget *parent) : QDialog(parent)
{
//初始化界面显示
text = new QLabel();
okButton = new QToolButton();
cancelButton = new QToolButton();
okButton->setText("OK");
cancelButton->setText("cancel");
text->setAlignment(Qt::AlignCenter);
QHBoxLayout *hLayout = new QHBoxLayout();
hLayout->addWidget(cancelButton,1);
hLayout->addStretch(3);
hLayout->addWidget(okButton,1);
QVBoxLayout *vLayout = new QVBoxLayout();
vLayout->addWidget(text,5);
vLayout->addLayout(hLayout,1);
connect(okButton,SIGNAL(clicked()),this,SLOT(okClicked()));
connect(cancelButton,SIGNAL(clicked()),this,SLOT(cancelClicked()));
this->setLayout(vLayout);
}
myMessageBox::~myMessageBox()
{
}
bool myMessageBox::showMessageBox(QWidget *parent, QString title, QString text)
{
myMessageBox * message = new myMessageBox(parent);
message->setWindowTitle(title);
message->setText(text);
message->resize(600,200);
//参数parent必须设置父窗口指针,否则模态设置无效;
return message->execs();
}
void myMessageBox::setText(QString str)
{
text->setText(str);
}
//确定点击
void myMessageBox::okClicked()
{
ok = true;
close();
}
//取消点击
void myMessageBox::cancelClicked()
{
ok = false;
close();
}
//关闭事件
void myMessageBox::closeEvent(QCloseEvent *event)
{
if (m_eventLoop != nullptr)
{
m_eventLoop->exit();
}
event->accept();
}
bool myMessageBox::execs()
{
// 因为QWidget没有exec()方法,所以需要自己定义来完成exec()方法;
// 而exec()方法就是直接设置窗口显示为模态,并且窗口关闭结束后返回用户选择结果(按了确定还是取消按钮);
// 这里也可以继承QDialog类,QDialog有自己的exec()方法,根据返回 Accepted, Rejected来决定是否按了确定按钮;
this->setWindowModality(Qt::ApplicationModal);
show();
// 使用事件循环QEventLoop ,不让exec()方法结束,在用户选择确定或者取消后,关闭窗口结束事件循环,并返回最后用户选择的结果;
// 根据返回结果得到用户按下了确定还是取消,采取相应的操作。从而模拟出QDialog类的exec()方法;
m_eventLoop = new QEventLoop(this);
m_eventLoop->exec();
return ok;
}
int main(int argc, char *argv[])
{
bool ok = myMessageBox::showMessageBox(this, QStringLiteral("提示"), QStringLiteral("是否删除"));
if(ok)
{
qDebug() << QString::fromLocal8Bit("确定");
}else {
qDebug() << QString::fromLocal8Bit("取消");
}
}
声明:本文内容由易百纳平台入驻作者撰写,文章观点仅代表作者本人,不代表易百纳立场。如有内容侵权或者其他问题,请联系本站进行删除。
红包
1
2
评论
打赏
- 分享
- 举报
评论
0个
手气红包
暂无数据
相关专栏
-
浏览量:15168次2020-11-12 21:55:56
-
浏览量:5824次2020-09-23 23:07:37
-
浏览量:2964次2020-05-06 15:52:54
-
浏览量:2257次2020-08-20 11:19:28
-
浏览量:2183次2020-08-03 12:02:37
-
浏览量:8121次2020-12-12 17:55:00
-
浏览量:8363次2020-12-12 17:47:04
-
浏览量:1825次2020-08-03 12:01:28
-
浏览量:9689次2020-08-19 22:41:20
-
浏览量:33919次2021-03-03 17:25:19
-
浏览量:4857次2021-06-28 15:59:34
-
浏览量:2248次2020-08-14 18:33:44
-
浏览量:4382次2021-09-13 13:47:51
-
浏览量:2782次2020-08-14 18:40:18
-
浏览量:2042次2020-08-03 13:33:48
-
浏览量:13978次2021-08-13 16:08:47
-
浏览量:5306次2017-11-23 12:40:31
-
浏览量:4808次2021-09-08 16:03:36
-
浏览量:1165次2024-02-28 16:15:25
置顶时间设置
结束时间
删除原因
-
广告/SPAM
-
恶意灌水
-
违规内容
-
文不对题
-
重复发帖
打赏作者
小王子🤴
您的支持将鼓励我继续创作!
打赏金额:
¥1
¥5
¥10
¥50
¥100
支付方式:
微信支付
打赏成功!
感谢您的打赏,如若您也想被打赏,可前往 发表专栏 哦~
举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
审核成功
发布时间设置
发布时间:
请选择发布时间设置
是否关联周任务-专栏模块
审核失败
失败原因
请选择失败原因
备注
请输入备注