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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
<?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" />
<!-- plugins-howto.qdoc -->
<title>Qt 4.8: How to Create Qt Plugins</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>How to Create Qt Plugins</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#the-higher-level-api-writing-qt-extensions">The Higher-Level API: Writing Qt Extensions</a></li>
<li class="level1"><a href="#the-lower-level-api-extending-qt-applications">The Lower-Level API: Extending Qt Applications</a></li>
<li class="level1"><a href="#locating-plugins">Locating Plugins</a></li>
<li class="level1"><a href="#static-plugins">Static Plugins</a></li>
<li class="level1"><a href="#deploying-and-debugging-plugins">Deploying and Debugging Plugins</a></li>
</ul>
</div>
<h1 class="title">How to Create Qt Plugins</h1>
<span class="subtitle"></span>
<!-- $$$plugins-howto.html-description -->
<div class="descr"> <a name="details"></a>
<a name="qt-debug-plugins"></a><a name="qt-no-plugin-check"></a><p>Qt provides two APIs for creating plugins:</p>
<ul>
<li>A higher-level API for writing extensions to Qt itself: custom database drivers, image formats, text codecs, custom styles, etc.</li>
<li>A lower-level API for extending Qt applications.</li>
</ul>
<p>For example, if you want to write a custom <a href="qstyle.html">QStyle</a> subclass and have Qt applications load it dynamically, you would use the higher-level API.</p>
<p>Since the higher-level API is built on top of the lower-level API, some issues are common to both.</p>
<p>If you want to provide plugins for use with <i>Qt Designer</i>, see the <a href="qtdesigner.html">QtDesigner</a> module documentation.</p>
<p>Topics:</p>
<a name="the-higher-level-api-writing-qt-extensions"></a>
<h2>The Higher-Level API: Writing Qt Extensions</h2>
<p>Writing a plugin that extends Qt itself is achieved by subclassing the appropriate plugin base class, implementing a few functions, and adding a macro.</p>
<p>There are several plugin base classes. Derived plugins are stored by default in sub-directories of the standard plugin directory. Qt will not find plugins if they are not stored in the right directory.</p>
<table class="generic">
<thead><tr class="qt-style"><th >Base Class</th><th >Directory Name</th><th >Key Case Sensitivity</th></tr></thead>
<tr valign="top" class="odd"><td ><a href="qaccessiblebridgeplugin.html">QAccessibleBridgePlugin</a></td><td ><tt>accessiblebridge</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qaccessibleplugin.html">QAccessiblePlugin</a></td><td ><tt>accessible</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qdecorationplugin.html">QDecorationPlugin</a></td><td ><tt>decorations</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qfontengineplugin.html">QFontEnginePlugin</a></td><td ><tt>fontengines</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qiconengineplugin.html">QIconEnginePlugin</a></td><td ><tt>iconengines</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qimageioplugin.html">QImageIOPlugin</a></td><td ><tt>imageformats</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qinputcontextplugin.html">QInputContextPlugin</a></td><td ><tt>inputmethods</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qkbddriverplugin.html">QKbdDriverPlugin</a></td><td ><tt>kbddrivers</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qmousedriverplugin.html">QMouseDriverPlugin</a></td><td ><tt>mousedrivers</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qscreendriverplugin.html">QScreenDriverPlugin</a></td><td ><tt>gfxdrivers</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qscriptextensionplugin.html">QScriptExtensionPlugin</a></td><td ><tt>script</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qsqldriverplugin.html">QSqlDriverPlugin</a></td><td ><tt>sqldrivers</tt></td><td >Case Sensitive</td></tr>
<tr valign="top" class="odd"><td ><a href="qstyleplugin.html">QStylePlugin</a></td><td ><tt>styles</tt></td><td >Case Insensitive</td></tr>
<tr valign="top" class="even"><td ><a href="qtextcodecplugin.html">QTextCodecPlugin</a></td><td ><tt>codecs</tt></td><td >Case Sensitive</td></tr>
</table>
<p>Suppose that you have a new style class called <tt>MyStyle</tt> that you want to make available as a plugin. The required code is straightforward, here is the class definition (<tt>mystyleplugin.h</tt>):</p>
<pre class="cpp"> <span class="keyword">class</span> MyStylePlugin : <span class="keyword">public</span> <span class="type"><a href="qstyleplugin.html">QStylePlugin</a></span>
{
<span class="keyword">public</span>:
<span class="type"><a href="qstringlist.html">QStringList</a></span> keys() <span class="keyword">const</span>;
<span class="type"><a href="qstyle.html">QStyle</a></span> <span class="operator">*</span>create(<span class="keyword">const</span> <span class="type"><a href="qstring.html">QString</a></span> <span class="operator">&</span>key);
};</pre>
<p>Ensure that the class implementation is located in a <tt>.cpp</tt> file (including the class definition):</p>
<pre class="cpp"> <span class="preprocessor">#include "mystyleplugin.h"</span>
<span class="type"><a href="qstringlist.html">QStringList</a></span> MyStylePlugin<span class="operator">::</span>keys() <span class="keyword">const</span>
{
<span class="keyword">return</span> <span class="type"><a href="qstringlist.html">QStringList</a></span>() <span class="operator"><</span><span class="operator"><</span> <span class="string">"MyStyle"</span>;
}
<span class="type"><a href="qstyle.html">QStyle</a></span> <span class="operator">*</span>MyStylePlugin<span class="operator">::</span>create(<span class="keyword">const</span> <span class="type"><a href="qstring.html">QString</a></span> <span class="operator">&</span>key)
{
<span class="keyword">if</span> (key<span class="operator">.</span>toLower() <span class="operator">=</span><span class="operator">=</span> <span class="string">"mystyle"</span>)
<span class="keyword">return</span> <span class="keyword">new</span> MyStyle;
<span class="keyword">return</span> <span class="number">0</span>;
}
<a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>(pnp_mystyleplugin<span class="operator">,</span> MyStylePlugin)</pre>
<p>(Note that <a href="qstyleplugin.html">QStylePlugin</a> is case insensitive, and the lower-case version of the key is used in our <a href="qstyleplugin.html#create">create()</a> implementation; most other plugins are case sensitive.)</p>
<p>For database drivers, image formats, text codecs, and most other plugin types, no explicit object creation is required. Qt will find and create them as required. Styles are an exception, since you might want to set a style explicitly in code. To apply a style, use code like this:</p>
<pre class="cpp"> <span class="type"><a href="qapplication.html">QApplication</a></span><span class="operator">::</span>setStyle(<span class="type"><a href="qstylefactory.html">QStyleFactory</a></span><span class="operator">::</span>create(<span class="string">"MyStyle"</span>));</pre>
<p>Some plugin classes require additional functions to be implemented. See the class documentation for details of the virtual functions that must be reimplemented for each type of plugin.</p>
<p>The <a href="tools-styleplugin.html">Style Plugin Example</a> shows how to implement a plugin that extends the <a href="qstyleplugin.html">QStylePlugin</a> base class.</p>
<a name="the-lower-level-api-extending-qt-applications"></a>
<h2>The Lower-Level API: Extending Qt Applications</h2>
<p>Not only Qt itself but also Qt application can be extended through plugins. This requires the application to detect and load plugins using <a href="qpluginloader.html">QPluginLoader</a>. In that context, plugins may provide arbitrary functionality and are not limited to database drivers, image formats, text codecs, styles, and the other types of plugin that extend Qt's functionality.</p>
<p>Making an application extensible through plugins involves the following steps:</p>
<ol class="1">
<li>Define a set of interfaces (classes with only pure virtual functions) used to talk to the plugins.</li>
<li>Use the <a href="qtplugin.html#Q_DECLARE_INTERFACE">Q_DECLARE_INTERFACE</a>() macro to tell Qt's <a href="metaobjects.html#meta-object-system">meta-object system</a> about the interface.</li>
<li>Use <a href="qpluginloader.html">QPluginLoader</a> in the application to load the plugins.</li>
<li>Use <a href="qobject.html#qobject_cast">qobject_cast</a>() to test whether a plugin implements a given interface.</li>
</ol>
<p>Writing a plugin involves these steps:</p>
<ol class="1">
<li>Declare a plugin class that inherits from <a href="qobject.html">QObject</a> and from the interfaces that the plugin wants to provide.</li>
<li>Use the <a href="qobject.html#Q_INTERFACES">Q_INTERFACES</a>() macro to tell Qt's <a href="metaobjects.html#meta-object-system">meta-object system</a> about the interfaces.</li>
<li>Export the plugin using the <a href="qtplugin.html#Q_EXPORT_PLUGIN2">Q_EXPORT_PLUGIN2</a>() macro.</li>
<li>Build the plugin using a suitable <tt>.pro</tt> file.</li>
</ol>
<p>For example, here's the definition of an interface class:</p>
<pre class="cpp"> <span class="keyword">class</span> FilterInterface
{
<span class="keyword">public</span>:
<span class="keyword">virtual</span> <span class="operator">~</span>FilterInterface() {}
<span class="keyword">virtual</span> <span class="type"><a href="qstringlist.html">QStringList</a></span> filters() <span class="keyword">const</span> <span class="operator">=</span> <span class="number">0</span>;
<span class="keyword">virtual</span> <span class="type"><a href="qimage.html">QImage</a></span> filterImage(<span class="keyword">const</span> <span class="type"><a href="qstring.html">QString</a></span> <span class="operator">&</span>filter<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="qimage.html">QImage</a></span> <span class="operator">&</span>image<span class="operator">,</span>
<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent) <span class="operator">=</span> <span class="number">0</span>;
};</pre>
<p>Here's the definition of a plugin class that implements that interface:</p>
<pre class="cpp"> <span class="preprocessor">#include <QObject></span>
<span class="preprocessor">#include <QStringList></span>
<span class="preprocessor">#include <QImage></span>
<span class="preprocessor">#include <plugandpaint/interfaces.h></span>
<span class="keyword">class</span> ExtraFiltersPlugin : <span class="keyword">public</span> <span class="type"><a href="qobject.html">QObject</a></span><span class="operator">,</span> <span class="keyword">public</span> FilterInterface
{
Q_OBJECT
Q_INTERFACES(FilterInterface)
<span class="keyword">public</span>:
<span class="type"><a href="qstringlist.html">QStringList</a></span> filters() <span class="keyword">const</span>;
<span class="type"><a href="qimage.html">QImage</a></span> filterImage(<span class="keyword">const</span> <span class="type"><a href="qstring.html">QString</a></span> <span class="operator">&</span>filter<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="qimage.html">QImage</a></span> <span class="operator">&</span>image<span class="operator">,</span>
<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent);
};</pre>
<p>The <a href="tools-plugandpaint.html">Plug & Paint</a> example documentation explains this process in detail. See also <a href="designer-creating-custom-widgets.html">Creating Custom Widgets for Qt Designer</a> for information about issues that are specific to <i>Qt Designer</i>. You can also take a look at the <a href="tools-echoplugin.html">Echo Plugin Example</a> is a more trivial example on how to implement a plugin that extends Qt applications. Please note that a <a href="qcoreapplication.html">QCoreApplication</a> must have been initialized before plugins can be loaded.</p>
<a name="locating-plugins"></a>
<h2>Locating Plugins</h2>
<p>Qt applications automatically know which plugins are available, because plugins are stored in the standard plugin subdirectories. Because of this applications don't require any code to find and load plugins, since Qt handles them automatically.</p>
<p>During development, the directory for plugins is <tt>QTDIR/plugins</tt> (where <tt>QTDIR</tt> is the directory where Qt is installed), with each type of plugin in a subdirectory for that type, e.g. <tt>styles</tt>. If you want your applications to use plugins and you don't want to use the standard plugins path, have your installation process determine the path you want to use for the plugins, and save the path, e.g. using <a href="qsettings.html">QSettings</a>, for the application to read when it runs. The application can then call <a href="qcoreapplication.html#addLibraryPath">QCoreApplication::addLibraryPath</a>() with this path and your plugins will be available to the application. Note that the final part of the path (e.g., <tt>styles</tt>) cannot be changed.</p>
<p>If you want the plugin to be loadable then one approach is to create a subdirectory under the application and place the plugin in that directory. If you distribute any of the plugins that come with Qt (the ones located in the <tt>plugins</tt> directory), you must copy the sub-directory under <tt>plugins</tt> where the plugin is located to your applications root folder (i.e., do not include the <tt>plugins</tt> directory).</p>
<p><b>Note:</b> In Symbian all binaries must be located in the directory \sys\bin, so each Qt plugin has a stub with the same basename as the plugin dll and suffix ".qtplugin" to make Qt extension plugins work similarly to other platforms. When trying to locate the plugin, Qt actually looks for the stub instead of the plugin binary. While plugin stub files have the suffix ".qtplugin", they can still be loaded also by specifying a filename with the normal library suffix ".dll" for <a href="qpluginloader.html">QPluginLoader</a>, so normally application developer doesn't need to care about the different suffix of the stub. Because of the way applications can be installed on ROM or various other drives in Symbian, Qt looks for the stub from the same directory on all available drives if it is not located in the given directory when loading a plugin.</p>
<p>For more information about deployment, see the <a href="deployment.html">Deploying Qt Applications</a> and <a href="deployment-plugins.html">Deploying Plugins</a> documentation.</p>
<a name="static-plugins"></a>
<h2>Static Plugins</h2>
<p>The normal and most flexible way to include a plugin with an application is to compile it into a dynamic library that is shipped separately, and detected and loaded at runtime.</p>
<p>Plugins can be linked statically against your application. If you build the static version of Qt, this is the only option for including Qt's predefined plugins. Using static plugins makes the deployment less error-prone, but has the disadvantage that no functionality from plugins can be added without a complete rebuild and redistribution of the application.</p>
<p>When compiled as a static library, Qt provides the following static plugins:</p>
<table class="generic">
<thead><tr class="qt-style"><th >Plugin name</th><th >Type</th><th >Description</th></tr></thead>
<tr valign="top" class="odd"><td ><tt>qtaccessiblecompatwidgets</tt></td><td >Accessibility</td><td >Accessibility for Qt 3 support widgets</td></tr>
<tr valign="top" class="even"><td ><tt>qtaccessiblewidgets</tt></td><td >Accessibility</td><td >Accessibility for Qt widgets</td></tr>
<tr valign="top" class="odd"><td ><tt>qdecorationdefault</tt></td><td >Decorations (Qt Extended)</td><td >Default style</td></tr>
<tr valign="top" class="even"><td ><tt>qdecorationwindows</tt></td><td >Decorations (Qt Extended)</td><td >Windows style</td></tr>
<tr valign="top" class="odd"><td ><tt>qgif</tt></td><td >Image formats</td><td >GIF</td></tr>
<tr valign="top" class="even"><td ><tt>qjpeg</tt></td><td >Image formats</td><td >JPEG</td></tr>
<tr valign="top" class="odd"><td ><tt>qmng</tt></td><td >Image formats</td><td >MNG</td></tr>
<tr valign="top" class="even"><td ><tt>qico</tt></td><td >Image formats</td><td >ICO</td></tr>
<tr valign="top" class="odd"><td ><tt>qsvg</tt></td><td >Image formats</td><td >SVG</td></tr>
<tr valign="top" class="even"><td ><tt>qtiff</tt></td><td >Image formats</td><td >TIFF</td></tr>
<tr valign="top" class="odd"><td ><tt>qimsw_multi</tt></td><td >Input methods (Qt Extended)</td><td >Input Method Switcher</td></tr>
<tr valign="top" class="even"><td ><tt>qwstslibmousehandler</tt></td><td >Mouse drivers (Qt Extended)</td><td ><tt>tslib</tt> mouse</td></tr>
<tr valign="top" class="odd"><td ><tt>qgfxtransformed</tt></td><td >Graphic drivers (Qt Extended)</td><td >Transformed screen</td></tr>
<tr valign="top" class="even"><td ><tt>qgfxvnc</tt></td><td >Graphic drivers (Qt Extended)</td><td >VNC</td></tr>
<tr valign="top" class="odd"><td ><tt>qscreenvfb</tt></td><td >Graphic drivers (Qt Extended)</td><td >Virtual frame buffer</td></tr>
<tr valign="top" class="even"><td ><tt>qsqldb2</tt></td><td >SQL driver</td><td >IBM DB2</td></tr>
<tr valign="top" class="odd"><td ><tt>qsqlibase</tt></td><td >SQL driver</td><td >Borland InterBase</td></tr>
<tr valign="top" class="even"><td ><tt>qsqlite</tt></td><td >SQL driver</td><td >SQLite version 3</td></tr>
<tr valign="top" class="odd"><td ><tt>qsqlite2</tt></td><td >SQL driver</td><td >SQLite version 2</td></tr>
<tr valign="top" class="even"><td ><tt>qsqlmysql</tt></td><td >SQL driver</td><td >MySQL</td></tr>
<tr valign="top" class="odd"><td ><tt>qsqloci</tt></td><td >SQL driver</td><td >Oracle (OCI)</td></tr>
<tr valign="top" class="even"><td ><tt>qsqlodbc</tt></td><td >SQL driver</td><td >Open Database Connectivity (ODBC)</td></tr>
<tr valign="top" class="odd"><td ><tt>qsqlpsql</tt></td><td >SQL driver</td><td >PostgreSQL</td></tr>
<tr valign="top" class="even"><td ><tt>qsqltds</tt></td><td >SQL driver</td><td >Sybase Adaptive Server (TDS)</td></tr>
<tr valign="top" class="odd"><td ><tt>qcncodecs</tt></td><td >Text codecs</td><td >Simplified Chinese (People's Republic of China)</td></tr>
<tr valign="top" class="even"><td ><tt>qjpcodecs</tt></td><td >Text codecs</td><td >Japanese</td></tr>
<tr valign="top" class="odd"><td ><tt>qkrcodecs</tt></td><td >Text codecs</td><td >Korean</td></tr>
<tr valign="top" class="even"><td ><tt>qtwcodecs</tt></td><td >Text codecs</td><td >Traditional Chinese (Taiwan)</td></tr>
</table>
<p>To link statically against those plugins, you need to use the <a href="qtplugin.html#Q_IMPORT_PLUGIN">Q_IMPORT_PLUGIN</a>() macro in your application and you need to add the required plugins to your build using <tt>QTPLUGIN</tt>. For example, in your <tt>main.cpp</tt>:</p>
<pre class="cpp"> <span class="preprocessor">#include <QApplication></span>
<span class="preprocessor">#include <QtPlugin></span>
<a href="qtplugin.html#Q_IMPORT_PLUGIN">Q_IMPORT_PLUGIN</a>(qjpeg)
<a href="qtplugin.html#Q_IMPORT_PLUGIN">Q_IMPORT_PLUGIN</a>(qgif)
<a href="qtplugin.html#Q_IMPORT_PLUGIN">Q_IMPORT_PLUGIN</a>(qkrcodecs)
<span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>)
{
<span class="type"><a href="qapplication.html">QApplication</a></span> app(argc<span class="operator">,</span> argv);
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
<span class="keyword">return</span> app<span class="operator">.</span>exec();
}</pre>
<p>In the <tt>.pro</tt> file for your application, you need the following entry:</p>
<pre class="cpp"> QTPLUGIN += qjpeg \
qgif \
qkrcodecs</pre>
<p>It is also possible to create your own static plugins, by following these steps:</p>
<ol class="1">
<li>Add <tt>CONFIG += static</tt> to your plugin's <tt>.pro</tt> file.</li>
<li>Use the <a href="qtplugin.html#Q_IMPORT_PLUGIN">Q_IMPORT_PLUGIN</a>() macro in your application.</li>
<li>Link your application with your plugin library using <tt>LIBS</tt> in the <tt>.pro</tt> file.</li>
</ol>
<p>See the <a href="tools-plugandpaint.html">Plug & Paint</a> example and the associated <a href="tools-plugandpaintplugins-basictools.html">Basic Tools</a> plugin for details on how to do this.</p>
<p><b>Note:</b> If you are not using qmake to build your application you need to make sure that the <tt>QT_STATICPLUGIN</tt> preprocessor macro is defined.</p>
<a name="deploying-and-debugging-plugins"></a>
<h2>Deploying and Debugging Plugins</h2>
<p>The <a href="deployment-plugins.html">Deploying Plugins</a> document covers the process of deploying plugins with applications and debugging them when problems arise.</p>
</div>
<p><b>See also </b><a href="qpluginloader.html">QPluginLoader</a>, <a href="qlibrary.html">QLibrary</a>, and <a href="tools-plugandpaint.html">Plug & Paint Example</a>.</p>
<!-- @@@plugins-howto.html -->
<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>
|