mainwindow.h 804 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. QLabel *webLinks;
  28. // auto examsEditor = Form{tr("exams name"),
  29. // new QLineEdit,
  30. // br,
  31. // tr("file dir"),
  32. // new QLineEdit,
  33. // br,
  34. // tr("select"),
  35. // new QLineEdit,
  36. };
  37. #endif // MAINWINDOW_H