summaryrefslogtreecommitdiffstats
path: root/doc/html/buttongroups-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/buttongroups-example.html')
-rw-r--r--doc/html/buttongroups-example.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/buttongroups-example.html b/doc/html/buttongroups-example.html
index 36d6eb62a..80d6269a5 100644
--- a/doc/html/buttongroups-example.html
+++ b/doc/html/buttongroups-example.html
@@ -90,10 +90,10 @@ protected slots:
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.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="tqlayout-h.html">tqlayout.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;
-#include &lt;<a href="qgroupbox-h.html">ntqgroupbox.h</a>&gt;
+#include &lt;<a href="tqgroupbox-h.html">tqgroupbox.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
/*
@@ -106,15 +106,15 @@ protected slots:
: <a href="tqwidget.html">TQWidget</a>( parent, name )
{
// Create Widgets which allow easy layouting
- <a href="qvboxlayout.html">TQVBoxLayout</a> *vbox = new <a href="qvboxlayout.html">TQVBoxLayout</a>( this, 11, 6 );
- <a href="qhboxlayout.html">TQHBoxLayout</a> *box1 = new <a href="qhboxlayout.html">TQHBoxLayout</a>( vbox );
- <a href="qhboxlayout.html">TQHBoxLayout</a> *box2 = new <a href="qhboxlayout.html">TQHBoxLayout</a>( vbox );
+ <a href="tqvboxlayout.html">TQVBoxLayout</a> *vbox = new <a href="tqvboxlayout.html">TQVBoxLayout</a>( this, 11, 6 );
+ <a href="tqhboxlayout.html">TQHBoxLayout</a> *box1 = new <a href="tqhboxlayout.html">TQHBoxLayout</a>( vbox );
+ <a href="tqhboxlayout.html">TQHBoxLayout</a> *box2 = new <a href="tqhboxlayout.html">TQHBoxLayout</a>( vbox );
// ------- first group
// Create an exclusive button group
<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 );
+ box1-&gt;<a href="tqboxlayout.html#addWidget">addWidget</a>( bgrp1 );
<a name="x549"></a> bgrp1-&gt;<a href="tqbuttongroup.html#setExclusive">setExclusive</a>( TRUE );
// insert 3 radiobuttons
@@ -127,7 +127,7 @@ protected slots:
// Create a non-exclusive buttongroup
<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 );
+ box1-&gt;<a href="tqboxlayout.html#addWidget">addWidget</a>( bgrp2 );
bgrp2-&gt;<a href="tqbuttongroup.html#setExclusive">setExclusive</a>( FALSE );
// insert 3 checkboxes
@@ -142,7 +142,7 @@ protected slots:
// create a buttongroup which is exclusive for radiobuttons and non-exclusive for all other buttons
<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 );
+ box2-&gt;<a href="tqboxlayout.html#addWidget">addWidget</a>( bgrp3 );
<a name="x550"></a> bgrp3-&gt;<a href="tqbuttongroup.html#setRadioButtonExclusive">setRadioButtonExclusive</a>( TRUE );
// insert three radiobuttons
@@ -160,8 +160,8 @@ protected slots:
// ------------ fourth group
// create a groupbox which layouts its childs in a columns
- <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 );
+ <a href="tqgroupbox.html">TQGroupBox</a> *bgrp4 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Groupbox with normal buttons", this );
+ box2-&gt;<a href="tqboxlayout.html#addWidget">addWidget</a>( bgrp4 );
// insert four pushbuttons...
(void)new <a href="tqpushbutton.html">TQPushButton</a>( "&amp;Push Button", bgrp4, "push" );