2023-05-08 06:32:41 +00:00
|
|
|
|
#ifndef CUSTOMPARAMETERMODEL_H
|
|
|
|
|
#define CUSTOMPARAMETERMODEL_H
|
|
|
|
|
|
|
|
|
|
#include "ModelBase.h"
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
|
2024-03-20 07:33:49 +00:00
|
|
|
|
namespace LAMPCAEDesigner
|
2023-05-08 06:32:41 +00:00
|
|
|
|
{
|
|
|
|
|
class CustomParameterModel : public ModelBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CustomParameterModel(QString nameEng, QString nameChn, QString iconName, int type, QObject *parent);
|
|
|
|
|
~CustomParameterModel();
|
|
|
|
|
virtual int ShowEditor(QTreeWidgetItem* treeItem, QWidget* parent);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|