0e0d1122ca
* create a subdir for our scripting classes * break ScriptEngine into two: a base class and AppletScript * add stub classes for RunnerScript and DataEngineScript * provide generic loading methods for all three svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=765971
94 lines
2.0 KiB
C++
94 lines
2.0 KiB
C++
/*
|
|
* Copyright 2007 by 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 "scripting/appletscript.h"
|
|
|
|
#include "applet.h"
|
|
#include "package.h"
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
class AppletScript::Private
|
|
{
|
|
public:
|
|
Applet* applet;
|
|
};
|
|
|
|
AppletScript::AppletScript(QObject *parent)
|
|
: ScriptEngine(parent),
|
|
d(new Private)
|
|
{
|
|
d->applet = 0;
|
|
}
|
|
|
|
AppletScript::~AppletScript()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void AppletScript::setApplet(Plasma::Applet *applet)
|
|
{
|
|
d->applet = applet;
|
|
}
|
|
|
|
Applet* AppletScript::applet() const
|
|
{
|
|
Q_ASSERT(d->applet);
|
|
return d->applet;
|
|
}
|
|
|
|
void AppletScript::paintInterface(QPainter* painter, const QStyleOptionGraphicsItem* option, const QRect &contentsRect)
|
|
{
|
|
Q_UNUSED(painter)
|
|
Q_UNUSED(option)
|
|
Q_UNUSED(contentsRect)
|
|
}
|
|
|
|
QSizeF AppletScript::size() const
|
|
{
|
|
if (applet()) {
|
|
return applet()->contentSize();
|
|
}
|
|
|
|
return QSizeF();
|
|
}
|
|
|
|
DataEngine* AppletScript::dataEngine(const QString &engine) const
|
|
{
|
|
Q_ASSERT(d->applet);
|
|
return d->applet->dataEngine(engine);
|
|
}
|
|
|
|
QString AppletScript::mainScript() const
|
|
{
|
|
Q_ASSERT(d->applet);
|
|
return d->applet->package()->filePath("mainscript");
|
|
}
|
|
|
|
const Package* AppletScript::package() const
|
|
{
|
|
Q_ASSERT(d->applet);
|
|
return d->applet->package();
|
|
}
|
|
|
|
} // Plasma namespace
|
|
|
|
#include "appletscript.moc"
|