summaryrefslogtreecommitdiffstats
path: root/doc/html/cursor-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/cursor-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/cursor-example.html')
-rw-r--r--doc/html/cursor-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/cursor-example.html b/doc/html/cursor-example.html
index 2403c27f3..0d7712e39 100644
--- a/doc/html/cursor-example.html
+++ b/doc/html/cursor-example.html
@@ -91,7 +91,7 @@ static unsigned char cm_bits[] = { // cursor bitmap mask
// The CursorView contains many labels with different cursors.
//
-class CursorView : public <a href="ntqwidget.html">TQWidget</a> // cursor view
+class CursorView : public <a href="tqwidget.html">TQWidget</a> // cursor view
{
public:
CursorView();
@@ -136,7 +136,7 @@ CursorView::CursorView() // construct view
for ( int y=0; y&lt;4; y++ ) { // create the small labels
for ( int x=0; x&lt;4; x++ ) {
label = new <a href="ntqlabel.html">TQLabel</a>( this );
-<a name="x1121"></a> label-&gt;<a href="ntqwidget.html#setCursor">setCursor</a>( TQCursor( list[i].shape ) );
+<a name="x1121"></a> label-&gt;<a href="tqwidget.html#setCursor">setCursor</a>( TQCursor( list[i].shape ) );
<a name="x1119"></a> label-&gt;<a href="ntqlabel.html#setText">setText</a>( list[i].name );
<a name="x1118"></a> label-&gt;<a href="ntqlabel.html#setAlignment">setAlignment</a>( AlignCenter );
<a name="x1115"></a> label-&gt;<a href="ntqframe.html#setMargin">setMargin</a>( 10 );
@@ -148,7 +148,7 @@ CursorView::CursorView() // construct view
label = new <a href="ntqlabel.html">TQLabel</a>( this );
- label-&gt;<a href="ntqwidget.html#setCursor">setCursor</a>( TQCursor( list[i].shape ) );
+ label-&gt;<a href="tqwidget.html#setCursor">setCursor</a>( TQCursor( list[i].shape ) );
label-&gt;<a href="ntqlabel.html#setText">setText</a>( list[i].name );
label-&gt;<a href="ntqlabel.html#setAlignment">setAlignment</a>( AlignCenter );
label-&gt;<a href="ntqframe.html#setMargin">setMargin</a>( 10 );
@@ -162,7 +162,7 @@ CursorView::CursorView() // construct view
<a href="ntqcursor.html">TQCursor</a> custom( cb, cm ); // create bitmap cursor
label = new <a href="ntqlabel.html">TQLabel</a>( this ); // create the big label
- label-&gt;<a href="ntqwidget.html#setCursor">setCursor</a>( custom );
+ label-&gt;<a href="tqwidget.html#setCursor">setCursor</a>( custom );
label-&gt;<a href="ntqlabel.html#setText">setText</a>( "Custom bitmap cursor" );
label-&gt;<a href="ntqlabel.html#setAlignment">setAlignment</a>( AlignCenter );
label-&gt;<a href="ntqframe.html#setMargin">setMargin</a>( 10 );
@@ -181,8 +181,8 @@ int main( int argc, char **argv )
<a href="ntqapplication.html">TQApplication</a> a( argc, argv ); // application object
CursorView v; // cursor view
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;v );
- v.<a href="ntqwidget.html#setCaption">setCaption</a>("TQt Example - Cursors");
- v.<a href="ntqwidget.html#show">show</a>();
+ v.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Cursors");
+ v.<a href="tqwidget.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>