You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
632 B
C
22 lines
632 B
C
#ifndef NMGUIDEFINE_H
|
|
#define NMGUIDEFINE_H
|
|
|
|
#include <QCoreApplication>
|
|
#include <QObject>
|
|
|
|
enum NM_GUI_Component_Value_Type {
|
|
NM_GUI_Component_Value_Type_Int, // int 类型
|
|
NM_GUI_Component_Value_Type_Double, // double 类型
|
|
NM_GUI_Component_Value_Type_String, // string 类型
|
|
NM_GUI_Component_Value_Type_UNKNOW, // 未知 类型
|
|
};
|
|
|
|
// 组件类型
|
|
enum NM_GUI_Component_Type {
|
|
NM_GUI_Component_Type_LineEdit, // lineEdit 类型
|
|
NM_GUI_Component_Type_ComboBox, // comboBox 类型
|
|
NM_GUI_Component_Type_UNKNOW, // 未知 类型
|
|
};
|
|
|
|
#endif // NMGUIDEFINE_H
|