Lock and setting json about

This commit is contained in:
Krad
2021-12-07 14:14:20 +08:00
parent f1ab2937f9
commit 1b8809d8db
9 changed files with 309 additions and 67 deletions

26
src/generalform.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef GENERALFORM_H
#define GENERALFORM_H
#include <QWidget>
class QPushButton;
class QVBoxLayout;
class SelectDialog;
class GeneralForm : public QWidget
{
Q_OBJECT
public:
explicit GeneralForm(QWidget* parent = nullptr);
signals:
public slots:
protected:
void changeEvent(QEvent* event);
private:
QVBoxLayout* layout = nullptr;
SelectDialog* dialog = nullptr;
};
#endif // GENERALFORM_H