summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsplashscreen.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-09 14:57:42 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/man/man3/tqsplashscreen.3qt
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqsplashscreen.3qt')
-rw-r--r--doc/man/man3/tqsplashscreen.3qt40
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/man/man3/tqsplashscreen.3qt b/doc/man/man3/tqsplashscreen.3qt
index b4c40bbab..260f8e321 100644
--- a/doc/man/man3/tqsplashscreen.3qt
+++ b/doc/man/man3/tqsplashscreen.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QSplashScreen 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQSplashScreen 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,19 +7,19 @@
.ad l
.nh
.SH NAME
-QSplashScreen \- Splash screen that can be shown during application startup
+TQSplashScreen \- Splash screen that can be shown during application startup
.SH SYNOPSIS
-\fC#include <ntqsplashscreen.h>\fR
+\fC#include <tqsplashscreen.h>\fR
.PP
Inherits TQWidget.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQSplashScreen\fR ( const TQPixmap & pixmap = TQPixmap ( ), WFlags f = 0 )"
+.BI "\fBTQSplashScreen\fR ( const TQPixmap & pixmap = TQPixmap ( ), WFlags f = 0 )"
.br
.ti -1c
-.BI "virtual \fB~QSplashScreen\fR ()"
+.BI "virtual \fB~TQSplashScreen\fR ()"
.br
.ti -1c
.BI "void \fBsetPixmap\fR ( const TQPixmap & pixmap )"
@@ -56,7 +56,7 @@ Inherits TQWidget.
.br
.in -1c
.SH DESCRIPTION
-The QSplashScreen widget provides a splash screen that can be shown during application startup.
+The TQSplashScreen widget provides a splash screen that can be shown during application startup.
.PP
A splash screen is a widget that is usually displayed when an application is being started. Splash screens are often used for applications that have long start up times (e.g. database or networking applications that take time to establish connections) to provide the user with feedback that the application is loading.
.PP
@@ -76,7 +76,7 @@ The most common usage is to show a splash screen before the main widget is displ
.br
TQPixmap pixmap( "splash.png" );
.br
- QSplashScreen *splash = new QSplashScreen( pixmap );
+ TQSplashScreen *splash = new TQSplashScreen( pixmap );
.br
splash->show();
.br
@@ -98,7 +98,7 @@ The most common usage is to show a splash screen before the main widget is displ
.br
.fi
.PP
-It is sometimes useful to update the splash screen with messages, for example, announcing connections established or modules loaded as the application starts up. QSplashScreen supports this with the message() function. If you wish to do your own drawing you can get a pointer to the pixmap used in the splash screen with pixmap(). Alternatively, you can subclass QSplashScreen and reimplement drawContents().
+It is sometimes useful to update the splash screen with messages, for example, announcing connections established or modules loaded as the application starts up. TQSplashScreen supports this with the message() function. If you wish to do your own drawing you can get a pointer to the pixmap used in the splash screen with pixmap(). Alternatively, you can subclass TQSplashScreen and reimplement drawContents().
.PP
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 QApplication::processEvents() to receive the mouse clicks.
.PP
@@ -106,7 +106,7 @@ The user can hide the splash screen by clicking on it with the mouse. Since the
.br
TQPixmap pixmap( "splash.png" );
.br
- QSplashScreen *splash = new QSplashScreen( pixmap );
+ TQSplashScreen *splash = new TQSplashScreen( pixmap );
.br
splash->show();
.br
@@ -126,38 +126,38 @@ The user can hide the splash screen by clicking on it with the mouse. Since the
.PP
See also Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QSplashScreen::QSplashScreen ( const TQPixmap & pixmap = TQPixmap ( ), WFlags f = 0 )"
+.SH "TQSplashScreen::TQSplashScreen ( const TQPixmap & pixmap = TQPixmap ( ), WFlags f = 0 )"
Construct a splash screen that will display the \fIpixmap\fR.
.PP
There should be no need to set the widget flags, \fIf\fR, except perhaps WDestructiveClose or WStyle_StaysOnTop.
-.SH "QSplashScreen::~QSplashScreen ()\fC [virtual]\fR"
+.SH "TQSplashScreen::~TQSplashScreen ()\fC [virtual]\fR"
Destructor.
-.SH "void QSplashScreen::clear ()\fC [slot]\fR"
+.SH "void TQSplashScreen::clear ()\fC [slot]\fR"
Removes the message being displayed on the splash screen
.PP
See also message().
-.SH "void QSplashScreen::drawContents ( TQPainter * painter )\fC [virtual protected]\fR"
+.SH "void TQSplashScreen::drawContents ( TQPainter * painter )\fC [virtual protected]\fR"
Draw the contents of the splash screen using painter \fIpainter\fR. The default implementation draws the message passed by message(). Reimplement this function if you want to do your own drawing on the splash screen.
-.SH "void QSplashScreen::finish ( TQWidget * mainWin )"
+.SH "void TQSplashScreen::finish ( TQWidget * mainWin )"
Makes the splash screen wait until the widget \fImainWin\fR is displayed before calling close() on itself.
-.SH "void QSplashScreen::message ( const TQString & message, int alignment = AlignLeft, const TQColor & color = black )\fC [slot]\fR"
+.SH "void TQSplashScreen::message ( const TQString & message, int alignment = AlignLeft, const TQColor & color = black )\fC [slot]\fR"
Draws the \fImessage\fR text onto the splash screen with color \fIcolor\fR and aligns the text according to the flags in \fIalignment\fR.
.PP
See also TQt::AlignmentFlags and clear().
-.SH "void QSplashScreen::messageChanged ( const TQString & message )\fC [signal]\fR"
+.SH "void TQSplashScreen::messageChanged ( const TQString & message )\fC [signal]\fR"
This signal is emitted when the message on the splash screen changes. \fImessage\fR is the new message and is a null-string when the message has been removed.
.PP
See also message() and clear().
-.SH "TQPixmap * QSplashScreen::pixmap () const"
+.SH "TQPixmap * TQSplashScreen::pixmap () const"
Returns the pixmap that is used in the splash screen. The image does not have any of the text drawn by message() calls.
-.SH "void QSplashScreen::repaint ()"
+.SH "void TQSplashScreen::repaint ()"
This overrides TQWidget::repaint(). It differs from the standard repaint function in that it also calls QApplication::flush() to ensure the updates are displayed, even when there is no event loop present.
-.SH "void QSplashScreen::setPixmap ( const TQPixmap & pixmap )"
+.SH "void TQSplashScreen::setPixmap ( const TQPixmap & pixmap )"
Sets the pixmap that will be used as the splash screen's image to
\fIpixmap\fR.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqsplashscreen.html
+.BR http://doc.trolltech.com/tqsplashscreen.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the