#ifndef BOOTSPLASHSCREEN_H #define BOOTSPLASHSCREEN_H #include #include #include #include #include class BootSplashScreen : public QSplashScreen { Q_OBJECT public: BootSplashScreen(QPixmap& pixmap, int elapseTime); ~BootSplashScreen(); private: QProgressBar* mProgressBar; int mElapseTime; private: void SetProgress(); private: void slotUpdateProgress(); }; #endif // BOOTSPLASHSCREEN_H