507ff411d6
Unlike stated at several places in the code it is not difficult to setup the connections to all Clients. It would have been nice if the failed attempts to connect the Clients would not have made it into the code as emitted signals which are nowhere used. Not to mention that like in all places the signals to inform that a state changed were emitted before the state changed was performed.
182 lines
6.7 KiB
C++
182 lines
6.7 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2010 Rohan Prabhu <rohan@rohanprabhu.com>
|
|
Copyright (C) 2011 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, 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 General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************/
|
|
|
|
#include "workspace.h"
|
|
#include "meta.h"
|
|
#include "../client.h"
|
|
|
|
KWin::Workspace* SWrapper::Workspace::centralObject = 0;
|
|
|
|
QScriptValue SWrapper::valueForClient(KWin::Client *client, QScriptEngine *engine) {
|
|
return engine->newQObject(client, QScriptEngine::QtOwnership,
|
|
QScriptEngine::ExcludeChildObjects | QScriptEngine::ExcludeDeleteLater | QScriptEngine::PreferExistingWrapperObject);
|
|
}
|
|
|
|
SWrapper::Workspace::Workspace(QObject* parent) : QObject(parent)
|
|
{
|
|
if (centralObject == 0) {
|
|
return;
|
|
} else {
|
|
|
|
QObject::connect(centralObject, SIGNAL(desktopPresenceChanged(KWin::Client*,int)),
|
|
this, SIGNAL(desktopPresenceChanged(KWin::Client*,int))
|
|
);
|
|
|
|
QObject::connect(centralObject, SIGNAL(currentDesktopChanged(int)),
|
|
this, SIGNAL(currentDesktopChanged(int))
|
|
);
|
|
|
|
QObject::connect(centralObject, SIGNAL(clientAdded(KWin::Client*)),
|
|
this, SIGNAL(clientAdded(KWin::Client*))
|
|
);
|
|
QObject::connect(centralObject, SIGNAL(clientAdded(KWin::Client*)), SLOT(setupClientConnections(KWin::Client*)));
|
|
|
|
QObject::connect(centralObject, SIGNAL(clientRemoved(KWin::Client*)),
|
|
this, SIGNAL(clientRemoved(KWin::Client*))
|
|
);
|
|
|
|
QObject::connect(centralObject, SIGNAL(clientActivated(KWin::Client*)),
|
|
this, SIGNAL(clientActivated(KWin::Client*))
|
|
);
|
|
}
|
|
foreach (KWin::Client *client, centralObject->clientList()) {
|
|
setupClientConnections(client);
|
|
}
|
|
}
|
|
|
|
bool SWrapper::Workspace::initialize(KWin::Workspace* wspace)
|
|
{
|
|
if (wspace == 0) {
|
|
return false;
|
|
} else {
|
|
SWrapper::Workspace::centralObject = wspace;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::getAllClients(QScriptContext* ctx, QScriptEngine* eng)
|
|
{
|
|
const KWin::ClientList x = centralObject->stackingOrder();
|
|
|
|
if (ctx->argumentCount() == 0) {
|
|
QScriptValue array = eng->newArray(x.size());
|
|
for (int i=0; i<x.size(); ++i) {
|
|
array.setProperty(i, valueForClient(x.at(i), eng));
|
|
}
|
|
return array;
|
|
} else {
|
|
KWin::ClientList ret;
|
|
int desk_no = (ctx->argument(0)).toNumber();
|
|
if ((desk_no >= 1) && (desk_no > SWrapper::Workspace::centralObject->numberOfDesktops())) {
|
|
return QScriptValue();
|
|
} else {
|
|
QScriptValue array = eng->newArray();
|
|
for (int i = 0; i < x.size(); i++) {
|
|
if (x.at(i)->desktop() == desk_no) {
|
|
ret.append(x.at(i));
|
|
}
|
|
}
|
|
for (int i=0; i<ret.size(); ++i) {
|
|
array.setProperty(i, valueForClient(ret.at(i), eng));
|
|
}
|
|
|
|
return array;
|
|
}
|
|
}
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::activeClient(QScriptContext* ctx, QScriptEngine* eng)
|
|
{
|
|
Q_UNUSED(ctx);
|
|
return valueForClient(centralObject->activeClient(), eng);
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::setCurrentDesktop(QScriptContext* ctx, QScriptEngine* /*eng*/)
|
|
{
|
|
if (ctx->argumentCount() >= 1) {
|
|
int num = ((ctx->argument(0)).isNumber()) ? ((ctx->argument(0)).toNumber()) : (-1);
|
|
if (num != -1) {
|
|
centralObject->setCurrentDesktop(num);
|
|
}
|
|
}
|
|
|
|
return QScriptValue();
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::dimensions(QScriptContext* ctx, QScriptEngine* eng)
|
|
{
|
|
Q_UNUSED(ctx);
|
|
return eng->toScriptValue(QSize(centralObject->workspaceWidth(), centralObject->workspaceHeight()));
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::desktopGridSize(QScriptContext* ctx, QScriptEngine* eng)
|
|
{
|
|
Q_UNUSED(ctx);
|
|
return eng->toScriptValue(centralObject->desktopGridSize());
|
|
}
|
|
|
|
QScriptValue SWrapper::Workspace::clientGroups(QScriptContext* ctx, QScriptEngine* eng)
|
|
{
|
|
Q_UNUSED(ctx);
|
|
return eng->toScriptValue<QList<KWin::ClientGroup*> >(centralObject->clientGroups);
|
|
}
|
|
|
|
int SWrapper::Workspace::currentDesktop() const
|
|
{
|
|
return centralObject->currentDesktop();
|
|
}
|
|
|
|
void SWrapper::Workspace::attach(QScriptEngine* engine)
|
|
{
|
|
QScriptValue func;
|
|
centralEngine = engine;
|
|
|
|
QScriptValue self = engine->newQObject(
|
|
this,
|
|
QScriptEngine::QtOwnership,
|
|
QScriptEngine::ExcludeSuperClassContents | QScriptEngine::ExcludeDeleteLater
|
|
);
|
|
|
|
func = engine->newFunction(setCurrentDesktop, 1);
|
|
self.setProperty("setCurrentDesktop", func, QScriptValue::Undeletable);
|
|
|
|
func = engine->newFunction(getAllClients, 0);
|
|
self.setProperty("getAllClients", func, QScriptValue::Undeletable);
|
|
|
|
func = engine->newFunction(dimensions, 0);
|
|
self.setProperty("dimensions", func, QScriptValue::Undeletable);
|
|
|
|
func = engine->newFunction(desktopGridSize, 0);
|
|
self.setProperty("desktopGridSize", func, QScriptValue::Undeletable);
|
|
self.setProperty("activeClient", engine->newFunction(activeClient, 0), QScriptValue::Undeletable);
|
|
self.setProperty("clientGroups", engine->newFunction(clientGroups, 0), QScriptValue::Undeletable);
|
|
|
|
(engine->globalObject()).setProperty("workspace", self, QScriptValue::Undeletable);
|
|
}
|
|
|
|
void SWrapper::Workspace::setupClientConnections(KWin::Client *client)
|
|
{
|
|
connect(client, SIGNAL(clientMinimized(KWin::Client*,bool)), SIGNAL(clientMinimized(KWin::Client*)));
|
|
connect(client, SIGNAL(clientUnminimized(KWin::Client*,bool)), SIGNAL(clientUnminimized(KWin::Client*)));
|
|
connect(client, SIGNAL(clientManaging(KWin::Client*)), SIGNAL(clientManaging(KWin::Client*)));
|
|
connect(client, SIGNAL(clientFullScreenSet(KWin::Client*,bool,bool)), SIGNAL(clientFullScreenSet(KWin::Client*,bool,bool)));
|
|
connect(client, SIGNAL(clientMaximizedStateChanged(KWin::Client*,bool,bool)), SIGNAL(clientMaximizeSet(KWin::Client*,bool,bool)));
|
|
}
|