At first, Q3DockArea was not removed in Qt4, in fact it was added. The class that was deleted was QDockArea. You can use these Q3 * classes if you have old code, why they were created.
But I would not recommend using compatibility classes. How about using QMainWindow as a QWidget. Create it with the parent widgets, but without the menu, toolbar, status bar and cancel the top-level status using setWindowFlags (), etc.
You can use it as the old QDockArea style, put it where you want, and add QDockWidgets.
In addition, the current version of Qt is 4.5.2, you do not need to use outdated versions; -)
source
share