HP Views Designer Assistant  1.0.0
TFG - Alberto Gutierrez Perez - Universidad de Valladolid
splashscreen.h
1 #ifndef SPLASHSCREEN_H
2 #define SPLASHSCREEN_H
3 
4 #include <QSplashScreen>
5 
9 class SplashScreen : public QSplashScreen
10 {
11 public:
12 
17  SplashScreen(const QPixmap& pixmap);
18  ~SplashScreen();
19 
24  void updateProgress(QPixmap snewpPixmap);
25 };
26 
27 #endif // SPLASHSCREEN_H
The SplashScreen class. Shows initial animation.
Definition: splashscreen.h:9
void updateProgress(QPixmap snewpPixmap)
updateProgress Change the image to show in the animation.
Definition: splashscreen.cpp:17
SplashScreen(const QPixmap &pixmap)
SplashScreen constructor.
Definition: splashscreen.cpp:6