diff options
author | Michele Calgaro <[email protected]> | 2024-03-09 18:58:02 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-22 21:28:42 +0900 |
commit | 3723148aa321530969ae4dd7472c461b94b5405e (patch) | |
tree | e5d11a855ae5ab9b409ce5f478b3a78d310f39f5 /doc/kugar | |
parent | e220a1b2b9fa4c97bbcaabf51cd259e62edd3ab3 (diff) | |
download | koffice-3723148aa321530969ae4dd7472c461b94b5405e.tar.gz koffice-3723148aa321530969ae4dd7472c461b94b5405e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7a7827396f90ad06945cd5a367f93d8ffd380e0f)
Diffstat (limited to 'doc/kugar')
-rw-r--r-- | doc/kugar/index.docbook | 2 | ||||
-rw-r--r-- | doc/kugar/progguide.docbook | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/kugar/index.docbook b/doc/kugar/index.docbook index ebb84d16..b05d2aac 100644 --- a/doc/kugar/index.docbook +++ b/doc/kugar/index.docbook @@ -79,7 +79,7 @@ <chapter id="introduction"> <title>Introduction</title> -<para> &kugar; is a report creation tool for &Qt; and &tde;. It includes +<para> &kugar; is a report creation tool for &TQt; and &tde;. It includes a &GUI; report template designer, a report engine, a &konqueror; part for easy report preview and a set of examples.</para> diff --git a/doc/kugar/progguide.docbook b/doc/kugar/progguide.docbook index 97f4e471..a61faf07 100644 --- a/doc/kugar/progguide.docbook +++ b/doc/kugar/progguide.docbook @@ -61,15 +61,15 @@ for a detailed description. </listitem> <listitem> <para> -Create a &Qt; designer plugin, use it to build the application &GUI; in the designer and +Create a &TQt; designer plugin, use it to build the application &GUI; in the designer and link it to the program dynamically. -See <link linkend="prog-designer-plugin">Creating a &Qt; designer plugin</link> +See <link linkend="prog-designer-plugin">Creating a &TQt; designer plugin</link> for a detailed description. </para> </listitem> </itemizedlist> -<para> The last two ways are acceptable for &Qt; and &tde; developers; +<para> The last two ways are acceptable for &TQt; and &tde; developers; but &kugar; is designed to be a report generator, independent from a programming language and/or <acronym>IDE</acronym>. It uses &XML; format for describing report templates and data files. So any program @@ -125,7 +125,7 @@ developers. It supports a &tde; printing system and &UNIX; localization via <function>i18n()</function> calls. </para> <para> -The <classname>MReportViewer</classname> class is designed for &Qt; +The <classname>MReportViewer</classname> class is designed for &TQt; developers and provides real crossplatforming. It can be used not only on &UNIX; platforms, but also on &Windows; and &MacOS;. </para> @@ -136,7 +136,7 @@ with <filename>libkugar.so</filename> shared library, which is provided with the </para> <para> Include files are <filename>kugarqt.h</filename> and <filename>kugar.h</filename> -for &Qt; and &tde; programs respectively. +for &TQt; and &tde; programs respectively. </para> <para>For a detailed example of how &kugar; classes can be used, look in the <filename class="directory">/shell</filename> folder in the &kugar; sources. @@ -214,7 +214,7 @@ create a TQIODevice successor and redefine all necessary functionality. </sect1> <sect1 id="prog-designer-plugin"> -<title>Creating &Qt; designer plugin</title> +<title>Creating &TQt; designer plugin</title> <para> This is the example code of how a designer plugin is created. The code below creates a plugin for @@ -222,7 +222,7 @@ a &tde; <classname>KReportViewer</classname> widget. </para> <para> -If a &Qt; +If a &TQt; widget is desired, replace <classname>KReportViewer</classname> with <classname>MReportViewer</classname> and <filename>kugar.h</filename> with <filename>kugarqt.h</filename> in the plugin code. @@ -231,7 +231,7 @@ widget is desired, replace <classname>KReportViewer</classname> with <sect2 id="plugin-usage"> <title>Plugin usage</title> <para> -The designer plugin will allow the usage of &Qt; Designer to place a <classname>KReportViewer</classname> +The designer plugin will allow the usage of &TQt; Designer to place a <classname>KReportViewer</classname> widget onto a window and preview it correctly. </para> @@ -240,7 +240,7 @@ Programs that make use of this plugin must be linked dynamically with it. The corresponding library is called <filename>libkugar_plugin.so</filename>. Widgets or dialogs that include <classname>KReportViewer</classname> widget must include <kugar.h> in implementation and have a forward declaration -of <classname>class KReportViewer</classname>. Includes can be done with &Qt; +of <classname>class KReportViewer</classname>. Includes can be done with &TQt; Designer's Object Explorer (Source tab). </para> |