2023-04-18 14:14:46 +08:00
|
|
|
#ifndef SOFTCONFIGDIALOG_H
|
|
|
|
#define SOFTCONFIGDIALOG_H
|
|
|
|
|
2023-04-25 16:30:58 +08:00
|
|
|
#include <QDialog>
|
2023-04-18 14:14:46 +08:00
|
|
|
#include <QCheckBox>
|
|
|
|
|
2023-04-25 16:30:58 +08:00
|
|
|
class SoftConfigDialog : public QDialog {
|
2023-04-18 14:14:46 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2023-04-25 16:30:58 +08:00
|
|
|
explicit SoftConfigDialog(QWidget *parent = 0);
|
2023-04-18 14:14:46 +08:00
|
|
|
|
|
|
|
QCheckBox *press_fd, *trans_fd, *anti_fd, *guangying_fd, *fdWidthSplit;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SOFTCONFIGDIALOG_H
|