#ifndef APPSTARTUP_H #define APPSTARTUP_H #include #include "AppStartUpData.h" class AppStartUp : public AppStartUpForm { Q_OBJECT public: AppStartUp( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~AppStartUp(); public slots: ///Change the label in the widget void setLabel(std::string label); ///Change the progress bar. void setProgress(int); ///Change the total step of the progress bar. void setTotalSteps(int); }; #endif // APPSTARTUP_H