src/splashscreen.h
Go to the documentation of this file.00001 #ifndef __SPLASHSCREEN_H__ 00002 #define __SPLASHSCREEN_H__ 00003 00004 00005 #include <qobject.h> 00006 #include <qwidget.h> 00007 #include <qlabel.h> 00008 00009 00010 class SplashScreen : public QObject 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 00016 SplashScreen(); 00017 ~SplashScreen(); 00018 00019 virtual bool eventFilter(QObject* obj, QEvent* e); 00020 00021 public slots: 00022 00023 void showMessage(const QString &message); 00024 00025 00026 private: 00027 00028 QWidget *m_splash; 00029 QLabel *m_message; 00030 00031 }; 00032 00033 00034 #endif