Related questions
QDialog exec() and getting result value
I have subclassed QDialog to implement functionality similar to QMessageBox ( I needed this to allow for customization). It has a text message and OK, Cancel buttons. I am showing the dialog using exec() to make it blocking. Now, how do …
How to return data from QDialog?
I am trying to design a main window and a QDialog, and to find the best way to return the data from a QDialog.
Right now I am catching the accepted() signal from the dialog, after which I call dialog's …