# -*- coding: utf-8 -*- # # Copyright 2008 Simon Edwards # Copyright 2009 Petri Damstén # # 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. # from PyQt4.QtCore import * from PyQt4.QtGui import * from PyKDE4.plasma import Plasma import plasma_importer import os.path class PythonRunnerScript(Plasma.RunnerScript): importer = None def __init__(self, parent): Plasma.RunnerScript.__init__(self,parent) if PythonRunnerScript.importer is None: PythonRunnerScript.importer = plasma_importer.PlasmaImporter() self.initialized = False def init(self): self.moduleName = str(self.runner().package().metadata().pluginName()) self.pluginName = 'runner_' + self.moduleName.replace('-','_') PythonRunnerScript.importer.register_top_level(self.pluginName, str(self.runner().package().path())) # import the code at the file name reported by mainScript() relpath = os.path.relpath(str(self.mainScript()),str(self.runner().package().path())) if relpath.startswith("contents/code/"): relpath = relpath[14:] if relpath.endswith(".py"): relpath = relpath[:-3] relpath = relpath.replace("/",".") self.module = __import__(self.pluginName+'.'+relpath) basename = os.path.basename(str(self.mainScript())) basename = os.path.splitext(basename)[0] self.pyrunner = self.module.__dict__[basename].CreateRunner(None) self.pyrunner.setRunner(self.runner()) self.pyrunner.setRunnerScript(self) self.connect(self, SIGNAL('prepare()'), self, SLOT('prepare()')) self.connect(self, SIGNAL('teardown()'), self, SLOT('teardown()')) self.connect(self, SIGNAL('createRunOptions(QWidget*)'), self, SLOT('createRunOptions(QWidget*)')) self.connect(self, SIGNAL('reloadConfiguration()'), self, SLOT('reloadConfiguration()')) self.pyrunner.init() self.initialized = True return True def __dtor__(self): PythonRunnerScript.importer.unregister_top_level(self.pluginName) self.pyrunner = None def match(self, search): self.pyrunner.match(search) def run(self, search, action): self.pyrunner.run(search, action) @pyqtSignature("prepare()") def prepare(self): self.pyrunner.prepare() @pyqtSignature("teardown()") def teardown(self): self.pyrunner.teardown() @pyqtSignature("createRunOptions(QWidget*)") def createRunOptions(self, widget): self.pyrunner.createRunOptions(widget) @pyqtSignature("reloadConfiguration()") def reloadConfiguration(self): self.pyrunner.reloadConfiguration() def CreatePlugin(widget_parent, parent, component_data): return PythonRunnerScript(parent)