Lock and setting json about
This commit is contained in:
26
src/generalform.h
Normal file
26
src/generalform.h
Normal 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
|
||||
Reference in New Issue
Block a user