summaryrefslogtreecommitdiffstats
path: root/doc/kugar/progguide.docbook
diff options
context:
space:
mode:
Diffstat (limited to 'doc/kugar/progguide.docbook')
-rw-r--r--doc/kugar/progguide.docbook18
1 files changed, 9 insertions, 9 deletions
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 &lt;kugar.h&gt; 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>