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 want to know if there is a function like QTabWidget::setTabPosition(QTabWidget::TabPosition position) in QtitanDocking.
I want to draw the tabs of mdi document panel below the document pages.
Unfortunately, there is no such setting right now. But we may add it to the public API in the next version if needed. At the moment, you can only fix this behavior in the source code. We initialize this setting in these places:
For regular tab containers it is here:
void DockTabbedLayoutPanelPrivate::initialization()
{
...
p.setTabPosition(Qtitan::BottomArea);
}
For documnet tab containers here:
DockDocumentTabbedLayoutPanel::DockDocumentTabbedLayoutPanel(...)
{
...
setTabPosition(Qtitan::TopArea);
}
Hi gentlemen, I would like to do the same, so I tried setTabPosition( LayoutArea::TopArea ) but it does nothing. The tabPosition() is well updated but nothing on screen.
I am using QTitanDocking 4.8 on windows / VS 2022.
Thanks you.
Best regards.
Jerome.