diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tutorial1-03.html | |
parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
download | tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip |
Rename basic widget 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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-03.html b/doc/html/tutorial1-03.html index bdd050a75..cbd73786c 100644 --- a/doc/html/tutorial1-03.html +++ b/doc/html/tutorial1-03.html @@ -42,7 +42,7 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.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>> @@ -53,7 +53,7 @@ int main( int argc, char **argv ) <a href="ntqvbox.html">TQVBox</a> box; box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); - <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); + <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); quit.<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); TQObject::<a href="tqobject.html#connect">connect</a>( &quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), &a, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); @@ -80,10 +80,10 @@ space according to each child's <a href="tqwidget.html#sizePolicy">TQWidget::siz <p> <pre> <a name="x2300"></a> box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); </pre> <p> We set its width to 200 pixels and the height to 120 pixels. -<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); +<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); </pre> <p> A child is born. -<p> This <a href="ntqpushbutton.html">TQPushButton</a> is created with both a text ("Quit") and a parent +<p> This <a href="tqpushbutton.html">TQPushButton</a> is created with both a text ("Quit") and a parent (box). A child widget is always on top of its parent. When displayed, it is clipped by its parent's bounds. <p> The parent widget, the TQVBox, automatically adds the child centered in |