Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > f93881942bd3805980c2fe63aa853d78 > files > 302

qtdoc5-5.9.4-1.mga6.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- windows.qdoc -->
  <title>Qt for Windows - Deployment | Qt 5.9</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td ><a href="index.html">Qt 5.9</a></td><td >Qt for Windows - Deployment</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.4 Reference Documentation</td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#the-windows-deployment-tool">The Windows Deployment Tool</a></li>
<li class="level1"><a href="#static-linking">Static Linking</a></li>
<li class="level2"><a href="#linking-the-application-to-the-static-version-of-qt">Linking the Application to the Static Version of Qt</a></li>
<li class="level1"><a href="#shared-libraries">Shared Libraries</a></li>
<li class="level2"><a href="#building-qt-as-a-shared-library">Building Qt as a Shared Library</a></li>
<li class="level2"><a href="#linking-the-application-to-qt-as-a-shared-library">Linking the Application to Qt as a Shared Library</a></li>
<li class="level2"><a href="#creating-the-application-package">Creating the Application Package</a></li>
<li class="level2"><a href="#manifest-files">Manifest files</a></li>
<li class="level1"><a href="#application-dependencies">Application Dependencies</a></li>
<li class="level2"><a href="#additional-libraries">Additional Libraries</a></li>
<li class="level2"><a href="#qt-plugins">Qt Plugins</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">Qt for Windows - Deployment</h1>
<span class="subtitle"></span>
<!-- $$$windows-deployment.html-description -->
<div class="descr"> <a name="details"></a>
<p>This documentation describes deployment process for <a href="windows-support.html">Windows</a>. We refer to the plug &amp; paint example application through out the document to demonstrate the deployment process.</p>
<a name="the-windows-deployment-tool"></a>
<h2 id="the-windows-deployment-tool">The Windows Deployment Tool</h2>
<a name="windeployqt"></a><p>The Windows deployment tool is designed to automate the process of creating a deployable folder containing the Qt-related dependencies (libraries, QML imports, plugins, and translations) required to run the application from that folder. It creates a sandbox for <a href="winrt-support.html">Windows Runtime</a> or an installation tree for Windows desktop applications, which can be easily bundled into an installation package.</p>
<p>The tool can be found in <code>QTDIR/bin/windeployqt</code>. It takes an <code>.exe</code> file or a directory that contains an <code>.exe</code> file as an argument, and scans the executable for dependencies. If a directory is passed with the <code>--qmldir</code> argument, <code>windeployqt</code> uses the <code>qmlimportscanner</code> tool to scan QML files inside the directory for QML import dependencies. Identified dependencies are then copied to the executable's directory. The hardcoded local paths in Qt5Core.dll are furthermore replaced with relative ones.</p>
<p>For Windows desktop applications, the required runtime files for the compiler are also copied to the deployable folder by default (unless the option <code>--no-compiler-runtime</code> is specified). In the case of release builds using Microsoft Visual C++, these consist of the Visual C++ Redistributable Packages, which are intended for recursive installation by the application's installer on the target machine. Otherwise, the shared libraries of the compiler runtime are used.</p>
<p>The application may require additional 3rd-party libraries (for example, database libraries), which are not taken into account by windeployqt.</p>
<p>Additional arguments are described in the tools' help output:</p>
<pre class="cpp plain">

  Usage: windeployqt [options] [files]
  Qt Deploy Tool 5.9&#x2e;0

  The simplest way to use windeployqt is to add the bin directory of your Qt
  installation (e.g&#x2e; &lt;QT_DIR\bin&gt;) to the PATH variable and then run:
    windeployqt &lt;path-to-app-binary&gt;
  If ICU, ANGLE, etc. are not in the bin directory, they need to be in the PATH
  variable. If your application uses Qt Quick, run:
    windeployqt --qmldir &lt;path-to-app-qml-files&gt; &lt;path-to-app-binary&gt;

  Options:
    -?, -h, --help            Displays this help.
    -v, --version             Displays version information.
    --dir &lt;directory&gt;         Use directory instead of binary directory.
    --libdir &lt;path&gt;           Copy libraries to path.
    --plugindir &lt;path&gt;        Copy plugins to path.
    --debug                   Assume debug binaries.
    --release                 Assume release binaries.
    --pdb                     Deploy .pdb files (MSVC).
    --force                   Force updating files.
    --dry-run                 Simulation mode. Behave normally, but do not
                              copy/update any files.
    --no-patchqt              Do not patch the Qt5Core library.
    --no-plugins              Skip plugin deployment.
    --no-libraries            Skip library deployment.
    --qmldir &lt;directory&gt;      Scan for QML-imports starting from directory.
    --no-quick-import         Skip deployment of Qt Quick imports.
    --no-translations         Skip deployment of translations.
    --no-system-d3d-compiler  Skip deployment of the system D3D compiler.
    --compiler-runtime        Deploy compiler runtime (Desktop only).
    --no-compiler-runtime     Do not deploy compiler runtime (Desktop only).
    --webkit2                 Deployment of WebKit2 (web process).
    --no-webkit2              Skip deployment of WebKit2.
    --json                    Print to stdout in JSON format.
    --angle                   Force deployment of ANGLE.
    --no-angle                Disable deployment of ANGLE.
    --no-opengl-sw            Do not deploy the software rasterizer library.
    --list &lt;option&gt;           Print only the names of the files copied.
                              Available options:
                               source:   absolute path of the source files
                               target:   absolute path of the target files
                               relative: paths of the target files, relative
                                         to the target directory
                               mapping:  outputs the source and the relative
                                         target, suitable for use within an
                                         Appx mapping file
    --verbose &lt;level&gt;         Verbose level.

  Qt libraries can be added by passing their name (-xml) or removed by passing
  the name prepended by --no- (--no-xml). Available libraries:
  bluetooth concurrent core declarative designer designercomponents
  enginio gui qthelp multimedia multimediawidgets multimediaquick network nfc
  opengl positioning printsupport qml qmltooling quick quickparticles quickwidgets
  script scripttools sensors serialport sql svg test webkit webkitwidgets
  websockets widgets winextras xml xmlpatterns webenginecore webengine
  webenginewidgets 3dcore 3drenderer 3dquick 3dquickrenderer 3dinput geoservices
  webchannel texttospeech serialbus

  Arguments:
    [files]                   Binaries or directory containing the binary.

</pre>
<a name="static-linking"></a>
<h2 id="static-linking">Static Linking</h2>
<p>To build static applications, build Qt statically by configuring Qt with <code>-static</code>:</p>
<pre class="cpp">

  cd C:\path\to\<span class="type">Qt</span>
  configure <span class="operator">-</span><span class="keyword">static</span> <span class="operator">&lt;</span>any other options you need<span class="operator">&gt;</span>

</pre>
<p>If you later need to reconfigure and rebuild Qt from the same location, ensure that all traces of the previous configuration are removed by entering the build directory and running <code>nmake distclean</code> or <code>mingw32-make distclean</code> before running <code>configure</code> again.</p>
<a name="linking-the-application-to-the-static-version-of-qt"></a>
<h3 >Linking the Application to the Static Version of Qt</h3>
<p>As an example, this section will build the Plug &amp; Paint example statically.</p>
<p>Once Qt finishes building, build the Plug &amp; Paint application. First we must go into the directory that contains the application:</p>
<pre class="cpp">

  cd examples\tools\plugandpaint

</pre>
<p>Run <code>qmake</code> to create a new makefile for the application, and perform a clean build to create the statically linked executable:</p>
<pre class="cpp">

  nmake clean
  qmake <span class="operator">-</span>config release
  nmake

</pre>
<p>You probably want to link against the release libraries, and you can specify this when invoking <code>qmake</code>. Now, provided that everything compiled and linked without any errors, we should have a <code>plugandpaint.exe</code> file that is ready for deployment. To check that the application has the required libraries, copy the executable to a machine that does not have Qt or any Qt applications installed, and run it on that machine.</p>
<p>Remember that if your application depends on compiler specific libraries, these must still be redistributed along with your application. You can check which libraries your application is linking against by using the <code>depends</code> tool. For more information, read the <a href="windows-deployment.html#application-dependencies">Application Dependencies</a> section.</p>
<p>Since we cannot deploy plugins using the static linking approach, the application we have prepared is incomplete. It will run, but the functionality will be disabled due to the missing plugins. To deploy plugin-based applications we should use the shared library approach.</p>
<a name="shared-libraries"></a>
<h2 id="shared-libraries">Shared Libraries</h2>
<p>We have two challenges when deploying the Plug &amp; Paint application using the shared libraries approach: The Qt runtime has to be correctly redistributed along with the application executable, and the plugins have to be installed in the correct location on the target system so that the application can find them.</p>
<a name="building-qt-as-a-shared-library"></a>
<h3 >Building Qt as a Shared Library</h3>
<p>For this example, we assume that Qt is installed as a shared library, which is the default when installing Qt, in the <i>C:\path\to\Qt</i> directory.</p>
<a name="linking-the-application-to-qt-as-a-shared-library"></a>
<h3 >Linking the Application to Qt as a Shared Library</h3>
<p>After ensuring that Qt is built as a shared library, we can build the Plug &amp; Paint application. First, we must go into the directory that contains the application:</p>
<pre class="cpp">

  cd examples\tools\plugandpaint

</pre>
<p>Now run <code>qmake</code> to create a new makefile for the application, and do a clean build to create the dynamically linked executable:</p>
<pre class="cpp">

  nmake clean
  qmake <span class="operator">-</span>config release
  nmake

</pre>
<p>This builds the core application, the following will build the plugins:</p>
<pre class="cpp">

  cd <span class="operator">.</span><span class="operator">.</span>\plugandpaint<span class="operator">/</span>plugins
  nmake clean
  qmake <span class="operator">-</span>config release
  nmake

</pre>
<p>If everything compiled and linked without any errors, we will get a <code>plugandpaint.exe</code> executable and the <code>pnp_basictools.dll</code> and <code>pnp_extrafilters.dll</code> plugin files.</p>
<a name="creating-the-application-package"></a>
<h3 >Creating the Application Package</h3>
<p>To deploy the application, we must make sure that we copy the relevant Qt DLLs (corresponding to the Qt modules used in the application) and the Windows platform plugin, <code>qwindows.dll</code>, as well as the executable to the same directory tree in the <code>release</code> subdirectory.</p>
<p>In contrast to user plugins, Qt plugins must be put into subdirectories matching the plugin type. The correct location for the platform plugin is a subdirectory named <code>platforms</code>. <a href="windows-deployment.html#qt-plugins">Qt Plugins</a> section has additional information about plugins and how Qt searches for them.</p>
<p>If <a href="https://chromium.googlesource.com/angle/angle/+/master/README.md">ANGLE</a> or dynamic OpenGL (the default) is used, you additionally need to include both <code>libEGL.dll</code> and <code>libGLESv2.dll</code> from Qt's <code>lib</code> directory as well as the HLSL compiler from DirectX. The HLSL compiler library, d3dcompiler_XX.dll, where XX is the version number that ANGLE (libGLESv2) was linked against.</p>
<p>If Qt was configured to link against ICU or OpenSSL, the respective DLL's need to be added to the <code>release</code> folder, too.</p>
<p><b>Note: </b>Qt WebEngine applications have additional requirements that are listed in Deploying Qt WebEngine Applications.</p><p>Remember that if your application depends on compiler specific libraries, these must be redistributed along with your application. You can check which libraries your application is linking against by using the <code>depends</code> tool. For more information, see the <a href="windows-deployment.html#application-dependencies">Application Dependencies</a> section.</p>
<p>We'll cover the plugins shortly, but first we'll check that the application will work in a deployed environment: Either copy the executable and the Qt DLLs to a machine that doesn't have Qt or any Qt applications installed, or if you want to test on the build machine, ensure that the machine doesn't have Qt in its environment.</p>
<p>If the application starts without any problems, then we have successfully made a dynamically linked version of the Plug &amp; Paint application. But the application's functionality will still be missing since we have not yet deployed the associated plugins.</p>
<p>Plugins work differently to normal DLLs, so we can't just copy them into the same directory as our application's executable as we did with the Qt DLLs. When looking for plugins, the application searches in a <code>plugins</code> subdirectory inside the directory of the application executable.</p>
<p>So to make the plugins available to our application, we have to create the <code>plugins</code> subdirectory and copy over the relevant DLLs:</p>
<pre class="cpp">

  plugins\pnp_basictools<span class="operator">.</span>dll
  plugins\pnp_extrafilters<span class="operator">.</span>dll

</pre>
<p>An archive distributing all the Qt DLLs and application specific plugins required to run the Plug &amp; Paint application, would have to include the following files:</p>
<div class="table"><table class="generic" width="100%">
 <thead><tr class="qt-style"><th >Component</th><th  colspan="2" rowspan=" 1">File Name</th></tr></thead>
<tr valign="top" class="odd"><td >The executable</td><td  colspan="2" rowspan=" 1"><code>plugandpaint.exe</code></td></tr>
<tr valign="top" class="even"><td >The Basic Tools plugin</td><td  colspan="2" rowspan=" 1"><code>plugins\pnp_basictools.dll</code></td></tr>
<tr valign="top" class="odd"><td >The ExtraFilters plugin</td><td  colspan="2" rowspan=" 1"><code>plugins\pnp_extrafilters.dll</code></td></tr>
<tr valign="top" class="even"><td >The Qt Windows platform plugin</td><td  colspan="2" rowspan=" 1"><code>platforms\qwindows.dll</code></td></tr>
<tr valign="top" class="odd"><td >The Qt Core module</td><td  colspan="2" rowspan=" 1"><code>Qt5Core.dll</code></td></tr>
<tr valign="top" class="even"><td >The Qt GUI module</td><td  colspan="2" rowspan=" 1"><code>Qt5Gui.dll</code></td></tr>
<tr valign="top" class="odd"><td >The Qt Widgets module</td><td  colspan="2" rowspan=" 1"><code>Qt5Widgets.dll</code></td></tr>
</table></div>
<p>In addition, the archive must contain the following compiler specific libraries depending on your version of Visual Studio:</p>
<div class="table"><table class="generic" width="100%">
 <thead><tr class="qt-style"><th ></th><th >VC++ 12.0 (2013)</th><th >VC++ 14.0 (2015)</th></tr></thead>
<tr valign="top" class="odd"><td >The C run-time</td><td ><code>msvcr120.dll</code></td><td ><code>vccorlib140.dll</code>, <code>vcruntime140.dll</code></td></tr>
<tr valign="top" class="even"><td >The C++ run-time</td><td ><code>msvcp120.dll</code></td><td ><code>msvcp140.dll</code></td></tr>
</table></div>
<p>If Qt was configured to use ICU, the archive must contain:</p>
<div class="table"><table class="generic" width="100%">
 <thead><tr class="qt-style"><th  colspan="3">File Name</th></tr></thead>
<tr valign="top" class="odd"><td >icudtXX.dll</td><td >icuinXX.dll</td><td >icuucXX.dll</td></tr>
</table></div>
<p>Finally, if ANGLE was used, then the archive must additionally contain:</p>
<div class="table"><table class="generic" width="100%">
 <thead><tr class="qt-style"><th  colspan="2">File Name</th></tr></thead>
<tr valign="top" class="odd"><td >libEGL.dll</td><td >libGLESv2.dll</td><td >d3dcompiler_XX.dll</td></tr>
</table></div>
<p>To verify that the application now can be successfully deployed, you can extract this archive on a machine without Qt and without any compiler installed, and try to run it.</p>
<p>An alternative to putting the plugins in the plugins subdirectory is to add a custom search path when you start your application using QCoreApplication::addLibraryPath() or QCoreApplication::setLibraryPaths().</p>
<pre class="cpp">

  <span class="type">QCoreApplication</span><span class="operator">::</span>addLibraryPath(<span class="string">&quot;C:/some/other/path&quot;</span>);

</pre>
<p>One benefit of using plugins is that they can easily be made available to a whole family of applications.</p>
<p>It's often most convenient to add the path in the application's <code>main()</code> function, right after the QApplication object is created. Once the path is added, the application will search it for plugins, in addition to looking in the <code>plugins</code> subdirectory in the application's own directory. Any number of additional paths can be added.</p>
<a name="manifest-files"></a>
<h3 >Manifest files</h3>
<p>When deploying an application compiled with Visual Studio, there are some additional steps to be taken.</p>
<p>First, we need to copy the manifest file created when linking the application. This manifest file contains information about the application's dependencies on side-by-side assemblies, such as the runtime libraries.</p>
<p>The manifest file needs to be copied into the <b>same</b> folder as the application executable. You do not need to copy the manifest files for shared libraries (DLLs), since they are not used.</p>
<p>If the shared library has dependencies that are different from the application using it, the manifest file needs to be embedded into the DLL binary. Since Qt 4.1&#x2e;3, the following <code>CONFIG</code> options are available for embedding manifests:</p>
<pre class="cpp">

  embed_manifest_dll
  embed_manifest_exe

</pre>
<p>Both options are enabled by default. To remove <code>embed_manifest_exe</code>, add</p>
<pre class="cpp">

  CONFIG -= embed_manifest_exe

</pre>
<p>to your .pro file.</p>
<p>You can find more information about manifest files and side-by-side assemblies at the <a href="http://msdn.microsoft.com/en-us/library/aa376307.aspx">MSDN website</a>.</p>
<p>The correct way to include the runtime libraries with your application is to ensure that they are installed on the end-user's system.</p>
<p>To install the runtime libraries on the end-user's system, you need to include the appropriate Visual C++ Redistributable Package (VCRedist) executable with your application and ensure that it is executed when the user installs your application.</p>
<p>They are named <code>vcredist_x64.exe</code> (IA64 and 64-bit) or <code>vcredist_x86.exe</code> (32-bit) and can be found in the folder c{Visual Studio install path&gt;/VC/redist/&lt;language-code&gt;}.</p>
<p>Alternatively, they can be downloaded from the web, for example <a href="https://www.microsoft.com/download/details.aspx?id=48145">vcredist_x64.exe for Visual Studio 2015</a>.</p>
<p><b>Note: </b>The application you ship must be compiled with exactly the same compiler version against the same C runtime version. This prevents deploying errors caused by different versions of the C runtime libraries.</p><a name="application-dependencies"></a>
<h2 id="application-dependencies">Application Dependencies</h2>
<a name="additional-libraries"></a>
<h3 >Additional Libraries</h3>
<p>Depending on configuration, compiler specific libraries must be redistributed along with your application.</p>
<p>For example, if Qt is built using <a href="https://chromium.googlesource.com/angle/angle/+/master/README.md">ANGLE</a>, its shared libraries and the HLSL compiler from DirectX to be shipped as well.</p>
<p>You can check which libraries your application is linking against by using the <a href="http://www.dependencywalker.com/">Dependency Walker</a> tool. All you need to do is to run it like this:</p>
<pre class="cpp">

  depends <span class="operator">&lt;</span>application executable<span class="operator">&gt;</span>

</pre>
<p>This will provide a list of the libraries that your application depends on and other information.</p>
<p class="centerAlign"><img src="images/deployment-windows-depends.png" alt="" /></p><p>When looking at the release build of the Plug &amp; Paint executable (<code>plugandpaint.exe</code>) with the <code>depends</code> tool, the tool lists the following immediate dependencies to non-system libraries:</p>
<div class="table"><table class="generic" width="100%">
 <thead><tr class="qt-style"><th >Qt</th><th >VC++ 12.0 (2013)</th><th >VC++ 14.0 (2015)</th><th ><a href="https://mingw-w64.org/">MinGW</a></th></tr></thead>
<tr valign="top" class="odd"><td ><ul>
<li>QT5CORE.DLL - The QtCore runtime</li>
<li>QT5GUI.DLL - The QtGui runtime</li>
<li>QT5WIDGETS.DLL - The QtWidgets runtime</li>
</ul>
</td><td ><ul>
<li>MSVCR120.DLL - The C runtime</li>
<li>MSVCP120.DLL - The C++ runtime</li>
</ul>
</td><td ><ul>
<li>VCCORLIB140.DLL, VCRUNTIME140D.DLL - The C runtime</li>
<li>MSVCP140.DLL - The C++ runtime</li>
</ul>
</td><td ><ul>
<li>LIBWINPTHREAD-1.DLL</li>
<li>LIBGCC_S_DW2-1.DLL</li>
<li>LIBSTDC++-6.DLL</li>
</ul>
</td></tr>
</table></div>
<p>When looking at the plugin DLLs the exact same dependencies are listed.</p>
<p>From Qt version 5.2 onwards, the officially supported version for OpenSSL is 1.0&#x2e;0 or later. Versions &gt;= 0.9&#x2e;7 and &lt; 1.0&#x2e;0 might work, but are not guaranteed to.</p>
<a name="qt-plugins"></a>
<h3 >Qt Plugins</h3>
<p>All Qt GUI applications require a plugin that implements the <a href="qpa.html">Qt Platform Abstraction</a> (QPA) layer in Qt 5. For Windows, the name of the platform plugin is <code>qwindows.dll</code>. This file must be located within a specific subdirectory (by default, <code>platforms</code>) under your distribution directory. Alternatively, it is possible to adjust the search path Qt uses to find its plugins, as described below.</p>
<p>Your application may also depend on one or more Qt plugins, such as the print support plugin, the JPEG image format plugin or a SQL driver plugin. Be sure to distribute any Qt plugins that you need with your application. Similar to the platform plugin, each type of plugin must be located within a specific subdirectory (such as <code>printsupport</code>, <code>imageformats</code> or <code>sqldrivers</code>) within your distribution directory.</p>
<p>The search path for Qt plugins is hard-coded into the QtCore library. By default, the plugins subdirectory of the Qt installation is the first plugin search path. However, pre-determined paths like the default one have certain disadvantages. For example, they may not exist on the target machine. For that reason, you need to examine various alternatives to make sure that the Qt plugins are found:</p>
<ul>
<li><a href="qt-conf.html">Using <code>qt.conf</code></a>. This approach is the recommended if you have executables in different places sharing the same plugins.</li>
<li>Using QApplication::addLibraryPath() or QApplication::setLibraryPaths(). This approach is recommended if you only have one executable that will use the plugin.</li>
<li>Using a third party installation utility to change the hard-coded paths in the QtCore library.</li>
</ul>
<p>If you add a custom path using QApplication::addLibraryPath it could look like this:</p>
<pre class="cpp">

  <span class="type">QCoreApplication</span><span class="operator">::</span>addLibraryPath(<span class="string">&quot;C:/customPath/plugins&quot;</span>);

</pre>
<p>Then QCoreApplication::libraryPaths() would return something like this:</p>
<ul>
<li><code>C:/customPath/plugins</code></li>
<li><code>C:/Qt/%VERSION%/plugins</code></li>
<li><code>E:/myApplication/directory</code></li>
</ul>
<p>The executable will look for the plugins in these directories and the same order as the QStringList returned by QCoreApplication::libraryPaths(). The newly added path is prepended to the QCoreApplication::libraryPaths() which means that it will be searched through first. However, if you use QCoreApplication::setLibraryPaths(), you will be able to determine which paths and in which order they will be searched.</p>
<p>The <a href="plugins-howto.html">How to Create Qt Plugins</a> document outlines the issues you need to pay attention to when building and deploying plugins for Qt applications.</p>
</div>
<!-- @@@windows-deployment.html -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2017 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    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.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>