| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef SETTINGSPAGE_H
- #define SETTINGSPAGE_H
- #include <QWidget>
- QT_BEGIN_NAMESPACE
- class QTableView;
- class QLabel;
- class QTextEdit;
- class QLineEdit;
- class QComboBox;
- class QAbstractItemModel;
- class QCheckBox;
- class Pagination;
- class QSpinBox;
- QT_END_NAMESPACE
- class SettingsPage : public QWidget
- {
- Q_OBJECT
- public:
- explicit SettingsPage(QWidget *parent = nullptr);
- signals:
- private:
- // 客户端配置
- QLineEdit *examContentDirLineEdit; // 考试内容存放目录
- QSpinBox *windowXSpinBox; // 考试窗口位置
- QSpinBox *windowYSpinBox; // 考试窗口位置
- QLineEdit *examAnswerDirLineEdit; // 考试答案临时存放路径
- // 服务端配置
- QLineEdit *answerDirLineEdit; // 考试答案临时存放路径
- QSpinBox *lockMaxTimeSpinBox;
- };
- #endif // SETTINGSPAGE_H
|