QML:退出QApplication时关闭所有QWidgets

QML: Close all QWidgets when QApplication is exited

我有一个 Qt 程序,它使用 QApplication 作为其主要 window 并且还可能产生许多 QMessageBox 小部件。当主 QApplication window 退出时,我需要关闭所有这些 QMessageBox 对话框。但是,我无法使用任何正常的回调,因为 QMessageBox 似乎阻止了 onDestruction() 信号。当我单击 X 退出 QApplication 时,它的 window 消失了,但 onDestruction() 符号仅在最后一个 QMessageBox 退出时触发。请告诉我正确的方法。

编辑:

这是我的 main.cpp:

int main(int argc, char* argv[]) {
    QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

    Application app(argc, argv);
    QQmlApplicationEngine engine;

    engine.rootContext()->setContextProperty("applicationVersion", VER_FILEVERSION_STR);
    engine.rootContext()->setContextProperty("applicationDirPath", QGuiApplication::applicationDirPath());
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));

    int retval = app.exec();
    qInstallMessageHandler(0);

    return retval;
}

下面是我如何实例化 QMessageBox:

QMessageBox* errorD = new QMessageBox();
errorD->setStandardButtons(QMessageBox::Ok);
errorD->setDefaultButton(QMessageBox::Ok);
errorD->setModal(false);
errorD->setWindowTitle(title);
errorD->setText(msg);
// We reset when closed
QObject::connect(errorD, &QMessageBox::destroyed, [=]() { printf("QMBox destroyed.");});
errorD->raise();
errorD->activateWindow();
errorD->show();
QApplication::processEvents();

一个可能的解决方案是创建一个调用关闭小部件的函数的 Helper,这应该在 onClosing 中调用:

main.cpp

class Helper : public QObject
{
    Q_OBJECT
    QWidgetList widgets;
  public:
    Q_INVOKABLE void closeAllWidgets(){
        for(QWidget *w: widgets)
            w->close();
    }
    void addWidget(QWidget *w){
        widgets<<w;
    }
};

#include "main.moc"

int main(int argc, char *argv[])
{
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
    QApplication app(argc, argv);

    QQmlApplicationEngine engine;
    Helper helper;
    engine.rootContext()->setContextProperty("helper", &helper);
    engine.load(QUrl(QLatin1String("qrc:/main.qml")));
    if (engine.rootObjects().isEmpty())
        return -1;

    for(int i=1; i < 5; i++){
        QMessageBox* errorD = new QMessageBox();
        helper.addWidget(errorD);
        [...]

main.qml

import QtQuick 2.7
import QtQuick.Controls 2.0

ApplicationWindow {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")
    onClosing: helper.closeAllWidgets();
}

在下面link你会发现一个example