2022-01-04 18:11:48 +08:00
|
|
|
#ifndef SOFTCONFIGDIALOG_H
|
|
|
|
#define SOFTCONFIGDIALOG_H
|
|
|
|
|
2022-08-25 18:37:24 +08:00
|
|
|
#include "basedlg.h"
|
|
|
|
#include <QCheckBox>
|
2022-01-04 18:11:48 +08:00
|
|
|
|
2022-08-25 18:37:24 +08:00
|
|
|
class SoftConfigDialog : public BaseDlg {
|
2022-01-04 18:11:48 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SoftConfigDialog(QWidget *parent = nullptr);
|
|
|
|
|
2022-08-25 18:37:24 +08:00
|
|
|
QCheckBox *press_fd, *trans_fd, *anti_fd, *guangying_fd;
|
2022-01-04 18:11:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SOFTCONFIGDIALOG_H
|