mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
89 lines
2.8 KiB
C
89 lines
2.8 KiB
C
![]() |
/***************************************************************************
|
||
|
* plugin.h
|
||
|
* This file is part of the KDE project
|
||
|
* copyright (C)2007 by Sebastian Sauer (mail@dipe.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 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
|
||
|
* Library General Public License for more details.
|
||
|
* You should have received a copy of the GNU Library General Public License
|
||
|
* along with this program; see the file COPYING. If not, write to
|
||
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301, USA.
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef KROSS_ECMAPLUGIN_H
|
||
|
#define KROSS_ECMAPLUGIN_H
|
||
|
|
||
|
#include <QScriptEngine>
|
||
|
#include <QScriptExtensionPlugin>
|
||
|
//#include <QtCore/QVariant>
|
||
|
//#include <QtCore/QObject>
|
||
|
//#include <QtCore/QDir>
|
||
|
//#include <QtXml/QDomAttr>
|
||
|
//#include <QtGui/QAction>
|
||
|
//#include <QtCore/QUrl>
|
||
|
|
||
|
#include <kdemacros.h>
|
||
|
//#include "errorinterface.h"
|
||
|
//#include "childreninterface.h"
|
||
|
|
||
|
#define KROSSQTSPLUGIN_EXPORT KDE_EXPORT
|
||
|
|
||
|
namespace Kross {
|
||
|
|
||
|
/**
|
||
|
* Kross QtScript Extension that provides access to the Kross Scripting Framework
|
||
|
* within the QtScript scripting language. This EcmaPlugin does implement the
|
||
|
* extension named "kross".
|
||
|
*/
|
||
|
class KROSSQTSPLUGIN_EXPORT EcmaPlugin : public QScriptExtensionPlugin
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
/**
|
||
|
* Constructor.
|
||
|
*
|
||
|
* \param parent Optional QObject parent of this QObject.
|
||
|
*/
|
||
|
EcmaPlugin(QObject* parent = 0);
|
||
|
|
||
|
/**
|
||
|
* Destructor.
|
||
|
*/
|
||
|
virtual ~EcmaPlugin();
|
||
|
|
||
|
/**
|
||
|
* Initializes this extension.
|
||
|
*
|
||
|
* \param key The key to differ between etensions. We provide
|
||
|
* the extension which key is "kross".
|
||
|
* \param engine The QScriptEngine instance.
|
||
|
*/
|
||
|
virtual void initialize(const QString& key, QScriptEngine* engine);
|
||
|
|
||
|
/**
|
||
|
* Returns the list of keys this plugin supports.
|
||
|
*
|
||
|
* \return a QStringList with the single item "kross" to let
|
||
|
* QtScript know, that we provide an extension with that key.
|
||
|
*/
|
||
|
virtual QStringList keys() const;
|
||
|
|
||
|
private:
|
||
|
/// \internal d-pointer class.
|
||
|
class Private;
|
||
|
/// \internal d-pointer instance.
|
||
|
Private* const d;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|