Note
Go to the end to download the full example code.
12.1.10.8.10. Dockwidget#
Create a dockWidget form the main window at the bottom dock widget area The dock widget can be destroyed by deleting the variable, that references to it.
If the dock widget is hidden by clicking the close button, it is hidden and can
be re-shown e.g. by the context menu of the toolbar of itom
.
from itom import ui
bottom_dock_window = ui(
"mainWindow.ui", ui.TYPEDOCKWIDGET, dockWidgetArea=ui.BOTTOMDOCKWIDGETAREA
)
Create a dock widget form the main window at the bottom dock widget area The dock widget can be destroyed by deleting the variable, that references to it. If the dock widget is hidden by clicking the close button, it is hidden and can be re-shown e.g. by the context menu of the toolbar of itom.
right_dock_widget = ui(
"widget.ui", ui.TYPEDOCKWIDGET, dockWidgetArea=ui.RIGHTDOCKWIDGETAREA
)
bottom_dock_window.show()
right_dock_widget.show()
Total running time of the script: (0 minutes 0.051 seconds)