summaryrefslogtreecommitdiffstats
path: root/doc/html/designer-manual-9.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
commit0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch)
treebe5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/designer-manual-9.html
parent1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff)
downloadtqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz
tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/designer-manual-9.html')
-rw-r--r--doc/html/designer-manual-9.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/designer-manual-9.html b/doc/html/designer-manual-9.html
index 3a212b29..445c822c 100644
--- a/doc/html/designer-manual-9.html
+++ b/doc/html/designer-manual-9.html
@@ -193,11 +193,11 @@ myform.h: myform.ui
<p>Although Glade does not target TQt, the layout system and the widget set of GTK+ are similar to those of TQt, so the filter will retain most of the information in the<!-- index .glade --> <tt>.glade</tt> file.</p>
<p>There are some considerations regarding the conversion of Glade files, as listed below:</p>
<ul><li><p>Ampersands (&amp;) in labels</p>
-<p>TQt displays an ampersand when a <a href="ntqlabel.html">TQLabel</a> has no buddy. (A buddy is a widget that accepts focus on behalf of a <a href="ntqlabel.html">TQLabel</a>.) Glade allows GtkLabel widgets with an (underlined) accelerator key but with no buddy. This is an error since users expect underlined characters to be accelerators. In this situation, TQt displays the ampersand itself instead of underlining the accelerator key. You should go over these <a href="ntqlabel.html">TQLabel</a> widgets and set their "<em>buddy</em>" property.</p>
+<p>TQt displays an ampersand when a <a href="tqlabel.html">TQLabel</a> has no buddy. (A buddy is a widget that accepts focus on behalf of a <a href="tqlabel.html">TQLabel</a>.) Glade allows GtkLabel widgets with an (underlined) accelerator key but with no buddy. This is an error since users expect underlined characters to be accelerators. In this situation, TQt displays the ampersand itself instead of underlining the accelerator key. You should go over these <a href="tqlabel.html">TQLabel</a> widgets and set their "<em>buddy</em>" property.</p>
<li><p>Layout placeholders</p>
-<p>GTK allows a layout position to be occupied by a placeholder. <em>TQt Designer</em> converts those placeholders into <a href="ntqlabel.html">TQLabel</a>s whose text is "?" in red, so that you can find them and fix them manually.</p>
+<p>GTK allows a layout position to be occupied by a placeholder. <em>TQt Designer</em> converts those placeholders into <a href="tqlabel.html">TQLabel</a>s whose text is "?" in red, so that you can find them and fix them manually.</p>
<li><p>GTK+ or GNOME widget with no TQt equivalent</p>
-<p>TQt has equivalents for most GTK+ widgets, but Glade also supports GNOME, whose goal is to provide a complete desktop environment. Because TQt's scope is narrower, when <em>TQt Designer</em> encounters a widget it cannot convert, it replaces it with a label that indicates the problem. For example, a GnomePaperSelector will be replaced by a <a href="ntqlabel.html">TQLabel</a> whose text is "GnomePaperSelector?" in red. If you are porting to KDE, you might want to use the corresponding KDE widget.</p>
+<p>TQt has equivalents for most GTK+ widgets, but Glade also supports GNOME, whose goal is to provide a complete desktop environment. Because TQt's scope is narrower, when <em>TQt Designer</em> encounters a widget it cannot convert, it replaces it with a label that indicates the problem. For example, a GnomePaperSelector will be replaced by a <a href="tqlabel.html">TQLabel</a> whose text is "GnomePaperSelector?" in red. If you are porting to KDE, you might want to use the corresponding KDE widget.</p>
<p>Other GTK+/GNOME widgets are only supported in certain contexts. For example, the GnomeDruid can be embedded in another widget, whereas the corresponding <a href="ntqwizard.html">TQWizard</a> class cannot.</p>
<li><p>Message boxes and other high-level dialogs</p>
<p>Glade supports editing of GnomeMessageBox, GtkFileSelection, GtkFontSelectionDialog and others. This is trivially achieved in TQt by means of a <a href="ntqmessagebox.html">TQMessageBox</a> dialog, a <a href="tqfiledialog.html">TQFileDialog</a>, a <a href="tqfontdialog.html">TQFontDialog</a>, etc., in C++ code.</p>