Re: Help on QTabBar colors
Well I figured out how to do this in case anyone is interested. The QStyle (derivations) color the tabs using QPalette::Window (& WindowText) for the current tab and QPalette::Button (& ButtonText) for the non-current (selectable) tabs.
So, you need to derive from QTabWidget, so that you can get access to the protected tabBar() method. Then you can set the palette colors for these and applying it to the QTabBar* instance returned by ::tabBar().
Hope this helps anyone who is customizing the colors of the tabs...
Re: Help on QTabBar colors
Does that allow you to set a different background color for each tab?