CCIMXDesktop
 
Loading...
Searching...
No Matches
CCIMX_DesktopSplashWindow.h
1#ifndef CCIMX_DESKTOPSPLASHWINDOW_H
2#define CCIMX_DESKTOPSPLASHWINDOW_H
3
4#include <QSplashScreen>
5
7class QProgressBar;
8
13class CCIMX_DesktopSplashWindow : public QSplashScreen {
14 Q_OBJECT
15public:
21 DesktopMainWindow* holdingWindow);
25 void close();
26private slots:
32 void handle_accessment(const QString& message, const int value);
33
34protected:
39 void drawContents(QPainter* painter) override;
40 QProgressBar* progressBar;
41
42private:
43 DesktopMainWindow* holdingWindow;
44};
45
46#endif // CCIMX_DESKTOPSPLASHWINDOW_H
The CCIMX_DesktopSplashWindow class class handles the init stage displays.
Definition CCIMX_DesktopSplashWindow.h:13
void drawContents(QPainter *painter) override
drawContents
Definition CCIMX_DesktopSplashWindow.cpp:33
void close()
close called when the init comes to the end
Definition CCIMX_DesktopSplashWindow.cpp:18
QProgressBar * progressBar
progress sessions
Definition CCIMX_DesktopSplashWindow.h:40
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:33