diff options
author | Michele Calgaro <[email protected]> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqsplashscreen.3qt | |
parent | 14c414378d96f7463b989384f4a0e5dd76632b6d (diff) | |
download | tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip |
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqsplashscreen.3qt')
-rw-r--r-- | doc/man/man3/tqsplashscreen.3qt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqsplashscreen.3qt b/doc/man/man3/tqsplashscreen.3qt index 6c4d8bbc8..b4c40bbab 100644 --- a/doc/man/man3/tqsplashscreen.3qt +++ b/doc/man/man3/tqsplashscreen.3qt @@ -16,16 +16,16 @@ Inherits TQWidget. .SS "Public Members" .in +1c .ti -1c -.BI "\fBQSplashScreen\fR ( const QPixmap & pixmap = QPixmap ( ), WFlags f = 0 )" +.BI "\fBQSplashScreen\fR ( const TQPixmap & pixmap = TQPixmap ( ), WFlags f = 0 )" .br .ti -1c .BI "virtual \fB~QSplashScreen\fR ()" .br .ti -1c -.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap )" +.BI "void \fBsetPixmap\fR ( const TQPixmap & pixmap )" .br .ti -1c -.BI "QPixmap * \fBpixmap\fR () const" +.BI "TQPixmap * \fBpixmap\fR () const" .br .ti -1c .BI "void \fBfinish\fR ( TQWidget * mainWin )" @@ -74,7 +74,7 @@ The most common usage is to show a splash screen before the main widget is displ .br QApplication app( argc, argv ); .br - QPixmap pixmap( "splash.png" ); + TQPixmap pixmap( "splash.png" ); .br QSplashScreen *splash = new QSplashScreen( pixmap ); .br @@ -104,7 +104,7 @@ The user can hide the splash screen by clicking on it with the mouse. Since the .PP .nf .br - QPixmap pixmap( "splash.png" ); + TQPixmap pixmap( "splash.png" ); .br QSplashScreen *splash = new QSplashScreen( pixmap ); .br @@ -126,7 +126,7 @@ 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 QPixmap & pixmap = QPixmap ( ), WFlags f = 0 )" +.SH "QSplashScreen::QSplashScreen ( 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. @@ -148,11 +148,11 @@ See also TQt::AlignmentFlags and clear(). 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 "QPixmap * QSplashScreen::pixmap () const" +.SH "TQPixmap * QSplashScreen::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 ()" 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 QPixmap & pixmap )" +.SH "void QSplashScreen::setPixmap ( const TQPixmap & pixmap )" Sets the pixmap that will be used as the splash screen's image to \fIpixmap\fR. |