关闭所有 QWidget 后 QApplication 不退出

QApplication dont exit after i close all QWidget

我正在编写一个 return 值为 QWidget::exec 的应用程序,但似乎我无法正确关闭 class(我需要显式调用 Gate::~Gate 来删除class) 和 QApplication::exec 永远不会退出。 Gate 是我应用的主要window

Gate::Gate(List *opciones, QWidget *parent):
QDialog(parent),
ui(new Ui::Gate)
{
    ParseOption *ctmp;
    int retvalue,i;
    ui->setupUi(this);
    validUser = false;
    setAttribute(Qt::WA_QuitOnClose);
    errno = 0; // no se de donde sale el error...
    [...code...]
    QObject::connect(ui->closeButton,&QAbstractButton::clicked,this,&QDialog::close);
    QObject::connect(ui->passwordField,&QLineEdit::textChanged,this,&hellGate::enableopenButton);
    QObject::connect(ui->openButton,&QAbstractButton::clicked,this,&hellGate::certificateUser);
    QObject::connect(this,&hellGate::validateUser,this,&QDialog::done);
}

当mi程序调用时:

emit validateUser(QDialog::Accepted);

然后退出,但是关闭时 Gate 不调用析构函数,我在 main 中调用它但是带有标志 WA_QuitonClose 应自动关闭:

int main(int argc, char *argv[])
{
    QWidgetList list;
    QApplication a(argc, argv);
    Gate w(configOptions);
    if(w.exec() == QDialog::Accepted) {
        w.~Gate();
        qDebug("enter");
    } else {
        qDebug("No enter");
    }
    list = a.topLevelWidgets();
    if(!list.isEmpty()) {
        for(int i = 0;i<list.size();i++) {
            qDebug("window: %i",list[i]->close());
        }
    } else {
        qDebug("ALL closed");
    }
    return a.exec();
}

输出是 "enter"(如果我调用 ~Gate 则输出 "ALL closed")。

我正在尝试让程序从行 "return a.exec()" 退出。 如果我不显式破坏 Gate a.topLevelWidget return 一个带有 QWidget 的列表(我想那是 Gate)。 我需要调用 w.exec() 因为我需要 Gate return 一个值并且 w.show() 声明为:

void show();

我需要调用 w.exec 并且 a.exec 在 windows w(class Gate) 关闭时完成。 我做错了什么?

P.D如果文字难以理解,抱歉,我的英语不是很好

您创建了两个事件循环:

  1. w.exec()
  2. a.exec()

第二个事件循环在您关闭对话框后开始,因此它将无限期等待window关闭。

您可以为对话框调用 show() 或根本不使用 QApplication 事件循环:

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Gate w(configOptions);
    if(w.exec() == QDialog::Accepted)
    {
        qDebug("enter");
    }
    else
    {
        qDebug("No enter");
    }
}