clStudentInfo.h 578 B

123456789101112131415161718192021222324252627282930
  1. #ifndef CLSTUDENTINFO_H
  2. #define CLSTUDENTINFO_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class clStudentInfo;
  6. }
  7. class clStudentInfo : public QWidget
  8. {
  9. Q_OBJECT
  10. signals:
  11. void sgnStudentEditPassword();
  12. void sgnStudentLogout();
  13. public:
  14. explicit clStudentInfo(QWidget *parent = nullptr);
  15. ~clStudentInfo();
  16. void setUI(const int nLeft, const int nTop, const int nWidth, const int nHeight);
  17. private slots:
  18. void on_btn_clsi_editPassword_clicked();
  19. void on_btn_clsi_exitLogin_clicked();
  20. private:
  21. Ui::clStudentInfo *ui;
  22. };
  23. #endif // CLSTUDENTINFO_H