Kross
plugin.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * plugin.h 00003 * This file is part of the KDE project 00004 * copyright (C)2007 by Sebastian Sauer (mail@dipe.org) 00005 * 00006 * This program is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Library General Public License for more details. 00014 * You should have received a copy of the GNU Library General Public License 00015 * along with this program; see the file COPYING. If not, write to 00016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 ***************************************************************************/ 00019 00020 #ifndef KROSS_ECMAPLUGIN_H 00021 #define KROSS_ECMAPLUGIN_H 00022 00023 #include <QScriptEngine> 00024 #include <QScriptExtensionPlugin> 00025 //#include <QtCore/QVariant> 00026 //#include <QtCore/QObject> 00027 //#include <QtCore/QDir> 00028 //#include <QtXml/QDomAttr> 00029 //#include <QtGui/QAction> 00030 //#include <QtCore/QUrl> 00031 00032 #include <kdemacros.h> 00033 //#include "errorinterface.h" 00034 //#include "childreninterface.h" 00035 00036 #define KROSSQTSPLUGIN_EXPORT KDE_EXPORT 00037 00038 namespace Kross { 00039 00045 class KROSSQTSPLUGIN_EXPORT EcmaPlugin : public QScriptExtensionPlugin 00046 { 00047 public: 00048 00054 EcmaPlugin(QObject* parent = 0); 00055 00059 virtual ~EcmaPlugin(); 00060 00068 virtual void initialize(const QString& key, QScriptEngine* engine); 00069 00076 virtual QStringList keys() const; 00077 00078 private: 00080 class Private; 00082 Private* const d; 00083 }; 00084 00085 } 00086 00087 #endif 00088