Problem QProgressBar under QMainWidow and Qdialog
General and Desktop
3
Posts
2
Posters
723
Views
1
Watching
-
Just to update the MainWindow, yes, off course it is. Even when the Dialog is modal (blocking inputs to the MainWindow) the mainwindow itself still runs it's event loop. So updates to GUI elements are still shown. You probably want to update the mainwindow from the dialog?? If so, you might need to use the parent pointer, but then still ui (from designer) elements are not accessible (KEEP IT THAT WAY!!). You need to have "set" function to call in which you may set new ui values.