If I want to create a window that is not a main application window (like say I want a Preferences window to pop up when a preferences menu has been clicked in the main window), how would I accomplish this?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

"Any QWidget without a parent will be in it's own window." http://doc.trolltech.com/latest/qwidget.html

I recommemd to read about window-related functions and properties of QWidget. For preference window windowModality, windowType, windowFlags may be useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.