qt/LedOK/program/progcreatedlg.h

21 lines
455 B
C
Raw Normal View History

2022-09-30 18:08:39 +08:00
#ifndef PROGCREATEDLG_H
#define PROGCREATEDLG_H
2023-04-25 16:30:58 +08:00
#include <QDialog>
2022-09-30 18:08:39 +08:00
#include <QLineEdit>
#include <QTextEdit>
#include <QSpinBox>
2023-04-25 16:30:58 +08:00
class ProgCreateDlg : public QDialog {
2022-09-30 18:08:39 +08:00
Q_OBJECT
public:
2023-04-18 14:14:46 +08:00
ProgCreateDlg(QString name, int width, int height, QString remarks, QString, QWidget *parent = nullptr);
2022-09-30 18:08:39 +08:00
QLineEdit *fdName;
QSpinBox *fdWidth;
QSpinBox *fdHeight;
QTextEdit *fdRemark;
2023-04-18 14:14:46 +08:00
QLineEdit *fdSplitWidths;
2022-09-30 18:08:39 +08:00
};
#endif // PROGCREATEDLG_H