@SGaist Hi. Currently the default QDockWidget title bar shows label and close and float buttons. When you have 2 QDockWidgets tabbed, than the QTabBar appears abowe the title bar (if set to show QTabBar on North). I don't like this behaviour when you have title bar with label and abowe that tab with same label. It looks weird. It is not needed to have 2 labels. I know i can have custom title bar widget, but that means i will need somehow to handle when the QTabBar is visible and when not (to show/hide title bar so there are not redundant informations like label).
It could be best if i can hide the QTabBar, but still have that tabbify behaviour and some signal that is sended when QDockWidget is tabbed, so i can show everything in my custom title bar (like all tabs in that area, close/float buttons and other things i need).
I will probably need to copy all the files from Qt and do it by myself (qmainwindow, qmainwindowlayout, qdockarealayout, qdockwidget), but this will take lot of times as i saw it is around 10k lines of code.