I have a program which executes some process in main window and I need a modal dialog with some custom elements to be shown over it to show the progress. It also must block user interaction with main window. Main process should run while dialog is shown. Which way is better (in qt) for this purpose?
Actually, this sounds kinda easy (unless I misunderstand your question).
QDialog my_progress_dialog( this );
my_progress_dialog.setModal( true );
my_progress_dialog.show();
Calling show()
not exec()
will leave you in the main eventloop. At the same time, setting the dialog modal blocks all user input to the main window. Job done.
Have you looked at QProgressDialog
? It's there for exactly this purpose.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With