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
Main window is moving when I toggle a dockwidget and when the main window is NOT full sized.
I am using RibbonManWindow, RibbonBar and a QMdiArea.
I created a dummy dockwidget:
QDockWidget* dock = new QDockWidget(tr("Test"), this);
dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
QLabel* lbl = new QLabel();
lbl->setPixmap(QPixmap(":/images/Media/test.png"));
dock->setWidget(lbl);
addDockWidget(Qt::LeftDockWidgetArea, dock);
groupGroups->addAction(dock->toggleViewAction());
When I enable/disable the dockwidget whe ribbonManWindow starts to move a little bit and suddenly it moves the whole window to the upper left corner.