QtitanDataGridModel-view DataGrid component with rich functionality for Qt.C++ and PySideQtitanRibbonReplicates Microsoft RibbonUI interface for Qt.C++ and PySideQtitanNavigationDesignUIReplicates Microsoft Navigation Design interface for Qt.C++ and PySideQtitanChartCharts and Diagrams component for Qt.C++ and PySideQtitanDockingDockable Panels and Tool Bars for Qt.C++ and PySideQtitanFastInfosetXML Compressed format FastInfoset implementation for Qt.C++ and PySideRoadmap Development 2023
FireDataGridPowerful, modern, fast, DB-Aware Grid for Delphi-FiremonkeyFireDockingDelphi IDE/Visual Studio implementation of dock panels for Delphi-Firemonkey
I want to set the position and size of a panel( DockWidgetPanel) in my program.
DockWidgetPanel panel;
panel.setGeometry(...)
or
panel.move(x,y)
seems not to work.
When you create a DockWidgetPanel with the addDockPanel(const QString& title, const QSize& sizeHint, DockPanelArea area, DockPanelBase* targetPanel)
function you can specify the window area for the panel by specifying the area parameter (left, right, ...). The sizeHint parameter specifies the recommended size for the panel. Using the targetPanel parameter you can control the order in the sequence inside the container.
Initializing the position and size of the panel using the setGeometry(), move(), resize() function works in the floating-panel mode only.