i'm quite new to Qt and i've a question.
I've got an application with multiple windows/QFrame. I'd like them to only exist within the mainwindow (it's also the parent gadget). When I move them, I want the to stay within the parent gadget.
Thx
If you want a Multiple Document Interface (MDI) GUI you can use the QMdiArea
and QMdiSubWindow
classes to implement this. Have a look at the detailed description section of QMdiArea
for using it with a QMainWindow example, but it also works on any other widget as well.