Source Code (Use browser search to find items of interest.)
Class Index
khexedit'SDisplayColor (./kdeutils/khexedit/hexeditstate.h:351)
struct SDisplayColor
{
SDisplayColor( void )
{
//
// Default colors. The selection colors will always be the one
// choses in Control Center.
//
useSystemColor = false;
offsetBg = Qt::white;
textBg = Qt::white;
secondTextBg = Qt::white;
inactiveBg = Qt::gray;
selectBg = kapp->palette().normal().highlight();
selectFg = kapp->palette().normal().highlightedText();
markBg = Qt::blue;
markFg = Qt::white;
primaryFg[0] = Qt::black;
primaryFg[1] = Qt::blue;
offsetFg = Qt::red;
secondaryFg = Qt::black;
nonPrintFg = Qt::red;
gridFg = Qt::darkCyan;
leftSeparatorFg = Qt::darkGreen;
rightSeparatorFg = Qt::darkGreen;
cursorBg = Qt::red;
cursorFg = Qt::black;
}
bool useSystemColor;
QColor offsetBg;
QColor textBg;
QColor secondTextBg;
QColor inactiveBg;
QColor selectBg;
QColor selectFg;
QColor markBg;
QColor markFg;
QColor primaryFg[2];
QColor offsetFg;
QColor secondaryFg;
QColor nonPrintFg;
QColor gridFg;
QColor leftSeparatorFg;
QColor rightSeparatorFg;
QColor cursorBg;
QColor cursorFg;
};