diff options
author | Michele Calgaro <[email protected]> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/rangecontrols-example.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/rangecontrols-example.html')
-rw-r--r-- | doc/html/rangecontrols-example.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/rangecontrols-example.html b/doc/html/rangecontrols-example.html index a3c85cbc5..2d1ea92f9 100644 --- a/doc/html/rangecontrols-example.html +++ b/doc/html/rangecontrols-example.html @@ -59,7 +59,7 @@ class RangeControls : public <a href="ntqvbox.html">TQVBox</a> <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - RangeControls( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); + RangeControls( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); private: <a href="ntqcheckbox.html">TQCheckBox</a> *notches, *wrapping; @@ -92,7 +92,7 @@ private: #include <limits.h> -<a name="f436"></a>RangeControls::RangeControls( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) +<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="ntqhbox.html">TQHBox</a> *row1 = new <a href="ntqhbox.html">TQHBox</a>( this ); @@ -101,26 +101,26 @@ private: <a name="x1382"></a> cell2-><a href="ntqframe.html#setMargin">setMargin</a>( 10 ); <a name="x1381"></a> cell2-><a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken ); - (void)new <a href="ntqwidget.html">TQWidget</a>( cell2 ); + (void)new <a href="tqwidget.html">TQWidget</a>( cell2 ); <a href="ntqlabel.html">TQLabel</a> *label1 = new <a href="ntqlabel.html">TQLabel</a>( TQString( "Enter a value between\n%1 and %2:" ).arg( -INT_MAX ).arg( INT_MAX ), cell2 ); -<a name="x1391"></a><a name="x1383"></a> label1-><a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-><a href="ntqwidget.html#sizeHint">sizeHint</a>().height() ); +<a name="x1391"></a><a name="x1383"></a> label1-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() ); <a href="ntqspinbox.html">TQSpinBox</a> *sb1 = new <a href="ntqspinbox.html">TQSpinBox</a>( -INT_MAX, INT_MAX, 1, cell2 ); <a name="x1390"></a> sb1-><a href="ntqspinbox.html#setValue">setValue</a>( 0 ); <a href="ntqlabel.html">TQLabel</a> *label2 = new <a href="ntqlabel.html">TQLabel</a>( "Enter a zoom value:", cell2 ); - label2-><a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-><a href="ntqwidget.html#sizeHint">sizeHint</a>().height() ); + label2-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() ); <a href="ntqspinbox.html">TQSpinBox</a> *sb2 = new <a href="ntqspinbox.html">TQSpinBox</a>( 0, 1000, 10, cell2 ); <a name="x1389"></a> sb2-><a href="ntqspinbox.html#setSuffix">setSuffix</a>( " %" ); <a name="x1388"></a> sb2-><a href="ntqspinbox.html#setSpecialValueText">setSpecialValueText</a>( "Automatic" ); <a href="ntqlabel.html">TQLabel</a> *label3 = new <a href="ntqlabel.html">TQLabel</a>( "Enter a price:", cell2 ); - label3-><a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-><a href="ntqwidget.html#sizeHint">sizeHint</a>().height() ); + label3-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() ); <a href="ntqspinbox.html">TQSpinBox</a> *sb3 = new <a href="ntqspinbox.html">TQSpinBox</a>( 0, INT_MAX, 1, cell2 ); <a name="x1387"></a> sb3-><a href="ntqspinbox.html#setPrefix">setPrefix</a>( "$" ); sb3-><a href="ntqspinbox.html#setValue">setValue</a>( 355 ); - (void)new <a href="ntqwidget.html">TQWidget</a>( cell2 ); + (void)new <a href="tqwidget.html">TQWidget</a>( cell2 ); <a href="ntqhbox.html">TQHBox</a> *row2 = new <a href="ntqhbox.html">TQHBox</a>( this ); @@ -163,10 +163,10 @@ int main( int argc, char **argv ) <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); RangeControls rangecontrols; - rangecontrols.<a href="ntqwidget.html#resize">resize</a>( 500, 300 ); - rangecontrols.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Range Control Widgets" ); + rangecontrols.<a href="tqwidget.html#resize">resize</a>( 500, 300 ); + rangecontrols.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Range Control Widgets" ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &rangecontrols ); - rangecontrols.<a href="ntqwidget.html#show">show</a>(); + rangecontrols.<a href="tqwidget.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } |