21 lines
469 B
C
21 lines
469 B
C
|
#ifndef PROGCREATEDLG_H
|
||
|
#define PROGCREATEDLG_H
|
||
|
|
||
|
#include "basedlg.h"
|
||
|
#include <QLineEdit>
|
||
|
#include <QTextEdit>
|
||
|
#include <QSpinBox>
|
||
|
|
||
|
class ProgCreateDlg : public BaseDlg {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ProgCreateDlg(QString name, int width, int height, QString remarks, QWidget *parent = nullptr, bool lockName = false);
|
||
|
QLineEdit *fdName;
|
||
|
QSpinBox *fdWidth;
|
||
|
QSpinBox *fdHeight;
|
||
|
QTextEdit *fdRemark;
|
||
|
QSpinBox *fdSplitWidth;
|
||
|
};
|
||
|
|
||
|
#endif // PROGCREATEDLG_H
|