mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
65 lines
2 KiB
C++
65 lines
2 KiB
C++
/*
|
|
* Copyright 2008 by Aaron Seigo <aseigo@kde.org>
|
|
* Copyright 2008 by Petri Damsten <damu@iki.fi>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef PLASMA_WALLPAPERPRIVATE_H
|
|
#define PLASMA_WALLPAPERPRIVATE_H
|
|
|
|
#include <QtCore/QQueue>
|
|
#include <QtCore/qsharedpointer.h>
|
|
|
|
#include "plasma/plasma.h"
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
class WallpaperPrivate
|
|
{
|
|
public:
|
|
WallpaperPrivate(KService::Ptr service, Wallpaper *wallpaper);
|
|
|
|
QString cachePath(const QString &key) const;
|
|
QString cacheKey(const QString &sourceImagePath, const QSize &size,
|
|
int resizeMethod, const QColor &color) const;
|
|
|
|
bool findInCache(const QString &key, unsigned int lastModified = 0);
|
|
|
|
void renderWallpaper(const QString &sourceImagePath, const QImage &image, const QSize &size,
|
|
Wallpaper::ResizeMethod resizeMethod, const QColor &color);
|
|
|
|
static PackageStructure::Ptr s_packageStructure;
|
|
|
|
Wallpaper *q;
|
|
KPluginInfo wallpaperDescription;
|
|
QRectF boundingRect;
|
|
KServiceAction mode;
|
|
Wallpaper::ResizeMethod lastResizeMethod;
|
|
QSizeF targetSize;
|
|
QList<KUrl> pendingUrls;
|
|
QList<QAction*> contextActions;
|
|
bool cacheRendering;
|
|
bool initialized;
|
|
bool needsConfig;
|
|
bool previewing;
|
|
bool needsPreviewDuringConfiguration;
|
|
};
|
|
|
|
} // namespace Plasma
|
|
#endif
|
|
|