#ifndef WELCOME_PAGE_H #define WELCOME_PAGE_H #include "Common/custom.h" #include "Common/work_thread.h" namespace Ui { class Welcome_Page; } class Welcome_Page : public customDialog { Q_OBJECT public: explicit Welcome_Page(QWidget *parent = 0,Work_Thread *thread = 0); ~Welcome_Page(); private: Ui::Welcome_Page *ui; WELCOME_LOGO LOGO; Work_Thread *work_thread; void initPage(); private slots: void BtnReleased(); void ledit_action(); }; #endif // WELCOME_PAGE_H