vote up 0 vote down star

There are two QTreeViews in the screenshot below. For the one on the right, I've add a css customization:

setStyleSheet(
    "background-color: #EAF5FF;"
    "alternate-background-color: #D5EAFF;"
);

Notice however, the scrollbar appearance has changed. It went to the "windows" style, not the "windowsxp" style (which is the default, since I'm developing under Xp).

How can I use the above style settings without changing the scrollbar appearance?

I'm using QT 4.5 and Windows XP.

ScreenShot

flag

2 Answers

vote up 0 vote down check

The advice of going the QPalette route worked out. Here is the solution:

#if 0  // this causes the problem
    setStyleSheet(
        "background-color: #EAF5FF;"
        "alternate-background-color: #D5EAFF;"
    );
#else // this works correctly
    QPalette p = palette();
    p.setColor(QPalette::Base, QColor(qRgb(0xEA, 0xF5, 0xFF)));
    p.setColor(QPalette::AlternateBase, QColor(qRgb(0xD5, 0xEA, 0xFF)));
    setPalette(p);
#endif

Both methods should work according to the docs, so I'd say its a Qt bug.

Edit: After working with this new method over the past few days, I've noticed there may be a performance improvement also.

link|flag
vote up 2 vote down

Do you need one of the abilities the css customization gives you, beyond what you can do directly? For changing the colors, you can do that directly with the palette of the widget, which should preserve your style.

Also, remember that style changes are inherited, so if any widget containing the tree on the right has a different style than any one containing the tree on the left, that may cause the changes as well.

Beyond that, I would think that this appears to be a Qt bug, if indeed the only difference is the css style sheet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.