diff options
Diffstat (limited to 'doc/html/ntqsplashscreen.html')
-rw-r--r-- | doc/html/ntqsplashscreen.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/ntqsplashscreen.html b/doc/html/ntqsplashscreen.html index f3ff426a5..ad1118354 100644 --- a/doc/html/ntqsplashscreen.html +++ b/doc/html/ntqsplashscreen.html @@ -84,7 +84,7 @@ following code snippet. int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> app( argc, argv ); - <a href="ntqpixmap.html">TQPixmap</a> pixmap( "splash.png" ); + <a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" ); TQSplashScreen *splash = new TQSplashScreen( pixmap ); splash-><a href="tqwidget.html#show">show</a>(); <a href="tqmainwindow.html">TQMainWindow</a> *mainWin = new <a href="tqmainwindow.html">TQMainWindow</a>; @@ -109,7 +109,7 @@ 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. <p> <pre> - <a href="ntqpixmap.html">TQPixmap</a> pixmap( "splash.png" ); + <a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" ); TQSplashScreen *splash = new TQSplashScreen( pixmap ); splash-><a href="tqwidget.html#show">show</a>(); ... // Loading some items @@ -123,7 +123,7 @@ call <a href="ntqapplication.html#processEvents">TQApplication::processEvents</a <p> <p>See also <a href="misc.html">Miscellaneous Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQSplashScreen"></a>TQSplashScreen::TQSplashScreen ( const <a href="ntqpixmap.html">TQPixmap</a> & pixmap = TQPixmap ( ), WFlags f = 0 ) +<h3 class=fn><a name="TQSplashScreen"></a>TQSplashScreen::TQSplashScreen ( const <a href="tqpixmap.html">TQPixmap</a> & pixmap = TQPixmap ( ), WFlags f = 0 ) </h3> Construct a splash screen that will display the <em>pixmap</em>. <p> There should be no need to set the widget flags, <em>f</em>, except @@ -163,7 +163,7 @@ changes. <em>message</em> is the new message and is a null-string when the message has been removed. <p> <p>See also <a href="#message">message</a>() and <a href="#clear">clear</a>(). -<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> * <a name="pixmap"></a>TQSplashScreen::pixmap () const +<h3 class=fn><a href="tqpixmap.html">TQPixmap</a> * <a name="pixmap"></a>TQSplashScreen::pixmap () const </h3> Returns the pixmap that is used in the splash screen. The image does not have any of the text drawn by <a href="#message">message</a>() calls. @@ -175,7 +175,7 @@ repaint function in that it also calls <a href="ntqapplication.html#flush">TQApp ensure the updates are displayed, even when there is no event loop present. -<h3 class=fn>void <a name="setPixmap"></a>TQSplashScreen::setPixmap ( const <a href="ntqpixmap.html">TQPixmap</a> & pixmap ) +<h3 class=fn>void <a name="setPixmap"></a>TQSplashScreen::setPixmap ( const <a href="tqpixmap.html">TQPixmap</a> & pixmap ) </h3> Sets the pixmap that will be used as the splash screen's image to <em>pixmap</em>. |