how to get text color from qplaintextedit?

1.1k Views Asked by At

I want get text color from plain text. i can get fontWeight and other format with charFormat() but when i debug foreground color, it's set to no color!!?

Please Help Me ....

sample code:

QTextCursor c = textCursor();
QTextCharFormat result = c.charFormat();

if (result.fontWeight() == QFont::Bold)
    qDebug() << "bold text";  //worked
else if (result.fontWeight() == QFont::Normal)
    qDebug() << "normal text";  //worked

if (result.foreground().color() == Qt::green)
    qDebug() << "green";  //not worked !!
else if (result.foreground().color() == Qt::blue)
    qDebug() << "blue";  //not worked !!
else
    qDebug() << "no color !!";

TNX

1

There are 1 best solutions below

1
On

If you're using Qt4 you have to use the QPalette class. QPalette stores different colors for different entities on a GUI (text color, background, etc.). It is inherited from the parent widget but can be changed for every widget you have.

QPlainTextEdit *pteEdit; // your text edit
QPalette palette = pteEdit->palette();
QColor textColor = palette.color( QPalette::WindowText );

Read up on the QPalette documentation. It might be a different color role depending on the widget type and there are subtypes. For inactive text, normal text, etc.