2005-12-29 22:55:22 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 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 version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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.,
|
2006-01-23 12:37:31 +01:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-12-29 22:55:22 +01:00
|
|
|
*/
|
|
|
|
|
2007-05-30 18:47:36 +02:00
|
|
|
#include "applet.h"
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
#include <QEvent>
|
|
|
|
#include <QList>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2007-03-05 01:07:21 +01:00
|
|
|
#include <KPluginInfo>
|
2006-12-17 00:04:44 +01:00
|
|
|
#include <KStandardDirs>
|
2007-03-05 01:07:21 +01:00
|
|
|
#include <KService>
|
2007-05-24 22:01:12 +02:00
|
|
|
#include <KServiceTypeTrader>
|
2007-06-01 00:40:38 +02:00
|
|
|
|
2007-06-22 22:28:42 +02:00
|
|
|
#include "plasma/corona.h"
|
|
|
|
#include "plasma/dataenginemanager.h"
|
|
|
|
#include "plasma/plasma.h"
|
|
|
|
#include "plasma/svg.h"
|
2006-04-13 02:11:16 +02:00
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class Applet::Private
|
|
|
|
{
|
|
|
|
public:
|
2007-03-03 02:41:27 +01:00
|
|
|
Private( KService::Ptr appletDescription, int uniqueID )
|
2007-03-05 01:07:21 +01:00
|
|
|
: appletId( uniqueID ),
|
2007-03-03 02:41:27 +01:00
|
|
|
globalConfig( 0 ),
|
|
|
|
appletConfig( 0 ),
|
2007-06-21 20:24:05 +02:00
|
|
|
appletDescription(new KPluginInfo(appletDescription)),
|
2007-06-22 22:28:42 +02:00
|
|
|
immutable(false),
|
|
|
|
background(0)
|
2007-05-24 22:01:12 +02:00
|
|
|
{
|
|
|
|
if (appletId > s_maxAppletId) {
|
|
|
|
s_maxAppletId = appletId;
|
|
|
|
}
|
|
|
|
}
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2006-04-13 02:11:16 +02:00
|
|
|
~Private()
|
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
foreach ( const QString& engine, loadedEngines ) {
|
2007-05-27 10:01:31 +02:00
|
|
|
DataEngineManager::self()->unloadDataEngine( engine );
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
2007-03-05 01:07:21 +01:00
|
|
|
delete appletDescription;
|
2007-06-22 22:28:42 +02:00
|
|
|
delete background;
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2007-05-24 22:01:12 +02:00
|
|
|
static uint nextId()
|
|
|
|
{
|
|
|
|
++s_maxAppletId;
|
|
|
|
return s_maxAppletId;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint appletId;
|
2005-12-29 22:55:22 +01:00
|
|
|
KSharedConfig::Ptr globalConfig;
|
|
|
|
KSharedConfig::Ptr appletConfig;
|
2007-03-05 01:07:21 +01:00
|
|
|
KPluginInfo* appletDescription;
|
2005-12-29 22:55:22 +01:00
|
|
|
QList<QObject*> watchedForFocus;
|
2006-04-13 02:11:16 +02:00
|
|
|
QStringList loadedEngines;
|
2007-05-24 22:01:12 +02:00
|
|
|
static uint s_maxAppletId;
|
2007-06-21 20:24:05 +02:00
|
|
|
bool immutable;
|
2007-06-22 22:28:42 +02:00
|
|
|
Plasma::Svg *background;
|
2005-12-29 22:55:22 +01:00
|
|
|
};
|
|
|
|
|
2007-05-24 22:01:12 +02:00
|
|
|
uint Applet::Private::s_maxAppletId = 0;
|
|
|
|
|
|
|
|
Applet::Applet(QGraphicsItem *parent,
|
|
|
|
const QString& serviceID,
|
|
|
|
int appletId)
|
|
|
|
: QObject(0),
|
2007-06-20 08:45:08 +02:00
|
|
|
QGraphicsItem(parent),
|
2007-05-24 22:01:12 +02:00
|
|
|
d(new Private(KService::serviceByStorageId(serviceID), appletId))
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-06-21 20:24:05 +02:00
|
|
|
init();
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-05-24 22:01:12 +02:00
|
|
|
Applet::Applet(QObject* parent, const QStringList& args)
|
|
|
|
: QObject(parent),
|
2007-06-20 08:45:08 +02:00
|
|
|
QGraphicsItem(0),
|
2007-05-24 22:01:12 +02:00
|
|
|
d(new Private(KService::serviceByStorageId(args[0]), args[1].toInt()))
|
|
|
|
{
|
2007-06-21 20:24:05 +02:00
|
|
|
init();
|
2007-05-24 22:01:12 +02:00
|
|
|
// the brain damage seen in the initialization list is due to the
|
2007-06-20 08:45:08 +02:00
|
|
|
// inflexibility of KService::createInstance
|
2007-05-24 22:01:12 +02:00
|
|
|
}
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
Applet::~Applet()
|
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
needsFocus( false );
|
2005-12-29 22:55:22 +01:00
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
2007-06-21 20:24:05 +02:00
|
|
|
void Applet::init()
|
|
|
|
{
|
|
|
|
setImmutable(globalAppletConfig().isImmutable() ||
|
|
|
|
appletConfig().isImmutable());
|
|
|
|
}
|
|
|
|
|
2007-05-25 04:36:22 +02:00
|
|
|
KConfigGroup Applet::appletConfig() const
|
2006-04-13 02:11:16 +02:00
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( !d->appletConfig ) {
|
|
|
|
QString file = KStandardDirs::locateLocal( "appdata",
|
2006-12-17 00:04:44 +01:00
|
|
|
"applets/" + instanceName() + "rc",
|
2007-03-03 02:41:27 +01:00
|
|
|
true );
|
|
|
|
d->appletConfig = KSharedConfig::openConfig( file );
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
|
|
|
|
2007-05-25 04:36:22 +02:00
|
|
|
return KConfigGroup(d->appletConfig, "General");
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
|
|
|
|
2007-05-25 04:36:22 +02:00
|
|
|
KConfigGroup Applet::globalAppletConfig() const
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( !d->globalConfig ) {
|
|
|
|
QString file = KStandardDirs::locateLocal( "config", "plasma_" + globalName() + "rc" );
|
|
|
|
d->globalConfig = KSharedConfig::openConfig( file );
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-05-25 04:36:22 +02:00
|
|
|
return KConfigGroup(d->globalConfig, "General");
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
DataEngine* Applet::dataEngine(const QString& name)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-06-02 19:29:39 +02:00
|
|
|
int index = d->loadedEngines.indexOf(name);
|
|
|
|
if (index != -1) {
|
|
|
|
return DataEngineManager::self()->dataEngine(name);
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
DataEngine* engine = DataEngineManager::self()->loadDataEngine(name);
|
|
|
|
if (engine) {
|
|
|
|
d->loadedEngines.append(name);
|
|
|
|
return engine;
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
return 0;
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::constraintsUpdated()
|
|
|
|
{
|
2007-06-02 00:58:48 +02:00
|
|
|
kDebug() << "Applet::constraintsUpdate(): constraints are FormFactor: " << formFactor() << ", Location: " << location() << endl;
|
2007-06-01 00:40:38 +02:00
|
|
|
}
|
|
|
|
|
2007-06-21 20:24:05 +02:00
|
|
|
QString Applet::name() const
|
2007-06-05 21:31:48 +02:00
|
|
|
{
|
|
|
|
return d->appletDescription->name();
|
|
|
|
}
|
|
|
|
|
2007-06-21 20:24:05 +02:00
|
|
|
bool Applet::immutable() const
|
|
|
|
{
|
|
|
|
return d->immutable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setImmutable(bool immutable)
|
|
|
|
{
|
|
|
|
d->immutable = immutable;
|
2007-06-23 00:08:04 +02:00
|
|
|
QGraphicsItem::GraphicsItemFlags f = flags();
|
|
|
|
if (immutable) {
|
|
|
|
f ^= QGraphicsItem::ItemIsMovable;
|
2007-06-25 03:37:27 +02:00
|
|
|
} else if (!scene() || !static_cast<Corona*>(scene())->immutable()) {
|
2007-06-23 00:08:04 +02:00
|
|
|
f |= QGraphicsItem::ItemIsMovable;
|
|
|
|
}
|
|
|
|
setFlags(f);
|
2007-06-21 20:24:05 +02:00
|
|
|
}
|
|
|
|
|
2007-06-22 22:28:42 +02:00
|
|
|
bool Applet::drawStandardBackground()
|
|
|
|
{
|
|
|
|
return d->background != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setDrawStandardBackground(bool drawBackground)
|
|
|
|
{
|
|
|
|
if (drawBackground) {
|
|
|
|
if (!d->background) {
|
|
|
|
d->background = new Plasma::Svg("widgets/background");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delete d->background;
|
|
|
|
d->background = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-20 08:45:08 +02:00
|
|
|
void Applet::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
2007-06-22 22:28:42 +02:00
|
|
|
{
|
|
|
|
if (d->background) {
|
|
|
|
d->background->resize(boundingRect().size());
|
|
|
|
d->background->paint(painter, boundingRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
paintInterface(painter, option, widget);
|
|
|
|
|
|
|
|
//TODO: interface overlays on hover?
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::paintInterface(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
2007-06-20 08:45:08 +02:00
|
|
|
{
|
|
|
|
Q_UNUSED(painter)
|
|
|
|
Q_UNUSED(option)
|
|
|
|
Q_UNUSED(widget)
|
|
|
|
}
|
|
|
|
|
2007-06-01 00:40:38 +02:00
|
|
|
FormFactor Applet::formFactor() const
|
|
|
|
{
|
2007-06-02 00:58:48 +02:00
|
|
|
if (!scene()) {
|
|
|
|
return Plasma::Planar;
|
|
|
|
}
|
|
|
|
|
2007-06-01 00:40:38 +02:00
|
|
|
return static_cast<Corona*>(scene())->formFactor();
|
|
|
|
}
|
|
|
|
|
|
|
|
Location Applet::location() const
|
|
|
|
{
|
2007-06-02 00:58:48 +02:00
|
|
|
if (!scene()) {
|
|
|
|
return Plasma::Desktop;
|
|
|
|
}
|
|
|
|
|
2007-06-01 00:40:38 +02:00
|
|
|
return static_cast<Corona*>(scene())->location();
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Applet::globalName() const
|
|
|
|
{
|
2007-03-05 01:07:21 +01:00
|
|
|
return d->appletDescription->service()->library();
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Applet::instanceName() const
|
|
|
|
{
|
2007-03-05 01:07:21 +01:00
|
|
|
return d->appletDescription->service()->library() + QString::number( d->appletId );
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-03-01 02:09:20 +01:00
|
|
|
void Applet::watchForFocus(QObject *widget, bool watch)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( !widget ) {
|
2005-12-29 22:55:22 +01:00
|
|
|
return;
|
2007-03-03 02:41:27 +01:00
|
|
|
}
|
2005-12-29 22:55:22 +01:00
|
|
|
|
|
|
|
int index = d->watchedForFocus.indexOf(widget);
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( watch ) {
|
|
|
|
if ( index == -1 ) {
|
|
|
|
d->watchedForFocus.append( widget );
|
|
|
|
widget->installEventFilter( this );
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
2007-03-03 02:41:27 +01:00
|
|
|
} else if ( index != -1 ) {
|
|
|
|
d->watchedForFocus.removeAt( index );
|
|
|
|
widget->removeEventFilter( this );
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-21 20:24:05 +02:00
|
|
|
void Applet::needsFocus(bool focus)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-05-24 22:01:12 +02:00
|
|
|
if (focus == QGraphicsItem::hasFocus()) {
|
2005-12-29 22:55:22 +01:00
|
|
|
return;
|
2007-03-03 02:41:27 +01:00
|
|
|
}
|
2005-12-29 22:55:22 +01:00
|
|
|
|
|
|
|
emit requestFocus(focus);
|
|
|
|
}
|
|
|
|
|
2007-03-03 02:41:27 +01:00
|
|
|
bool Applet::eventFilter( QObject *o, QEvent * e )
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( !d->watchedForFocus.contains( o ) )
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-03-03 02:41:27 +01:00
|
|
|
if ( e->type() == QEvent::MouseButtonRelease ||
|
|
|
|
e->type() == QEvent::FocusIn ) {
|
|
|
|
needsFocus( true );
|
|
|
|
} else if ( e->type() == QEvent::FocusOut ) {
|
|
|
|
needsFocus( false );
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-24 22:01:12 +02:00
|
|
|
return QObject::eventFilter(o, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
KPluginInfo::List Applet::knownApplets()
|
|
|
|
{
|
|
|
|
QHash<QString, KPluginInfo> applets;
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet");
|
|
|
|
return KPluginInfo::fromServices(offers);
|
|
|
|
}
|
|
|
|
|
2007-06-20 10:11:59 +02:00
|
|
|
Applet* Applet::loadApplet(const QString& appletName, uint appletId, const QStringList& args)
|
2007-05-24 22:01:12 +02:00
|
|
|
{
|
|
|
|
if (appletName.isEmpty()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString constraint = QString("[X-KDE-PluginInfo-Name] == '%1'").arg(appletName);
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet", constraint);
|
|
|
|
|
|
|
|
if (offers.isEmpty()) {
|
|
|
|
//TODO: what would be -really- cool is offer to try and download the applet
|
|
|
|
// from the network at this point
|
|
|
|
kDebug() << "Applet::loadApplet: offers is empty for \"" << appletName << "\"" << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appletId == 0) {
|
|
|
|
appletId = Private::nextId();
|
|
|
|
}
|
|
|
|
|
2007-06-20 10:11:59 +02:00
|
|
|
QStringList allArgs;
|
2007-05-24 22:01:12 +02:00
|
|
|
QString id;
|
|
|
|
id.setNum(appletId);
|
2007-06-20 10:11:59 +02:00
|
|
|
allArgs << offers.first()->storageId() << id << args;
|
|
|
|
Applet* applet = KService::createInstance<Plasma::Applet>(offers.first(), 0, allArgs);
|
2007-05-24 22:01:12 +02:00
|
|
|
|
|
|
|
if (!applet) {
|
|
|
|
kDebug() << "Couldn't load applet \"" << appletName << "\"!" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return applet;
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-06-20 10:11:59 +02:00
|
|
|
Applet* Applet::loadApplet(const KPluginInfo* info, uint appletId, const QStringList& args)
|
2007-05-24 22:51:59 +02:00
|
|
|
{
|
|
|
|
if (!info) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-20 10:11:59 +02:00
|
|
|
return loadApplet(info->pluginName(), appletId, args);
|
2007-05-24 22:51:59 +02:00
|
|
|
}
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
#include "applet.moc"
|