运行 QFileDialog::getOpenFileName,无需单独的事件循环



我现在正在使用QFileDialog::getOpenFileName。但是,如本文所述,当主应用程序在对话框打开时关闭时,此操作会崩溃。您可以在此处查看如何重现崩溃的示例:

int main(int argc, char **argv) {
  QApplication application{argc, argv};
  QMainWindow *main_window = new QMainWindow();
  main_window->show();
  QPushButton *button = new QPushButton("Press me");
  main_window->setCentralWidget(button);
  QObject::connect(button, &QPushButton::clicked, [main_window]() {
    QTimer::singleShot(2000, [main_window]() { delete main_window; });
    QFileDialog::getOpenFileName(main_window, "Close me fast or I will crash!");
  });
  application.exec();
  return 0;
}

我可以改用QFileDialog与普通构造函数一起使用,如此处所述。但是,我似乎没有得到本机窗口文件打开对话框。

有没有办法通过Qt获取非崩溃程序并使用本机Windows文件打开对话框?

如果您关闭main_window而不是删除它,则不会发生任何崩溃。

顺便说一下,您可以检查是否打开了任何QFileDialog以避免错误的应用程序退出。

在下一个示例中,我将关闭对话框,但您可以实现另一种解决方案:

#include <QTimer>
#include <QApplication>
#include <QMainWindow>
#include <QPushButton>
#include <QFileDialog>
#include <QDebug>
int main(int argc, char **argv) {
  QApplication application{argc, argv};
  QMainWindow *main_window = new QMainWindow();
  main_window->show();
  QPushButton *button = new QPushButton("Press me");
  main_window->setCentralWidget(button);
  QObject::connect(button, &QPushButton::clicked, [main_window]() {
    QTimer::singleShot(2000, [main_window]() {
        QObjectList list = main_window->children();
        while (!list.isEmpty())
        {
            QObject *object= list.takeFirst();
            if (qobject_cast<QFileDialog*>(object))
            {
                qDebug() << object->objectName();
                QFileDialog* fileDialog = qobject_cast<QFileDialog*>(object);
                fileDialog->close();
            }
        }
        main_window->close();
    });
    QFileDialog::getOpenFileName(main_window, "Close me fast or I will crash!");
  });
  application.exec();
  return 0;
}

应用程序的设计已损坏。当主线程中最外层的事件循环存在时,通常会关闭应用程序。当文件对话框处于活动状态时,这不会发生 - 根据定义,其事件循环正在运行。因此,您正在做一些不该做的事情,而文件对话框只是一个替罪羊,或者是煤矿中的金丝雀,表明其他地方的破碎。

相关内容

  • 没有找到相关文章

最新更新