I have some Qt code that looks like this:
MyWidget::slotButtonClicked()
{
MyDialog dialog;
dialog.exec();
}
The catch here is that MyDialog spawns a thread that does some I/O in the background (see below). This is where I suspect my problem with this otherwise very common code comes from:
Sometimes, this slot gets triggered recursively by mouse events during the execution of the dialog's event loop, which should not be possible since the dialog is modal.
The stack of my GUI thread roughly looks like this (bottom-to-top):
- [...]
- QApplication::exec()
- [...]
- QEventLoop::exec()
- [Mouse event stuff...]
- [QAbstractButton stuff...]
- MyWidget::slotButtonClicked()
- QDialog::exec()
- QEventLoop::exec()
- [Mouse event stuff...]
- [QAbstractButton stuff...]
- MyWidget::slotButtonClicked()
- etc.
I'm looking for an explanation of how this can happen, and how the thread might have something to do with this...
More info about the thread:
The dialog+thread is basically implemented as suggested in an earlier question of mine: Race condition with QThread/QDialog
The thread is spawned during the dialog's showEvent, and the thread's "finished" signal is connected to the dialog (queued connection) and can accept/reject the dialog.