* add DesktopFont

* provide button colors

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=868328
This commit is contained in:
Aaron J. Seigo 2008-10-06 04:10:34 +00:00
parent 8a1d5fc216
commit 1f95d86db4
2 changed files with 24 additions and 2 deletions

View File

@ -51,6 +51,7 @@ public:
ThemePrivate(Theme *theme)
: q(theme),
colorScheme(QPalette::Active, KColorScheme::Window, KSharedConfigPtr(0)),
buttonColorScheme(QPalette::Active, KColorScheme::Button, KSharedConfigPtr(0)),
defaultWallpaperTheme(DEFAULT_WALLPAPER_THEME),
defaultWallpaperSuffix(DEFAULT_WALLPAPER_SUFFIX),
defaultWallpaperWidth(DEFAULT_WALLPAPER_WIDTH),
@ -94,6 +95,7 @@ public:
QString themeName;
KSharedConfigPtr colors;
KColorScheme colorScheme;
KColorScheme buttonColorScheme;
KConfigGroup cfg;
QFont generalFont;
QString defaultWallpaperTheme;
@ -263,6 +265,7 @@ void Theme::setThemeName(const QString &themeName)
}
d->colorScheme = KColorScheme(QPalette::Active, KColorScheme::Window, d->colors);
d->buttonColorScheme = KColorScheme(QPalette::Active, KColorScheme::Button, d->colors);
d->hasWallpapers = !KStandardDirs::locate("data", "desktoptheme/" + theme + "/wallpapers").isEmpty();
if (d->isDefault) {
@ -396,6 +399,14 @@ QColor Theme::color(ColorRole role) const
case BackgroundColor:
return d->colorScheme.background().color();
break;
case ButtonTextColor:
return d->buttonColorScheme.foreground(KColorScheme::NormalText).color();
break;
case ButtonBackgroundColor:
return d->buttonColorScheme.background(KColorScheme::ActiveBackground).color();
break;
}
return QColor();
@ -410,7 +421,17 @@ void Theme::setFont(const QFont &font, FontRole role)
QFont Theme::font(FontRole role) const
{
Q_UNUSED(role)
return d->generalFont;
switch (role) {
case DesktopFont: {
KConfigGroup cg(KGlobal::config(), "General");
return cg.readEntry("desktopFont", QFont("Sans Serif", 10));
}
break;
case DefaultFont:
default:
return d->generalFont;
break;
}
}
QFontMetrics Theme::fontMetrics() const

View File

@ -69,7 +69,8 @@ class PLASMA_EXPORT Theme : public QObject
enum FontRole
{
DefaultFont = 0 /**< The standard text font */
DefaultFont = 0 /**< The standard text font */,
DesktopFont /**< The standard text font */
};
/**