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 have tried to modify sample Dockling_SimplePanels.
In all samples all panels are started in docked mode.
I want a panel that starts in floating mode at a specific position in a specific size.
I tried this code:
panel_1 = dockPanelManager()->addDockPanel(tr("Panel 1"),QSize(300,300), LeftDockPanelArea);
CustomWidget *widget = new CustomWidget("Custom Widget");
panel_1->setWidget(widget);
dockPanelManager()->setDockPanelFloat(panel_1, true);
panel_1->setGeometry(200, 200, 300, 300);
But the program shows no panel_1.
What is wrong with my code?
Can you provide a sample that starts a panel in floating mode?