diff options
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/BootSplash.h')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/BootSplash.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/BootSplash.h b/src-qt5/core/lumina-desktop-unified/BootSplash.h new file mode 100644 index 00000000..f9812ff4 --- /dev/null +++ b/src-qt5/core/lumina-desktop-unified/BootSplash.h @@ -0,0 +1,31 @@ +#ifndef _LUMINA_DESKTOP_BOOT_SPLASHSCREEN_H +#define _LUMINA_DESKTOP_BOOT_SPLASHSCREEN_H + +#include <QWidget> +#include <QLabel> +#include <QProgressBar> +#include <QPixmap> +#include <QPoint> +#include <QApplication> +#include <QDesktopWidget> + +namespace Ui{ + class BootSplash; +}; + +class BootSplash : public QWidget{ + Q_OBJECT +private: + Ui::BootSplash *ui; + + void generateTipOfTheDay(); + +public: + BootSplash(); + ~BootSplash(){} + + void showScreen(QString loading); //update icon, text, and progress + void showText(QString txt); //will only update the text, not the icon/progress +}; + +#endif |