summaryrefslogtreecommitdiffstats
path: root/doc/html/tqsplashscreen.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqsplashscreen.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt-397b7afa.tar.gz
tqt-397b7afa.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqsplashscreen.html')
-rw-r--r--doc/html/tqsplashscreen.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqsplashscreen.html b/doc/html/tqsplashscreen.html
index 831fea0a8..138570743 100644
--- a/doc/html/tqsplashscreen.html
+++ b/doc/html/tqsplashscreen.html
@@ -82,17 +82,17 @@ following code snippet.
<p> <pre>
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> app( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> app( argc, argv );
<a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" );
TQSplashScreen *splash = new TQSplashScreen( pixmap );
splash-&gt;<a href="tqwidget.html#show">show</a>();
<a href="tqmainwindow.html">TQMainWindow</a> *mainWin = new <a href="tqmainwindow.html">TQMainWindow</a>;
...
- app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( mainWin );
+ app.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( mainWin );
mainWin-&gt;<a href="tqwidget.html#show">show</a>();
splash-&gt;<a href="#finish">finish</a>( mainWin );
delete splash;
- return app.<a href="ntqapplication.html#exec">exec</a>();
+ return app.<a href="tqapplication.html#exec">exec</a>();
}
</pre>
@@ -106,17 +106,17 @@ Alternatively, you can subclass TQSplashScreen and reimplement
<p> The user can hide the splash screen by clicking on it with the
mouse. Since the splash screen is typically displayed before the
event loop has started running, it is necessary to periodically
-call <a href="ntqapplication.html#processEvents">TQApplication::processEvents</a>() to receive the mouse clicks.
+call <a href="tqapplication.html#processEvents">TQApplication::processEvents</a>() to receive the mouse clicks.
<p> <pre>
<a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" );
TQSplashScreen *splash = new TQSplashScreen( pixmap );
splash-&gt;<a href="tqwidget.html#show">show</a>();
... // Loading some items
splash-&gt;<a href="#message">message</a>( "Loaded modules" );
- tqApp-&gt;<a href="ntqapplication.html#processEvents">processEvents</a>();
+ tqApp-&gt;<a href="tqapplication.html#processEvents">processEvents</a>();
... // Establishing connections
splash-&gt;<a href="#message">message</a>( "Established connections" );
- tqApp-&gt;<a href="ntqapplication.html#processEvents">processEvents</a>();
+ tqApp-&gt;<a href="tqapplication.html#processEvents">processEvents</a>();
</pre>
<p> <p>See also <a href="misc.html">Miscellaneous Classes</a>.
@@ -170,7 +170,7 @@ does not have any of the text drawn by <a href="#message">message</a>() calls.
<h3 class=fn>void <a name="repaint"></a>TQSplashScreen::repaint ()
</h3>
This overrides <a href="tqwidget.html#repaint">TQWidget::repaint</a>(). It differs from the standard
-repaint function in that it also calls <a href="ntqapplication.html#flush">TQApplication::flush</a>() to
+repaint function in that it also calls <a href="tqapplication.html#flush">TQApplication::flush</a>() to
ensure the updates are displayed, even when there is no event loop
present.