Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set the background color of a widget like combobox or double spin box?

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 QComboBox or QDoubleSpinBox?

like image 266
AMM Avatar asked Oct 07 '08 09:10

AMM


People also ask

How do I change the color of my QComboBox?

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; }");


1 Answers

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.

like image 116
Caleb Huitt - cjhuitt Avatar answered Oct 07 '22 14:10

Caleb Huitt - cjhuitt