Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 28b9e36e96ce34b2567ae5b47a27b2c5 > files > 53

python-qt4-doc-4.10.3-3.mga4.noarch.rpm



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>The PyQt4 Build System &mdash; PyQt 4.10.3 Reference Guide</title>
    
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '',
        VERSION:     '4.10.3',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="shortcut icon" href="_static/logo_tn.ico"/>
    <link rel="top" title="PyQt 4.10.3 Reference Guide" href="index.html" />
    <link rel="prev" title="Deploying Commercial PyQt4 Applications" href="deploy_commercial.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="deploy_commercial.html" title="Deploying Commercial PyQt4 Applications"
             accesskey="P">previous</a> |</li>
        <li><a href="index.html">PyQt 4.10.3 Reference Guide</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="the-pyqt4-build-system">
<span id="ref-build-system"></span><h1>The PyQt4 Build System<a class="headerlink" href="#the-pyqt4-build-system" title="Permalink to this headline">¶</a></h1>
<p class="versionadded">
<span class="versionmodified">New in version 4.10.</span></p>
<p>SIP v5 will not include an extensible build system, i.e it will not provide an
equivalent of SIP v4&#8217;s <tt class="xref py py-mod docutils literal"><span class="pre">sipconfig</span></tt> module.  Consequently a version of PyQt
built with SIP v5 will not provide an equivalent of the
<a class="reference internal" href="#module-PyQt4.pyqtconfig" title="PyQt4.pyqtconfig"><tt class="xref py py-mod docutils literal"><span class="pre">pyqtconfig</span></tt></a> module.  However there is still a need for certain
information to be shared between PyQt and other modules (such as QScintilla&#8217;s
<tt class="xref py py-mod docutils literal"><span class="pre">Qsci</span></tt> module) that are built on top of it.  Specifically it is
important that the same <tt class="docutils literal"><span class="pre">-t</span></tt> and <tt class="docutils literal"><span class="pre">-x</span></tt> command line flags are passed to the
<tt class="docutils literal"><span class="pre">sip</span></tt> executable to create, for example, the QScintilla bindings as were
passed to create the PyQt bindings.</p>
<p>Starting with v4.10, <tt class="xref py py-attr docutils literal"><span class="pre">PyQt4.QtCore.PYQT_CONFIGURATION</span></tt> is a dict that
describes how PyQt was configured.  At the moment it contains a single value
called <tt class="docutils literal"><span class="pre">sip_flags</span></tt> which is a string containing the appropriate <tt class="docutils literal"><span class="pre">-t</span></tt> and
<tt class="docutils literal"><span class="pre">-x</span></tt> flags.</p>
<div class="section" id="the-old-build-system">
<h2>The Old Build System<a class="headerlink" href="#the-old-build-system" title="Permalink to this headline">¶</a></h2>
<p class="deprecated">
<span class="versionmodified">Deprecated since version 4.10.</span></p>
<p>The old PyQt4 build system is an extension of the SIP v4 build system and is
implemented by the <a class="reference internal" href="#module-PyQt4.pyqtconfig" title="PyQt4.pyqtconfig"><tt class="xref py py-mod docutils literal"><span class="pre">pyqtconfig</span></tt></a> module.  It can be used by
configuration scripts of other bindings that build on top of PyQt4 and takes
care of the details of the Qt installation.</p>
<p>Note that the <a class="reference internal" href="#module-PyQt4.pyqtconfig" title="PyQt4.pyqtconfig"><tt class="xref py py-mod docutils literal"><span class="pre">pyqtconfig</span></tt></a> module is only created if you use
<strong class="program">configure.py</strong> and not if you use <strong class="program">configure-ng.py</strong>.</p>
<span class="target" id="module-PyQt4.pyqtconfig"></span><dl class="class">
<dt id="PyQt4.pyqtconfig.Configuration">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">Configuration</tt><big>(</big><em>sub_cfg=None</em><big>)</big><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates configuration values that can be accessed as
instance objects.  It is derived from <tt class="xref py py-class docutils literal"><span class="pre">sipconfig.Configuration</span></tt>.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sub_cfg</strong> &#8211; an optional list of sub-class configurations.  It should only be used
by the <tt class="docutils literal"><span class="pre">__init__()</span></tt> method of a sub-class to append its own
dictionary of configuration values before passing the list to its
super-class.</td>
</tr>
</tbody>
</table>
<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_bin_dir">
<tt class="descname">pyqt_bin_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_bin_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The name of the directory where the PyQt4 utilities are installed.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_config_args">
<tt class="descname">pyqt_config_args</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_config_args" title="Permalink to this definition">¶</a></dt>
<dd><p>The command line passed to <strong class="program">configure.py</strong> when PyQt4 was
configured.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_mod_dir">
<tt class="descname">pyqt_mod_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_mod_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The name of the directory where the <tt class="xref py py-mod docutils literal"><span class="pre">PyQt4</span></tt> Python package is
installed.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_modules">
<tt class="descname">pyqt_modules</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_modules" title="Permalink to this definition">¶</a></dt>
<dd><p>A space separated string of installed PyQt4 modules.  The <tt class="xref py py-mod docutils literal"><span class="pre">Qt</span></tt>
module is not included.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_sip_dir">
<tt class="descname">pyqt_sip_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_sip_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The name of the base directory where PyQt4&#8217;s <tt class="docutils literal"><span class="pre">.sip</span></tt> files are
installed.  Each module&#8217;s <tt class="docutils literal"><span class="pre">.sip</span></tt> files are installed in a
sub-directory with the same name as the module.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_sip_flags">
<tt class="descname">pyqt_sip_flags</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_sip_flags" title="Permalink to this definition">¶</a></dt>
<dd><p>A space separated string of the <strong class="program">sip</strong> command line options
used to build the PyQt4 modules.  These should also be used when
building bindings that <tt class="docutils literal"><span class="pre">%Import</span></tt> any PyQt4 modules.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_version">
<tt class="descname">pyqt_version</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_version" title="Permalink to this definition">¶</a></dt>
<dd><p>The PyQt4 version as a 3 part hexadecimal number (e.g. v4.0.1 is
represented as <tt class="docutils literal"><span class="pre">0x040001</span></tt>).</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.pyqt_version_str">
<tt class="descname">pyqt_version_str</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.pyqt_version_str" title="Permalink to this definition">¶</a></dt>
<dd><p>The PyQt4 version as a string.  For development snapshots it will start
with <tt class="docutils literal"><span class="pre">snapshot-</span></tt>.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_data_dir">
<tt class="descname">qt_data_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_data_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The value of <tt class="docutils literal"><span class="pre">QLibraryInfo::location(DataPath)</span></tt> for the Qt
installation.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_archdata_dir">
<tt class="descname">qt_archdata_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_archdata_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>When building against Qt v5 this is the value of
<tt class="docutils literal"><span class="pre">QLibraryInfo::location(ArchDataPath)</span></tt>.  When building against Qt v4
it is the value of <tt class="docutils literal"><span class="pre">QLibraryInfo::location(DataPath)</span></tt>.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_dir">
<tt class="descname">qt_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The root directory of the Qt installation (normally the directory that
contains the <tt class="file docutils literal"><span class="pre">bin</span></tt> directory).</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_edition">
<tt class="descname">qt_edition</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_edition" title="Permalink to this definition">¶</a></dt>
<dd><p>The Qt edition.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_framework">
<tt class="descname">qt_framework</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_framework" title="Permalink to this definition">¶</a></dt>
<dd><p>Set if Qt is built as a MacOS/X framework.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_inc_dir">
<tt class="descname">qt_inc_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_inc_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The value of <tt class="docutils literal"><span class="pre">QLibraryInfo::location(HeadersPath)</span></tt> for the Qt
installation.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_lib_dir">
<tt class="descname">qt_lib_dir</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_lib_dir" title="Permalink to this definition">¶</a></dt>
<dd><p>The value of <tt class="docutils literal"><span class="pre">QLibraryInfo::location(LibrariesPath)</span></tt> for the Qt
installation.</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_threaded">
<tt class="descname">qt_threaded</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_threaded" title="Permalink to this definition">¶</a></dt>
<dd><p>Set if Qt is built with thread support (always set for PyQt4).</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_version">
<tt class="descname">qt_version</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_version" title="Permalink to this definition">¶</a></dt>
<dd><p>The Qt version as a 3 part hexadecimal number (e.g. v4.1.2 is
represented as <tt class="docutils literal"><span class="pre">0x040102</span></tt>).</p>
</dd></dl>

