| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef MAINWINDOW_H
- #define MAINWINDOW_H
- #include <QMainWindow>
- QT_BEGIN_NAMESPACE
- class QTableView;
- class QLabel;
- class QTextEdit;
- class QLineEdit;
- class QComboBox;
- class QAbstractItemModel;
- class QCheckBox;
- QT_END_NAMESPACE
- class Pagination;
- class MainWindow : public QMainWindow
- {
- Q_OBJECT
- public:
- MainWindow(QWidget *parent = nullptr);
- ~MainWindow();
- void updateStatusBar();
- private:
- QLabel *ipLabel;
- QLabel *wsLabel;
- QLabel *CurrentExamQuestions;
- QLabel *currentOnlineNumber;
- QLabel *numberOfLinks;
- // auto examsEditor = Form{tr("exams name"),
- // new QLineEdit,
- // br,
- // tr("file dir"),
- // new QLineEdit,
- // br,
- // tr("select"),
- // new QLineEdit,
- };
- #endif // MAINWINDOW_H
|