6b982a82e0
svn path=/trunk/KDE/kdebase/workspace/; revision=1159651
178 lines
3.4 KiB
C++
178 lines
3.4 KiB
C++
/*
|
|
* Copyright 2009 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 "widget.h"
|
|
|
|
#include <QAction>
|
|
#include <QGraphicsLinearLayout>
|
|
|
|
#include <Plasma/Applet>
|
|
#include <Plasma/Containment>
|
|
#include <Plasma/Corona>
|
|
|
|
namespace WorkspaceScripting
|
|
{
|
|
|
|
class Widget::Private
|
|
{
|
|
public:
|
|
Private()
|
|
{
|
|
}
|
|
|
|
QWeakPointer<Plasma::Applet> applet;
|
|
};
|
|
|
|
Widget::Widget(Plasma::Applet *applet, QObject *parent)
|
|
: Applet(parent),
|
|
d(new Widget::Private)
|
|
{
|
|
d->applet = applet;
|
|
setCurrentConfigGroup(QStringList());
|
|
setCurrentGlobalConfigGroup(QStringList());
|
|
}
|
|
|
|
Widget::~Widget()
|
|
{
|
|
reloadConfigIfNeeded();
|
|
delete d;
|
|
}
|
|
|
|
uint Widget::id() const
|
|
{
|
|
if (d->applet) {
|
|
return d->applet.data()->id();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
QString Widget::type() const
|
|
{
|
|
if (d->applet) {
|
|
return d->applet.data()->pluginName();
|
|
}
|
|
|
|
return QString();
|
|
}
|
|
|
|
void Widget::remove()
|
|
{
|
|
if (d->applet) {
|
|
d->applet.data()->destroy();
|
|
d->applet.clear();
|
|
}
|
|
}
|
|
|
|
void Widget::setGlobalShortcut(const QString &shortcut)
|
|
{
|
|
if (d->applet) {
|
|
d->applet.data()->setGlobalShortcut(KShortcut(shortcut));
|
|
}
|
|
}
|
|
|
|
QString Widget::globalShorcut() const
|
|
{
|
|
if (d->applet) {
|
|
return d->applet.data()->globalShortcut().toString();
|
|
}
|
|
|
|
return QString();
|
|
}
|
|
|
|
Plasma::Applet *Widget::applet() const
|
|
{
|
|
return d->applet.data();
|
|
}
|
|
|
|
int Widget::index() const
|
|
{
|
|
if (!d->applet) {
|
|
return -1;
|
|
}
|
|
|
|
Plasma::Applet *applet = d->applet.data();
|
|
Plasma::Containment *c = applet->containment();
|
|
if (!c) {
|
|
return -1;
|
|
}
|
|
|
|
QGraphicsLayout *layout = c->layout();
|
|
if (!layout) {
|
|
return - 1;
|
|
}
|
|
|
|
for (int i = 0; i < layout->count(); ++i) {
|
|
if (layout->itemAt(i) == applet) {
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void Widget::setIndex(int index)
|
|
{
|
|
if (!d->applet) {
|
|
return;
|
|
}
|
|
|
|
Plasma::Applet *applet = d->applet.data();
|
|
Plasma::Containment *c = applet->containment();
|
|
if (!c) {
|
|
return;
|
|
}
|
|
|
|
//FIXME: this is hackish. would be nice to define this for gridlayouts too
|
|
QGraphicsLinearLayout *layout = dynamic_cast<QGraphicsLinearLayout *>(c->layout());
|
|
if (!layout) {
|
|
return;
|
|
}
|
|
|
|
layout->insertItem(index, applet);
|
|
}
|
|
|
|
QRectF Widget::geometry() const
|
|
{
|
|
if (d->applet) {
|
|
return d->applet.data()->geometry();
|
|
}
|
|
|
|
return QRectF();
|
|
}
|
|
|
|
void Widget::setGeometry(const QRectF &geometry)
|
|
{
|
|
if (d->applet) {
|
|
d->applet.data()->setGeometry(geometry);
|
|
}
|
|
}
|
|
|
|
void Widget::showConfigurationInterface()
|
|
{
|
|
if (d->applet) {
|
|
d->applet.data()->showConfigurationInterface();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#include "widget.moc"
|
|
|