summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-05.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-16 19:11:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-16 19:11:00 +0900
commit82ecd83484c9fa1ede059986ab771e74e33e68ef (patch)
treed0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/tutorial1-05.html
parentc55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff)
downloadtqt-82ecd834.tar.gz
tqt-82ecd834.zip
Rename layout nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial1-05.html')
-rw-r--r--doc/html/tutorial1-05.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tutorial1-05.html b/doc/html/tutorial1-05.html
index b2aca825a..dcf6cf7be 100644
--- a/doc/html/tutorial1-05.html
+++ b/doc/html/tutorial1-05.html
@@ -47,9 +47,9 @@ by using signals and slots, and how to handle resize events.
#include &lt;<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>&gt;
#include &lt;<a href="tqfont-h.html">tqfont.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
-class MyWidget : public <a href="ntqvbox.html">TQVBox</a>
+class MyWidget : public <a href="tqvbox.html">TQVBox</a>
{
public:
MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
@@ -57,7 +57,7 @@ public:
<a name="f553"></a>MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
quit-&gt;<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
@@ -94,12 +94,12 @@ int main( int argc, char **argv )
#include &lt;<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>&gt;
#include &lt;<a href="tqfont-h.html">tqfont.h</a>&gt;
- #include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+ #include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
</pre>
<p> Three new include files are shown here. tqslider.h and tqlcdnumber.h are there
-because we use two new widgets, <a href="tqslider.html">TQSlider</a> and <a href="tqlcdnumber.html">TQLCDNumber</a>. ntqvbox.h is
+because we use two new widgets, <a href="tqslider.html">TQSlider</a> and <a href="tqlcdnumber.html">TQLCDNumber</a>. tqvbox.h is
here because we use TQt's automatic layout support.
-<p> <pre> class MyWidget : public <a href="ntqvbox.html">TQVBox</a>
+<p> <pre> class MyWidget : public <a href="tqvbox.html">TQVBox</a>
{
public:
MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 );
@@ -107,10 +107,10 @@ here because we use TQt's automatic layout support.
</pre>
<p> <a name="constructor"></a>
<pre> MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
</pre>
-<p> MyWidget is now derived from <a href="ntqvbox.html">TQVBox</a> instead of <a href="tqwidget.html">TQWidget</a>. That way we use
+<p> MyWidget is now derived from <a href="tqvbox.html">TQVBox</a> instead of <a href="tqwidget.html">TQWidget</a>. That way we use
the layout of the TQVBox (which places all of its children vertically
inside itself). Resizes are now handled automatically by the TQVBox and
therefore by MyWidget, too.