diff options
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> |