Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change disabled QIcon tint color

I have an application with a custom theme and the disabled icons are to brightly grayed. I would like to change the disabled icon tint color.

Now I know there is a possibility like this:

QTableWidgetItem *name = new QTableWidgetItem("test");
QIcon icon("toto.png");
icon.addPixmap(QPixmap("toto.png"),QIcon::Disabled);
name->setIcon(icon);

but I have a lot of icons and I wouldn't want to create another set of icons just for the disabled state.

Isn't it possible to change the QIcons' tint color from tinted gray to red or black or any other color?

like image 583
Jacob Krieg Avatar asked Jun 16 '15 10:06

Jacob Krieg


1 Answers

You can define your own QProxyStyle and override the generatedIconPixmap method.

This method is responsible for generating derived pixmaps for different icon states

like image 74
king_nak Avatar answered Nov 19 '22 17:11

king_nak