#ifndef _LUMINA_DESKTOP_BOOT_SPLASHSCREEN_H #define _LUMINA_DESKTOP_BOOT_SPLASHSCREEN_H #include #include #include #include #include #include #include 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