Scribus
Open source desktop publishing at your fingertips
splash.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef SPLASHSCREEN_H
8 #define SPLASHSCREEN_H
9 
10 #include <QLabel>
11 #include <QSplashScreen>
12 #include <QPixmap>
13 #include <QString>
14 #include "scribusapi.h"
15 
16 
18 class SCRIBUS_API ScSplashScreen : public QSplashScreen
19 {
20  public:
25  ScSplashScreen ( const QPixmap & pixmap = QPixmap(), Qt::WindowFlags f = 0 );
26  ~ScSplashScreen() {};
32  void setStatus( const QString &message );
33 
34  protected:
35  void drawContents(QPainter *painter);
36 };
37 
38 #endif
39 
Scribus splash screen.
Definition: splash.h:18