2008-11-04 00:08:39 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2006-2007 Aaron Seigo <aseigo@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "theme.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QFile>
|
2008-11-09 21:41:27 +01:00
|
|
|
#include <QFileInfo>
|
2009-05-30 05:08:33 +02:00
|
|
|
#include <QTimer>
|
2009-07-20 22:30:07 +02:00
|
|
|
#include <QPair>
|
2008-11-04 00:08:39 +01:00
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#include <QX11Info>
|
|
|
|
#endif
|
|
|
|
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kcolorscheme.h>
|
|
|
|
#include <kcomponentdata.h>
|
|
|
|
#include <kconfiggroup.h>
|
|
|
|
#include <kdebug.h>
|
2009-01-26 07:22:44 +01:00
|
|
|
#include <kdirwatch.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kglobal.h>
|
|
|
|
#include <kglobalsettings.h>
|
2008-11-04 03:55:37 +01:00
|
|
|
#include <kmanagerselection.h>
|
2010-05-04 05:59:35 +02:00
|
|
|
#include <kimagecache.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <ksharedconfig.h>
|
|
|
|
#include <kstandarddirs.h>
|
|
|
|
#include <kwindowsystem.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-03-28 21:37:29 +02:00
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
#include "animations/animationscriptengine_p.h"
|
2009-10-07 20:44:33 +02:00
|
|
|
#include "libplasma-theme-global.h"
|
2010-04-28 19:40:29 +02:00
|
|
|
#include "private/packages_p.h"
|
|
|
|
#include "windoweffects.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2010-01-11 23:43:19 +01:00
|
|
|
#define DEFAULT_WALLPAPER_THEME "Ethais"
|
|
|
|
#define DEFAULT_WALLPAPER_SUFFIX ".png"
|
2008-11-04 00:08:39 +01:00
|
|
|
static const int DEFAULT_WALLPAPER_WIDTH = 1920;
|
|
|
|
static const int DEFAULT_WALLPAPER_HEIGHT = 1200;
|
|
|
|
|
|
|
|
class ThemePrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ThemePrivate(Theme *theme)
|
|
|
|
: q(theme),
|
|
|
|
colorScheme(QPalette::Active, KColorScheme::Window, KSharedConfigPtr(0)),
|
|
|
|
buttonColorScheme(QPalette::Active, KColorScheme::Button, KSharedConfigPtr(0)),
|
2009-07-08 21:25:20 +02:00
|
|
|
viewColorScheme(KColorScheme(QPalette::Active, KColorScheme::View, KSharedConfigPtr(0))),
|
2008-11-04 00:08:39 +01:00
|
|
|
defaultWallpaperTheme(DEFAULT_WALLPAPER_THEME),
|
|
|
|
defaultWallpaperSuffix(DEFAULT_WALLPAPER_SUFFIX),
|
|
|
|
defaultWallpaperWidth(DEFAULT_WALLPAPER_WIDTH),
|
|
|
|
defaultWallpaperHeight(DEFAULT_WALLPAPER_HEIGHT),
|
|
|
|
pixmapCache(0),
|
|
|
|
locolor(false),
|
|
|
|
compositingActive(KWindowSystem::compositingActive()),
|
|
|
|
isDefault(false),
|
|
|
|
useGlobal(true),
|
2009-02-24 23:42:06 +01:00
|
|
|
hasWallpapers(false),
|
|
|
|
useNativeWidgetStyle(false)
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
|
|
|
generalFont = QApplication::font();
|
2009-10-07 20:44:33 +02:00
|
|
|
ThemeConfig config;
|
|
|
|
cacheTheme = config.cacheTheme();
|
2009-05-18 14:28:19 +02:00
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
Display *dpy = QX11Info::display();
|
|
|
|
int screen = DefaultScreen(dpy);
|
|
|
|
locolor = DefaultDepth(dpy, screen) < 16;
|
|
|
|
|
|
|
|
if (!locolor) {
|
|
|
|
char net_wm_cm_name[100];
|
|
|
|
sprintf(net_wm_cm_name, "_NET_WM_CM_S%d", screen);
|
|
|
|
compositeWatch = new KSelectionWatcher(net_wm_cm_name, -1, q);
|
|
|
|
QObject::connect(compositeWatch, SIGNAL(newOwner(Window)), q, SLOT(compositingChanged()));
|
|
|
|
QObject::connect(compositeWatch, SIGNAL(lostOwner()), q, SLOT(compositingChanged()));
|
|
|
|
}
|
|
|
|
#endif
|
2009-05-30 05:08:33 +02:00
|
|
|
|
|
|
|
saveTimer = new QTimer(q);
|
|
|
|
saveTimer->setSingleShot(true);
|
|
|
|
QObject::connect(saveTimer, SIGNAL(timeout()), q, SLOT(scheduledCacheUpdate()));
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~ThemePrivate()
|
|
|
|
{
|
|
|
|
delete pixmapCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup &config()
|
|
|
|
{
|
|
|
|
if (!cfg.isValid()) {
|
|
|
|
QString groupName = "Theme";
|
|
|
|
|
|
|
|
if (!useGlobal) {
|
|
|
|
QString app = KGlobal::mainComponent().componentName();
|
|
|
|
|
|
|
|
if (!app.isEmpty() && app != "plasma") {
|
|
|
|
kDebug() << "using theme for app" << app;
|
|
|
|
groupName.append("-").append(app);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 07:22:44 +01:00
|
|
|
cfg = KConfigGroup(KSharedConfig::openConfig(themeRcFile), groupName);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return cfg;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString findInTheme(const QString &image, const QString &theme) const;
|
|
|
|
void compositingChanged();
|
2009-08-25 18:13:27 +02:00
|
|
|
void discardCache();
|
2009-05-30 05:08:33 +02:00
|
|
|
void scheduledCacheUpdate();
|
2008-12-19 02:48:42 +01:00
|
|
|
void colorsChanged();
|
2008-12-04 21:13:50 +01:00
|
|
|
bool useCache();
|
2009-01-26 07:22:44 +01:00
|
|
|
void settingsFileChanged(const QString &);
|
2009-02-24 21:49:46 +01:00
|
|
|
void setThemeName(const QString &themeName, bool writeSettings);
|
2010-03-04 23:28:39 +01:00
|
|
|
void onAppExitCleanup();
|
2010-04-28 19:40:29 +02:00
|
|
|
void processWallpaperSettings(KConfigBase *metadata);
|
|
|
|
void processAnimationSettings(const QString &theme, KConfigBase *metadata);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
static const char *defaultTheme;
|
2009-01-26 07:22:44 +01:00
|
|
|
static const char *themeRcFile;
|
2008-11-04 00:08:39 +01:00
|
|
|
static PackageStructure::Ptr packageStructure;
|
|
|
|
|
|
|
|
Theme *q;
|
|
|
|
QString themeName;
|
2009-06-26 12:02:32 +02:00
|
|
|
QList<QString> fallbackThemes;
|
2008-11-04 00:08:39 +01:00
|
|
|
KSharedConfigPtr colors;
|
|
|
|
KColorScheme colorScheme;
|
|
|
|
KColorScheme buttonColorScheme;
|
2009-07-08 21:25:20 +02:00
|
|
|
KColorScheme viewColorScheme;
|
2008-11-04 00:08:39 +01:00
|
|
|
KConfigGroup cfg;
|
|
|
|
QFont generalFont;
|
|
|
|
QString defaultWallpaperTheme;
|
|
|
|
QString defaultWallpaperSuffix;
|
|
|
|
int defaultWallpaperWidth;
|
|
|
|
int defaultWallpaperHeight;
|
2010-05-04 05:59:35 +02:00
|
|
|
KImageCache *pixmapCache;
|
2008-11-04 00:08:39 +01:00
|
|
|
KSharedConfigPtr svgElementsCache;
|
2008-12-11 00:17:12 +01:00
|
|
|
QHash<QString, QSet<QString> > invalidElements;
|
2009-05-30 05:08:33 +02:00
|
|
|
QHash<QString, QPixmap> pixmapsToCache;
|
2009-07-20 22:30:07 +02:00
|
|
|
QHash<QString, QString> keysToCache;
|
|
|
|
QHash<QString, QString> idsToCache;
|
2010-04-28 19:40:29 +02:00
|
|
|
QHash<QString, QString> animationMapping;
|
2009-05-30 05:08:33 +02:00
|
|
|
QTimer *saveTimer;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
KSelectionWatcher *compositeWatch;
|
|
|
|
#endif
|
|
|
|
bool locolor : 1;
|
|
|
|
bool compositingActive : 1;
|
|
|
|
bool isDefault : 1;
|
|
|
|
bool useGlobal : 1;
|
|
|
|
bool hasWallpapers : 1;
|
2008-12-04 21:13:50 +01:00
|
|
|
bool cacheTheme : 1;
|
2009-02-24 23:42:06 +01:00
|
|
|
bool useNativeWidgetStyle :1;
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
PackageStructure::Ptr ThemePrivate::packageStructure(0);
|
|
|
|
const char *ThemePrivate::defaultTheme = "default";
|
2009-01-26 07:22:44 +01:00
|
|
|
const char *ThemePrivate::themeRcFile = "plasmarc";
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2008-12-04 21:13:50 +01:00
|
|
|
bool ThemePrivate::useCache()
|
|
|
|
{
|
|
|
|
if (cacheTheme && !pixmapCache) {
|
2009-10-07 20:44:33 +02:00
|
|
|
ThemeConfig config;
|
2010-05-04 05:59:35 +02:00
|
|
|
pixmapCache = new KImageCache("plasma_theme_" + themeName, config.themeCacheKb() * 1024);
|
2008-12-04 21:13:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return cacheTheme;
|
|
|
|
}
|
2008-12-09 21:37:41 +01:00
|
|
|
|
2010-03-04 23:28:39 +01:00
|
|
|
void ThemePrivate::onAppExitCleanup()
|
|
|
|
{
|
|
|
|
pixmapsToCache.clear();
|
|
|
|
delete pixmapCache;
|
|
|
|
pixmapCache = 0;
|
|
|
|
cacheTheme = false;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
QString ThemePrivate::findInTheme(const QString &image, const QString &theme) const
|
|
|
|
{
|
|
|
|
//TODO: this should be using Package
|
|
|
|
QString search;
|
|
|
|
|
|
|
|
if (locolor) {
|
|
|
|
search = "desktoptheme/" + theme + "/locolor/" + image;
|
|
|
|
search = KStandardDirs::locate("data", search);
|
2009-05-01 18:28:10 +02:00
|
|
|
} else if (!compositingActive) {
|
2008-11-04 00:08:39 +01:00
|
|
|
search = "desktoptheme/" + theme + "/opaque/" + image;
|
|
|
|
search = KStandardDirs::locate("data", search);
|
2010-03-28 21:37:29 +02:00
|
|
|
} else if (WindowEffects::isEffectAvailable(WindowEffects::BlurBehind)) {
|
|
|
|
search = "desktoptheme/" + theme + "/translucent/" + image;
|
|
|
|
search = KStandardDirs::locate("data", search);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//not found or compositing enabled
|
|
|
|
if (search.isEmpty()) {
|
|
|
|
search = "desktoptheme/" + theme + '/' + image;
|
|
|
|
search = KStandardDirs::locate("data", search);
|
|
|
|
}
|
|
|
|
|
|
|
|
return search;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemePrivate::compositingChanged()
|
|
|
|
{
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
bool nowCompositingActive = compositeWatch->owner() != None;
|
|
|
|
|
|
|
|
if (compositingActive != nowCompositingActive) {
|
|
|
|
compositingActive = nowCompositingActive;
|
2009-08-25 18:13:27 +02:00
|
|
|
discardCache();
|
2008-11-04 00:08:39 +01:00
|
|
|
emit q->themeChanged();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-08-25 18:13:27 +02:00
|
|
|
void ThemePrivate::discardCache()
|
2008-11-16 21:53:24 +01:00
|
|
|
{
|
2010-05-04 05:59:35 +02:00
|
|
|
KSharedDataCache::deleteCache("plasma_theme_" + themeName);
|
2008-12-04 21:13:50 +01:00
|
|
|
delete pixmapCache;
|
|
|
|
pixmapCache = 0;
|
2008-12-11 07:24:25 +01:00
|
|
|
invalidElements.clear();
|
2009-05-30 05:08:33 +02:00
|
|
|
pixmapsToCache.clear();
|
|
|
|
saveTimer->stop();
|
2008-12-04 21:13:50 +01:00
|
|
|
|
2009-07-06 13:55:34 +02:00
|
|
|
const QString svgElementsFile = KStandardDirs::locateLocal("cache", "plasma-svgelements-" + themeName);
|
2008-12-04 21:13:50 +01:00
|
|
|
if (!svgElementsFile.isEmpty()) {
|
|
|
|
QFile f(svgElementsFile);
|
|
|
|
f.remove();
|
|
|
|
}
|
2008-12-11 07:24:25 +01:00
|
|
|
|
2009-08-25 18:13:27 +02:00
|
|
|
svgElementsCache = KSharedConfig::openConfig(svgElementsFile);
|
2008-11-16 21:53:24 +01:00
|
|
|
}
|
|
|
|
|
2009-05-30 05:08:33 +02:00
|
|
|
void ThemePrivate::scheduledCacheUpdate()
|
|
|
|
{
|
2009-07-20 22:30:07 +02:00
|
|
|
QHashIterator<QString, QPixmap> it(pixmapsToCache);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
it.next();
|
2010-05-04 05:59:35 +02:00
|
|
|
pixmapCache->insertPixmap(idsToCache[it.key()], it.value());
|
2009-05-30 05:08:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pixmapsToCache.clear();
|
2009-07-20 22:30:07 +02:00
|
|
|
keysToCache.clear();
|
|
|
|
idsToCache.clear();
|
2009-05-30 05:08:33 +02:00
|
|
|
}
|
|
|
|
|
2008-12-19 02:48:42 +01:00
|
|
|
void ThemePrivate::colorsChanged()
|
|
|
|
{
|
2009-08-25 18:13:27 +02:00
|
|
|
discardCache();
|
2008-12-19 02:48:42 +01:00
|
|
|
colorScheme = KColorScheme(QPalette::Active, KColorScheme::Window, colors);
|
|
|
|
buttonColorScheme = KColorScheme(QPalette::Active, KColorScheme::Button, colors);
|
2009-07-08 21:25:20 +02:00
|
|
|
viewColorScheme = KColorScheme(QPalette::Active, KColorScheme::View, colors);
|
2008-12-28 18:50:32 +01:00
|
|
|
emit q->themeChanged();
|
2008-12-19 02:48:42 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
class ThemeSingleton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ThemeSingleton()
|
|
|
|
{
|
|
|
|
self.d->isDefault = true;
|
2009-05-25 22:02:29 +02:00
|
|
|
|
2009-12-10 10:16:30 +01:00
|
|
|
//FIXME: if/when kconfig gets change notification, this will be unnecessary
|
2009-05-25 22:02:29 +02:00
|
|
|
KDirWatch::self()->addFile(KStandardDirs::locateLocal("config", ThemePrivate::themeRcFile));
|
|
|
|
QObject::connect(KDirWatch::self(), SIGNAL(created(QString)), &self, SLOT(settingsFileChanged(QString)));
|
|
|
|
QObject::connect(KDirWatch::self(), SIGNAL(dirty(QString)), &self, SLOT(settingsFileChanged(QString)));
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Theme self;
|
|
|
|
};
|
|
|
|
|
|
|
|
K_GLOBAL_STATIC(ThemeSingleton, privateThemeSelf)
|
|
|
|
|
|
|
|
Theme *Theme::defaultTheme()
|
|
|
|
{
|
|
|
|
return &privateThemeSelf->self;
|
|
|
|
}
|
|
|
|
|
|
|
|
Theme::Theme(QObject *parent)
|
|
|
|
: QObject(parent),
|
|
|
|
d(new ThemePrivate(this))
|
|
|
|
{
|
|
|
|
settingsChanged();
|
2010-03-04 23:28:39 +01:00
|
|
|
if (QCoreApplication::instance()) {
|
|
|
|
connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()),
|
|
|
|
this, SLOT(onAppExitCleanup()));
|
|
|
|
}
|
2009-05-18 14:28:19 +02:00
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-05-18 14:28:19 +02:00
|
|
|
Theme::Theme(const QString &themeName, QObject *parent)
|
|
|
|
: QObject(parent),
|
|
|
|
d(new ThemePrivate(this))
|
|
|
|
{
|
|
|
|
// turn off caching so we don't accidently trigger unnecessary disk activity at this point
|
|
|
|
bool useCache = d->cacheTheme;
|
|
|
|
d->cacheTheme = false;
|
|
|
|
setThemeName(themeName);
|
|
|
|
d->cacheTheme = useCache;
|
2010-03-04 23:28:39 +01:00
|
|
|
if (QCoreApplication::instance()) {
|
|
|
|
connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()),
|
|
|
|
this, SLOT(onAppExitCleanup()));
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Theme::~Theme()
|
|
|
|
{
|
2008-12-11 00:17:12 +01:00
|
|
|
QHashIterator<QString, QSet<QString> > it(d->invalidElements);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
it.next();
|
|
|
|
KConfigGroup imageGroup(d->svgElementsCache, it.key());
|
|
|
|
imageGroup.writeEntry("invalidElements", it.value().toList()); //FIXME: add QSet support to KConfig
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
PackageStructure::Ptr Theme::packageStructure()
|
|
|
|
{
|
|
|
|
if (!ThemePrivate::packageStructure) {
|
|
|
|
ThemePrivate::packageStructure = new ThemePackage();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ThemePrivate::packageStructure;
|
|
|
|
}
|
|
|
|
|
2009-05-18 14:28:19 +02:00
|
|
|
KPluginInfo::List Theme::listThemeInfo()
|
|
|
|
{
|
2009-07-06 13:55:34 +02:00
|
|
|
const QStringList themes = KGlobal::dirs()->findAllResources("data", "desktoptheme/*/metadata.desktop",
|
2009-05-18 14:28:19 +02:00
|
|
|
KStandardDirs::NoDuplicates);
|
|
|
|
return KPluginInfo::fromFiles(themes);
|
|
|
|
}
|
|
|
|
|
2009-01-26 07:22:44 +01:00
|
|
|
void ThemePrivate::settingsFileChanged(const QString &file)
|
|
|
|
{
|
2009-05-18 14:28:19 +02:00
|
|
|
if (file.endsWith(themeRcFile)) {
|
|
|
|
config().config()->reparseConfiguration();
|
|
|
|
q->settingsChanged();
|
|
|
|
}
|
2009-01-26 07:22:44 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
void Theme::settingsChanged()
|
|
|
|
{
|
2009-05-01 18:28:10 +02:00
|
|
|
d->setThemeName(d->config().readEntry("name", ThemePrivate::defaultTheme), false);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::setThemeName(const QString &themeName)
|
2009-02-24 21:49:46 +01:00
|
|
|
{
|
|
|
|
d->setThemeName(themeName, true);
|
|
|
|
}
|
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
void ThemePrivate::processWallpaperSettings(KConfigBase *metadata)
|
|
|
|
{
|
|
|
|
if (!defaultWallpaperTheme.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup cg;
|
|
|
|
if (metadata->hasGroup("Wallpaper")) {
|
|
|
|
// we have a theme color config, so let's also check to see if
|
|
|
|
// there is a wallpaper defined in there.
|
|
|
|
cg = KConfigGroup(metadata, "Wallpaper");
|
|
|
|
} else {
|
|
|
|
// since we didn't find an entry in the theme, let's look in the main
|
|
|
|
// theme config
|
|
|
|
cg = config();
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultWallpaperTheme = cg.readEntry("defaultWallpaperTheme", DEFAULT_WALLPAPER_THEME);
|
|
|
|
defaultWallpaperSuffix = cg.readEntry("defaultFileSuffix", DEFAULT_WALLPAPER_SUFFIX);
|
|
|
|
defaultWallpaperWidth = cg.readEntry("defaultWidth", DEFAULT_WALLPAPER_WIDTH);
|
|
|
|
defaultWallpaperHeight = cg.readEntry("defaultHeight", DEFAULT_WALLPAPER_HEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemePrivate::processAnimationSettings(const QString &theme, KConfigBase *metadata)
|
|
|
|
{
|
|
|
|
KConfigGroup cg(metadata, "Animations");
|
|
|
|
const QString animDir = "desktoptheme/" + theme + "/animations/";
|
|
|
|
foreach (const QString &path, cg.keyList()) {
|
|
|
|
QStringList anims = cg.readEntry(path, QStringList());
|
|
|
|
foreach (const QString &anim, anims) {
|
|
|
|
if (!animationMapping.contains(anim)) {
|
|
|
|
animationMapping.insert(animDir + anim, path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
void ThemePrivate::setThemeName(const QString &tempThemeName, bool writeSettings)
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
2009-04-28 19:10:17 +02:00
|
|
|
//kDebug() << tempThemeName;
|
2009-02-24 21:49:46 +01:00
|
|
|
QString theme = tempThemeName;
|
|
|
|
if (theme.isEmpty() || theme == themeName) {
|
2008-11-04 00:08:39 +01:00
|
|
|
// let's try and get the default theme at least
|
2009-02-24 21:49:46 +01:00
|
|
|
if (themeName.isEmpty()) {
|
2008-11-04 00:08:39 +01:00
|
|
|
theme = ThemePrivate::defaultTheme;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: should we care about names with relative paths in them?
|
|
|
|
QString themePath = KStandardDirs::locate("data", "desktoptheme/" + theme + '/');
|
2009-02-24 21:49:46 +01:00
|
|
|
if (themePath.isEmpty() && themeName.isEmpty()) {
|
2008-11-04 00:08:39 +01:00
|
|
|
themePath = KStandardDirs::locate("data", "desktoptheme/default/");
|
|
|
|
|
|
|
|
if (themePath.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
theme = ThemePrivate::defaultTheme;
|
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
if (themeName == theme) {
|
2008-11-04 00:08:39 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-10 15:21:08 +01:00
|
|
|
//discard the old theme cache
|
2009-02-24 21:49:46 +01:00
|
|
|
if (!themeName.isEmpty() && pixmapCache) {
|
2009-08-25 18:13:27 +02:00
|
|
|
discardCache();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
themeName = theme;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
// load the color scheme config
|
2009-07-06 13:55:34 +02:00
|
|
|
const QString colorsFile = KStandardDirs::locate("data", "desktoptheme/" + theme + "/colors");
|
2008-11-04 00:08:39 +01:00
|
|
|
//kDebug() << "we're going for..." << colorsFile << "*******************";
|
|
|
|
|
|
|
|
// load the wallpaper settings, if any
|
2009-07-06 13:55:34 +02:00
|
|
|
const QString metadataPath(KStandardDirs::locate("data", "desktoptheme/" + theme + "/metadata.desktop"));
|
2008-11-09 21:41:27 +01:00
|
|
|
KConfig metadata(metadataPath);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
processWallpaperSettings(&metadata);
|
|
|
|
|
|
|
|
AnimationScriptEngine::clearAnimations();
|
|
|
|
animationMapping.clear();
|
|
|
|
processAnimationSettings(themeName, &metadata);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
KConfigGroup cg(&metadata, "Settings");
|
2009-02-24 23:42:06 +01:00
|
|
|
useNativeWidgetStyle = cg.readEntry("UseNativeWidgetStyle", false);
|
2009-06-26 12:02:32 +02:00
|
|
|
QString fallback = cg.readEntry("FallbackTheme", QString());
|
|
|
|
|
|
|
|
fallbackThemes.clear();
|
2009-06-26 12:20:51 +02:00
|
|
|
while (!fallback.isEmpty() && !fallbackThemes.contains(fallback)) {
|
2009-06-26 12:02:32 +02:00
|
|
|
fallbackThemes.append(fallback);
|
|
|
|
|
|
|
|
QString metadataPath(KStandardDirs::locate("data", "desktoptheme/" + theme + "/metadata.desktop"));
|
|
|
|
KConfig metadata(metadataPath);
|
2010-04-28 19:40:29 +02:00
|
|
|
KConfigGroup cg(&metadata, "Settings");
|
2009-06-26 12:02:32 +02:00
|
|
|
fallback = cg.readEntry("FallbackTheme", QString());
|
|
|
|
}
|
2009-06-26 12:20:51 +02:00
|
|
|
|
|
|
|
if (!fallbackThemes.contains("oxygen")) {
|
|
|
|
fallbackThemes.append("oxygen");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fallbackThemes.contains(ThemePrivate::defaultTheme)) {
|
|
|
|
fallbackThemes.append(ThemePrivate::defaultTheme);
|
|
|
|
}
|
2009-02-24 23:42:06 +01:00
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
foreach (const QString &theme, fallbackThemes) {
|
|
|
|
QString metadataPath(KStandardDirs::locate("data", "desktoptheme/" + theme + "/metadata.desktop"));
|
|
|
|
KConfig metadata(metadataPath);
|
|
|
|
processAnimationSettings(theme, &metadata);
|
|
|
|
processWallpaperSettings(&metadata);
|
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
QObject::disconnect(KGlobalSettings::self(), SIGNAL(kdisplayPaletteChanged()),
|
|
|
|
q, SLOT(colorsChanged()));
|
2008-11-16 21:53:24 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
if (colorsFile.isEmpty()) {
|
2009-02-24 21:49:46 +01:00
|
|
|
colors = 0;
|
|
|
|
QObject::connect(KGlobalSettings::self(), SIGNAL(kdisplayPaletteChanged()),
|
|
|
|
q, SLOT(colorsChanged()));
|
2008-11-04 00:08:39 +01:00
|
|
|
} else {
|
2009-02-24 21:49:46 +01:00
|
|
|
colors = KSharedConfig::openConfig(colorsFile);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
colorScheme = KColorScheme(QPalette::Active, KColorScheme::Window, colors);
|
|
|
|
buttonColorScheme = KColorScheme(QPalette::Active, KColorScheme::Button, colors);
|
2009-07-08 21:25:20 +02:00
|
|
|
viewColorScheme = KColorScheme(QPalette::Active, KColorScheme::View, colors);
|
2009-02-24 21:49:46 +01:00
|
|
|
hasWallpapers = KStandardDirs::exists(KStandardDirs::locateLocal("data", "desktoptheme/" + theme + "/wallpapers/"));
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
if (isDefault && writeSettings) {
|
2008-11-04 00:08:39 +01:00
|
|
|
// we're the default theme, let's save our state
|
2009-02-24 21:49:46 +01:00
|
|
|
KConfigGroup &cg = config();
|
|
|
|
if (ThemePrivate::defaultTheme == themeName) {
|
2008-11-04 00:08:39 +01:00
|
|
|
cg.deleteEntry("name");
|
|
|
|
} else {
|
2009-02-24 21:49:46 +01:00
|
|
|
cg.writeEntry("name", themeName);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
2009-02-28 07:40:54 +01:00
|
|
|
cg.sync();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2008-11-09 21:41:27 +01:00
|
|
|
//check for expired cache
|
|
|
|
QFile f(metadataPath);
|
|
|
|
QFileInfo info(f);
|
|
|
|
|
2010-05-04 05:59:35 +02:00
|
|
|
if (useCache() && info.lastModified().toTime_t() > pixmapCache->lastModifiedTime()) {
|
2009-08-25 18:13:27 +02:00
|
|
|
discardCache();
|
|
|
|
} else {
|
|
|
|
QString svgElementsFile = KStandardDirs::locateLocal("cache", "plasma-svgelements-" + themeName);
|
|
|
|
svgElementsCache = KSharedConfig::openConfig(svgElementsFile);
|
2008-11-09 21:41:27 +01:00
|
|
|
}
|
|
|
|
|
2009-02-24 21:49:46 +01:00
|
|
|
invalidElements.clear();
|
|
|
|
emit q->themeChanged();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Theme::themeName() const
|
|
|
|
{
|
|
|
|
return d->themeName;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Theme::imagePath(const QString &name) const
|
|
|
|
{
|
|
|
|
// look for a compressed svg file in the theme
|
2009-05-19 10:53:56 +02:00
|
|
|
if (name.contains("../") || name.isEmpty()) {
|
2008-11-04 00:08:39 +01:00
|
|
|
// we don't support relative paths
|
2009-05-19 10:53:56 +02:00
|
|
|
kDebug() << "Theme says: bad image path " << name;
|
2008-11-04 00:08:39 +01:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString path = d->findInTheme(name + ".svgz", d->themeName);
|
|
|
|
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
// try for an uncompressed svg file
|
|
|
|
path = d->findInTheme(name + ".svg", d->themeName);
|
|
|
|
|
2009-06-26 12:02:32 +02:00
|
|
|
// search in fallback themes if necessary
|
|
|
|
for (int i = 0; path.isEmpty() && i < d->fallbackThemes.count(); ++i) {
|
|
|
|
if (d->themeName == d->fallbackThemes[i]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// try a compressed svg file in the fallback theme
|
|
|
|
path = d->findInTheme(name + ".svgz", d->fallbackThemes[i]);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
if (path.isEmpty()) {
|
2009-06-26 12:02:32 +02:00
|
|
|
// try an uncompressed svg file in the fallback theme
|
|
|
|
path = d->findInTheme(name + ".svg", d->fallbackThemes[i]);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
/*
|
2008-11-04 00:08:39 +01:00
|
|
|
if (path.isEmpty()) {
|
2010-04-28 19:40:29 +02:00
|
|
|
kDebug() << "Theme says: bad image path " << name;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
2010-04-28 19:40:29 +02:00
|
|
|
*/
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2010-04-28 19:40:29 +02:00
|
|
|
QString Theme::animationPath(const QString &name) const
|
|
|
|
{
|
|
|
|
const QString path = d->animationMapping.value(name);
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
return KStandardDirs::locate("data", path);
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
QString Theme::wallpaperPath(const QSize &size) const
|
|
|
|
{
|
|
|
|
QString fullPath;
|
|
|
|
QString image = d->defaultWallpaperTheme;
|
|
|
|
|
|
|
|
image.append("/contents/images/%1x%2").append(d->defaultWallpaperSuffix);
|
|
|
|
QString defaultImage = image.arg(d->defaultWallpaperWidth).arg(d->defaultWallpaperHeight);
|
|
|
|
|
|
|
|
if (size.isValid()) {
|
|
|
|
// try to customize the paper to the size requested
|
|
|
|
//TODO: this should do better than just fallback to the default size.
|
|
|
|
// a "best fit" matching would be far better, so we don't end
|
|
|
|
// up returning a 1920x1200 wallpaper for a 640x480 request ;)
|
|
|
|
image = image.arg(size.width()).arg(size.height());
|
|
|
|
} else {
|
|
|
|
image = defaultImage;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: the theme's wallpaper overrides regularly installed wallpapers.
|
|
|
|
// should it be possible for user installed (e.g. locateLocal) wallpapers
|
|
|
|
// to override the theme?
|
|
|
|
if (d->hasWallpapers) {
|
|
|
|
// check in the theme first
|
2009-01-02 11:52:14 +01:00
|
|
|
fullPath = d->findInTheme("wallpapers/" + image, d->themeName);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
if (fullPath.isEmpty()) {
|
2009-01-02 11:52:14 +01:00
|
|
|
fullPath = d->findInTheme("wallpapers/" + defaultImage, d->themeName);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fullPath.isEmpty()) {
|
|
|
|
// we failed to find it in the theme, so look in the standard directories
|
|
|
|
//kDebug() << "looking for" << image;
|
|
|
|
fullPath = KStandardDirs::locate("wallpaper", image);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fullPath.isEmpty()) {
|
|
|
|
// we still failed to find it in the theme, so look for the default in
|
|
|
|
// the standard directories
|
|
|
|
//kDebug() << "looking for" << defaultImage;
|
|
|
|
fullPath = KStandardDirs::locate("wallpaper", defaultImage);
|
|
|
|
|
|
|
|
if (fullPath.isEmpty()) {
|
|
|
|
kDebug() << "exhausted every effort to find a wallpaper.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Theme::currentThemeHasImage(const QString &name) const
|
|
|
|
{
|
|
|
|
if (name.contains("../")) {
|
|
|
|
// we don't support relative paths
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !(d->findInTheme(name + ".svgz", d->themeName).isEmpty()) ||
|
|
|
|
!(d->findInTheme(name + ".svg", d->themeName).isEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
KSharedConfigPtr Theme::colorScheme() const
|
|
|
|
{
|
|
|
|
return d->colors;
|
|
|
|
}
|
|
|
|
|
|
|
|
QColor Theme::color(ColorRole role) const
|
|
|
|
{
|
|
|
|
switch (role) {
|
|
|
|
case TextColor:
|
|
|
|
return d->colorScheme.foreground(KColorScheme::NormalText).color();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HighlightColor:
|
2009-06-09 13:52:18 +02:00
|
|
|
return d->colorScheme.decoration(KColorScheme::HoverColor).color();
|
2008-11-04 00:08:39 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
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;
|
2009-07-08 21:25:20 +02:00
|
|
|
|
|
|
|
case LinkColor:
|
|
|
|
return d->viewColorScheme.foreground(KColorScheme::LinkText).color();
|
|
|
|
|
|
|
|
case VisitedLinkColor:
|
|
|
|
return d->viewColorScheme.foreground(KColorScheme::VisitedText).color();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return QColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::setFont(const QFont &font, FontRole role)
|
|
|
|
{
|
|
|
|
Q_UNUSED(role)
|
|
|
|
d->generalFont = font;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFont Theme::font(FontRole role) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(role)
|
|
|
|
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;
|
|
|
|
}
|
2009-11-05 19:53:56 +01:00
|
|
|
|
|
|
|
return d->generalFont;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QFontMetrics Theme::fontMetrics() const
|
|
|
|
{
|
|
|
|
//TODO: allow this to be overridden with a plasma specific font?
|
|
|
|
return QFontMetrics(d->generalFont);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Theme::windowTranslucencyEnabled() const
|
|
|
|
{
|
|
|
|
return d->compositingActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::setUseGlobalSettings(bool useGlobal)
|
|
|
|
{
|
|
|
|
if (d->useGlobal == useGlobal) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->useGlobal = useGlobal;
|
|
|
|
d->cfg = KConfigGroup();
|
|
|
|
d->themeName.clear();
|
|
|
|
settingsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Theme::useGlobalSettings() const
|
|
|
|
{
|
|
|
|
return d->useGlobal;
|
|
|
|
}
|
|
|
|
|
2009-02-24 23:42:06 +01:00
|
|
|
bool Theme::useNativeWidgetStyle() const
|
|
|
|
{
|
|
|
|
return d->useNativeWidgetStyle;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
bool Theme::findInCache(const QString &key, QPixmap &pix)
|
|
|
|
{
|
2009-05-30 05:08:33 +02:00
|
|
|
if (d->useCache()) {
|
2009-08-04 21:13:58 +02:00
|
|
|
const QString id = d->keysToCache.value(key);
|
2009-07-20 22:30:07 +02:00
|
|
|
if (d->pixmapsToCache.contains(id)) {
|
|
|
|
pix = d->pixmapsToCache.value(id);
|
2009-05-30 05:08:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-04 05:59:35 +02:00
|
|
|
QPixmap temp;
|
|
|
|
if(d->pixmapCache->findPixmap(key, &temp) && !temp.isNull()) {
|
|
|
|
pix = temp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2009-05-30 05:08:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-03-17 22:08:48 +01:00
|
|
|
// BIC FIXME: Should be merged with the other findInCache method above when we break BC
|
|
|
|
bool Theme::findInCache(const QString &key, QPixmap &pix, unsigned int lastModified)
|
|
|
|
{
|
2010-05-04 05:59:35 +02:00
|
|
|
if (d->useCache() && lastModified > d->pixmapCache->lastModifiedTime()) {
|
2009-08-04 21:54:58 +02:00
|
|
|
return false;
|
2009-03-17 22:08:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return findInCache(key, pix);
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
void Theme::insertIntoCache(const QString& key, const QPixmap& pix)
|
|
|
|
{
|
2008-12-04 21:13:50 +01:00
|
|
|
if (d->useCache()) {
|
2010-05-04 05:59:35 +02:00
|
|
|
d->pixmapCache->insertPixmap(key, pix);
|
2009-07-20 22:30:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::insertIntoCache(const QString& key, const QPixmap& pix, const QString& id)
|
|
|
|
{
|
|
|
|
if (d->useCache()) {
|
|
|
|
d->pixmapsToCache.insert(id, pix);
|
|
|
|
|
|
|
|
if (d->idsToCache.contains(id)) {
|
|
|
|
d->keysToCache.remove(d->idsToCache[id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
d->keysToCache.insert(key, id);
|
|
|
|
d->idsToCache.insert(id, key);
|
|
|
|
d->saveTimer->start(600);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Theme::findInRectsCache(const QString &image, const QString &element, QRectF &rect) const
|
|
|
|
{
|
|
|
|
if (!d->pixmapCache) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup imageGroup(d->svgElementsCache, image);
|
2008-12-11 00:17:12 +01:00
|
|
|
rect = imageGroup.readEntry(element + "Size", QRectF());
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2008-12-11 00:17:12 +01:00
|
|
|
if (rect.isValid()) {
|
|
|
|
return true;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-07-31 20:47:20 +02:00
|
|
|
//Name starting by _ means the element is empty and we're asked for the size of
|
2009-01-22 20:59:25 +01:00
|
|
|
//the whole image, so the whole image is never invalid
|
2009-07-31 20:47:20 +02:00
|
|
|
if (element.indexOf('_') <= 0) {
|
2009-01-22 20:59:25 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-12-11 00:17:12 +01:00
|
|
|
bool invalid = false;
|
|
|
|
|
|
|
|
QHash<QString, QSet<QString> >::iterator it = d->invalidElements.find(image);
|
|
|
|
if (it == d->invalidElements.end()) {
|
|
|
|
QSet<QString> elements = imageGroup.readEntry("invalidElements", QStringList()).toSet();
|
|
|
|
d->invalidElements.insert(image, elements);
|
|
|
|
invalid = elements.contains(element);
|
|
|
|
} else {
|
|
|
|
invalid = it.value().contains(element);
|
|
|
|
}
|
|
|
|
|
|
|
|
return invalid;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::insertIntoRectsCache(const QString& image, const QString &element, const QRectF &rect)
|
|
|
|
{
|
|
|
|
if (!d->pixmapCache) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rect.isValid()) {
|
2008-12-11 00:17:12 +01:00
|
|
|
KConfigGroup imageGroup(d->svgElementsCache, image);
|
|
|
|
imageGroup.writeEntry(element + "Size", rect);
|
|
|
|
} else {
|
|
|
|
QHash<QString, QSet<QString> >::iterator it = d->invalidElements.find(image);
|
|
|
|
if (it == d->invalidElements.end()) {
|
|
|
|
d->invalidElements[image].insert(element);
|
|
|
|
} else if (!it.value().contains(element)) {
|
|
|
|
if (it.value().count() > 1000) {
|
|
|
|
it.value().erase(it.value().begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
it.value().insert(element);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::invalidateRectsCache(const QString& image)
|
|
|
|
{
|
|
|
|
KConfigGroup imageGroup(d->svgElementsCache, image);
|
|
|
|
imageGroup.deleteGroup();
|
2008-12-11 03:45:45 +01:00
|
|
|
|
|
|
|
releaseRectsCache(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::releaseRectsCache(const QString &image)
|
|
|
|
{
|
|
|
|
QHash<QString, QSet<QString> >::iterator it = d->invalidElements.find(image);
|
|
|
|
if (it != d->invalidElements.end()) {
|
2009-07-31 20:58:16 +02:00
|
|
|
KConfigGroup imageGroup(d->svgElementsCache, it.key());
|
|
|
|
imageGroup.writeEntry("invalidElements", it.value().toList());
|
2008-12-11 03:45:45 +01:00
|
|
|
d->invalidElements.erase(it);
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Theme::setCacheLimit(int kbytes)
|
|
|
|
{
|
2008-12-04 21:13:50 +01:00
|
|
|
if (d->useCache()) {
|
2010-05-04 05:59:35 +02:00
|
|
|
;
|
|
|
|
// Too late for you bub.
|
|
|
|
// d->pixmapCache->setCacheLimit(kbytes);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <theme.moc>
|