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
Hello,
please give me a hint how I can add Actions in the Ribbon to a Layout to organize the look & feel.
I tried now with an high amount of possibilities. Finaly I created single QToolButton widgets and add them to the group, but it seems that this do not work.
So I can add every control to the Ribbon with a layout but finally not the most used QToolButton (Actions). Please help.
In current version you can use QLayout to organize widgets on a group without any issue. Like this:
RibbonGroup* group = new RibbonGroup();
QLayout* yourLayout = new YourLayout();
group->setLayout(yourLayout);
But, I'd not suggest to start adjust widgets such way at the moment. In coming version QtitanRibbon 4.0 this code will not have any effect. We will provide another mechanism for managing the widgets based on Microsoft specification, like this
msdn.microsoft.com/en-us/library/windows...316927(v=vs.85).aspx