summaryrefslogtreecommitdiffstats
path: root/doc/html/drawdemo-example.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/drawdemo-example.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/drawdemo-example.html')
-rw-r--r--doc/html/drawdemo-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/drawdemo-example.html b/doc/html/drawdemo-example.html
index 43984ebf..ea3b758c 100644
--- a/doc/html/drawdemo-example.html
+++ b/doc/html/drawdemo-example.html
@@ -50,8 +50,8 @@ You can easily add you own drawing functions.
#include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
#include &lt;<a href="tqprinter-h.html">tqprinter.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
-#include &lt;<a href="qradiobutton-h.html">ntqradiobutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
+#include &lt;<a href="tqradiobutton-h.html">tqradiobutton.h</a>&gt;
#include &lt;<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;math.h&gt;
@@ -184,7 +184,7 @@ protected:
private:
<a href="tqprinter.html">TQPrinter</a> *printer;
<a href="ntqbuttongroup.html">TQButtonGroup</a> *bgroup;
- <a href="ntqpushbutton.html">TQPushButton</a> *print;
+ <a href="tqpushbutton.html">TQPushButton</a> *print;
int drawindex;
int maxindex;
};
@@ -225,13 +225,13 @@ private:
maxwidth = maxwidth + 30; // allow 30 pixels for radiobuttons
for ( i=0; (n=ourDrawFunctions[i].name) != 0; i++ ) {
- <a href="ntqradiobutton.html">TQRadioButton</a> *rb = new <a href="ntqradiobutton.html">TQRadioButton</a>( n, bgroup );
+ <a href="tqradiobutton.html">TQRadioButton</a> *rb = new <a href="tqradiobutton.html">TQRadioButton</a>( n, bgroup );
<a name="x1091"></a> rb-&gt;<a href="tqwidget.html#setGeometry">setGeometry</a>( 10, i*30+10, maxwidth, 30 );
maxheight += 30;
if ( i == 0 )
-<a name="x1082"></a> rb-&gt;<a href="ntqradiobutton.html#setChecked">setChecked</a>( TRUE );
+<a name="x1082"></a> rb-&gt;<a href="tqradiobutton.html#setChecked">setChecked</a>( TRUE );
}
maxheight += 10; // maxheight is now 10 pixels upper margin
@@ -256,7 +256,7 @@ private:
printer = new <a href="tqprinter.html">TQPrinter</a>;
// Create and setup the print button
- print = new <a href="ntqpushbutton.html">TQPushButton</a>( "Print...", bgroup );
+ print = new <a href="tqpushbutton.html">TQPushButton</a>( "Print...", bgroup );
<a name="x1081"></a> print-&gt;<a href="tqwidget.html#resize">resize</a>( 80, 30 );
<a name="x1093"></a><a name="x1080"></a> print-&gt;<a href="tqwidget.html#move">move</a>( maxwidth/2 - print-&gt;<a href="tqwidget.html#width">width</a>()/2, maxindex*30+20 );
<a href="tqobject.html#connect">connect</a>( print, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), TQ_SLOT(printIt()) );