[Solved] QFileDialog::getOpenFileName breaks message boxes etc.
-
Yes, I meant QApplication::processEvent() is the problem here. Sorry if I was unclear. I'll reupload your example in two files, so that other people can see the problem.
So: Problem with comment why (Please use this code for tests):
http://dl.dropbox.com/u/32965023/bugTest/bugTest.pro
http://dl.dropbox.com/u/32965023/bugTest/main.cpp
http://dl.dropbox.com/u/32965023/bugTest/test.hEDIT: @Gerolf, yes see my previous comment as to why it happens
EDIT2: Well yes, it might be a feature, but the problem is that QWidget removes that event again, as soon as another one gets created (If there's no processEvents in between. I think the same code should be added to native widgets -
[quote author="Gerolf" date="1308943261"]
This means, it's not a bug, it's a feature :-)[/quote]
Wow, thank you so much!!! Best one-line-fix ever ;-)However, there is one strange thought left: Why do several standard dialogs show different behaviours? How come that message and input boxes will silently "go away", a QErrorMessage will "hang", and QFileDialogs won't be impressed at all by this QApplication::quitOnLastWindowClosed property (try it out, file dialogs are still working in that state).
And then the differences in behaviour depending on which constructor you use and whether it's a native look or not -- that's just odd.
But anyway, thanks again, huge relief for me. Solved!
-
This is part of the QWidget constructor: IMO, it should also be executed when constructing native windows.
EDIT: Oops, forgot code
@
if (isWindow() || parentWidget()->isVisible()) {
// remove posted quit events when showing a new window
QCoreApplication::removePostedEvents(qApp, QEvent::Quit);
@ -
But QFileDialog with use native dialog opens a nativ windiows file dialog. This does not look at the Qt event loop.
[quote author="loladiro" date="1308943850"]@
if (isWindow() || parentWidget()->isVisible()) {
// remove posted quit events when showing a new window
QCoreApplication::removePostedEvents(qApp, QEvent::Quit);
@[/quote]This is the close event. The signal quit is different and as it is in the same thread, it's executed directly.
-
No it's not and that on purpose so that if there is a brief period with no active widget, the event is remove again:
@
void QApplicationPrivate::emitLastWindowClosed()
{
if (qApp && qApp->d_func()->in_exec) {
if (QApplicationPrivate::quitOnLastWindowClosed) {
// get ready to quit, this event might be removed if the
// event loop is re-entered, however
QApplication::postEvent(qApp, new QEvent(QEvent::Quit));
}
emit qApp->lastWindowClosed();
}
}
@EDIT: To explain (I'm sure @Gerolf, you know what this means, but now everybody reading this thread will), the close event on QApplication is one executed directly (which would be sendEvent()), but postponed until the eventLoop is run next, in order to give QWidget a chance to remove it again.