How to get the text color of a QLabel?

3.5k Views Asked by At

I'm wondering how to get the text color of a specific QLabel. I'm setting text color earlier in my code an need to read it out again later to determine which action to take...

1

There are 1 best solutions below

1
On

I think you can use:

QLabel::palette()

To get the palette of this widget. Once you have the palette I guess you could retrieve the color via:

ColorRole r = QPalette::Text;
const QBrush & QPalette::brush(r); 

Once you have the QBrush you can simply use:

const QColor & QBrush::color() const