summaryrefslogtreecommitdiffstats
path: root/doc/html/rangecontrols-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-02 23:07:22 +0900
committerMichele Calgaro <[email protected]>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/rangecontrols-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-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.html20
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 &lt;limits.h&gt;
-<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-&gt;<a href="ntqframe.html#setMargin">setMargin</a>( 10 );
<a name="x1381"></a> cell2-&gt;<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-&gt;<a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<a href="ntqwidget.html#sizeHint">sizeHint</a>().height() );
+<a name="x1391"></a><a name="x1383"></a> label1-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<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-&gt;<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-&gt;<a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<a href="ntqwidget.html#sizeHint">sizeHint</a>().height() );
+ label2-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<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-&gt;<a href="ntqspinbox.html#setSuffix">setSuffix</a>( " %" );
<a name="x1388"></a> sb2-&gt;<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-&gt;<a href="ntqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-&gt;<a href="ntqwidget.html#sizeHint">sizeHint</a>().height() );
+ label3-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-&gt;<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-&gt;<a href="ntqspinbox.html#setPrefix">setPrefix</a>( "$" );
sb3-&gt;<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>( &amp;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>();
}