|
|
|
@ -356,7 +356,7 @@ TQColor TDEGlobalSettings::activeTextColor()
|
|
|
|
|
return qt_colorref2qrgb(GetSysColor(COLOR_CAPTIONTEXT));
|
|
|
|
|
#else
|
|
|
|
|
TDEConfigGroup g( TDEGlobal::config(), "WM" );
|
|
|
|
|
return g.readColorEntry( "activeForeground", tqwhiteptr );
|
|
|
|
|
return g.readColorEntry( "activeForeground", &TQt::white );
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -377,7 +377,7 @@ TQColor TDEGlobalSettings::buttonBackground()
|
|
|
|
|
TQColor TDEGlobalSettings::buttonTextColor()
|
|
|
|
|
{
|
|
|
|
|
TDEConfigGroup g( TDEGlobal::config(), "General" );
|
|
|
|
|
return g.readColorEntry( "buttonForeground", tqblackptr );
|
|
|
|
|
return g.readColorEntry( "buttonForeground", &TQt::black );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
@ -386,7 +386,7 @@ TQColor TDEGlobalSettings::buttonTextColor()
|
|
|
|
|
TQColor TDEGlobalSettings::baseColor()
|
|
|
|
|
{
|
|
|
|
|
TDEConfigGroup g( TDEGlobal::config(), "General" );
|
|
|
|
|
return g.readColorEntry( "windowBackground", tqwhiteptr );
|
|
|
|
|
return g.readColorEntry( "windowBackground", &TQt::white );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
@ -395,7 +395,7 @@ TQColor TDEGlobalSettings::baseColor()
|
|
|
|
|
TQColor TDEGlobalSettings::textColor()
|
|
|
|
|
{
|
|
|
|
|
TDEConfigGroup g( TDEGlobal::config(), "General" );
|
|
|
|
|
return g.readColorEntry( "windowForeground", tqblackptr );
|
|
|
|
|
return g.readColorEntry( "windowForeground", &TQt::black );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
@ -404,7 +404,7 @@ TQColor TDEGlobalSettings::textColor()
|
|
|
|
|
TQColor TDEGlobalSettings::highlightedTextColor()
|
|
|
|
|
{
|
|
|
|
|
TDEConfigGroup g( TDEGlobal::config(), "General" );
|
|
|
|
|
return g.readColorEntry( "selectForeground", tqwhiteptr );
|
|
|
|
|
return g.readColorEntry( "selectForeground", &TQt::white );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IMPORTANT:
|
|
|
|
|