2008-11-04 00:08:39 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright 2007 by Aaron Seigo <aseigo@kde.org> *
|
|
|
|
* *
|
|
|
|
* This library 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 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This library 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 *
|
|
|
|
* Library General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
|
|
* Boston, MA 02110-1301, USA. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef LIBS_PLASMA_PACKAGES_P_H
|
|
|
|
#define LIBS_PLASMA_PACKAGES_P_H
|
|
|
|
|
2011-07-19 21:36:57 +02:00
|
|
|
#include "packagestructure.h"
|
|
|
|
#include "plasma.h"
|
|
|
|
#include "wallpaper.h"
|
2010-04-29 07:57:34 +02:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2011-07-19 21:36:57 +02:00
|
|
|
class ChangeableMainScriptPackage : public PackageStructure
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
2011-11-30 12:54:40 +01:00
|
|
|
public:
|
|
|
|
void initPackage(Package *package);
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
protected:
|
2012-11-09 14:05:45 +01:00
|
|
|
virtual QString findMainScript(Package *package) const;
|
|
|
|
virtual QString mainScriptConfigKey() const;
|
2011-07-19 21:36:57 +02:00
|
|
|
void pathChanged(Package *package);
|
2011-07-15 13:03:46 +02:00
|
|
|
};
|
2009-05-18 12:40:30 +02:00
|
|
|
|
2011-07-15 13:03:46 +02:00
|
|
|
class PlasmoidPackage : public ChangeableMainScriptPackage
|
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
2011-11-30 12:54:40 +01:00
|
|
|
|
|
|
|
protected:
|
2012-11-09 14:05:45 +01:00
|
|
|
QString findMainScript(Package *package) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ContainmentPackage : public PlasmoidPackage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QString mainScriptConfigKey() const;
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
2011-07-15 13:03:46 +02:00
|
|
|
class DataEnginePackage : public ChangeableMainScriptPackage
|
2010-08-06 03:28:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
|
|
|
};
|
2010-08-06 03:28:09 +02:00
|
|
|
|
2011-07-15 13:03:46 +02:00
|
|
|
class RunnerPackage : public ChangeableMainScriptPackage
|
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
2010-08-06 03:28:09 +02:00
|
|
|
};
|
|
|
|
|
2011-07-19 21:36:57 +02:00
|
|
|
class ThemePackage : public PackageStructure
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
2011-07-19 21:36:57 +02:00
|
|
|
class WallpaperPackage : public PackageStructure
|
2009-04-02 08:29:46 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-07-15 13:03:46 +02:00
|
|
|
explicit WallpaperPackage(Wallpaper *paper = 0);
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
|
|
|
void pathChanged(Package *package);
|
2009-04-07 07:43:44 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
QSize resSize(const QString &str) const;
|
2011-07-21 14:39:02 +02:00
|
|
|
void findBestPaper(Package *package);
|
2009-04-07 07:43:44 +02:00
|
|
|
float distance(const QSize& size, const QSize& desired,
|
|
|
|
Plasma::Wallpaper::ResizeMethod method) const;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
2009-04-07 09:18:58 +02:00
|
|
|
void renderHintsChanged();
|
2009-04-07 07:43:44 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Wallpaper *m_paper;
|
2009-11-03 19:35:40 +01:00
|
|
|
bool m_fullPackage;
|
2011-02-16 20:41:18 +01:00
|
|
|
QSize m_targetSize;
|
|
|
|
Wallpaper::ResizeMethod m_resizeMethod;
|
2009-04-02 08:29:46 +02:00
|
|
|
};
|
|
|
|
|
2011-11-30 12:54:40 +01:00
|
|
|
class ContainmentActionsPackage : public ChangeableMainScriptPackage
|
2009-08-18 00:30:29 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
2009-08-18 00:30:29 +02:00
|
|
|
};
|
|
|
|
|
2011-07-19 21:36:57 +02:00
|
|
|
class GenericPackage : public PackageStructure
|
2011-07-15 13:03:46 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-07-19 21:36:57 +02:00
|
|
|
void initPackage(Package *package);
|
2011-07-15 13:03:46 +02:00
|
|
|
};
|
2009-02-07 19:48:11 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#endif // LIBS_PLASMA_PACKAGES_P_H
|