diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-16 19:11:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-16 19:11:00 +0900 |
commit | 82ecd83484c9fa1ede059986ab771e74e33e68ef (patch) | |
tree | d0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/rangecontrols-example.html | |
parent | c55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff) | |
download | tqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.tar.gz tqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.zip |
Rename layout nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/rangecontrols-example.html')
-rw-r--r-- | doc/html/rangecontrols-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/rangecontrols-example.html b/doc/html/rangecontrols-example.html index ab801211d..226dd2c79 100644 --- a/doc/html/rangecontrols-example.html +++ b/doc/html/rangecontrols-example.html @@ -50,11 +50,11 @@ are supported by TQt: dials, spin boxes and sliders. #ifndef RANGECONTROLS_H #define RANGECONTROLS_H -#include <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> class TQCheckBox; -class RangeControls : public <a href="ntqvbox.html">TQVBox</a> +class RangeControls : public <a href="tqvbox.html">TQVBox</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> @@ -82,7 +82,7 @@ private: #include "rangecontrols.h" -#include <<a href="qhbox-h.html">ntqhbox.h</a>> +#include <<a href="tqhbox-h.html">tqhbox.h</a>> #include <<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>> #include <<a href="tqspinbox-h.html">tqspinbox.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> @@ -93,11 +93,11 @@ private: #include <limits.h> <a name="f436"></a>RangeControls::RangeControls( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { - <a href="ntqhbox.html">TQHBox</a> *row1 = new <a href="ntqhbox.html">TQHBox</a>( this ); + <a href="tqhbox.html">TQHBox</a> *row1 = new <a href="tqhbox.html">TQHBox</a>( this ); - <a href="ntqvbox.html">TQVBox</a> *cell2 = new <a href="ntqvbox.html">TQVBox</a>( row1 ); + <a href="tqvbox.html">TQVBox</a> *cell2 = new <a href="tqvbox.html">TQVBox</a>( row1 ); <a name="x1382"></a> cell2-><a href="tqframe.html#setMargin">setMargin</a>( 10 ); <a name="x1381"></a> cell2-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken ); @@ -122,9 +122,9 @@ private: (void)new <a href="tqwidget.html">TQWidget</a>( cell2 ); - <a href="ntqhbox.html">TQHBox</a> *row2 = new <a href="ntqhbox.html">TQHBox</a>( this ); + <a href="tqhbox.html">TQHBox</a> *row2 = new <a href="tqhbox.html">TQHBox</a>( this ); - <a href="ntqvbox.html">TQVBox</a> *cell3 = new <a href="ntqvbox.html">TQVBox</a>( row2 ); + <a href="tqvbox.html">TQVBox</a> *cell3 = new <a href="tqvbox.html">TQVBox</a>( row2 ); cell3-><a href="tqframe.html#setMargin">setMargin</a>( 10 ); cell3-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken ); <a href="tqslider.html">TQSlider</a> *hslider = new <a href="tqslider.html">TQSlider</a>( 0, 64, 1, 33, TQt::Horizontal, cell3, "horizontal_s" ); @@ -133,7 +133,7 @@ private: <a name="x1385"></a> lcd2-><a href="tqlcdnumber.html#setSegmentStyle">setSegmentStyle</a>( TQLCDNumber::Filled ); <a name="x1386"></a> <a href="tqobject.html#connect">connect</a>( hslider, TQ_SIGNAL( <a href="tqslider.html#valueChanged">valueChanged</a>( int ) ), lcd2, TQ_SLOT( <a href="tqlcdnumber.html#display">display</a>( int ) ) ); - <a href="ntqhbox.html">TQHBox</a> *cell4 = new <a href="ntqhbox.html">TQHBox</a>( row2 ); + <a href="tqhbox.html">TQHBox</a> *cell4 = new <a href="tqhbox.html">TQHBox</a>( row2 ); cell4-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken ); cell4-><a href="tqframe.html#setMargin">setMargin</a>( 10 ); <a href="tqslider.html">TQSlider</a> *vslider = new <a href="tqslider.html">TQSlider</a>( 0, 64, 1, 8, TQt::Vertical, cell4 ); |