I currently have a formA that requests input from a user using another form that inherits from QDialog. The form is prompted using QDialog::exec. Now the problem is that there are going to be multiple instances of formA thus whenever any of formA opens up another form as a dialog the entire application blocks.Currently I have something like this
if(formUserInputRequired->exec()==1) //Block until the user selects from a form
{
}
Is there a way to make QDialog::exec not block the entire application I just want it to block only the instance of the form it was called on or something like that but definitely not the entire application?
Update: I do not need a blocking window. However I would like for a way to know when the user is done with the input in another form so that the original form can process that data