2005-12-29 22:55:22 +01:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2005 by Aaron Seigo <aseigo@kde.org>
|
|
|
|
* Copyright 2007 by Riccardo Iaconelli <riccardo@kde.org>
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-09-14 21:06:18 +02:00
|
|
|
* 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.
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
2007-08-05 16:24:24 +02:00
|
|
|
#include <cmath>
|
|
|
|
#include <limits>
|
|
|
|
|
2007-07-12 20:34:53 +02:00
|
|
|
#include <QApplication>
|
2005-12-29 22:55:22 +01:00
|
|
|
#include <QEvent>
|
2007-07-30 18:00:29 +02:00
|
|
|
#include <QFile>
|
2005-12-29 22:55:22 +01:00
|
|
|
#include <QList>
|
2007-07-12 20:34:53 +02:00
|
|
|
#include <QPainter>
|
2005-12-29 22:55:22 +01:00
|
|
|
#include <QSize>
|
2007-07-26 01:42:43 +02:00
|
|
|
#include <QStyleOptionGraphicsItem>
|
2007-11-04 06:31:18 +01:00
|
|
|
#include <QTextDocument>
|
2007-07-30 18:00:29 +02:00
|
|
|
#include <QTimer>
|
|
|
|
#include <QUiLoader>
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2007-07-26 01:42:43 +02:00
|
|
|
#include <KIcon>
|
2007-11-04 07:58:20 +01:00
|
|
|
#include <KColorScheme>
|
2007-07-30 18:00:29 +02:00
|
|
|
#include <KConfigDialog>
|
2007-07-12 20:34:53 +02:00
|
|
|
#include <KDialog>
|
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-07-26 01:42:43 +02:00
|
|
|
#include <KIconLoader>
|
2007-06-01 00:40:38 +02:00
|
|
|
|
2007-12-21 13:27:29 +01:00
|
|
|
#include <Solid/PowerManagement>
|
|
|
|
|
2007-07-30 18:00:29 +02:00
|
|
|
#include "plasma/configxml.h"
|
2007-09-18 23:22:45 +02:00
|
|
|
#include "plasma/containment.h"
|
2007-06-22 22:28:42 +02:00
|
|
|
#include "plasma/corona.h"
|
|
|
|
#include "plasma/dataenginemanager.h"
|
2007-07-20 05:28:34 +02:00
|
|
|
#include "plasma/package.h"
|
|
|
|
#include "plasma/packages_p.h"
|
2007-06-22 22:28:42 +02:00
|
|
|
#include "plasma/plasma.h"
|
2007-07-23 09:42:29 +02:00
|
|
|
#include "plasma/scriptengine.h"
|
2007-08-05 10:41:55 +02:00
|
|
|
#include "plasma/shadowitem_p.h"
|
2007-06-22 22:28:42 +02:00
|
|
|
#include "plasma/svg.h"
|
2007-11-04 07:58:20 +01:00
|
|
|
#include "plasma/theme.h"
|
2007-11-15 10:39:46 +01:00
|
|
|
#include "plasma/view.h"
|
2006-04-13 02:11:16 +02:00
|
|
|
|
2007-11-20 00:45:56 +01:00
|
|
|
#include "plasma/layouts/boxlayout.h"
|
2007-07-12 20:34:53 +02:00
|
|
|
#include "plasma/widgets/widget.h"
|
|
|
|
#include "plasma/widgets/lineedit.h"
|
2007-08-03 17:23:56 +02:00
|
|
|
#include "plasma/widgets/pushbutton.h"
|
2007-07-12 20:34:53 +02:00
|
|
|
|
2007-08-05 10:41:55 +02:00
|
|
|
//#define DYNAMIC_SHADOWS
|
2005-12-29 22:55:22 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class Applet::Private
|
|
|
|
{
|
2007-07-20 05:28:34 +02:00
|
|
|
public:
|
|
|
|
Private(KService::Ptr service, int uniqueID)
|
|
|
|
: appletId(uniqueID),
|
2007-07-23 01:10:53 +02:00
|
|
|
appletDescription(service),
|
2007-07-20 05:28:34 +02:00
|
|
|
package(0),
|
|
|
|
background(0),
|
|
|
|
failureText(0),
|
2007-07-23 11:21:45 +02:00
|
|
|
scriptEngine(0),
|
2007-07-30 18:00:29 +02:00
|
|
|
configXml(0),
|
2007-08-05 10:41:55 +02:00
|
|
|
shadow(0),
|
|
|
|
cachedBackground(0),
|
2007-11-27 07:01:06 +01:00
|
|
|
mainConfig(0),
|
2007-10-26 03:04:56 +02:00
|
|
|
pendingConstraints(NoConstraint),
|
2007-07-27 23:05:45 +02:00
|
|
|
kioskImmutable(false),
|
2007-07-20 05:28:34 +02:00
|
|
|
immutable(false),
|
|
|
|
hasConfigurationInterface(false),
|
2007-07-31 02:21:08 +02:00
|
|
|
failed(false),
|
2007-11-15 10:39:46 +01:00
|
|
|
needsConfig(false),
|
|
|
|
isContainment(false)
|
2007-07-20 05:28:34 +02:00
|
|
|
{
|
|
|
|
if (appletId == 0) {
|
|
|
|
appletId = nextId();
|
|
|
|
}
|
2007-07-12 20:34:53 +02:00
|
|
|
|
2007-07-20 05:28:34 +02:00
|
|
|
if (appletId > s_maxAppletId) {
|
|
|
|
s_maxAppletId = appletId;
|
2007-05-24 22:01:12 +02:00
|
|
|
}
|
2007-07-20 05:28:34 +02:00
|
|
|
}
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2007-07-20 05:28:34 +02:00
|
|
|
~Private()
|
|
|
|
{
|
|
|
|
foreach ( const QString& engine, loadedEngines ) {
|
|
|
|
DataEngineManager::self()->unloadDataEngine( engine );
|
2007-05-24 22:01:12 +02:00
|
|
|
}
|
2007-07-20 05:28:34 +02:00
|
|
|
delete background;
|
|
|
|
delete package;
|
2007-07-30 18:00:29 +02:00
|
|
|
delete configXml;
|
2007-08-05 10:41:55 +02:00
|
|
|
delete shadow;
|
2007-07-31 02:21:08 +02:00
|
|
|
delete cachedBackground;
|
2007-11-27 07:01:06 +01:00
|
|
|
delete mainConfig;
|
2007-07-20 05:28:34 +02:00
|
|
|
}
|
|
|
|
|
2007-07-20 10:12:20 +02:00
|
|
|
void init(Applet* applet)
|
|
|
|
{
|
2007-11-27 07:01:06 +01:00
|
|
|
// WARNING: do not access config() OR globalConfig() in this method!
|
|
|
|
// that requires a scene, which is not available at this point
|
2007-11-12 20:27:21 +01:00
|
|
|
applet->setAcceptsHoverEvents(true);
|
2007-08-05 10:41:55 +02:00
|
|
|
applet->setZValue(100);
|
2007-07-26 04:07:18 +02:00
|
|
|
|
2007-07-23 01:10:53 +02:00
|
|
|
if (!appletDescription.isValid()) {
|
2007-07-20 10:12:20 +02:00
|
|
|
applet->setFailedToLaunch(true);
|
2007-07-23 17:59:10 +02:00
|
|
|
return;
|
2007-07-20 10:12:20 +02:00
|
|
|
}
|
|
|
|
|
2007-07-23 09:42:29 +02:00
|
|
|
QString language = appletDescription.property("X-Plasma-Language").toString();
|
|
|
|
|
|
|
|
// we have a scripted plasmoid
|
|
|
|
if (!language.isEmpty()) {
|
|
|
|
// find where the Package is
|
|
|
|
QString path = KStandardDirs::locate("appdata",
|
2007-11-29 21:38:13 +01:00
|
|
|
"plasmoids/" + appletDescription.pluginName() + '/');
|
2007-07-23 09:42:29 +02:00
|
|
|
|
2007-11-29 21:38:13 +01:00
|
|
|
if (path.isEmpty()) {
|
|
|
|
applet->setFailedToLaunch(true, i18n("Could not locate the %1 package required for the %2 widget.",
|
|
|
|
appletDescription.pluginName(), appletDescription.name()));
|
|
|
|
} else {
|
2007-07-23 09:42:29 +02:00
|
|
|
// create the package and see if we have something real
|
2007-11-29 21:38:13 +01:00
|
|
|
//kDebug() << "trying for" << path;
|
|
|
|
package = new Package(path, PlasmoidStructure());
|
2007-07-23 09:42:29 +02:00
|
|
|
if (package->isValid()) {
|
|
|
|
// now we try and set up the script engine.
|
|
|
|
// it will be parented to this applet and so will get
|
|
|
|
// deleted when the applet does
|
|
|
|
|
2007-07-23 11:21:45 +02:00
|
|
|
scriptEngine = ScriptEngine::load(language, applet);
|
|
|
|
if (!scriptEngine) {
|
2007-07-23 09:42:29 +02:00
|
|
|
delete package;
|
|
|
|
package = 0;
|
2007-11-29 21:38:13 +01:00
|
|
|
applet->setFailedToLaunch(true, i18n("Could not create a %1 ScriptEngine for the %2 widget.",
|
|
|
|
language, appletDescription.name()));
|
2007-07-23 09:42:29 +02:00
|
|
|
}
|
|
|
|
} else {
|
2007-11-29 21:38:13 +01:00
|
|
|
applet->setFailedToLaunch(true, i18n("Could not open the %1 package required for the %2 widget.",
|
|
|
|
appletDescription.pluginName(), appletDescription.name()));
|
2007-07-23 09:42:29 +02:00
|
|
|
delete package;
|
|
|
|
package = 0;
|
|
|
|
}
|
|
|
|
|
2007-11-29 21:38:13 +01:00
|
|
|
if (package) {
|
2007-07-30 18:00:29 +02:00
|
|
|
setupScriptSupport(applet);
|
2007-07-23 09:42:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-08 08:53:56 +01:00
|
|
|
applet->setDrawStandardBackground(true);
|
2007-07-20 10:12:20 +02:00
|
|
|
}
|
|
|
|
|
2007-07-30 18:00:29 +02:00
|
|
|
// put all setup routines for script here. at this point we can assume that
|
|
|
|
// package exists and that we have a script engin
|
|
|
|
void setupScriptSupport(Applet* applet)
|
|
|
|
{
|
|
|
|
Q_ASSERT(package);
|
|
|
|
QString xmlPath = package->filePath("mainconfigxml");
|
|
|
|
if (!xmlPath.isEmpty()) {
|
|
|
|
QFile file(xmlPath);
|
2007-11-25 00:38:37 +01:00
|
|
|
// FIXME: KConfigSkeleton doesn't play well with KConfigGroup =/
|
2007-11-25 01:14:27 +01:00
|
|
|
KConfigGroup config = applet->config();
|
|
|
|
configXml = new ConfigXml(&config, &file);
|
2007-07-30 18:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!package->filePath("mainconfigui").isEmpty()) {
|
|
|
|
applet->setHasConfigurationInterface(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-18 23:46:46 +01:00
|
|
|
void paintBackground(QPainter* p2, Applet* q, QRectF paintRect)
|
2007-07-24 21:27:58 +02:00
|
|
|
{
|
2007-09-30 20:07:44 +02:00
|
|
|
if (q->formFactor() != Plasma::Planar) {
|
|
|
|
// we don't paint special backgrounds for other form factors
|
|
|
|
// if that changes in the future, this method is where such
|
|
|
|
// background painting code should be added
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-18 23:46:46 +01:00
|
|
|
// TODO: caching these values might be an idea
|
2007-07-25 01:46:54 +02:00
|
|
|
const int topHeight = background->elementSize("top").height();
|
|
|
|
const int leftWidth = background->elementSize("left").width();
|
2007-07-25 21:15:23 +02:00
|
|
|
const int topOffset = 0 - topHeight;
|
|
|
|
const int leftOffset = 0 - leftWidth;
|
2007-11-18 23:46:46 +01:00
|
|
|
|
|
|
|
if (!cachedBackground || cachedBackground->size() != q->boundingRect().toRect().size()) {
|
|
|
|
QSize contents = contentSize(q).toSize();
|
|
|
|
|
|
|
|
const int contentWidth = contents.width();
|
|
|
|
const int contentHeight = contents.height();
|
|
|
|
|
|
|
|
background->resize();
|
|
|
|
|
|
|
|
const int topWidth = background->elementSize("top").width();
|
|
|
|
const int leftHeight = background->elementSize("left").height();
|
|
|
|
const int rightWidth = background->elementSize("right").width();
|
|
|
|
const int bottomHeight = background->elementSize("bottom").height();
|
|
|
|
|
|
|
|
// contents top-left corner is (0,0). We need to draw up and left of that
|
|
|
|
const int rightOffset = contentWidth;
|
|
|
|
const int bottomOffset = contentHeight;
|
|
|
|
const int contentTop = 0;
|
|
|
|
const int contentLeft = 0;
|
|
|
|
|
2007-07-31 02:21:08 +02:00
|
|
|
delete cachedBackground;
|
|
|
|
cachedBackground = new QPixmap(leftWidth + contentWidth + rightWidth, topHeight + contentHeight + bottomHeight);
|
|
|
|
cachedBackground->fill(Qt::transparent);
|
|
|
|
QPainter p(cachedBackground);
|
|
|
|
p.translate(leftWidth, topHeight);
|
|
|
|
p.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
p.setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
|
2007-10-08 05:41:56 +02:00
|
|
|
//FIXME: This is a hack to fix a drawing problems with svg files where a thin transparent border is drawn around the svg image.
|
2007-11-12 20:27:21 +01:00
|
|
|
// the transparent border around the svg seems to vary in size depending on the size of the svg and as a result increasing the
|
2007-11-18 23:46:46 +01:00
|
|
|
// svn image by 2 all around didn't resolve the issue. For now it resizes based on the border size.
|
2007-10-08 05:41:56 +02:00
|
|
|
|
|
|
|
background->resize(contentWidth, contentHeight);
|
|
|
|
background->paint(&p, QRect(contentLeft-leftWidth, contentTop-topHeight, contentWidth+leftWidth*2, contentHeight+topHeight*2), "center");
|
|
|
|
background->resize();
|
|
|
|
|
2007-10-01 07:50:57 +02:00
|
|
|
background->paint(&p, QRect(leftOffset, topOffset, leftWidth, topHeight), "topleft");
|
|
|
|
background->paint(&p, QRect(rightOffset, topOffset,rightWidth, topHeight), "topright");
|
|
|
|
background->paint(&p, QRect(leftOffset, bottomOffset, leftWidth, bottomHeight), "bottomleft");
|
2007-07-31 02:21:08 +02:00
|
|
|
background->paint(&p, QRect(rightOffset, bottomOffset, rightWidth, bottomHeight), "bottomright");
|
|
|
|
|
2007-11-19 02:21:41 +01:00
|
|
|
if (background->elementExists("hint-stretch-borders")) {
|
2007-09-18 23:22:45 +02:00
|
|
|
background->paint(&p, QRect(leftOffset, contentTop, leftWidth, contentHeight), "left");
|
|
|
|
background->paint(&p, QRect(rightOffset, contentTop, rightWidth, contentHeight), "right");
|
|
|
|
background->paint(&p, QRect(contentLeft, topOffset, contentWidth, topHeight), "top");
|
|
|
|
background->paint(&p, QRect(contentLeft, bottomOffset, contentWidth, bottomHeight), "bottom");
|
2007-09-07 15:05:28 +02:00
|
|
|
} else {
|
|
|
|
QPixmap left(leftWidth, leftHeight);
|
|
|
|
left.fill(Qt::transparent);
|
|
|
|
{
|
|
|
|
QPainter sidePainter(&left);
|
|
|
|
sidePainter.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
background->paint(&sidePainter, QPoint(0, 0), "left");
|
|
|
|
}
|
|
|
|
p.drawTiledPixmap(QRect(leftOffset, contentTop, leftWidth, contentHeight), left);
|
|
|
|
|
|
|
|
QPixmap right(rightWidth, leftHeight);
|
|
|
|
right.fill(Qt::transparent);
|
|
|
|
{
|
|
|
|
QPainter sidePainter(&right);
|
|
|
|
sidePainter.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
background->paint(&sidePainter, QPoint(0, 0), "right");
|
|
|
|
}
|
|
|
|
p.drawTiledPixmap(QRect(rightOffset, contentTop, rightWidth, contentHeight), right);
|
|
|
|
|
|
|
|
QPixmap top(topWidth, topHeight);
|
|
|
|
top.fill(Qt::transparent);
|
|
|
|
{
|
|
|
|
QPainter sidePainter(&top);
|
|
|
|
sidePainter.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
background->paint(&sidePainter, QPoint(0, 0), "top");
|
|
|
|
}
|
|
|
|
p.drawTiledPixmap(QRect(contentLeft, topOffset, contentWidth, topHeight), top);
|
|
|
|
|
|
|
|
QPixmap bottom(topWidth, bottomHeight);
|
|
|
|
bottom.fill(Qt::transparent);
|
|
|
|
{
|
|
|
|
QPainter sidePainter(&bottom);
|
|
|
|
sidePainter.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
background->paint(&sidePainter, QPoint(0, 0), "bottom");
|
|
|
|
}
|
|
|
|
p.drawTiledPixmap(QRect(contentLeft, bottomOffset, contentWidth, bottomHeight), bottom);
|
2007-07-31 02:21:08 +02:00
|
|
|
}
|
2007-07-25 01:46:54 +02:00
|
|
|
|
2007-10-23 22:14:29 +02:00
|
|
|
// re-enable this once Qt's svg rendering is un-buggered
|
|
|
|
//background->resize(contentWidth, contentHeight);
|
|
|
|
//background->paint(&p, QRect(contentLeft, contentTop, contentWidth, contentHeight), "center");
|
2007-07-25 01:46:54 +02:00
|
|
|
}
|
2007-10-01 07:50:57 +02:00
|
|
|
|
2007-11-18 23:46:46 +01:00
|
|
|
p2->drawPixmap(paintRect, *cachedBackground, paintRect.translated(-leftOffset,-topOffset));
|
2007-07-24 21:27:58 +02:00
|
|
|
}
|
|
|
|
|
2007-07-26 04:36:53 +02:00
|
|
|
QSizeF contentSize(const Applet* q)
|
|
|
|
{
|
|
|
|
if (failureText) {
|
|
|
|
return failureText->geometry().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return q->contentSize();
|
|
|
|
}
|
|
|
|
|
2007-07-20 05:28:34 +02:00
|
|
|
static uint nextId()
|
|
|
|
{
|
|
|
|
++s_maxAppletId;
|
|
|
|
return s_maxAppletId;
|
|
|
|
}
|
2007-05-24 22:01:12 +02:00
|
|
|
|
2007-07-30 18:19:07 +02:00
|
|
|
QString instanceName()
|
|
|
|
{
|
|
|
|
if (!appletDescription.isValid()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return appletDescription.service()->library() + QString::number(appletId);
|
|
|
|
}
|
|
|
|
|
2007-08-17 17:05:01 +02:00
|
|
|
void getBorderSize(int& left , int& top, int &right, int& bottom)
|
|
|
|
{
|
2007-11-17 20:03:17 +01:00
|
|
|
if (background) {
|
2007-08-17 17:05:01 +02:00
|
|
|
top = background->elementSize("top").height();
|
|
|
|
left = background->elementSize("left").width();
|
|
|
|
right = background->elementSize("right").width();
|
|
|
|
bottom = background->elementSize("bottom").height();
|
2007-11-17 20:03:17 +01:00
|
|
|
} else {
|
|
|
|
top = left = right = bottom = 0;
|
2007-08-17 17:05:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-26 03:04:56 +02:00
|
|
|
void scheduleConstraintsUpdate(Plasma::Constraints c, Applet* applet)
|
|
|
|
{
|
|
|
|
if (pendingConstraints == NoConstraint) {
|
|
|
|
QTimer::singleShot(0, applet, SLOT(flushUpdatedConstraints()));
|
|
|
|
}
|
|
|
|
pendingConstraints |= c;
|
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
KConfigGroup* mainConfigGroup(const Applet* q)
|
2007-11-26 19:26:32 +01:00
|
|
|
{
|
2007-11-27 07:01:06 +01:00
|
|
|
if (mainConfig) {
|
|
|
|
return mainConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isContainment) {
|
|
|
|
const Containment *asContainment = qobject_cast<Containment*>(const_cast<Applet*>(q));
|
|
|
|
Q_ASSERT(asContainment);
|
|
|
|
|
|
|
|
KConfigGroup containmentConfig;
|
2007-11-29 21:38:13 +01:00
|
|
|
//kDebug() << "got a corona, baby?" << (QObject*)asContainment->corona();
|
2007-11-27 07:01:06 +01:00
|
|
|
if (asContainment->corona()) {
|
|
|
|
containmentConfig = KConfigGroup(asContainment->corona()->config(), "Containments");
|
|
|
|
} else {
|
|
|
|
containmentConfig = KConfigGroup(KGlobal::config(), "Containments");
|
|
|
|
}
|
2007-11-26 19:26:32 +01:00
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
mainConfig = new KConfigGroup(&containmentConfig, QString::number(appletId));
|
2007-11-26 19:26:32 +01:00
|
|
|
} else {
|
2007-11-27 07:01:06 +01:00
|
|
|
KConfigGroup appletConfig;
|
|
|
|
if (q->containment()) {
|
|
|
|
appletConfig = q->containment()->config();
|
|
|
|
appletConfig = KConfigGroup(&appletConfig, "Applets");
|
|
|
|
} else {
|
|
|
|
kWarning() << "requesting config for" << q->name() << "without a containment!";
|
|
|
|
appletConfig = KConfigGroup(KGlobal::config(), "Applets");
|
|
|
|
}
|
|
|
|
|
|
|
|
mainConfig = new KConfigGroup(&appletConfig, QString::number(appletId));
|
2007-11-26 19:26:32 +01:00
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
return mainConfig;
|
2007-11-26 19:26:32 +01:00
|
|
|
}
|
|
|
|
|
2007-07-20 05:28:34 +02:00
|
|
|
//TODO: examine the usage of memory here; there's a pretty large
|
|
|
|
// number of members at this point.
|
|
|
|
uint appletId;
|
2007-07-23 01:10:53 +02:00
|
|
|
KPluginInfo appletDescription;
|
2007-07-20 05:28:34 +02:00
|
|
|
Package* package;
|
|
|
|
QList<QObject*> watchedForFocus;
|
|
|
|
QStringList loadedEngines;
|
|
|
|
static uint s_maxAppletId;
|
|
|
|
Plasma::Svg *background;
|
|
|
|
Plasma::LineEdit *failureText;
|
2007-07-23 11:21:45 +02:00
|
|
|
ScriptEngine* scriptEngine;
|
2007-07-30 18:00:29 +02:00
|
|
|
ConfigXml* configXml;
|
2007-08-05 10:41:55 +02:00
|
|
|
ShadowItem* shadow;
|
2007-08-03 17:23:56 +02:00
|
|
|
QPixmap* cachedBackground;
|
2007-11-27 07:01:06 +01:00
|
|
|
KConfigGroup *mainConfig;
|
2007-10-26 03:04:56 +02:00
|
|
|
Plasma::Constraints pendingConstraints;
|
2007-07-27 23:05:45 +02:00
|
|
|
bool kioskImmutable : 1;
|
2007-07-20 05:28:34 +02:00
|
|
|
bool immutable : 1;
|
|
|
|
bool hasConfigurationInterface : 1;
|
|
|
|
bool failed : 1;
|
2007-08-03 17:23:56 +02:00
|
|
|
bool needsConfig : 1;
|
2007-11-15 10:39:46 +01:00
|
|
|
bool isContainment : 1;
|
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,
|
2007-07-12 20:34:53 +02:00
|
|
|
uint appletId)
|
2007-08-03 18:00:10 +02:00
|
|
|
: Widget(parent),
|
|
|
|
d(new Private(KService::serviceByStorageId(serviceID), appletId))
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-11-27 07:01:06 +01:00
|
|
|
// WARNING: do not access config() OR globalConfig() in this method!
|
|
|
|
// that requires a scene, which is not available at this point
|
2007-07-20 10:12:20 +02:00
|
|
|
d->init(this);
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-08-29 04:33:22 +02:00
|
|
|
Applet::Applet(QObject* parentObject, const QVariantList& args)
|
2007-08-17 17:05:01 +02:00
|
|
|
: Widget(0,parentObject),
|
2007-08-29 04:33:22 +02:00
|
|
|
d(new Private(KService::serviceByStorageId(args.count() > 0 ? args[0].toString() : QString()),
|
2007-08-03 18:00:10 +02:00
|
|
|
args.count() > 1 ? args[1].toInt() : 0))
|
2007-05-24 22:01:12 +02:00
|
|
|
{
|
2007-11-27 07:01:06 +01:00
|
|
|
// WARNING: do not access config() OR globalConfig() in this method!
|
|
|
|
// that requires a scene, which is not available at this point
|
2007-07-20 10:12:20 +02:00
|
|
|
d->init(this);
|
2007-09-28 07:46:37 +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-11-25 00:38:37 +01:00
|
|
|
needsFocus(false);
|
2005-12-29 22:55:22 +01:00
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
2007-09-13 19:00:57 +02:00
|
|
|
void Applet::init()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-05 15:01:09 +02:00
|
|
|
uint Applet::id() const
|
|
|
|
{
|
|
|
|
return d->appletId;
|
|
|
|
}
|
|
|
|
|
2007-09-18 23:22:45 +02:00
|
|
|
void Applet::save(KConfigGroup* group) const
|
|
|
|
{
|
2007-12-07 06:02:54 +01:00
|
|
|
// we call the dptr member directly for locked since isImmutable()
|
|
|
|
// also checks kiosk and parent containers
|
|
|
|
group->writeEntry("locked", d->immutable);
|
2007-09-18 23:22:45 +02:00
|
|
|
group->writeEntry("plugin", pluginName());
|
2007-10-26 03:04:56 +02:00
|
|
|
//FIXME: for containments, we need to have some special values here w/regards to
|
|
|
|
// screen affinity (e.g. "bottom of screen 0")
|
2007-10-29 06:01:35 +01:00
|
|
|
//kDebug() << pluginName() << "geometry is" << geometry() << "pos is" << pos() << "bounding rect is" << boundingRect();
|
2007-10-29 05:39:23 +01:00
|
|
|
group->writeEntry("geometry", geometry());
|
2007-09-18 23:22:45 +02:00
|
|
|
|
2007-11-19 10:21:11 +01:00
|
|
|
if (transform() == QTransform()) {
|
|
|
|
group->deleteEntry("transform");
|
|
|
|
} else {
|
|
|
|
QList<qreal> m;
|
|
|
|
QTransform t = transform();
|
|
|
|
m << t.m11() << t.m12() << t.m13() << t.m21() << t.m22() << t.m23() << t.m31() << t.m32() << t.m33();
|
|
|
|
group->writeEntry("transform", m);
|
|
|
|
//group->writeEntry("transform", transformToString(transform()));
|
|
|
|
}
|
|
|
|
|
2007-11-25 00:38:37 +01:00
|
|
|
KConfigGroup appletConfigGroup(group, "Configuration");
|
|
|
|
saveState(&appletConfigGroup);
|
2007-09-18 23:22:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::saveState(KConfigGroup* group) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(group)
|
|
|
|
}
|
|
|
|
|
2007-11-25 00:38:37 +01:00
|
|
|
KConfigGroup Applet::config(const QString &group) const
|
2007-07-12 21:14:23 +02:00
|
|
|
{
|
|
|
|
KConfigGroup cg = config();
|
2007-11-25 00:38:37 +01:00
|
|
|
return KConfigGroup(&cg, group);
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup Applet::config() const
|
|
|
|
{
|
|
|
|
if (d->isContainment) {
|
2007-11-27 07:01:06 +01:00
|
|
|
return *(d->mainConfigGroup(this));
|
2007-11-25 00:38:37 +01:00
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
return KConfigGroup(d->mainConfigGroup(this), "Configuration");
|
2007-07-12 21:14:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
KConfigGroup Applet::globalConfig() const
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-11-25 00:38:37 +01:00
|
|
|
KConfigGroup globalAppletConfig;
|
|
|
|
if (containment() && containment()->corona()) {
|
|
|
|
KSharedConfig::Ptr coronaConfig = containment()->corona()->config();
|
|
|
|
globalAppletConfig = KConfigGroup(coronaConfig, "AppletGlobals");
|
|
|
|
} else {
|
|
|
|
globalAppletConfig = KConfigGroup(KGlobal::config(), "AppletGlobals");
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-11-25 00:38:37 +01:00
|
|
|
return KConfigGroup(&globalAppletConfig, globalName());
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-08-05 11:39:32 +02:00
|
|
|
void Applet::destroy()
|
|
|
|
{
|
2007-11-26 19:26:32 +01:00
|
|
|
//kDebug() << "???????????????? DESTROYING APPLET" << name() << " ???????????????????????????";
|
2007-08-05 11:39:32 +02:00
|
|
|
if (d->configXml) {
|
|
|
|
d->configXml->setDefaults();
|
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
resetConfigurationObject();
|
2007-08-05 11:39:32 +02:00
|
|
|
deleteLater();
|
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
void Applet::resetConfigurationObject()
|
|
|
|
{
|
|
|
|
d->mainConfigGroup(this)->deleteGroup();
|
|
|
|
delete d->mainConfig;
|
|
|
|
d->mainConfig = 0;
|
|
|
|
}
|
|
|
|
|
2007-08-05 11:39:32 +02:00
|
|
|
ConfigXml* Applet::configXml() const
|
2007-07-30 18:19:07 +02:00
|
|
|
{
|
|
|
|
return d->configXml;
|
|
|
|
}
|
|
|
|
|
2007-07-20 05:34:20 +02:00
|
|
|
DataEngine* Applet::dataEngine(const QString& name) const
|
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);
|
2007-07-11 03:24:43 +02:00
|
|
|
if (engine->isValid()) {
|
2007-06-02 19:29:39 +02:00
|
|
|
d->loadedEngines.append(name);
|
2006-04-13 02:11:16 +02:00
|
|
|
}
|
|
|
|
|
2007-07-11 03:24:43 +02:00
|
|
|
return engine;
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-07-20 05:34:20 +02:00
|
|
|
const Package* Applet::package() const
|
|
|
|
{
|
|
|
|
return d->package;
|
|
|
|
}
|
|
|
|
|
2007-10-02 01:24:38 +02:00
|
|
|
void Applet::updateConstraints(Plasma::Constraints constraints)
|
2007-08-05 10:41:55 +02:00
|
|
|
{
|
2007-10-26 03:04:56 +02:00
|
|
|
d->scheduleConstraintsUpdate(constraints, this);
|
2007-08-05 10:41:55 +02:00
|
|
|
}
|
|
|
|
|
2007-10-02 01:24:38 +02:00
|
|
|
void Applet::constraintsUpdated(Plasma::Constraints constraints)
|
2005-12-29 22:55:22 +01:00
|
|
|
{
|
2007-11-03 03:52:45 +01:00
|
|
|
Q_UNUSED(constraints)
|
2007-10-26 03:06:03 +02:00
|
|
|
//kDebug() << constraints << "constraints are FormFactor: " << formFactor() << ", Location: " << location();
|
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
|
|
|
{
|
2007-07-23 01:10:53 +02:00
|
|
|
if (!d->appletDescription.isValid()) {
|
2007-07-18 00:26:18 +02:00
|
|
|
return i18n("Unknown Applet");
|
|
|
|
}
|
|
|
|
|
2007-07-23 01:10:53 +02:00
|
|
|
return d->appletDescription.name();
|
2007-06-05 21:31:48 +02:00
|
|
|
}
|
|
|
|
|
2007-07-23 08:12:38 +02:00
|
|
|
QString Applet::icon() const
|
|
|
|
{
|
|
|
|
if (!d->appletDescription.isValid()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return d->appletDescription.icon();
|
|
|
|
}
|
|
|
|
|
2007-08-05 15:01:09 +02:00
|
|
|
QString Applet::pluginName() const
|
|
|
|
{
|
|
|
|
if (!d->appletDescription.isValid()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return d->appletDescription.pluginName();
|
|
|
|
}
|
|
|
|
|
2007-12-21 13:27:29 +01:00
|
|
|
bool Applet::shouldConserveResources() const
|
|
|
|
{
|
|
|
|
return Solid::PowerManagement::appShouldConserveResources();
|
|
|
|
}
|
|
|
|
|
2007-07-12 15:24:35 +02:00
|
|
|
QString Applet::category() const
|
|
|
|
{
|
2007-07-23 01:10:53 +02:00
|
|
|
if (!d->appletDescription.isValid()) {
|
2007-08-05 15:01:09 +02:00
|
|
|
return i18n("Miscellaneous");
|
2007-07-18 00:26:18 +02:00
|
|
|
}
|
|
|
|
|
2007-08-05 15:01:09 +02:00
|
|
|
return d->appletDescription.category();
|
2007-07-12 15:24:35 +02:00
|
|
|
}
|
|
|
|
|
2007-07-23 01:10:53 +02:00
|
|
|
QString Applet::category(const KPluginInfo& applet)
|
2007-07-12 15:24:35 +02:00
|
|
|
{
|
2007-07-23 01:10:53 +02:00
|
|
|
return applet.property("X-KDE-PluginInfo-Category").toString();
|
2007-07-12 15:24:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Applet::category(const QString& appletName)
|
|
|
|
{
|
|
|
|
if (appletName.isEmpty()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString constraint = QString("[X-KDE-PluginInfo-Name] == '%1'").arg(appletName);
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet", constraint);
|
|
|
|
|
|
|
|
if (offers.isEmpty()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2007-07-17 23:30:27 +02:00
|
|
|
return offers.first()->property("X-KDE-PluginInfo-Category").toString();
|
2007-07-12 15:24:35 +02:00
|
|
|
}
|
|
|
|
|
2007-07-23 02:24:36 +02:00
|
|
|
bool Applet::isImmutable() const
|
2007-06-21 20:24:05 +02:00
|
|
|
{
|
2007-12-04 05:15:21 +01:00
|
|
|
return d->immutable || d->kioskImmutable ||
|
|
|
|
(containment() && containment()->isImmutable()) ||
|
2007-12-08 10:16:06 +01:00
|
|
|
(dynamic_cast<Corona*>( scene() ) && static_cast<Corona*>(scene())->isImmutable());
|
2007-12-04 05:15:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Applet::isKioskImmutable() const
|
|
|
|
{
|
|
|
|
return d->kioskImmutable;
|
2007-06-21 20:24:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setImmutable(bool immutable)
|
|
|
|
{
|
2007-12-05 21:24:40 +01:00
|
|
|
if (d->immutable == immutable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-06-21 20:24:05 +02:00
|
|
|
d->immutable = immutable;
|
2007-12-05 21:24:40 +01:00
|
|
|
// TODO: should we tell the applets too?
|
|
|
|
updateConstraints(ImmutableConstraint);
|
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");
|
2007-11-17 20:03:17 +01:00
|
|
|
updateGeometry();
|
2007-06-22 22:28:42 +02:00
|
|
|
}
|
2007-07-30 18:00:29 +02:00
|
|
|
} else if (d->background) {
|
2007-06-22 22:28:42 +02:00
|
|
|
delete d->background;
|
|
|
|
d->background = 0;
|
2007-11-17 20:03:17 +01:00
|
|
|
updateGeometry();
|
2007-06-22 22:28:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-12 20:34:53 +02:00
|
|
|
bool Applet::failedToLaunch() const
|
|
|
|
{
|
|
|
|
return d->failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString visibleFailureText(const QString& reason)
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
|
|
|
|
if (reason.isEmpty()) {
|
|
|
|
text = i18n("This object could not be created.");
|
|
|
|
} else {
|
2007-11-04 06:31:18 +01:00
|
|
|
text = i18n("This object could not be created for the following reason:<p><b>%1</b></p>", reason);
|
2007-07-12 20:34:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setFailedToLaunch(bool failed, const QString& reason)
|
|
|
|
{
|
|
|
|
if (d->failed == failed) {
|
|
|
|
if (d->failureText) {
|
|
|
|
d->failureText->setHtml(visibleFailureText(reason));
|
2007-11-03 03:52:45 +01:00
|
|
|
setGeometry(QRectF(geometry().topLeft(), d->failureText->sizeHint()));
|
2007-07-12 20:34:53 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->failed = failed;
|
2007-07-26 04:36:53 +02:00
|
|
|
prepareGeometryChange();
|
2007-12-17 18:21:34 +01:00
|
|
|
|
|
|
|
d->failureText = 0;
|
2007-07-12 20:34:53 +02:00
|
|
|
qDeleteAll(QGraphicsItem::children());
|
|
|
|
delete layout();
|
|
|
|
|
|
|
|
if (failed) {
|
2007-08-03 17:23:56 +02:00
|
|
|
setDrawStandardBackground(true);
|
2007-11-03 03:52:45 +01:00
|
|
|
Layout* failureLayout = new BoxLayout(BoxLayout::TopToBottom, this);
|
|
|
|
failureLayout->setMargin(0);
|
2007-11-04 06:31:18 +01:00
|
|
|
d->failureText = new LineEdit(this);
|
|
|
|
d->failureText->setStyled(false);
|
|
|
|
d->failureText->document()->setTextWidth(200);
|
2007-07-12 20:34:53 +02:00
|
|
|
d->failureText->setHtml(visibleFailureText(reason));
|
2007-11-04 06:31:18 +01:00
|
|
|
//FIXME: this needs to get the colour from the theme's colour scheme
|
2007-11-04 07:58:20 +01:00
|
|
|
d->failureText->setDefaultTextColor(KStatefulBrush(KColorScheme::Window,
|
|
|
|
KColorScheme::NormalText,
|
|
|
|
Theme::self()->colors())
|
|
|
|
.brush(QPalette::Normal).color());
|
2007-07-12 20:34:53 +02:00
|
|
|
failureLayout->addItem(d->failureText);
|
2007-11-03 03:52:45 +01:00
|
|
|
setGeometry(QRectF(geometry().topLeft(), d->failureText->sizeHint()));
|
2007-07-12 20:34:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2007-08-03 17:23:56 +02:00
|
|
|
bool Applet::needsConfiguring() const
|
|
|
|
{
|
|
|
|
return d->needsConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setNeedsConfiguring(bool needsConfig)
|
|
|
|
{
|
|
|
|
if (d->needsConfig == needsConfig) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->needsConfig = needsConfig;
|
|
|
|
prepareGeometryChange();
|
|
|
|
qDeleteAll(QGraphicsItem::children());
|
|
|
|
delete layout();
|
|
|
|
|
|
|
|
if (needsConfig) {
|
|
|
|
setDrawStandardBackground(true);
|
2007-09-01 14:34:22 +02:00
|
|
|
Layout* layout = new BoxLayout(BoxLayout::TopToBottom,this);
|
2007-08-03 17:23:56 +02:00
|
|
|
PushButton* button = new PushButton(this);
|
|
|
|
button->setText(i18n("Configure..."));
|
|
|
|
connect(button, SIGNAL(clicked()), this, SLOT(performSetupConfig()));
|
|
|
|
layout->addItem(button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::performSetupConfig()
|
|
|
|
{
|
|
|
|
qDeleteAll(QGraphicsItem::children());
|
|
|
|
delete layout();
|
|
|
|
showConfigurationInterface();
|
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
void Applet::checkImmutability()
|
|
|
|
{
|
2007-12-04 05:15:21 +01:00
|
|
|
d->kioskImmutable = globalConfig().isImmutable() || config().isImmutable() ||
|
|
|
|
(containment() && containment()->isKioskImmutable()) ||
|
2007-12-08 10:16:06 +01:00
|
|
|
(dynamic_cast<Corona*>( scene() ) && static_cast<Corona*>(scene())->isKioskImmutable());
|
2007-11-27 07:01:06 +01:00
|
|
|
setImmutable(d->kioskImmutable);
|
|
|
|
}
|
|
|
|
|
2007-10-26 03:04:56 +02:00
|
|
|
void Applet::flushUpdatedConstraints()
|
|
|
|
{
|
|
|
|
if (d->pendingConstraints == NoConstraint) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-26 03:06:03 +02:00
|
|
|
//kDebug() << "fushing constraints: " << d->pendingConstraints << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
|
2007-10-26 03:04:56 +02:00
|
|
|
Plasma::Constraints c = d->pendingConstraints;
|
|
|
|
d->pendingConstraints = NoConstraint;
|
|
|
|
|
2007-11-19 02:21:41 +01:00
|
|
|
Containment* containment = qobject_cast<Plasma::Containment*>(this);
|
2007-11-07 20:20:33 +01:00
|
|
|
if (c & Plasma::FormFactorConstraint) {
|
|
|
|
FormFactor f = formFactor();
|
|
|
|
setShadowShown(f == Planar);
|
2007-11-19 02:21:41 +01:00
|
|
|
setDrawStandardBackground(!containment && f != Vertical && f != Horizontal);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isContainment() && containment) {
|
|
|
|
containment->containmentConstraintsUpdated(c);
|
2007-11-07 20:20:33 +01:00
|
|
|
}
|
|
|
|
|
2007-10-26 03:04:56 +02:00
|
|
|
constraintsUpdated(c);
|
|
|
|
|
|
|
|
if (layout()) {
|
2007-11-20 00:45:56 +01:00
|
|
|
layout()->updateGeometry();
|
2007-10-26 03:04:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-23 00:01:10 +02:00
|
|
|
int Applet::type() const
|
|
|
|
{
|
|
|
|
return Type;
|
|
|
|
}
|
|
|
|
|
2007-07-31 03:11:25 +02:00
|
|
|
QRectF Applet::boundingRect() const
|
2007-07-12 20:34:53 +02:00
|
|
|
{
|
2007-07-26 04:36:53 +02:00
|
|
|
QRectF rect = QRectF(QPointF(0,0), d->contentSize(this));
|
2007-07-23 11:21:45 +02:00
|
|
|
|
2007-08-17 17:05:01 +02:00
|
|
|
int left;
|
|
|
|
int right;
|
|
|
|
int top;
|
|
|
|
int bottom;
|
|
|
|
|
|
|
|
d->getBorderSize(left,top,right,bottom);
|
2007-09-28 07:46:37 +02:00
|
|
|
|
|
|
|
|
2007-11-17 20:03:17 +01:00
|
|
|
//kDebug() << "Background , Border size" << d->background << left << top << right << bottom;
|
2007-09-28 07:46:37 +02:00
|
|
|
|
2007-08-17 17:05:01 +02:00
|
|
|
return rect.adjusted(-left,-top,right,bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
QSizeF Applet::sizeHint() const
|
|
|
|
{
|
2007-11-17 20:03:17 +01:00
|
|
|
int left = 0;
|
|
|
|
int right = 0;
|
|
|
|
int top = 0;
|
|
|
|
int bottom = 0;
|
2007-08-17 17:05:01 +02:00
|
|
|
|
2007-11-17 20:03:17 +01:00
|
|
|
d->getBorderSize(left, top, right, bottom);
|
2007-11-25 00:38:37 +01:00
|
|
|
QSizeF borderSize = QSizeF(left + right, top + bottom);
|
2007-07-25 21:15:23 +02:00
|
|
|
|
2007-11-17 20:03:17 +01:00
|
|
|
//kDebug() << "Applet content size hint: " << contentSizeHint() << "plus our borders" << left << right << top << bottom;
|
2007-09-01 14:34:22 +02:00
|
|
|
|
2007-11-17 20:03:17 +01:00
|
|
|
return contentSizeHint() + QSizeF(left + right, top + bottom);
|
2007-07-12 20:34:53 +02:00
|
|
|
}
|
2007-06-22 22:28:42 +02:00
|
|
|
|
2007-07-31 02:20:19 +02:00
|
|
|
QList<QAction*> Applet::contextActions()
|
|
|
|
{
|
2007-11-29 21:38:13 +01:00
|
|
|
kDebug() << "empty context actions";
|
2007-07-31 02:20:19 +02:00
|
|
|
return QList<QAction*>();
|
|
|
|
}
|
|
|
|
|
2007-07-27 00:58:30 +02:00
|
|
|
QColor Applet::color() const
|
|
|
|
{
|
|
|
|
// TODO: add more colors for more categories and
|
|
|
|
// maybe read from config?
|
2007-07-28 23:07:18 +02:00
|
|
|
QString c = category();
|
2007-07-29 06:36:38 +02:00
|
|
|
int alpha = 200;
|
2007-07-28 23:07:18 +02:00
|
|
|
// Colors taken from Oxygen color palette
|
|
|
|
if (c == "Date and Time") {
|
|
|
|
return QColor(191, 94, 0, alpha);
|
|
|
|
} else if (c == "Environment & Weather") {
|
|
|
|
return QColor(191, 0, 0, alpha);
|
|
|
|
} else if (c == "Examples") {
|
|
|
|
return QColor(204, 0, 154, alpha);
|
|
|
|
} else if (c == "File System") {
|
|
|
|
return QColor(90, 0, 179, alpha);
|
|
|
|
} else if (c == "Graphics") {
|
|
|
|
return QColor(0, 0, 255, alpha);
|
|
|
|
} else if (c == "Language") {
|
|
|
|
return QColor(0, 191, 0, alpha);
|
|
|
|
} else if (c == "Mapping") {
|
|
|
|
return QColor(191, 245, 0, alpha);
|
|
|
|
} else if (c == "Online Services") {
|
|
|
|
return QColor(255, 213, 0, alpha);
|
|
|
|
} else if (c == "System Information") {
|
|
|
|
return QColor(0, 196, 204, alpha);
|
|
|
|
} else if (c == "Windows and Tasks") {
|
|
|
|
return QColor(255, 126, 0, alpha);
|
2007-07-27 00:58:30 +02:00
|
|
|
} else {
|
2007-07-28 23:07:18 +02:00
|
|
|
return QColor(136, 136, 136, alpha);
|
2007-07-27 00:58:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-10 20:50:36 +02:00
|
|
|
void Applet::paintWidget(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
2007-06-22 22:28:42 +02:00
|
|
|
{
|
2007-07-24 23:04:31 +02:00
|
|
|
Q_UNUSED(widget)
|
2007-08-05 10:41:55 +02:00
|
|
|
if (d->shadow && d->shadow->shadowedSize() != boundingRect().size()) {
|
|
|
|
//kDebug() << "sizes are " << d->shadow->shadowedSize() << boundingRect().size();
|
|
|
|
d->shadow->generate();
|
|
|
|
}
|
|
|
|
|
2007-11-19 10:21:11 +01:00
|
|
|
painter->save();
|
|
|
|
if (transform().isRotating()) {
|
|
|
|
painter->setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
painter->setRenderHint(QPainter::Antialiasing);
|
|
|
|
}
|
2007-07-24 23:04:31 +02:00
|
|
|
|
2007-11-19 10:21:11 +01:00
|
|
|
if (d->background) {
|
|
|
|
//kDebug() << "option rect is" << option->rect;
|
|
|
|
d->paintBackground(painter, this, option->rect);
|
|
|
|
}
|
2007-11-15 10:39:46 +01:00
|
|
|
|
2007-11-19 10:21:11 +01:00
|
|
|
if (!d->failed && !d->needsConfig) {
|
|
|
|
if (widget && isContainment()) {
|
|
|
|
// note that the widget we get is actually the viewport of the view, not the view itself
|
|
|
|
View* v = qobject_cast<Plasma::View*>(widget->parent());
|
|
|
|
if (v && !v->drawWallpaper()) {
|
2007-12-19 03:52:41 +01:00
|
|
|
painter->restore();
|
2007-11-19 10:21:11 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-07-26 01:42:43 +02:00
|
|
|
}
|
2007-06-22 22:28:42 +02:00
|
|
|
|
2007-12-19 01:45:29 +01:00
|
|
|
//kDebug() << "paint interface of" << (QObject*) this;
|
2007-11-19 10:21:11 +01:00
|
|
|
paintInterface(painter, option, QRect(QPoint(0,0), d->contentSize(this).toSize()));
|
|
|
|
}
|
|
|
|
|
|
|
|
painter->restore();
|
2007-06-22 22:28:42 +02:00
|
|
|
}
|
|
|
|
|
2007-07-24 23:04:31 +02:00
|
|
|
void Applet::paintInterface(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
|
|
const QRect & contentsRect)
|
2007-06-20 08:45:08 +02:00
|
|
|
{
|
2007-07-24 23:04:31 +02:00
|
|
|
Q_UNUSED(contentsRect)
|
2007-07-23 11:21:45 +02:00
|
|
|
|
|
|
|
if (d->scriptEngine) {
|
2007-11-29 05:30:48 +01:00
|
|
|
d->scriptEngine->paintInterface(painter, option, contentsRect);
|
2007-07-24 23:04:31 +02:00
|
|
|
} else {
|
2007-08-02 15:12:59 +02:00
|
|
|
//kDebug() << "Applet::paintInterface() default impl";
|
2007-07-23 11:21:45 +02:00
|
|
|
}
|
2007-06-20 08:45:08 +02:00
|
|
|
}
|
|
|
|
|
2007-06-01 00:40:38 +02:00
|
|
|
FormFactor Applet::formFactor() const
|
|
|
|
{
|
2007-09-18 23:22:45 +02:00
|
|
|
Containment* c = containment();
|
2007-12-19 01:45:29 +01:00
|
|
|
return c ? c->formFactor() : Plasma::Planar;
|
2007-09-18 23:22:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Containment* Applet::containment() const
|
|
|
|
{
|
2007-11-15 12:01:17 +01:00
|
|
|
QGraphicsItem *parent = parentItem();
|
2007-12-04 05:15:21 +01:00
|
|
|
Containment *c = 0;
|
2007-11-15 12:01:17 +01:00
|
|
|
while (parent) {
|
2007-12-04 05:15:21 +01:00
|
|
|
if ((c = dynamic_cast<Containment*>(parent))) {
|
2007-11-15 12:01:17 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
parent = parent->parentItem();
|
|
|
|
}
|
2007-12-04 05:15:21 +01:00
|
|
|
return c;
|
2007-06-01 00:40:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Location Applet::location() const
|
|
|
|
{
|
2007-09-18 23:22:45 +02:00
|
|
|
Containment* c = containment();
|
|
|
|
|
|
|
|
if (!c) {
|
2007-06-02 00:58:48 +02:00
|
|
|
return Plasma::Desktop;
|
|
|
|
}
|
|
|
|
|
2007-09-18 23:22:45 +02:00
|
|
|
return c->location();
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-12-05 21:24:40 +01:00
|
|
|
QRectF Applet::contentRect() const
|
|
|
|
{
|
|
|
|
return QRectF(QPointF(0, 0), contentSize());
|
|
|
|
}
|
|
|
|
|
2007-07-25 21:15:23 +02:00
|
|
|
QSizeF Applet::contentSize() const
|
2007-09-01 14:34:22 +02:00
|
|
|
{
|
2007-11-28 22:08:12 +01:00
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
2007-09-18 23:22:45 +02:00
|
|
|
|
2007-11-17 20:03:17 +01:00
|
|
|
// kDebug() << "Geometry size: " << geometry().size();
|
|
|
|
// kDebug() << "Borders: " << left << top << right << bottom;
|
2007-09-01 14:34:22 +02:00
|
|
|
|
2007-12-08 22:40:59 +01:00
|
|
|
return (geometry().size() - QSizeF(left + right, top + bottom)).expandedTo(QSizeF(0, 0));
|
2007-09-01 14:34:22 +02:00
|
|
|
}
|
|
|
|
|
2007-11-29 21:38:13 +01:00
|
|
|
void Applet::setContentSize(const QSizeF &size)
|
|
|
|
{
|
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
|
|
|
|
|
|
|
resize(size + QSizeF(left + right, top + bottom));
|
|
|
|
}
|
|
|
|
|
2007-12-19 01:45:29 +01:00
|
|
|
void Applet::setContentSize(int width, int height)
|
|
|
|
{
|
|
|
|
setContentSize(QSizeF(width, height));
|
|
|
|
}
|
|
|
|
|
2007-09-01 14:34:22 +02:00
|
|
|
QSizeF Applet::contentSizeHint() const
|
2007-07-24 23:04:31 +02:00
|
|
|
{
|
2007-07-29 01:41:40 +02:00
|
|
|
if (layout()) {
|
|
|
|
return layout()->sizeHint();
|
|
|
|
}
|
|
|
|
|
2007-11-25 00:38:37 +01:00
|
|
|
return contentSize();
|
2007-07-24 23:04:31 +02:00
|
|
|
}
|
|
|
|
|
2007-11-28 22:08:12 +01:00
|
|
|
void Applet::setMinimumContentSize(const QSizeF &minSize)
|
|
|
|
{
|
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
|
|
|
|
|
|
|
setMinimumSize(minSize + QSizeF(left + right, top + bottom));
|
|
|
|
}
|
|
|
|
|
2007-12-19 01:45:29 +01:00
|
|
|
void Applet::setMinimumContentSize(int minWidth, int minHeight)
|
|
|
|
{
|
|
|
|
setMinimumContentSize(QSizeF(minWidth, minHeight));
|
|
|
|
}
|
|
|
|
|
2007-11-28 22:08:12 +01:00
|
|
|
QSizeF Applet::minimumContentSize() const
|
|
|
|
{
|
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
|
|
|
|
|
|
|
return minimumSize() - QSizeF(left + right, top + bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setMaximumContentSize(const QSizeF &maxSize)
|
|
|
|
{
|
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
|
|
|
|
|
|
|
setMaximumSize(maxSize + QSizeF(left + right, top + bottom));
|
|
|
|
}
|
|
|
|
|
2007-12-19 01:45:29 +01:00
|
|
|
void Applet::setMaximumContentSize(int maxWidth, int maxHeight)
|
|
|
|
{
|
|
|
|
setMaximumContentSize(QSizeF(maxWidth, maxHeight));
|
|
|
|
}
|
|
|
|
|
2007-11-28 22:08:12 +01:00
|
|
|
QSizeF Applet::maximumContentSize() const
|
|
|
|
{
|
|
|
|
int top, left, right, bottom;
|
|
|
|
d->getBorderSize(left, top, right, bottom);
|
|
|
|
|
|
|
|
return maximumSize() - QSizeF(left + right, top + bottom);
|
|
|
|
}
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
QString Applet::globalName() const
|
|
|
|
{
|
2007-07-23 01:10:53 +02:00
|
|
|
if (!d->appletDescription.isValid()) {
|
2007-07-18 00:26:18 +02:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2007-07-23 01:10:53 +02:00
|
|
|
return d->appletDescription.service()->library();
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Applet::instanceName() const
|
|
|
|
{
|
2007-07-31 03:11:25 +02:00
|
|
|
return d->instanceName();
|
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-07-02 12:47:34 +02:00
|
|
|
bool Applet::hasConfigurationInterface()
|
|
|
|
{
|
|
|
|
return d->hasConfigurationInterface;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Applet::setHasConfigurationInterface(bool hasInterface)
|
|
|
|
{
|
|
|
|
d->hasConfigurationInterface = hasInterface;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2007-07-02 12:58:03 +02:00
|
|
|
void Applet::showConfigurationInterface()
|
2007-07-02 12:47:34 +02:00
|
|
|
{
|
2007-07-30 18:00:29 +02:00
|
|
|
if (d->package && d->configXml) {
|
|
|
|
QString uiFile = d->package->filePath("mainconfigui");
|
|
|
|
if (uiFile.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
KConfigDialog *dialog = new KConfigDialog(0, "", d->configXml);
|
|
|
|
dialog->setWindowTitle(i18n("%1 Settings", name()));
|
|
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
|
|
|
|
QUiLoader loader;
|
|
|
|
QString filename = d->package->filePath("mainconfigui");
|
|
|
|
QFile f(filename);
|
|
|
|
if (!f.open(QIODevice::ReadOnly)) {
|
|
|
|
delete dialog;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *w = loader.load(&f);
|
|
|
|
f.close();
|
|
|
|
|
|
|
|
dialog->addPage(w, i18n("Settings"), icon(), i18n("%1 Settings", name()));
|
|
|
|
dialog->show();
|
|
|
|
}
|
2007-07-02 12:47:34 +02:00
|
|
|
}
|
|
|
|
|
2007-07-17 23:30:27 +02:00
|
|
|
KPluginInfo::List Applet::knownApplets(const QString &category,
|
|
|
|
const QString &parentApp)
|
2007-05-24 22:01:12 +02:00
|
|
|
{
|
2007-07-17 23:30:27 +02:00
|
|
|
QString constraint;
|
|
|
|
|
|
|
|
if (parentApp.isEmpty()) {
|
|
|
|
constraint.append("not exist [X-KDE-ParentApp]");
|
|
|
|
} else {
|
|
|
|
constraint.append("[X-KDE-ParentApp] == '").append(parentApp).append("'");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!category.isEmpty()) {
|
|
|
|
if (!constraint.isEmpty()) {
|
|
|
|
constraint.append(" and ");
|
|
|
|
}
|
|
|
|
|
2007-07-18 00:26:18 +02:00
|
|
|
constraint.append("[X-KDE-PluginInfo-Category] == '").append(category).append("'");
|
2007-08-05 15:01:09 +02:00
|
|
|
if (category == "Miscellaneous") {
|
2007-07-18 00:26:18 +02:00
|
|
|
constraint.append(" or (not exist [X-KDE-PluginInfo-Category] or [X-KDE-PluginInfo-Category] == '')");
|
2007-07-17 23:30:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet", constraint);
|
2007-08-02 15:12:59 +02:00
|
|
|
//kDebug() << "Applet::knownApplets constraint was '" << constraint << "' which got us " << offers.count() << " matches";
|
2007-05-24 22:01:12 +02:00
|
|
|
return KPluginInfo::fromServices(offers);
|
|
|
|
}
|
|
|
|
|
2007-07-31 12:56:05 +02:00
|
|
|
KPluginInfo::List Applet::knownAppletsForMimetype(const QString &mimetype)
|
2007-07-31 12:52:05 +02:00
|
|
|
{
|
2007-08-05 23:52:35 +02:00
|
|
|
QString constraint = QString("'%1' in MimeTypes").arg(mimetype);
|
|
|
|
//kDebug() << "knownAppletsForMimetype with" << mimetype << constraint;
|
2007-07-31 12:52:05 +02:00
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet", constraint);
|
|
|
|
return KPluginInfo::fromServices(offers);
|
|
|
|
}
|
|
|
|
|
2007-11-19 10:46:52 +01:00
|
|
|
QStringList Applet::knownCategories(const QString &parentApp, bool visibleOnly)
|
2007-07-12 15:24:35 +02:00
|
|
|
{
|
2007-07-17 23:30:27 +02:00
|
|
|
QString constraint = "exist [X-KDE-PluginInfo-Category]";
|
|
|
|
|
|
|
|
if (parentApp.isEmpty()) {
|
|
|
|
constraint.append(" and not exist [X-KDE-ParentApp]");
|
|
|
|
} else {
|
|
|
|
constraint.append(" and [X-KDE-ParentApp] == '").append(parentApp).append("'");
|
|
|
|
}
|
|
|
|
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/Applet", constraint);
|
2007-07-12 15:24:35 +02:00
|
|
|
QStringList categories;
|
2007-11-19 10:46:52 +01:00
|
|
|
foreach (const KService::Ptr applet, offers) {
|
2007-07-17 23:30:27 +02:00
|
|
|
QString appletCategory = applet->property("X-KDE-PluginInfo-Category").toString();
|
2007-11-19 17:37:46 +01:00
|
|
|
if (visibleOnly && applet->noDisplay()) {
|
2007-11-19 10:46:52 +01:00
|
|
|
// we don't want to show the hidden category
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-08-05 10:41:55 +02:00
|
|
|
//kDebug() << " and we have " << appletCategory;
|
2007-07-17 23:30:27 +02:00
|
|
|
if (appletCategory.isEmpty()) {
|
2007-08-05 15:01:09 +02:00
|
|
|
if (!categories.contains(i18n("Miscellaneous"))) {
|
|
|
|
categories << i18n("Miscellaneous");
|
2007-07-12 15:24:35 +02:00
|
|
|
}
|
2007-07-17 23:30:27 +02:00
|
|
|
} else if (!categories.contains(appletCategory)) {
|
|
|
|
categories << appletCategory;
|
2007-07-12 15:24:35 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-17 23:30:27 +02:00
|
|
|
|
|
|
|
categories.sort();
|
2007-07-12 15:24:35 +02:00
|
|
|
return categories;
|
|
|
|
}
|
|
|
|
|
2007-08-29 04:33:22 +02:00
|
|
|
Applet* Applet::loadApplet(const QString& appletName, uint appletId, const QVariantList& 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
|
2007-08-02 15:12:59 +02:00
|
|
|
kDebug() << "Applet::loadApplet: offers is empty for \"" << appletName << "\"";
|
2007-05-24 22:01:12 +02:00
|
|
|
return 0;
|
2007-10-26 03:06:03 +02:00
|
|
|
} /* else if (offers.count() > 1) {
|
2007-10-11 10:36:22 +02:00
|
|
|
kDebug() << "hey! we got more than one! let's blindly take the first one";
|
2007-10-26 03:06:03 +02:00
|
|
|
} */
|
2007-05-24 22:01:12 +02:00
|
|
|
|
2007-11-29 21:38:13 +01:00
|
|
|
KService::Ptr offer = offers.first();
|
|
|
|
|
2007-05-24 22:01:12 +02:00
|
|
|
if (appletId == 0) {
|
|
|
|
appletId = Private::nextId();
|
|
|
|
}
|
|
|
|
|
2007-11-29 21:38:13 +01:00
|
|
|
if (!offer->property("X-Plasma-Language").toString().isEmpty()) {
|
|
|
|
kDebug() << "we have a script in the language of" << offer->property("X-Plasma-Language").toString();
|
|
|
|
Applet *applet = new Applet(0, offer->storageId(), appletId);
|
|
|
|
return applet;
|
|
|
|
}
|
|
|
|
|
2007-08-29 04:33:22 +02:00
|
|
|
QVariantList allArgs;
|
2007-11-29 21:38:13 +01:00
|
|
|
allArgs << offer->storageId() << appletId << args;
|
2007-08-29 04:33:22 +02:00
|
|
|
QString error;
|
2007-11-29 21:38:13 +01:00
|
|
|
Applet* applet = offer->createInstance<Plasma::Applet>(0, allArgs, &error);
|
2007-05-24 22:01:12 +02:00
|
|
|
|
|
|
|
if (!applet) {
|
2007-08-29 04:33:22 +02:00
|
|
|
kDebug() << "Couldn't load applet \"" << appletName << "\"! reason given: " << error;
|
2007-05-24 22:01:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return applet;
|
2005-12-29 22:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-08-29 04:33:22 +02:00
|
|
|
Applet* Applet::loadApplet(const KPluginInfo& info, uint appletId, const QVariantList& args)
|
2007-05-24 22:51:59 +02:00
|
|
|
{
|
2007-07-23 01:10:53 +02:00
|
|
|
if (!info.isValid()) {
|
2007-05-24 22:51:59 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-23 01:10:53 +02:00
|
|
|
return loadApplet(info.pluginName(), appletId, args);
|
2007-05-24 22:51:59 +02:00
|
|
|
}
|
|
|
|
|
2007-08-05 10:41:55 +02:00
|
|
|
void Applet::setShadowShown(bool shown)
|
|
|
|
{
|
|
|
|
//There are various problems with shadows right now:
|
|
|
|
//
|
|
|
|
//1) shadows can be seen through translucent areas, which is probably technically correct ubt
|
|
|
|
//looks odd
|
|
|
|
//2) the shape of the item odesn't conform to the shape of the standard background, e.g. with
|
|
|
|
//rounded corners
|
|
|
|
#ifdef DYNAMIC_SHADOWS
|
|
|
|
if (shown) {
|
|
|
|
if (d->shadow) {
|
|
|
|
d->shadow->setVisible(true);
|
|
|
|
} else {
|
|
|
|
d->shadow = new ShadowItem(this);
|
|
|
|
if (scene()) {
|
|
|
|
scene()->addItem(d->shadow);
|
|
|
|
d->shadow->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delete d->shadow;
|
|
|
|
d->shadow = 0;
|
|
|
|
}
|
2007-08-17 17:05:01 +02:00
|
|
|
#else
|
|
|
|
Q_UNUSED(shown);
|
2007-08-05 10:41:55 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Applet::isShadowShown() const
|
|
|
|
{
|
|
|
|
return d->shadow && d->shadow->isVisible();
|
|
|
|
}
|
|
|
|
|
2007-11-27 07:01:06 +01:00
|
|
|
|
|
|
|
|
2007-08-05 10:41:55 +02:00
|
|
|
QVariant Applet::itemChange(GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
switch (change) {
|
|
|
|
case ItemPositionChange:
|
2007-11-27 07:01:06 +01:00
|
|
|
if (d->shadow) {
|
|
|
|
d->shadow->adjustPosition();
|
|
|
|
}
|
2007-08-05 10:41:55 +02:00
|
|
|
break;
|
|
|
|
case ItemSceneChange: {
|
|
|
|
QGraphicsScene *newScene = qvariant_cast<QGraphicsScene*>(value);
|
|
|
|
if (newScene) {
|
2007-11-27 07:01:06 +01:00
|
|
|
// checking immutability requires having a working config object
|
|
|
|
// Applet relies on having a Corona scene to be able to get the
|
|
|
|
// correct config. so we have to wait until we have the scene,
|
|
|
|
// otherwise we trigger premature creation of the config objects
|
|
|
|
QTimer::singleShot(0, this, SLOT(checkImmutability()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d->shadow) {
|
|
|
|
if (d->shadow->scene()) {
|
|
|
|
d->shadow->scene()->removeItem(d->shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newScene) {
|
|
|
|
newScene->addItem(d->shadow);
|
|
|
|
d->shadow->generate();
|
|
|
|
d->shadow->adjustPosition();
|
|
|
|
d->shadow->show();
|
|
|
|
}
|
2007-08-05 10:41:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ItemVisibleChange:
|
2007-11-27 07:01:06 +01:00
|
|
|
if (d->shadow) {
|
|
|
|
d->shadow->setVisible(isVisible());
|
|
|
|
}
|
2007-08-05 10:41:55 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
2007-12-02 12:30:48 +01:00
|
|
|
return Widget::itemChange(change, value);
|
2007-08-05 10:41:55 +02:00
|
|
|
}
|
|
|
|
|
2007-09-28 07:46:37 +02:00
|
|
|
void Applet::setGeometry(const QRectF& geometry)
|
|
|
|
{
|
2007-12-22 08:35:42 +01:00
|
|
|
Plasma::Constraints updatedConstraints(0);
|
|
|
|
|
2007-10-11 21:16:01 +02:00
|
|
|
if (geometry.size().width() > 0 && geometry.size().height() > 0 && size() != geometry.size()) {
|
2007-09-28 07:46:37 +02:00
|
|
|
prepareGeometryChange();
|
|
|
|
qreal width = qBound(minimumSize().width(), geometry.size().width(), maximumSize().width());
|
|
|
|
qreal height = qBound(minimumSize().height(), geometry.size().height(), maximumSize().height());
|
|
|
|
|
|
|
|
setSize(QSizeF(width, height));
|
|
|
|
|
|
|
|
if (layout()) {
|
|
|
|
layout()->setGeometry(QRectF(QPoint(0, 0), contentSize()));
|
|
|
|
}
|
2007-11-04 06:31:18 +01:00
|
|
|
|
|
|
|
if (managingLayout()) {
|
|
|
|
managingLayout()->invalidate();
|
|
|
|
}
|
2007-11-25 00:38:37 +01:00
|
|
|
|
2007-12-22 08:35:42 +01:00
|
|
|
updatedConstraints |= Plasma::SizeConstraint;
|
2007-09-28 07:46:37 +02:00
|
|
|
}
|
|
|
|
|
2007-12-22 08:35:42 +01:00
|
|
|
if (geometry.topLeft() != pos()) {
|
|
|
|
setPos(geometry.topLeft());
|
|
|
|
updatedConstraints |= Plasma::LocationConstraint;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updatedConstraints) {
|
|
|
|
updateConstraints(updatedConstraints);
|
|
|
|
emit geometryChanged();
|
|
|
|
update();
|
|
|
|
}
|
2007-09-28 07:46:37 +02:00
|
|
|
}
|
|
|
|
|
2007-11-15 10:39:46 +01:00
|
|
|
void Applet::setIsContainment(bool isContainment)
|
|
|
|
{
|
|
|
|
d->isContainment = isContainment;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Applet::isContainment() const
|
|
|
|
{
|
|
|
|
return d->isContainment;
|
|
|
|
}
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
#include "applet.moc"
|