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/tutorial2-09.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/tutorial2-09.html')
-rw-r--r-- | doc/html/tutorial2-09.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tutorial2-09.html b/doc/html/tutorial2-09.html index 4f86c92ef..f14160781 100644 --- a/doc/html/tutorial2-09.html +++ b/doc/html/tutorial2-09.html @@ -54,8 +54,8 @@ apply to all data sets in one place. <a href="tqcombobox.html">TQComboBox</a> *chartTypeComboBox; <a href="tqpushbutton.html">TQPushButton</a> *fontPushButton; <a href="tqlabel.html">TQLabel</a> *fontTextLabel; - <a href="ntqframe.html">TQFrame</a> *addValuesFrame; - <a href="ntqbuttongroup.html">TQButtonGroup</a> *addValuesButtonGroup; + <a href="tqframe.html">TQFrame</a> *addValuesFrame; + <a href="tqbuttongroup.html">TQButtonGroup</a> *addValuesButtonGroup; <a href="tqradiobutton.html">TQRadioButton</a> *noRadioButton; <a href="tqradiobutton.html">TQRadioButton</a> *yesRadioButton; <a href="tqradiobutton.html">TQRadioButton</a> *asPercentageRadioButton; @@ -151,12 +151,12 @@ vertical layout. label. The font button is straight-forward. We add a spacer to improve the appearance. The font text label is initially empty (since we don't know what font the user is using). -<p> <pre> addValuesFrame = new <a href="ntqframe.html">TQFrame</a>( this ); - <a name="x2640"></a> addValuesFrame-><a href="ntqframe.html#setFrameShape">setFrameShape</a>( TQFrame::StyledPanel ); - <a name="x2639"></a> addValuesFrame-><a href="ntqframe.html#setFrameShadow">setFrameShadow</a>( TQFrame::Sunken ); +<p> <pre> addValuesFrame = new <a href="tqframe.html">TQFrame</a>( this ); + <a name="x2640"></a> addValuesFrame-><a href="tqframe.html#setFrameShape">setFrameShape</a>( TQFrame::StyledPanel ); + <a name="x2639"></a> addValuesFrame-><a href="tqframe.html#setFrameShadow">setFrameShadow</a>( TQFrame::Sunken ); addValuesFrameLayout = new <a href="qvboxlayout.html">TQVBoxLayout</a>( addValuesFrame, 11, 6 ); - addValuesButtonGroup = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( "Show Values", addValuesFrame ); + addValuesButtonGroup = new <a href="tqbuttongroup.html">TQButtonGroup</a>( "Show Values", addValuesFrame ); <a name="x2641"></a> addValuesButtonGroup-><a href="ntqgroupbox.html#setColumnLayout">setColumnLayout</a>(0, TQt::Vertical ); <a name="x2647"></a> addValuesButtonGroup-><a href="tqwidget.html#layout">layout</a>()->setSpacing( 6 ); addValuesButtonGroup-><a href="tqwidget.html#layout">layout</a>()->setMargin( 11 ); @@ -185,9 +185,9 @@ create the radio buttons, making "No" the default. <p> The decimal places label and spin box are laid out just like the other horizontal layouts, and the buttons are laid out in a very similar way to the buttons in the set data form. -<p> <pre> <a href="tqobject.html#connect">connect</a>( fontPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( chooseFont() ) ); - <a href="tqobject.html#connect">connect</a>( okPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#accept">accept</a>() ) ); - <a href="tqobject.html#connect">connect</a>( cancelPushButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#reject">reject</a>() ) ); +<p> <pre> <a href="tqobject.html#connect">connect</a>( fontPushButton, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( chooseFont() ) ); + <a href="tqobject.html#connect">connect</a>( okPushButton, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#accept">accept</a>() ) ); + <a href="tqobject.html#connect">connect</a>( cancelPushButton, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( <a href="tqdialog.html#reject">reject</a>() ) ); </pre> <p> We only need three connections: <ol type=1> |