1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qdeclarativeextensionplugin.cpp -->
<title>Qt 4.8: QDeclarativeExtensionPlugin Class Reference</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li><a href="qtdeclarative.html">QtDeclarative</a></li>
<li>QDeclarativeExtensionPlugin</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
<li class="level2"><a href="#an-example">An example</a></li>
</ul>
</div>
<h1 class="title">QDeclarativeExtensionPlugin Class Reference</h1>
<!-- $$$QDeclarativeExtensionPlugin-brief -->
<p>The QDeclarativeExtensionPlugin class provides an abstract base for custom QML extension plugins. <a href="#details">More...</a></p>
<!-- @@@QDeclarativeExtensionPlugin -->
<pre class="cpp"> <span class="preprocessor">#include <QDeclarativeExtensionPlugin></span></pre><p><b>Inherits: </b><a href="qobject.html">QObject</a>.</p>
<p>This class was introduced in Qt 4.7.</p>
<ul>
<li><a href="qdeclarativeextensionplugin-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-functions"></a>
<h2>Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qdeclarativeextensionplugin.html#QDeclarativeExtensionPlugin">QDeclarativeExtensionPlugin</a></b> ( QObject * <i>parent</i> = 0 )</td></tr>
</table>
<a name="reimplemented-public-functions"></a>
<h2>Reimplemented Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> virtual void </td><td class="memItemRight bottomAlign"><b><a href="qdeclarativeextensionplugin.html#initializeEngine">initializeEngine</a></b> ( QDeclarativeEngine * <i>engine</i>, const char * <i>uri</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> virtual void </td><td class="memItemRight bottomAlign"><b><a href="qdeclarativeextensionplugin.html#registerTypes">registerTypes</a></b> ( const char * <i>uri</i> ) = 0</td></tr>
</table>
<ul>
<li class="fn">29 public functions inherited from <a href="qobject.html#public-functions">QObject</a></li>
</ul>
<h3>Additional Inherited Members</h3>
<ul>
<li class="fn">1 property inherited from <a href="qobject.html#properties">QObject</a></li>
<li class="fn">1 public slot inherited from <a href="qobject.html#public-slots">QObject</a></li>
<li class="fn">1 signal inherited from <a href="qobject.html#signals">QObject</a></li>
<li class="fn">7 static public members inherited from <a href="qobject.html#static-public-members">QObject</a></li>
<li class="fn">8 protected functions inherited from <a href="qobject.html#protected-functions">QObject</a></li>
</ul>
<a name="details"></a>
<!-- $$$QDeclarativeExtensionPlugin-description -->
<div class="descr">
<h2>Detailed Description</h2>
<p>The QDeclarativeExtensionPlugin class provides an abstract base for custom QML extension plugins.</p>
<p>QDeclarativeExtensionPlugin is a plugin interface that makes it possible to create QML extensions that can be loaded dynamically into QML applications. These extensions allow custom QML types to be made available to the QML engine.</p>
<p>To write a QML extension plugin:</p>
<ul>
<li>Subclass QDeclarativeExtensionPlugin, implement <a href="qdeclarativeextensionplugin.html#registerTypes">registerTypes</a>() method to register types using <a href="qdeclarativeengine.html#qmlRegisterType">qmlRegisterType</a>(), and export the class using the <a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>() macro</li>
<li>Write an appropriate project file for the plugin</li>
<li>Create a <a href="qdeclarativemodules.html#writing-a-qmldir-file">qmldir file</a> to describe the plugin</li>
</ul>
<p>QML extension plugins can be used to provide either application-specific or library-like plugins. Library plugins should limit themselves to registering types, as any manipulation of the engine's root context may cause conflicts or other issues in the library user's code.</p>
<a name="an-example"></a>
<h3>An example</h3>
<p>Suppose there is a new <tt>TimeModel</tt> C++ class that should be made available as a new QML element. It provides the current time through <tt>hour</tt> and <tt>minute</tt> properties, like this:</p>
<pre class="cpp"> <span class="keyword">class</span> TimeModel : <span class="keyword">public</span> <span class="type"><a href="qobject.html">QObject</a></span>
{
Q_OBJECT
Q_PROPERTY(<span class="type">int</span> hour READ hour NOTIFY timeChanged)
Q_PROPERTY(<span class="type">int</span> minute READ minute NOTIFY timeChanged)
...</pre>
<p>To make this class available as a QML type, create a plugin that registers this type with a specific <a href="qdeclarativemodules.html#qml-modules">module</a> using <a href="qdeclarativeengine.html#qmlRegisterType">qmlRegisterType</a>(). For this example the plugin module will be named <tt>com.nokia.TimeExample</tt> (as defined in the project file further below).</p>
<pre class="cpp"> <span class="keyword">class</span> <span class="type">QExampleQmlPlugin</span> : <span class="keyword">public</span> <span class="type">QDeclarativeExtensionPlugin</span>
{
Q_OBJECT
<span class="keyword">public</span>:
<span class="type">void</span> registerTypes(<span class="keyword">const</span> <span class="type">char</span> <span class="operator">*</span>uri)
{
Q_ASSERT(uri <span class="operator">=</span><span class="operator">=</span> QLatin1String(<span class="string">"com.nokia.TimeExample"</span>));
qmlRegisterType<span class="operator"><</span>TimeModel<span class="operator">></span>(uri<span class="operator">,</span> <span class="number">1</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="string">"Time"</span>);
}
};
<a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>(qmlqtimeexampleplugin<span class="operator">,</span> <span class="type">QExampleQmlPlugin</span>);</pre>
<p>This registers the <tt>TimeModel</tt> class with the 1.0 version of this plugin library, as a QML type called <tt>Time</tt>. The Q_ASSERT statement ensures the module is imported correctly by any QML components that use this plugin.</p>
<p>The project file defines the project as a plugin library and specifies it should be built into the <tt>com/nokia/TimeExample</tt> directory:</p>
<pre class="cpp"> TEMPLATE <span class="operator">=</span> lib
CONFIG <span class="operator">+</span><span class="operator">=</span> qt plugin
QT <span class="operator">+</span><span class="operator">=</span> declarative
DESTDIR <span class="operator">=</span> com<span class="operator">/</span>nokia<span class="operator">/</span>TimeExample
TARGET <span class="operator">=</span> qmlqtimeexampleplugin
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span></pre>
<p>Finally, a <a href="qdeclarativemodules.html#writing-a-qmldir-file">qmldir file</a> is required in the <tt>com/nokia/TimeExample</tt> directory that describes the plugin. This directory includes a <tt>Clock.qml</tt> file that should be bundled with the plugin, so it needs to be specified in the <tt>qmldir</tt> file:</p>
<pre class="cpp"> Clock <span class="number">1.0</span> Clock<span class="operator">.</span>qml
plugin qmlqtimeexampleplugin</pre>
<p>Once the project is built and installed, the new <tt>Time</tt> element can be used by any QML component that imports the <tt>com.nokia.TimeExample</tt> module:</p>
<pre class="qml"> import com.nokia.TimeExample 1.0 <span class="comment">// import types from the plugin</span>
<span class="type">Clock</span> { <span class="comment">// this class is defined in QML (com/nokia/TimeExample/Clock.qml)</span>
<span class="type">Time</span> { <span class="comment">// this class is defined in C++ (plugin.cpp)</span>
<span class="name">id</span>: <span class="name">time</span>
}
<span class="name">hours</span>: <span class="name">time</span>.<span class="name">hour</span>
<span class="name">minutes</span>: <span class="name">time</span>.<span class="name">minute</span>
}</pre>
<p>The full source code is available in the <a href="declarative-cppextensions-plugins.html">plugins example</a>.</p>
<p>The <a href="qml-extending-tutorial-index.html">Tutorial: Writing QML extensions with C++</a> also contains a chapter on creating QML plugins.</p>
</div>
<p><b>See also </b><a href="qdeclarativeengine.html#importPlugin">QDeclarativeEngine::importPlugin</a>() and <a href="plugins-howto.html">How to Create Qt Plugins</a>.</p>
<!-- @@@QDeclarativeExtensionPlugin -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$QDeclarativeExtensionPlugin[overload1]$$$QDeclarativeExtensionPluginQObject* -->
<h3 class="fn"><a name="QDeclarativeExtensionPlugin"></a>QDeclarativeExtensionPlugin::<span class="name">QDeclarativeExtensionPlugin</span> ( <span class="type"><a href="qobject.html">QObject</a></span> * <i>parent</i> = 0 )</h3>
<p>Constructs a QML extension plugin with the given <i>parent</i>.</p>
<p>Note that this constructor is invoked automatically by the <a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>() macro, so there is no need for calling it explicitly.</p>
<!-- @@@QDeclarativeExtensionPlugin -->
<!-- $$$initializeEngine[overload1]$$$initializeEngineQDeclarativeEngine*constchar* -->
<h3 class="fn"><a name="initializeEngine"></a><span class="type">void</span> QDeclarativeExtensionPlugin::<span class="name">initializeEngine</span> ( <span class="type"><a href="qdeclarativeengine.html">QDeclarativeEngine</a></span> * <i>engine</i>, const <span class="type">char</span> * <i>uri</i> )<tt> [virtual]</tt></h3>
<p>Initializes the extension from the <i>uri</i> using the <i>engine</i>. Here an application plugin might, for example, expose some data or objects to QML, as context properties on the engine's root context.</p>
<!-- @@@initializeEngine -->
<!-- $$$registerTypes[overload1]$$$registerTypesconstchar* -->
<h3 class="fn"><a name="registerTypes"></a><span class="type">void</span> QDeclarativeExtensionPlugin::<span class="name">registerTypes</span> ( const <span class="type">char</span> * <i>uri</i> )<tt> [pure virtual]</tt></h3>
<p>Registers the QML types in the given <i>uri</i>. Subclasses should implement this to call <a href="qdeclarativeengine.html#qmlRegisterType">qmlRegisterType</a>() for all types which are provided by the extension plugin.</p>
<p>The <i>uri</i> is an identifier for the plugin generated by the QML engine based on the name and path of the extension's plugin library.</p>
<!-- @@@registerTypes -->
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Nokia Corporation and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>
|