<dl class="attribute">
<dt id="PyQt4.pyqtconfig.Configuration.qt_winconfig">
<tt class="descname">qt_winconfig</tt><a class="headerlink" href="#PyQt4.pyqtconfig.Configuration.qt_winconfig" title="Permalink to this definition">¶</a></dt>
<dd><p>Additional Windows specific configuration.</p>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtAssistantModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtAssistantModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtAssistantModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtAssistant</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QAxContainerModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QAxContainerModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QAxContainerModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QAxContainer</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtCoreModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtCoreModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtCoreModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtCore</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtDBusModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtDBusModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtDBusModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtDBus</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtDeclarativeModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtDeclarativeModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtDeclarativeModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtDeclarative</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtDesignerModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtDesignerModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtDesignerModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtDesigner</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtGuiModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtGuiModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtGuiModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtGui</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtHelpModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtHelpModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtHelpModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtHelp</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtMultimediaModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtMultimediaModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtMultimediaModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtMultimedia</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtNetworkModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtNetworkModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtNetworkModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtNetwork</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtOpenGLModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtOpenGLModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtOpenGLModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtOpenGL</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtScriptModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtScriptModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtScriptModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtScript</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtScriptToolsModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtScriptToolsModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtScriptToolsModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtScriptTools</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtSqlModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtSqlModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtSqlModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtSql</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtSvgModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtSvgModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtSvgModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtSvg</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtTestModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtTestModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtTestModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtTest</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtWebKitModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtWebKitModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtWebKitModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtWebKit</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtXmlModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtXmlModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtXmlModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtXml</span></tt> module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.QtXmlPatternsModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">QtXmlPatternsModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.QtXmlPatternsModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">QtXmlPatterns</span></tt>
module.</p>
</dd></dl>

<dl class="class">
<dt id="PyQt4.pyqtconfig.phononModuleMakefile">
<em class="property">class </em><tt class="descclassname">PyQt4.pyqtconfig.</tt><tt class="descname">phononModuleMakefile</tt><a class="headerlink" href="#PyQt4.pyqtconfig.phononModuleMakefile" title="Permalink to this definition">¶</a></dt>
<dd><p>This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt4 <tt class="xref py py-mod docutils literal"><span class="pre">phonon</span></tt> module.</p>
</dd></dl>

</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <p class="logo"><a href="index.html">
              <img class="logo" src="_static/logo.png" alt="Logo"/>
            </a></p>
  <h3><a href="index.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">The PyQt4 Build System</a><ul>
<li><a class="reference internal" href="#the-old-build-system">The Old Build System</a></li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="deploy_commercial.html"
                        title="previous chapter">Deploying Commercial PyQt4 Applications</a></p>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="deploy_commercial.html" title="Deploying Commercial PyQt4 Applications"
             >previous</a> |</li>
        <li><a href="index.html">PyQt 4.10.3 Reference Guide</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2013 Riverbank Computing Limited.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>
  </body>
</html>