summaryrefslogtreecommitdiffstats
path: root/doc/html/buttongroups-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/buttongroups-example.html
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz
tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/buttongroups-example.html')
-rw-r--r--doc/html/buttongroups-example.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/buttongroups-example.html b/doc/html/buttongroups-example.html
index 5f9937544..36d6eb62a 100644
--- a/doc/html/buttongroups-example.html
+++ b/doc/html/buttongroups-example.html
@@ -89,7 +89,7 @@ protected slots:
#include "buttongroups.h"
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
-#include &lt;<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>&gt;
+#include &lt;<a href="tqbuttongroup-h.html">tqbuttongroup.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
#include &lt;<a href="tqradiobutton-h.html">tqradiobutton.h</a>&gt;
#include &lt;<a href="tqcheckbox-h.html">tqcheckbox.h</a>&gt;
@@ -113,9 +113,9 @@ protected slots:
// ------- first group
// Create an exclusive button group
- <a href="ntqbuttongroup.html">TQButtonGroup</a> *bgrp1 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 1 (exclusive)", this);
+ <a href="tqbuttongroup.html">TQButtonGroup</a> *bgrp1 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 1 (exclusive)", this);
box1-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( bgrp1 );
-<a name="x549"></a> bgrp1-&gt;<a href="ntqbuttongroup.html#setExclusive">setExclusive</a>( TRUE );
+<a name="x549"></a> bgrp1-&gt;<a href="tqbuttongroup.html#setExclusive">setExclusive</a>( TRUE );
// insert 3 radiobuttons
<a href="tqradiobutton.html">TQRadioButton</a> *rb11 = new <a href="tqradiobutton.html">TQRadioButton</a>( "&amp;Radiobutton 1", bgrp1 );
@@ -126,9 +126,9 @@ protected slots:
// ------- second group
// Create a non-exclusive buttongroup
- <a href="ntqbuttongroup.html">TQButtonGroup</a> *bgrp2 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 2 (non-exclusive)", this );
+ <a href="tqbuttongroup.html">TQButtonGroup</a> *bgrp2 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 2 (non-exclusive)", this );
box1-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( bgrp2 );
- bgrp2-&gt;<a href="ntqbuttongroup.html#setExclusive">setExclusive</a>( FALSE );
+ bgrp2-&gt;<a href="tqbuttongroup.html#setExclusive">setExclusive</a>( FALSE );
// insert 3 checkboxes
(void)new <a href="tqcheckbox.html">TQCheckBox</a>( "&amp;Checkbox 1", bgrp2 );
@@ -141,9 +141,9 @@ protected slots:
// ------------ third group
// create a buttongroup which is exclusive for radiobuttons and non-exclusive for all other buttons
- <a href="ntqbuttongroup.html">TQButtonGroup</a> *bgrp3 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 3 (Radiobutton-exclusive)", this );
+ <a href="tqbuttongroup.html">TQButtonGroup</a> *bgrp3 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Button Group 3 (Radiobutton-exclusive)", this );
box2-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( bgrp3 );
-<a name="x550"></a> bgrp3-&gt;<a href="ntqbuttongroup.html#setRadioButtonExclusive">setRadioButtonExclusive</a>( TRUE );
+<a name="x550"></a> bgrp3-&gt;<a href="tqbuttongroup.html#setRadioButtonExclusive">setRadioButtonExclusive</a>( TRUE );
// insert three radiobuttons
rb21 = new <a href="tqradiobutton.html">TQRadioButton</a>( "Rad&amp;iobutton 1", bgrp3 );
@@ -155,12 +155,12 @@ protected slots:
state = new <a href="tqcheckbox.html">TQCheckBox</a>( "E&amp;nable Radiobuttons", bgrp3 );
state-&gt;<a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE );
// ...and connect its TQ_SIGNAL clicked() with the TQ_SLOT slotChangeGrp3State()
- <a href="tqobject.html#connect">connect</a>( state, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( slotChangeGrp3State() ) );
+ <a href="tqobject.html#connect">connect</a>( state, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( slotChangeGrp3State() ) );
// ------------ fourth group
// create a groupbox which layouts its childs in a columns
- <a href="ntqgroupbox.html">TQGroupBox</a> *bgrp4 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Groupbox with normal buttons", this );
+ <a href="ntqgroupbox.html">TQGroupBox</a> *bgrp4 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Groupbox with normal buttons", this );
box2-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( bgrp4 );
// insert four pushbuttons...