diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/buttongroups-example.html | |
parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
download | tqt3-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.html | 18 |
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 <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> -#include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> +#include <<a href="tqbuttongroup-h.html">tqbuttongroup.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <<a href="tqradiobutton-h.html">tqradiobutton.h</a>> #include <<a href="tqcheckbox-h.html">tqcheckbox.h</a>> @@ -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-><a href="qboxlayout.html#addWidget">addWidget</a>( bgrp1 ); -<a name="x549"></a> bgrp1-><a href="ntqbuttongroup.html#setExclusive">setExclusive</a>( TRUE ); +<a name="x549"></a> bgrp1-><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>( "&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-><a href="qboxlayout.html#addWidget">addWidget</a>( bgrp2 ); - bgrp2-><a href="ntqbuttongroup.html#setExclusive">setExclusive</a>( FALSE ); + bgrp2-><a href="tqbuttongroup.html#setExclusive">setExclusive</a>( FALSE ); // insert 3 checkboxes (void)new <a href="tqcheckbox.html">TQCheckBox</a>( "&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-><a href="qboxlayout.html#addWidget">addWidget</a>( bgrp3 ); -<a name="x550"></a> bgrp3-><a href="ntqbuttongroup.html#setRadioButtonExclusive">setRadioButtonExclusive</a>( TRUE ); +<a name="x550"></a> bgrp3-><a href="tqbuttongroup.html#setRadioButtonExclusive">setRadioButtonExclusive</a>( TRUE ); // insert three radiobuttons rb21 = new <a href="tqradiobutton.html">TQRadioButton</a>( "Rad&iobutton 1", bgrp3 ); @@ -155,12 +155,12 @@ protected slots: state = new <a href="tqcheckbox.html">TQCheckBox</a>( "E&nable Radiobuttons", bgrp3 ); state-><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-><a href="qboxlayout.html#addWidget">addWidget</a>( bgrp4 ); // insert four pushbuttons... |