From 0f630aff5c42d03eb301cd3fc5faff80d9c3c727 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sl=C3=A1vek=20Banko?=
Date: Tue, 3 Jan 2023 01:01:50 +0100
Subject: Entry step for renaming PyTQt module libraries from qt* to tqt*.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Slávek Banko
---
doc/html/_sources/build_system.txt | 28 ++++++++++++++--------------
doc/html/_sources/c_api.txt | 2 +-
doc/html/_sources/command_line.txt | 4 ++--
doc/html/_sources/incompatibilities.txt | 4 ++--
doc/html/_sources/introduction.txt | 10 +++++-----
doc/html/_sources/specification_files.txt | 22 +++++++++++-----------
doc/html/_sources/using.txt | 2 +-
doc/html/build_system.html | 4 ++--
doc/html/directives.html | 6 +++---
doc/html/incompatibilities.html | 6 +++---
doc/html/introduction.html | 4 ++--
doc/html/using.html | 30 +++++++++++++++---------------
12 files changed, 61 insertions(+), 61 deletions(-)
(limited to 'doc/html')
diff --git a/doc/html/_sources/build_system.txt b/doc/html/_sources/build_system.txt
index fda9172..3b95af5 100644
--- a/doc/html/_sources/build_system.txt
+++ b/doc/html/_sources/build_system.txt
@@ -12,7 +12,7 @@ supports over 50 different platform/compiler combinations.
The build system is implemented as a pure Python module called :mod:`sipconfig`
that contains a number of classes and functions. Using this module you can
-write bespoke configuration scripts (e.g. PyQt's ``configure.py``) or use it
+write bespoke configuration scripts (e.g. PyTQt's ``configure.py``) or use it
with other Python based build systems (e.g.
`Distutils `_ and
`SCons `_).
@@ -20,17 +20,17 @@ with other Python based build systems (e.g.
An important feature of SIP is the ability to generate bindings that are built
on top of existing bindings. For example, both
`PyKDE `_ and
-`PyQwt `_ are built on top of PyQt but all three
-packages are maintained by different developers. To make this easier PyQt
-includes its own configuration module, ``pyqtconfig``, that contains additional
+`PyQwt `_ are built on top of PyTQt but all three
+packages are maintained by different developers. To make this easier PyTQt
+includes its own configuration module, ``pytqtconfig``, that contains additional
classes intended to be used by the configuration scripts of bindings built on
-top of PyQt. The SIP build system includes facilities that do a lot of the
+top of PyTQt. The SIP build system includes facilities that do a lot of the
work of creating these additional configuration modules.
.. function:: create_config_module(module, template, content[, macros=None])
- This creates a configuration module (e.g. ``pyqtconfig``) from a template
+ This creates a configuration module (e.g. ``pytqtconfig``) from a template
file and a string.
:param module:
@@ -377,7 +377,7 @@ work of creating these additional configuration modules.
A string that will remove a file.
- .. method:: __init__(configuration[, console=0[, qt=0[, opengl=0[, python=0[, threaded=0[, warnings=None[, debug=0[, dir=None[, makefile="Makefile"[, installs=None[, universal=None[, arch=None]]]]]]]]]]]])
+ .. method:: __init__(configuration[, console=0[, tqt=0[, opengl=0[, python=0[, threaded=0[, warnings=None[, debug=0[, dir=None[, makefile="Makefile"[, installs=None[, universal=None[, arch=None]]]]]]]]]]]])
:param configuration:
the current configuration and is an instance of the
@@ -385,8 +385,8 @@ work of creating these additional configuration modules.
:param console:
is set if the target is a console (rather than GUI) target. This
only affects Windows and is ignored on other platforms.
- :param qt:
- is set if the target uses Qt. For Qt v4 a list of Qt libraries may
+ :param tqt:
+ is set if the target uses TQt. For Qt v4 a list of Qt libraries may
be specified and a simple non-zero value implies QtCore and QtGui.
:param opengl:
is set if the target uses OpenGL.
@@ -394,7 +394,7 @@ work of creating these additional configuration modules.
is set if the target uses Python.h.
:param threaded:
is set if the target requires thread support. It is set
- automatically if the target uses Qt and Qt has thread support
+ automatically if the target uses TQt and TQt has thread support
enabled.
:param warnings:
is set if compiler warning messages should be enabled. The default
@@ -572,7 +572,7 @@ work of creating these additional configuration modules.
:ref:`ref-builtin`).
:param console:
see :meth:`sipconfig.Makefile.__init__`.
- :param qt:
+ :param tqt:
see :meth:`sipconfig.Makefile.__init__`.
:param opengl:
see :meth:`sipconfig.Makefile.__init__`.
@@ -686,7 +686,7 @@ work of creating these additional configuration modules.
This class encapsulates a Makefile to build an executable program.
- .. method:: __init__(configuration[, build_file=None[, install_dir=None[, console=0[, qt=0[, opengl=0[, python=0[, threaded=0[, warnings=None[, debug=0[, dir=None[, makefile="Makefile"[, installs=None[, universal=None[, arch=None]]]]]]]]]]]]]])
+ .. method:: __init__(configuration[, build_file=None[, install_dir=None[, console=0[, tqt=0[, opengl=0[, python=0[, threaded=0[, warnings=None[, debug=0[, dir=None[, makefile="Makefile"[, installs=None[, universal=None[, arch=None]]]]]]]]]]]]]])
:param configuration:
see :meth:`sipconfig.Makefile.__init__`.
@@ -698,7 +698,7 @@ work of creating these additional configuration modules.
optionally installed.
:param console:
see :meth:`sipconfig.Makefile.__init__`.
- :param qt:
+ :param tqt:
see :meth:`sipconfig.Makefile.__init__`.
:param opengl:
see :meth:`sipconfig.Makefile.__init__`.
@@ -810,7 +810,7 @@ work of creating these additional configuration modules.
see :meth:`sipconfig.ModuleMakefile.__init__`.
:param console:
see :meth:`sipconfig.Makefile.__init__`.
- :param qt:
+ :param tqt:
see :meth:`sipconfig.Makefile.__init__`.
:param opengl:
see :meth:`sipconfig.Makefile.__init__`.
diff --git a/doc/html/_sources/c_api.txt b/doc/html/_sources/c_api.txt
index 66e0af2..c1cb25a 100644
--- a/doc/html/_sources/c_api.txt
+++ b/doc/html/_sources/c_api.txt
@@ -1696,7 +1696,7 @@ name prefixed by ``sip``. For example, the derived class for class ``Klass``
is ``sipKlass``.
If a C++ class doesn't have any virtual or protected methods in it or any of
-it's super-class hierarchy, or does not emit any Qt Q_SIGNALS, then a derived
+it's super-class hierarchy, or does not emit any TQt Q_SIGNALS, then a derived
class is not generated.
Most of the time handwritten code should ignore the derived classes. The only
diff --git a/doc/html/_sources/command_line.txt b/doc/html/_sources/command_line.txt
index 9c50cf4..8a1db23 100644
--- a/doc/html/_sources/command_line.txt
+++ b/doc/html/_sources/command_line.txt
@@ -24,8 +24,8 @@ The full set of command line options is:
.. cmdoption:: -a
- The name of the QScintilla API file to generate. This file contains a
- description of the module API in a form that the QScintilla editor
+ The name of the TQScintilla API file to generate. This file contains a
+ description of the module API in a form that the TQScintilla editor
component can use for auto-completion and call tips. (The file may also be
used by the SciTE editor but must be sorted first.) By default the file is
not generated.
diff --git a/doc/html/_sources/incompatibilities.txt b/doc/html/_sources/incompatibilities.txt
index a006e4f..df5c2c4 100644
--- a/doc/html/_sources/incompatibilities.txt
+++ b/doc/html/_sources/incompatibilities.txt
@@ -70,10 +70,10 @@ In addition the :option:`-a` command line option to :file:`configure.py` has
been removed.
-Removal of PyQt-specific Features
+Removal of PyTQt-specific Features
*********************************
-The following PyQt-specific support functions have been removed.
+The following PyTQt-specific support functions have been removed.
- :cfunc:`sipConnectRx()`
diff --git a/doc/html/_sources/introduction.txt b/doc/html/_sources/introduction.txt
index 8488b6f..e89f48e 100644
--- a/doc/html/_sources/introduction.txt
+++ b/doc/html/_sources/introduction.txt
@@ -4,8 +4,8 @@ Introduction
This is the reference guide for SIP 4.10.5. SIP is a tool for
automatically generating `Python `__ bindings for C and
C++ libraries. SIP was originally developed in 1998 for
-`PyQt `__ - the Python
-bindings for the Qt GUI toolkit - but is suitable for generating bindings for
+`PyTQt `__ - the Python
+bindings for the TQt GUI toolkit - but is suitable for generating bindings for
any C or C++ library.
This version of SIP generates bindings for Python v2.3 or later, including
@@ -156,14 +156,14 @@ SIP comprises a number of different components.
:ref:`ref-distutils`.
-Qt Support
+TQt Support
----------
SIP has specific support for the creation of bindings based on Nokia's Qt
toolkit.
The SIP code generator understands the signal/slot type safe callback mechanism
-that Qt uses to connect objects together. This allows applications to define
+that TQt uses to connect objects together. This allows applications to define
new Python Q_SIGNALS, and allows any Python callable object to be used as a slot.
-SIP itself does not require Qt to be installed.
+SIP itself does not require TQt to be installed.
diff --git a/doc/html/_sources/specification_files.txt b/doc/html/_sources/specification_files.txt
index ff352f4..baa18f5 100644
--- a/doc/html/_sources/specification_files.txt
+++ b/doc/html/_sources/specification_files.txt
@@ -268,7 +268,7 @@ file.
*argument* ::= [
*type* [*name*] [*argument-annotations*] [*default-value*] |
:stype:`SIP_ANYSLOT` [*default-value*] |
- :stype:`SIP_QOBJECT` |
+ :stype:`SIP_TQOBJECT` |
:stype:`SIP_RXOBJ_CON` |
:stype:`SIP_RXOBJ_DIS` |
:stype:`SIP_SIGNAL` [*default-value*] |
@@ -422,24 +422,24 @@ This is a ``PyObject *`` that is a Python tuple object.
This is a ``PyObject *`` that is a Python type object.
-.. sip-type:: SIP_QOBJECT
+.. sip-type:: SIP_TQOBJECT
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class.
.. sip-type:: SIP_RXOBJ_CON
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class. It is used as the type of the receiver instead of ``const
-QObject *`` in functions that implement a connection to a slot.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class. It is used as the type of the receiver instead of ``const
+TQObject *`` in functions that implement a connection to a slot.
.. sip-type:: SIP_RXOBJ_DIS
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class. It is used as the type of the receiver instead of ``const
-QObject *`` in functions that implement a disconnection from a slot.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class. It is used as the type of the receiver instead of ``const
+TQObject *`` in functions that implement a disconnection from a slot.
.. sip-type:: SIP_SIGNAL
@@ -468,7 +468,7 @@ signal to a slot. The signal is emitted when the keyboard accelerator is
activated and it has a single integer argument that is the ID of the
accelerator. The C++ signature is::
- bool connectItem(int id, const QObject *receiver, const char *member);
+ bool connectItem(int id, const TQObject *receiver, const char *member);
The corresponding SIP specification is::
diff --git a/doc/html/_sources/using.txt b/doc/html/_sources/using.txt
index ff121ce..427888f 100644
--- a/doc/html/_sources/using.txt
+++ b/doc/html/_sources/using.txt
@@ -193,7 +193,7 @@ A More Complex C++ Example
--------------------------
In this last example we will wrap a fictional C++ library that contains a class
-that is derived from a Qt class. This will demonstrate how SIP allows a class
+that is derived from a TQt class. This will demonstrate how SIP allows a class
hierarchy to be split across multiple Python extension modules, and will
introduce SIP's versioning system.
diff --git a/doc/html/build_system.html b/doc/html/build_system.html
index 772457e..72cab70 100644
--- a/doc/html/build_system.html
+++ b/doc/html/build_system.html
@@ -65,14 +65,14 @@ on top of existing bindings. For example, both
PyKDE and
PyQwt are built on top of PyTQt but all three
packages are maintained by different developers. To make this easier PyTQt
-includes its own configuration module, pyqtconfig, that contains additional
+includes its own configuration module, pytqtconfig, that contains additional
classes intended to be used by the configuration scripts of bindings built on
top of PyTQt. The SIP build system includes facilities that do a lot of the
work of creating these additional configuration modules.
-
sipconfig.create_config_module(module, template, content[, macros=None])
-This creates a configuration module (e.g. pyqtconfig) from a template
+
This creates a configuration module (e.g. pytqtconfig) from a template
file and a string.
diff --git a/doc/html/directives.html b/doc/html/directives.html
index 1e8ee1f..b565367 100644
--- a/doc/html/directives.html
+++ b/doc/html/directives.html
@@ -685,7 +685,7 @@ modules, that doesn’t have an explicit meta-type.
meta-type used by a particular C/C++ type.
See the section Types and Meta-types for more details.
For example:
-