Qt:Документация 4.3.2/qscriptextensionplugin

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QScriptExtensionPlugin Class Reference
[ QtScript module]

The QScriptExtensionPlugin class provides an abstract base for custom QScript extension plugins. Далее...

 #include <QScriptExtensionPlugin>

Inherits QObject.

Класс был добавлен в Qt 4.3.

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Дополнительные унаследованные члены

  • 1 свойство, унаследованное от QObject
  • 1 открытый слот, унаследованный от QObject
  • 1 сигнал, унаследованный от QObject
  • 5 статических открытых членов, унаследованных от QObject
  • 7 защищенных функций, унаследованных от QObject

[править] Подробное описание

The QScriptExtensionPlugin class provides an abstract base for custom QScript extension plugins.

QScriptExtensionPlugin is a plugin interface that makes it possible to offer extensions that can be loaded dynamically into applications using the QScriptEngine class.

Writing a script extension plugin is achieved by subclassing this base class, reimplementing the pure virtual keys() and initialize() functions, and exporting the class using the Q_EXPORT_PLUGIN2() macro. See How to Create Qt Plugins for details.

See also QScriptEngine::importExtension() and Creating QtScript Extensions.


[править] Описание функций-членов

[править]
QScriptExtensionPlugin::QScriptExtensionPlugin ( QObject * parent = 0 )

Constructs a script extension plugin with the given parent.

Note that this constructor is invoked automatically by the Q_EXPORT_PLUGIN2() macro, so there is no need for calling it explicitly.

[править]
QScriptExtensionPlugin::~QScriptExtensionPlugin ()

Destroys the script extension plugin.

Note that Qt destroys a plugin automatically when it is no longer used, so there is no need for calling the destructor explicitly.

[править]
void QScriptExtensionPlugin::initialize ( const QString & key, QScriptEngine * engine ) [pure virtual]

Initializes the extension specified by key in the given engine. The key must come from the set of keys().

See also keys().

[править]
QStringList QScriptExtensionPlugin::keys () const [pure virtual]

Returns the list of keys this plugin supports.

These keys are usually the names of the "modules" or "packages" that are implemented in the plugin (e.g. com.mycompany.MyProduct).

See also initialize().

[править]
QScriptValue QScriptExtensionPlugin::setupPackage ( const QString & key, QScriptEngine * engine ) const

This function is provided for convenience when reimplementing initialize(). It splits the given key on '.' (dot), and ensures that there's a corresponding path of objects in the environment of the given engine, creating new objects to complete the path if necessary. E.g. if the key is "com.trolltech", after the call to setupPackage() the script expression com.trolltech will evaluate to an object. More specifically, the engine's Global Object will have a property called "com", which in turn has a property called "trolltech".

Use this function to avoid global namespace pollution when installing your extensions in the engine.

See also initialize().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2