home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / splash.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-03-05  |  991 b   |  36 lines

  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 <QSplashScreen>
  11. #include <QPixmap>
  12. #include <QString>
  13. #include "scribusapi.h"
  14.  
  15.  
  16. //! \brief Scribus splash screen
  17. class SCRIBUS_API SplashScreen : public QSplashScreen
  18. {
  19. public:
  20.     /*!
  21.     \author Franz Schmid
  22.     \brief Constructor for SplashScreen
  23.      */
  24.     SplashScreen ( const QPixmap & pixmap = QPixmap(), Qt::WindowFlags f = 0 );
  25.     ~SplashScreen() {};
  26.     /*!
  27.     \author Franz Schmid
  28.     \brief Sets new status on SplashScreen and calls for a SplashScreen::repaint afterwards.
  29.     \param message const QString& message to display as actions are performed on startup when SplashScreen is displayed.
  30.     */
  31.     void setStatus( const QString &message );
  32. };
  33.  
  34. #endif
  35.  
  36.