/******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2010 Rohan Prabhu 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 . *********************************************************************/ #include "scripting.h" #include KWin::Scripting::Scripting() { // Default constructor no longer used, scripting can // be disabled by calling kwin --noscript } void KWin::Scripting::start() { QStringList scriptFilters; QString sDirectory = KStandardDirs::locateLocal("data", "kwin/scripts/"); if(sDirectory.isEmpty()) { // Abort scripting setup. No location found to locate scripts return; } scriptFilters<<"*.kwinscript"<<"*.kws"<<"*.kwinqs"; scriptsDir.setPath(sDirectory); scriptList = scriptsDir.entryList(scriptFilters, QDir::Files|QDir::Readable|QDir::Executable); for(int i=0; iscriptFile.open(QIODevice::ReadOnly)) { script->workspace = new SWrapper::Workspace(script->engine); (script->workspace)->attach(script->engine); ((script->engine)->globalObject()).setProperty("QTimer", constructTimerClass((script->engine))); ((script->engine)->globalObject()).setProperty("ClientGroup", SWrapper::ClientGroup::publishClientGroupClass((script->engine))); ((script->engine)->globalObject()).setProperty("chelate", KWin::Chelate::publishChelate(script->engine)); ((script->engine)->globalObject()).setProperty("ch", KWin::Chelate::publishChelate(script->engine)); QObject::connect((script->engine), SIGNAL(signalHandlerException(const QScriptValue&)), this, SLOT(sigException(const QScriptValue&))); KWin::MetaScripting::registration(script->engine); if(scriptsDir.exists(script->configFile)) { QSettings scriptSettings(scriptsDir.filePath(script->configFile), QSettings::IniFormat); QHash scriptConfig; QStringList keys = scriptSettings.allKeys(); for(int i=0; iengine, QVariant(scriptConfig)); } else { KWin::MetaScripting::supplyConfig(script->engine); } QScriptValue ret = (script->engine)->evaluate(QString((script->scriptFile).readAll())); if(ret.isError()) { sigException(ret); } } } void KWin::Scripting::runScripts() { for(int i=0; i