How can I make a popup window that appears before the mainwindow begins? I want the popup to have several QLineEdit widgets to receive input that I will need for the mainwindow. I searched for solutions, but I could not understand most of the examples I found. Can some one help me?
How can I make a popup window that appears before the mainwindow begins? I
Share
Just make a subclass of QDialog, execute it modally before running your normal startup logic.
Thats how I did it for an app that required a login, worked just fine. This would be the general idea in Python (it takes me less time to think about it in PyQt):