I am trying to create a window. I don’t know if it’s proper name is a pop-up window or a secondary (not main) window. I want a window to display when the user selects “setup” from the pull-down menu. On this window, I want widgets to set things like the default directory for data, user name, etc. This will require user input.
The best example I can find to describe it is in Qt Creator (2.6.2) itself. Go to Tools -> Options.
I have the following, which displays a pop-up window; but I don’t know how to add the widgets. All my window/screen development has been through the “Design” function in Creator.
QWidget *popup = new QWidget();
popup->show();
↧