diff options
author | Slávek Banko <[email protected]> | 2023-01-16 17:11:02 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-01-23 02:16:16 +0100 |
commit | e55e706f31de58a8286d0b6e53b723d9d199d5c6 (patch) | |
tree | d92640d57599b3e8b8332c13830501a701a65d89 /doc/en/index.docbook | |
parent | 2d380395d26b5897ffbf92dc62bd0f9ed09e0661 (diff) | |
download | pytdeextensions-e55e706f31de58a8286d0b6e53b723d9d199d5c6.tar.gz pytdeextensions-e55e706f31de58a8286d0b6e53b723d9d199d5c6.zip |
Update after renaming qt => tqt in PyTQt module.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'doc/en/index.docbook')
-rw-r--r-- | doc/en/index.docbook | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/en/index.docbook b/doc/en/index.docbook index af4a5bc..355e61c 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -144,12 +144,12 @@ tdedistutils.setup(name="pytdeextensions", author_email="[email protected]", url="http://www.simonzone.com/software/pykdeextensions/", min_kde_version = "3.0.0", - min_qt_version = "3.0.0", + min_tqt_version = "3.0.0", license = "LGPL" ) </programlisting> -<symbol>min_kde_version</symbol> and <symbol>min_qt_version</symbol> specify -the minimum versions of the Qt library and TDE needed to install and run +<symbol>min_kde_version</symbol> and <symbol>min_tqt_version</symbol> specify +the minimum versions of the TQt library and TDE needed to install and run the software. These requirements are checked during install. </para> @@ -260,9 +260,9 @@ during install. </chapter> -<!-- Qt-designer --> +<!-- TQt-designer --> <chapter id="using-tqtdesigner"> -<title>Run-time integration with Qt-Designer</title> +<title>Run-time integration with TQt-Designer</title> <para> Qt-Designer is a graphical application used for designing user interfaces. It creates <literal role="extension">.ui</literal> files. These files need @@ -271,7 +271,7 @@ application. This can be manually done using the <command>pyuic</command> command from the shell. But it is a lot more convenient to let &appname; to this automatically for you. All you need to do is import the <symbol>tqtdesigner</symbol> or <symbol>tdedesigner</symbol> module, depending -on whether your application is pure Qt or uses TDE, and then you can import +on whether your application is pure TQt or uses TDE, and then you can import your user interface files as though they were normal Python files. <programlisting> @@ -281,7 +281,7 @@ from tdeui import * import tdedesigner # This module lets us import .ui file directly. from MyWindow import * # Loads MyWindow.ui -# Subclass the Qt-designer form. +# Subclass the TQt-designer form. class MyWindowCode(MyWindow): # Implement extra functionality and methods. </programlisting> @@ -554,7 +554,7 @@ described below. <title>Simple TDE utility template</title> <para> The <filename>kdeutility</filename> application template is a simple utility -that uses an interface designed in Qt-Designer. It doesn't have a menubar +that uses an interface designed in TQt-Designer. It doesn't have a menubar or toolbar. </para> </sect1> |