Jacob Krieg
Jacob Krieg

Reputation: 3164

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?

Upvotes: 8

Views: 2865

Answers (1)

king_nak
king_nak

Reputation: 11513

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

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

Upvotes: 8

Related Questions