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
Hi, I have troubles with RibbonGroup and RibbonToolBarControl.
1) RibbonGroup doesn't resize correctly after adding actions.
I want all controls to be the same width. After action was added I get RibbonControl by action from group and set fixed width to this control. But buttons overlap each other.
Code:
pGroup->addAction(img, text, style);
RibbonControl* control = pGroup->controlByAction(pAct);
control->setFixedWidth(50);
Looks like group layout adjusts only when action added.
2) For RibbonToolBarControl doesn't work setMargin. In previous version all was fine.
Code:
RibbonToolBarControl* pToolbar= new RibbonToolBarControl(group);
pToolbar->setMargin(5);
// adding actions...
group->addControl(pToolbar);