tags:

views:

9059

answers:

6

I am trying to set the background color for a double spin box, and I am not sure what function I should use. I saw some function called SetBackgroundRole which accepts a Qt::ColorRole, but I am not sure how to use this one as well.

Kindly let me know, what's the simple way to change the background color of a combobox or doublespinbox?

A: 

I'd try something like

QPalette pal = widget.palette();
pal.setColor(QPalette::Window, Qt::blue);
widget.setPalette(pal);
fhe
I tried doing this, but somehow the background color is not getting updated. Any idea what could be the reason. Is there anything else you had assumed..
AJ
What i mean is should i be invoking something like a repaint or anything after doing the setPalette
AJ
I have no QT to test here, but QWidget::update() should force a repaint. Have you tried Jérôme's solution?
fhe
`QPalette::Window` is not the `backgroundRole()` of `QComboBox`, so this code does nothing for a `QComboBox`.
+5  A: 

Using a QPalette isn't guaranteed to work for all styles, because style authors are restricted by the different platforms' guidelines and by the native theme engine.

To make sure your background color will be correct, I would suggest to use the Qt Style Sheet. Here is what I did to change the background color of a QComboBox :

myComboBox->setStyleSheet("QComboBox { background-color: blue; }");

I haven't specifically tried for a QSpinBox, but I guess it'll work the same !

Jérôme
Using a stylesheet for setting the background colour isn't the correct approach, unless you're willing to also style the other sub-controls in the QComboBox (i.e. drop-down and down-arrow). See the note from the Qt documentation: "With complex widgets such as QComboBox and QScrollBar, if one property or sub-control is customized, all the other properties or sub-controls must be customized as well." Link: http://doc.trolltech.com/4.5/stylesheet-customizing.html
Krsna
+7  A: 

fhe is generally correct, but doesn't account for the widgets (like spin boxes and buttons/comboboxes) that use a different background role in the palette. A more general solution would be something like this:

QPalette pal = widget.palette();
pal.setColor(widget.backgroundRole(), Qt::blue);
widget.setPalette(pal);

Alternatively, you could look into the descriptions of the various palette roles and figure out the one you want, then apply it to the widget containing the others you want changed. The palette changes should propagate to the children widgets.

Caleb Huitt - cjhuitt
+1  A: 

Construct a palette that is blue no matter what the actual widget:

comboBox->setPalette( QPalette( Qt::blue ) );
A: 

Apparently in Qt 4.1 and onwards, you need to set this->setAutoFillBackground( true ); for the palette to apply the background color.

shake
A: 

Actually, if you look at the Qt docs for QPalette in the case of a QComboBox the background role is probably not what you want. What you want is:

QPalette::Base Used mostly as the background color for text entry widgets, but can also be used for other painting - such as the background of combobox drop down lists and toolbar handles. It is usually white or another light color.

So here is the code I am using to set the background color of a combo box I am using to match the color of the widget it is on:

QPalette pal = myComboBox->palette();
pal.setColor(QPalette::Base, pal.color(QPalette::Window));
myComboBox->setPalette(pal);
Corwin Joy