#ifndef NMGUIDEFINE_H #define NMGUIDEFINE_H #include #include 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