So I\'ve been creating my GUI with Qt for my Python application. I\'ve now come to a situation where after a button has been pushed the appropriate deferred gets executed, w
Generally, you just show multiple parentless windows with someQWidget.show(), like:
someQWidget.show()
w1 = QLabel("Window 1") w2 = QLabel("Window 2") w1.show() w2.show()
But most likely, you want a modal standard Dialog like this. Also be sure to understand modal dialogs.