Yao Chunli
2022-06-21 e00d5a1575d26f8fec1be6fa8a844203cd66a24c
MTerm2/MTerm2View.cpp
@@ -1445,11 +1445,39 @@
         Cells[m_FocusRow][j].bLeftLineDn = 1;
      }
   }
   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 +2750,4 @@
   }
   return 0;
}