welcomeWidget.h 500 B

123456789101112131415161718192021222324252627282930
  1. #ifndef WELCOMEWIDGET_H
  2. #define WELCOMEWIDGET_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class welcomeWidget;
  6. }
  7. class welcomeWidget : public QWidget
  8. {
  9. Q_OBJECT
  10. signals:
  11. void exitWelcomeWidget();
  12. public:
  13. explicit welcomeWidget(QString sStudentName, QString sStudentCode,
  14. QString sSpecialtyName, QWidget *parent = nullptr);
  15. ~welcomeWidget();
  16. private slots:
  17. void on_btn_wcw_comfirm_clicked();
  18. private:
  19. void initUI();
  20. Ui::welcomeWidget *ui;
  21. };
  22. #endif // WELCOMEWIDGET_H