📄 qsplashscreen.3qt
字号:
'\" t.TH QSplashScreen 3qt "10 November 2003" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQSplashScreen \- Splash screen that can be shown during application startup.SH SYNOPSIS\fC#include <qsplashscreen.h>\fR.PPInherits QWidget..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQSplashScreen\fR ( const QPixmap & pixmap = QPixmap ( ), WFlags f = 0 )".br.ti -1c.BI "virtual \fB~QSplashScreen\fR ()".br.ti -1c.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap )".br.ti -1c.BI "QPixmap * \fBpixmap\fR () const".br.ti -1c.BI "void \fBfinish\fR ( QWidget * mainWin )".br.ti -1c.BI "void \fBrepaint\fR ()".br.in -1c.SS "Public Slots".in +1c.ti -1c.BI "void \fBmessage\fR ( const QString & message, int alignment = AlignLeft, const QColor & color = black )".br.ti -1c.BI "void \fBclear\fR ()".br.in -1c.SS "Signals".in +1c.ti -1c.BI "void \fBmessageChanged\fR ( const QString & message )".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "virtual void \fBdrawContents\fR ( QPainter * painter )".br.in -1c.SH DESCRIPTIONThe QSplashScreen widget provides a splash screen that can be shown during application startup..PPA 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..PPThe splash screen appears centered on the screen, on top of all other windows..PPSome X11 window managers do not support the "stays on top" flag. A solution is to set up a timer that periodically calls raise() on the splash screen to simulate the "stays on top" effect..PPThe most common usage is to show a splash screen before the main widget is displayed on the screen. This is illustrated in the following code snippet..PP.nf.br int main( int argc, char **argv ).br {.br QApplication app( argc, argv );.br QPixmap pixmap( "splash.png" );.br QSplashScreen *splash = new QSplashScreen( pixmap );.br splash->show();.br QMainWindow *mainWin = new QMainWindow;.br ....br app.setMainWidget( mainWin );.br mainWin->show();.br splash->finish( mainWin );.br delete splash;.br return app.exec();.br }.br.fi.PPIt 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()..PPThe 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.nf.br QSplashScreen *splash = new QSplashScreen( "splash.png" );.br splash->show();.br ... // Loading some items.br splash->message( "Loaded modules" );.br qApp->processEvents();.br ... // Establishing connections.br splash->message( "Established connections" );.br qApp->processEvents();.br.fi.PPSee also Miscellaneous Classes..SH MEMBER FUNCTION DOCUMENTATION.SH "QSplashScreen::QSplashScreen ( const QPixmap & pixmap = QPixmap ( ), WFlags f = 0 )"Construct a splash screen that will display the \fIpixmap\fR..PPThere should be no need to set the widget flags, \fIf\fR, except perhaps WDestructiveClose..SH "QSplashScreen::~QSplashScreen ()\fC [virtual]\fR"Destructor..SH "void QSplashScreen::clear ()\fC [slot]\fR"Removes the message being displayed on the splash screen.PPSee also message()..SH "void QSplashScreen::drawContents ( QPainter * 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 ( QWidget * mainWin )"Makes the splash screen wait until the widget \fImainWin\fR is displayed before calling close() on itself..SH "void QSplashScreen::message ( const QString & message, int alignment = AlignLeft, const QColor & 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..PPSee also Qt::AlignmentFlags and clear()..SH "void QSplashScreen::messageChanged ( const QString & 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..PPSee also message() and clear()..SH "QPixmap * 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 QWidget::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 )"Sets the pixmap that will be used as the splash screen's image to\fIpixmap\fR..SH "SEE ALSO".BR http://doc.trolltech.com/qsplashscreen.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qsplashscreen.3qt) and the Qtversion (3.2.3).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -