关键词: 模态对话框、非模态对话框
1. 对话框的概念
- 对话框是用户进行简短交互的顶层窗口
-
QDialog
是Qt中所有对话框窗口的基类 -
QDialog
继承于QWidget
,是一种容器类型的组件
2. QDialog
的意义
-
QDialog
作为一种专用的交互窗口而存在 -
QDialog
不能作为子部件嵌入其它容器中——为顶成窗口 -
QDialog
是定制了窗口式样的特殊的QWidget
3. 对话框的类型
- 模态对话框(
QDialog::exec()
):显示后无法与父类窗口进行交互,是一种阻塞式的对话框调用方式 - 非模态对话框(
QDialog::show()
):显示后独立存在可以同时与父窗口进行交互,是一种非阻塞式的对话框调用方式 - 模态对话框用于必须依赖用户选择的场合:如消息提示,文本选择,打印设置等
- 非模态对话框用于特殊功能设置的场合:如查找操作,属性设置等
小技巧:
1) 在栈上创建模态对话框是最简单常用的方式
2)一般情况下非模态对话框需要在堆上创建
3) 通过QDialog::setModal
函数可以创建混合特性的对话框
4)非模态对话框需要指定Qt::WA_DeleteOnClose
属性
Dialog::Dialog(QWidget *parent)
: QDialog(parent), ModalBtn(this), NormalBtn(this), MixedBtn(this)
{
ModalBtn.setText("Modal Dialog");
ModalBtn.move(20, 20);
ModalBtn.resize(100, 30);
NormalBtn.setText("Normal Dialog");
NormalBtn.move(20, 70);
NormalBtn.resize(100, 30);
MixedBtn.setText("Mixed Dialog");
MixedBtn.move(20, 120);
MixedBtn.resize(100, 30);
connect(&ModalBtn, SIGNAL(clicked()), this, SLOT(ModalBtn_Clicked()));
connect(&NormalBtn, SIGNAL(clicked()), this, SLOT(NormalBtn_Clicked()));
connect(&MixedBtn, SIGNAL(clicked()), this, SLOT(MixedBtn_Clicked()));
this->resize(140, 170);
}
void Dialog::ModalBtn_Clicked()
{
qDebug() << "ModalBtn_Clicked() Begin...";
QDialog dialog(this);
dialog.exec(); // modal dialog
qDebug() << "ModalBtn_Clicked() End...";
}
void Dialog::NormalBtn_Clicked()
{
qDebug() << "NormalBtn_Clicked() Begin...";
// normal 对话框需要在堆上定义,
// 如果定义在堆上,局部变量会自动销毁
QDialog* dialog = new QDialog(this);
dialog->setAttribute(Qt::WA_DeleteOnClose); // 设置关闭释放堆空间属性
dialog->show();
qDebug() << "NormalBtn_Clicked() End...";
}
void Dialog::MixedBtn_Clicked()
{
qDebug() << "MixedBtn_Clicked()";
QDialog* dialog = new QDialog(this);
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->setModal(true);
dialog->show();
qDebug() << "MixedBtn_Clicked()";
}
Dialog::~Dialog()
{
}
4. 对话框的返回值
- 只有模态对话框才有返回值的概念
- 模态对话框的返回值用于表示交互结果
-
QDialog::exec()
的返回值为交互结果
1)void QDialog::done(int i)
:关闭对话框并将参数作为交互结果
2)QDialog::Accepted
:用户操作成功
3)QDialog::Rejected
:用户操作失败
5. 小结
- 对话框分为模态对话框和非模态对话框
- 模态对话框是阻塞式的
- 模态对话框依赖于用户交互结果的场合
- 非模态对话框是非阻塞式的
- 非模态对话框用于功能设置场合
声明:此文章仅是本人在学习狄泰QT实验分析课程所做的笔记,文章中包含狄泰软件资料内容,一切版权归狄泰软件所有!
实验环境:ubuntu10 + Qt Creator2.4.1 + Qt SDK 4.7.4