我有一个问题,我在main()中调用我的QDialog:
app.setQuitOnLastWindowClosed(true);
splashWin startWin;
if(!startWin.exec())
{
// Rejected
return EXIT_SUCCESS;
}
// Accepted, retrieve the data
startWin.myData...
在QDialog中,我有以下代码:
splashWin::splashWin(QWidget *parent) :
QDialog(parent),
ui(new Ui::splashWin)
{
ui->setupUi(this);
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
this->setAttribute(Qt::WA_QuitOnClose);
}
void splashWin::on_OK_clicked()
{
// Prepare my data
..
accept();
}
void splashWin::show_About_Window()
{
MyAboutWindow win;
setVisible(false); // <- this causes the application to send a "reject" signal!! why??
win.exec();
setVisible(true);
}
这是一个非常简单的代码,问题是:setVisible(false)或hide()行显示about窗口但是一旦该窗口被解除,就会发送“拒绝”对话框代码并且我的应用程序关闭执行< / p>
// Rejected
return EXIT_SUCCESS;
main()的行
为什么?在文档中,我读到hide()不应返回任何内容。我正在使用Qt 4.8.2
答案 0 :(得分:1)
QDialog::setVisible(false)
会中断自己的事件循环,但您可以显式调用函数的基类版本QWidget::setVisible
,而不是为了避免这种行为:
void splashWin::show_About_Window()
{
MyAboutWindow win;
QWidget::setVisible(false);
win.exec();
setVisible(true);
}