chenluhua1980
2025-12-11 3c33ce0779e18782d148f9314313041c14cca5a5
SourceCode/Bond/Servo/CPageVarialbles.cpp
@@ -5,6 +5,7 @@
#include "Servo.h"
#include "CPageVarialbles.h"
#include "afxdialogex.h"
#include "CVariableEditDlg2.h"
// CPageVarialbles 对话框
@@ -161,7 +162,22 @@
{
   ASSERT(btnName);
   if (_strcmpi(btnName, "新增") == 0) {
      // TODO: 新增逻辑
      unsigned int newId = theApp.m_model.m_hsmsPassive.getMaxVariableId();
      int newIdInt = static_cast<int>(newId + 1);
      CVariableEditDlg2 dlg(_T("新增变量"), newIdInt, _T("U1"), _T(""), _T(""), this);
      if (dlg.DoModal() != IDOK) return;
      CString name = dlg.GetNameText();
      CString fmt = dlg.GetTypeText();
      CString remark = dlg.GetRemark();
      int ret = theApp.m_model.m_hsmsPassive.addVariable(CT2A(name), CT2A(fmt), CT2A(remark), newIdInt);
      if (ret == 0) {
         m_listCtrl.DeleteAllItems();
         loadVariables();
      }
      else {
         AfxMessageBox(_T("新增变量失败,格式是否正确?(U1/U2/I2/A20/A50/L)"));
      }
   }
   else if (_strcmpi(btnName, "删除") == 0) {
      POSITION pos = m_listCtrl.GetFirstSelectedItemPosition();
@@ -186,6 +202,30 @@
      }
   }
   else if (_strcmpi(btnName, "编辑") == 0) {
      // TODO: 编辑逻辑
      POSITION pos = m_listCtrl.GetFirstSelectedItemPosition();
      if (pos == nullptr) return;
      int nItem = m_listCtrl.GetNextSelectedItem(pos);
      auto pVar = reinterpret_cast<SERVO::CVariable*>(m_listCtrl.GetItemData(nItem));
      if (pVar == nullptr) return;
      CVariableEditDlg2 dlg(_T("编辑变量"),
         pVar->getVarialbleId(),
         CString(CA2T(SERVO::CVariable::formatToString(pVar->getFormat()).c_str())),
         CString(CA2T(pVar->getName().c_str())),
         CString(CA2T(pVar->getRemark().c_str())),
         this);
      if (dlg.DoModal() != IDOK) return;
      CString name = dlg.GetNameText();
      CString fmt = dlg.GetTypeText();
      CString remark = dlg.GetRemark();
      int ret = theApp.m_model.m_hsmsPassive.updateVariable(pVar->getVarialbleId(), CT2A(name), CT2A(fmt), CT2A(remark));
      if (ret == 0) {
         m_listCtrl.DeleteAllItems();
         loadVariables();
      }
      else {
         AfxMessageBox(_T("编辑变量失败,格式是否正确?(U1/U2/I2/A20/A50/L)"));
      }
   }
}