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
The RibbonPage has the SIGNAL 'activate' and 'activated(bool)'.
This signals are no longer emitted when they are connected to a SLOT since
version 5.3.0 , 5.3.1 and 5.4.0 . I've tested all this version.
Until version 4.x they signals work flawless.
My question is could you reproduce this and fix this?
Thanks for you help.
Yes, that's right, the two signals 'RibbonPage :: activate' and 'RibbonPage :: activated (bool)' were removed from the implementation, but left in API of RibbonPage class, in the next version we will remove them from the RibbonPage API. Instead of these signals, you can use similar signals of the RibbonBar class. For example, you can replace RibbonPage :: activated (bool) with the RibbonBar :: pageAboutToBeChanged signal (RibbonPage * page, bool & chenged), and RibbonBar :: activate can be replaced with the RibbonBar signal :: currentPageIndexChenged (int index) or RibbonBar :: currentPageChenged (RibbonPage * page).
We are sorry for the inconvenience and thank you very much for choosing our component ...