00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 #ifndef SPLASHSCREEN_H
00011 #define SPLASHSCREEN_H
00012 
00013 #include <qpixmap.h>
00014 #include <qwidget.h>
00015 
00016 
00020 class
00021 SplashScreen : public QWidget
00022 {
00023         Q_OBJECT
00024 
00025 public:
00030         SplashScreen (const QPixmap &pm);
00031 
00038         void finish (QWidget *mainWin);
00039 
00042         void repaint (void);
00043 
00044 protected:
00047         void mousePressEvent (QMouseEvent *ev);
00048 
00049 private:
00052         QPixmap pix;
00053 };
00054 
00055 #endif