QTabWidget, setting colour of tab itself ?
-
@J.Hilk, @JonB , @JoeCFD, so I've finally got everything the way it should be and in my debug output I can see that various bits are being called, but it doesn't do what it is supposed to do, I'm not seeing the tabs in a different colour.
The modified classes:
typedef QMap<QString, QVariant> mpFaults; class TabBar : public QTabBar { private: mpFault* Faults_; protected: void paintEvent(QPaintEvent* evt) { int intTabs(count()), intPossibleFaults(Faults_->count()); QStylePainter painter(this); QStyleOptionTab opt; const char* cpszLog((QString("TabBar::paintEvent: %1 possibleFaults:%2\r\n") .arg(intTabs).arg(intPossibleFaults)).toLatin1().data()); TabBar::logToFile(cpszLog); if ( intTabs > 0 && intPossibleFaults == 0 ) { for ( int intTab=0; intTab<intTabs; intTab++ ) { QString strText(tabText(intTab)); Faults_->insert(strText, QVariant(false)); } } for( int intTab=0; intTab<intTabs; intTab++ ) { initStyleOption(&opt, intTab); const char* cpszLog((QString("TabBar::tab: %1\r\n") .arg(opt.text)).toLatin1().data()); TabBar::logToFile(cpszLog); mpFaults::iterator itTab(Faults_->find(opt.text)); if ( itTab != Faults_->end() ) { QVariant varValue(itTab.value()); bool blnState(varValue.toBool()); const char* cpszLog((QString("TabBar::blnState: %1\r\n") .arg(blnState)).toLatin1().data()); TabBar::logToFile(cpszLog); if ( blnState == true ) { const char* cpszLog((QString("TabBar::ColourSet: %1\r\n") . arg(kErrorColour)).toLatin1().data()); opt.palette.setColor(QPalette::Button, QColor(kErrorColour)); } } painter.drawControl(QStyle::CE_TabBarTabShape, opt); painter.drawControl(QStyle::CE_TabBarTabLabel, opt); } } public: static void logToFile(const char* cpszMsg) { FILE* fp(fopen("/usr/local/cgu/paint.txt", "at")); if ( fp ) { fputs(cpszMsg, fp); fclose(fp); } } TabBar(QWidget* pParent = 0) : QTabBar(pParent) { TabBar::logToFile("TabBar::TabBar!!\r\n"); Faults_ = new mpFaults(); } bool setFault (QString& strText, bool blnState) { mpFaults::iterator itTab(Faults_->find(strText)); const char* cpszLog((QString("TabBar::setFault(%1,%2)\r\n") .arg(strText).arg(blnState)).toLatin1().data()); TabBar::logToFile(cpszLog); if ( itTab != Faults_->end() ) { itTab.value() = QVariant(blnState); return true; } return false; } }; class TabWidget : public QTabWidget { public: TabWidget(QWidget* pParent = 0) : QTabWidget(pParent) { setTabBar(new TabBar()); } bool setFault(QString& strText, bool blnState) { TabBar* pTabBar(dynamic_cast<TabBar*>(tabBar())); if ( pTabBar ) { return pTabBar->setFault(strText, blnState); } return false; } };
I see all the various debug messages in the log file, but tab is not showing as red which is the string literal assigned to kErrorColour:
const char_t kErrorColour[] = "red";
Logged to file:
TabBar::paintEvent: 10 possibileFaults:10 TabBar::tab: &Overall TabBar::blnState: 1 TabBar::ColourSet: red
-
@SPlatten Probably. 4.8 is ancient code. Nobody here will try 4.8 for you. It is amazing that the people still have patience to use it. Poor you.
Let me check my code to see if you can use tabbar to change the color. But my code is much more customized.
-
- 4.8 qtabbar_cpp source code is here. copy line 1569 to 1648 to your paint event. Not sure if this will work.
https://dreamswork.github.io/qt4/qtabbar_8cpp_source.html
painting of tabs is done at line 1622. - Look at lines 1594 and 1595. These lines call initStyleOption() to create QStyleOptionTabV3 tab for each tab which is a subclass of QStyleOption
https://dreamswork.github.io/qt4/classQTabBar.html#a41b394d892263b6b5a0705fb979f3c8e
and each QStyleOption has a public palette with background color. You can change it. Try to print out the background color to see what it is. - you can find QStyleOptionTabV3 and QStyleOptionTab here
https://dreamswork.github.io/qt4/qstyleoption_8h_source.html
This way may be simpler. Good luck.
- 4.8 qtabbar_cpp source code is here. copy line 1569 to 1648 to your paint event. Not sure if this will work.
-
@SPlatten
Without wanting to digress this thread. I am surprised given the age of an old 4.8 implementation they now insist they want a change in a tab colour! Can't you say "Sorry, I have looked into it, this old version won't let me do that" ? -
@J.Hilk, @JonB , @JoeCFD, I tried another tack...that is calling tabButton of QTabBar to get the tab widget, I was then going to try setting the widget style sheet, however failed at the first hurdle:
int intTabs(count()); //This returns 10, which is the number of tabs for( int intTab=0; intTab<intTabs; intTab++ ) { QString strText(tabText(intTab)); //This works and gets the tab text, e.g. &Overall QWidget* pobjTab(tabButton(intTab, QTabBar::LeftSide)); if ( !pobjTab ) { pobjTab = tabButton(intTab, QTabBar::RightSide); } }
Calling tabButton with QTabBar::LeftSide or QTabBar::RightSide returns NULL. Have I done something wrong or is this something else that doesn't work in 4.8 ?
-
@SPlatten said in QTabWidget, setting colour of tab itself ?:
Calling tabButton with QTabBar::LeftSide or QTabBar::RightSide returns NULL. Have I done something wrong or is this something else that doesn't work in 4.8 ?
I believe either (a) the
QTabBar
does not have anyQWidget
s on/for its tabs at the time you call this or (b) it never has anyQWidget
on/for its tabs unless you callQTabBar::setTabButton(int index, QTabBar::ButtonPosition position, QWidget *widget)
.