Main Page   Class Hierarchy   Compound List   File List   Compound Members  

SplashScreen.h

00001 /* SplashScreen.h
00002  *
00003  * Copyright (C) 2003 -- Sebastian Nowozin
00004  *
00005  * derived from QT 3.1 reference documentation
00006  *
00007  * Spank the screen once and hard.
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

Generated on Mon Feb 24 19:37:43 2003 by doxygen1.3-rc3