mainwindow.h 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. QT_BEGIN_NAMESPACE
  5. class QTableView;
  6. class QLabel;
  7. class QTextEdit;
  8. class QLineEdit;
  9. class QComboBox;
  10. class QAbstractItemModel;
  11. class QCheckBox;
  12. QT_END_NAMESPACE
  13. class Pagination;
  14. class MainWindow : public QMainWindow
  15. {
  16. Q_OBJECT
  17. public:
  18. MainWindow(QWidget *parent = nullptr);
  19. ~MainWindow();
  20. void updateStatusBar();
  21. private:
  22. QLabel *ipLabel;
  23. QLabel *wsLabel;
  24. QLabel *CurrentExamQuestions;
  25. QLabel *currentOnlineNumber;
  26. QLabel *numberOfLinks;
  27. // auto examsEditor = Form{tr("exams name"),
  28. // new QLineEdit,
  29. // br,
  30. // tr("file dir"),
  31. // new QLineEdit,
  32. // br,
  33. // tr("select"),
  34. // new QLineEdit,
  35. };
  36. #endif // MAINWINDOW_H