QuakeGod
2023-10-20 0200a36062386b937567265e3ea01f93eaa8f1f5
MTerm2/MTerm2View.cpp
@@ -1429,13 +1429,14 @@
   s1.Format(_T("Insert Blank Line"));
   SysLog(s1);
   m_FocusRow;
   //当前行之后的所有,下移一行
   for (int i = m_nTotalRow - 1; i >= m_FocusRow; i--) {
      for (int j = 0; j < m_CellPerLine; j++) {
         Cells[i + 1][j] = Cells[i][j];
      }
   }
   m_nTotalRow += 1;
   // 当前行灰色
   for (int j = 0; j < m_CellPerLine; j++)   {
      Cells[m_FocusRow][j].clear();
      Cells[m_FocusRow][j].bEditing = 1;
@@ -1445,11 +1446,45 @@
         Cells[m_FocusRow][j].bLeftLineDn = 1;
      }
   }
   // 当前行 加入 触点
//   m_FocusCol;
//   Cells[m_FocusRow][0].nType= typeNO;
//   Cells[m_FocusRow][0].nDataType = KLCoilTypeX;
//   Cells[m_FocusRow][0].nDataAddr = 15;
//   Cells[m_FocusRow][0].sCoilName = "ABCDEFG";
   m_bModified = 1;
   needReDraw = 1;
   this->RedrawWindow();
}
int FindTypeIndex(CString str[], CString strType, int num)
{
   for (int i = 0;i < num;i++)
   {
      if (strType == str[i])
      {
         return i;
      }
   }
   return -1;
}
void CMTerm2View::GetIncToView(stCell cell1)               //**************************************************************************************************//
{
   Cells[m_FocusRow][m_FocusCol] = cell1;
   m_bModified = 1;
   needReDraw = 1;
   m_FocusCol += 1;
   if (m_FocusCol >= 16)
   { m_FocusCol = 0;m_FocusRow += 1; }
   this->RedrawWindow();
}
void CMTerm2View::OnUpdateInsertBlankLine(CCmdUI *pCmdUI)
{
   // TODO: 在此添加命令更新用户界面处理程序代码
@@ -2722,3 +2757,4 @@
   }
   return 0;
}