summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-05.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tutorial1-05.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-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-05.html')
-rw-r--r--doc/html/tutorial1-05.html40
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/html/tutorial1-05.html b/doc/html/tutorial1-05.html
index e5c0abe8..eecccbc7 100644
--- a/doc/html/tutorial1-05.html
+++ b/doc/html/tutorial1-05.html
@@ -42,9 +42,9 @@ by using signals and slots, and how to handle resize events.
****************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
-#include &lt;<a href="qslider-h.html">ntqslider.h</a>&gt;
-#include &lt;<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
+#include &lt;<a href="tqslider-h.html">tqslider.h</a>&gt;
+#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;
@@ -59,18 +59,18 @@ 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="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
+ <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 ) );
<a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
- <a href="ntqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="ntqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
+ <a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
- <a href="ntqslider.html">TQSlider</a> * slider = new <a href="ntqslider.html">TQSlider</a>( Horizontal, this, "slider" );
+ <a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" );
slider-&gt;<a href="ntqrangecontrol.html#setRange">setRange</a>( 0, 99 );
- slider-&gt;<a href="ntqslider.html#setValue">setValue</a>( 0 );
+ slider-&gt;<a href="tqslider.html#setValue">setValue</a>( 0 );
- <a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="ntqlcdnumber.html#display">display</a>(int)) );
+ <a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="tqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="tqlcdnumber.html#display">display</a>(int)) );
}
int main( int argc, char **argv )
@@ -89,15 +89,15 @@ int main( int argc, char **argv )
<p> <h2> Line-by-line Walkthrough
</h2>
<a name="1"></a><p> <pre> #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
- #include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
- #include &lt;<a href="qslider-h.html">ntqslider.h</a>&gt;
- #include &lt;<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>&gt;
+ #include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
+ #include &lt;<a href="tqslider-h.html">tqslider.h</a>&gt;
+ #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;
</pre>
-<p> Three new include files are shown here. ntqslider.h and ntqlcdnumber.h are there
-because we use two new widgets, <a href="ntqslider.html">TQSlider</a> and <a href="ntqlcdnumber.html">TQLCDNumber</a>. ntqvbox.h is
+<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
here because we use TQt's automatic layout support.
<p> <pre> class MyWidget : public <a href="ntqvbox.html">TQVBox</a>
{
@@ -114,19 +114,19 @@ here because we use TQt's automatic layout support.
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.
-<p> <pre> <a href="ntqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="ntqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
+<p> <pre> <a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
</pre>
<p> <tt>lcd</tt> is a TQLCDNumber, a widget that displays numbers in an LCD-like
fashion. This instance is set up to display two digits and to be a child of
<em>this</em>. It is named "lcd".
-<p> <pre> <a href="ntqslider.html">TQSlider</a> * slider = new <a href="ntqslider.html">TQSlider</a>( Horizontal, this, "slider" );
+<p> <pre> <a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" );
<a name="x2315"></a> slider-&gt;<a href="ntqrangecontrol.html#setRange">setRange</a>( 0, 99 );
- <a name="x2316"></a> slider-&gt;<a href="ntqslider.html#setValue">setValue</a>( 0 );
+ <a name="x2316"></a> slider-&gt;<a href="tqslider.html#setValue">setValue</a>( 0 );
</pre>
-<p> <a href="ntqslider.html">TQSlider</a> is a classical slider; the user can use the widget to drag
+<p> <a href="tqslider.html">TQSlider</a> is a classical slider; the user can use the widget to drag
something to adjust an integer value in a range. Here we create a
horizontal one, set its range to 0-99 (inclusive, see the <a href="ntqrangecontrol.html#setRange">TQSlider::setRange</a>() documentation) and its initial value to 0.
-<p> <pre> <a name="x2317"></a><a name="x2314"></a> <a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="ntqlcdnumber.html#display">display</a>(int)) );
+<p> <pre> <a name="x2317"></a><a name="x2314"></a> <a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="tqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="tqlcdnumber.html#display">display</a>(int)) );
</pre>
<p> Here we use the <a href="signalsandslots.html">signal/slot mechanism</a>
to connect the slider's valueChanged() signal to the LCD number's
@@ -148,10 +148,10 @@ others stay about the same (because otherwise they would look stupid).
makefile and build the application.)
<p> <h2> Exercises
</h2>
-<a name="3"></a><p> Try changing the LCD number to add more digits or <a href="ntqlcdnumber.html#setMode">to change mode.</a> You can even add four push
+<a name="3"></a><p> Try changing the LCD number to add more digits or <a href="tqlcdnumber.html#setMode">to change mode.</a> You can even add four push
buttons to set the number base.
<p> You can also change the slider's range.
-<p> Perhaps it would have been better to use <a href="ntqspinbox.html">TQSpinBox</a> than a slider?
+<p> Perhaps it would have been better to use <a href="tqspinbox.html">TQSpinBox</a> than a slider?
<p> Try to make the application quit when the LCD number overflows.
<p> You're now ready for <a href="tutorial1-06.html">Chapter 6.</a>
<p> [<a href="tutorial1-04.html">Previous tutorial</a>]