diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-16 19:11:00 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-16 19:11:00 +0900 |
| commit | 82ecd83484c9fa1ede059986ab771e74e33e68ef (patch) | |
| tree | d0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/tutorial1-03.html | |
| parent | c55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff) | |
| download | tqt-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-03.html')
| -rw-r--r-- | doc/html/tutorial1-03.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tutorial1-03.html b/doc/html/tutorial1-03.html index 714fce724..16a6bbc30 100644 --- a/doc/html/tutorial1-03.html +++ b/doc/html/tutorial1-03.html @@ -44,13 +44,13 @@ body { background: #ffffff; color: black; } #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqfont-h.html">tqfont.h</a>> -#include <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); - <a href="ntqvbox.html">TQVBox</a> box; + <a href="tqvbox.html">TQVBox</a> box; box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); @@ -69,12 +69,12 @@ int main( int argc, char **argv ) <p> <h2> Line-by-line Walkthrough </h2> -<a name="1"></a><p> <pre> #include <<a href="qvbox-h.html">ntqvbox.h</a>> +<a name="1"></a><p> <pre> #include <<a href="tqvbox-h.html">tqvbox.h</a>> </pre> -<p> We add an include of ntqvbox.h to get the layout class we'll use. -<p> <pre> <a href="ntqvbox.html">TQVBox</a> box; +<p> We add an include of tqvbox.h to get the layout class we'll use. +<p> <pre> <a href="tqvbox.html">TQVBox</a> box; </pre> -<p> Here we simply create a vertical box container. The <a href="ntqvbox.html">TQVBox</a> arranges +<p> Here we simply create a vertical box container. The <a href="tqvbox.html">TQVBox</a> arranges its child widgets in a vertical row, one above the other, handing out space according to each child's <a href="tqwidget.html#sizePolicy">TQWidget::sizePolicy</a>(). <p> <pre> <a name="x2300"></a> box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); |
