mrDarker
2025-08-10 0bc51843405b703c9fbabc81365625f393ff7d86
EdgeInspector_App/ViewMain_Recipe.cpp
@@ -182,6 +182,7 @@
   ON_EVENT(CViewMain_Recipe, IDC_RDO_INSTYPE_IN_CHAMFER, DISPID_CLICK, CViewMain_Recipe::ClickRdoInsType, VTS_NONE)
   ON_EVENT(CViewMain_Recipe, IDC_RDO_INSTYPE_TOP_CORNER, DISPID_CLICK, CViewMain_Recipe::ClickRdoInsType, VTS_NONE)
   ON_EVENT(CViewMain_Recipe, IDC_RDO_INSTYPE_BOT_CORNER, DISPID_CLICK, CViewMain_Recipe::ClickRdoInsType, VTS_NONE)
   ON_EVENT(CViewMain_Recipe, IDC_RDO_INSTYPE_RIP_THICKNESS, DISPID_CLICK, CViewMain_Recipe::ClickRdoInsType, VTS_NONE)
   ON_EVENT(CViewMain_Recipe, IDC_BTN_TOP_MARK_UPDATE_0, DISPID_CLICK, CViewMain_Recipe::ClickBtnMarkUpdate, VTS_NONE)
   ON_EVENT(CViewMain_Recipe, IDC_BTN_TOP_MARK_UPDATE_1, DISPID_CLICK, CViewMain_Recipe::ClickBtnMarkUpdate, VTS_NONE)
@@ -1199,15 +1200,21 @@
      break;
   case IDC_RDO_INSTYPE_BOT_CORNER:   eSelInsType = eRcp_InsType_BotCorner;
      break;
   case IDC_RDO_INSTYPE_RIP_THICKNESS:   eSelInsType = eRcp_InsType_RipThickness;
      break;
   default:
      return;
   }
   if(m_eSelectInsType == eSelInsType)
   // Check Ins Type
   if (m_eSelectInsType == eSelInsType) {
      return;
   }
   // Change Ins Type
   m_eSelectInsType = eSelInsType;
   
   // Update UI
   Init_SideInsInfo();
   Fill_SideInsInfo(FALSE);
@@ -1649,6 +1656,9 @@
   case eRcp_InsType_BotCorner :
      nRows = 14;
      break;
   case eRcp_InsType_RipThickness:
      nRows = 10;
      break;
   default:
      break;
   }
@@ -1825,6 +1835,47 @@
         m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, vecParams[i]);
      }
   }
   else if (m_eSelectInsType == eRcp_InsType_RipThickness) {
      std::vector<CString> vecParams;
      strTemp.Format(_T("%s Use (0:OFF/1:ON)"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. Left Thres"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. Right Thres"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Glsss Thres"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Rip Dir. (0:Left/1:Right/2:Both)"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. Rect L"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. T Offset"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. Rect R"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("%s Ins. B Offset"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      CLanguageControl* pLanguageControl = g_pStatus->m_pLanguageControl;
      if (pLanguageControl != NULL) {
         for (int i = 0; i < vecParams.size(); i++) {
            CString strParam = pLanguageControl->GetString(m_eSelectLangType, vecParams[i]);
            if (strParam.IsEmpty() || strParam.GetLength() == 0) {
               continue;
            }
            vecParams[i] = strParam;
         }
      }
      for (int i = 0; i < vecParams.size(); i++) {
         m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetState(GVIS_READONLY);
         m_SideInspectInfo.SetRowHeight(nRowIdx, 19);
         m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, vecParams[i]);
      }
   }
   m_SideInspectInfo.SetFixedRowSelection(FALSE);
   m_SideInspectInfo.SetFixedColumnSelection(FALSE);
@@ -1858,6 +1909,9 @@
   case eRcp_InsType_TopCorner :
   case eRcp_InsType_BotCorner :
      nRows = 11;
      break;
   case eRcp_InsType_RipThickness:
      nRows = 7;
      break;
   default:
      break;
@@ -2008,6 +2062,40 @@
      for(int i=0; i<vecParams.size(); i++)
      {
         m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetState(GVIS_READONLY);
         m_JudgementInfo.SetRowHeight(nRowIdx, 19);
         m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, vecParams[i]);
      }
   }
   else if (eRcp_InsType_RipThickness == m_eSelectInsType) {
      std::vector<CString> vecParams;
      strTemp.Format(_T("Glass Size Min um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("Glass Size Max um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("Left Rip Size Min um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("Left Rip Size Max um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("Right Rip Size Min um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      strTemp.Format(_T("Right Rip Size Max um"), g_strInsType[m_eSelectInsType]);
      vecParams.push_back(strTemp);
      CLanguageControl* pLanguageControl = g_pStatus->m_pLanguageControl;
      if (pLanguageControl != NULL) {
         for (int i = 0; i < vecParams.size(); i++) {
            CString strParam = pLanguageControl->GetString(m_eSelectLangType, vecParams[i]);
            if (strParam.IsEmpty() || strParam.GetLength() == 0)
               continue;
            vecParams[i] = strParam;
         }
      }
      for (int i = 0; i < vecParams.size(); i++) {
         m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetState(GVIS_READONLY);
         m_JudgementInfo.SetRowHeight(nRowIdx, 19);
         m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, vecParams[i]);
@@ -2471,6 +2559,55 @@
            strTemp.Format(_T("%d"), pSideParam->m_nBottomCornerEdgeThreshold );
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
         }
         else if (m_eSelectInsType == eRcp_InsType_RipThickness)
         {
            CRIP_THICKNESS_PARM& rip = pSideParam->m_RipThk;
            // 1. Use (0/1)
            if (rip.m_bUseInspect)  m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(RGB(50, 255, 50));
            else                    m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(RGB(255, 50, 50));
            strTemp.Format(_T("%d"), rip.m_bUseInspect);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 2. Left Thres
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nLeftThres);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 3. Right Thres
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRightThres);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 4. Glass Thres
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nGlassThres);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 5. Rip Direction (0/1/2)
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRipDir);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 6. Rect L
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRectLeft);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 7. T Offset
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nTopOffset);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 8. Rect R
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRectRight);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 9. B Offset
            m_SideInspectInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nBottomOffset);
            m_SideInspectInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
         }
      }
      m_SideInspectInfo.Invalidate();
@@ -2639,10 +2776,49 @@
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            pSideParam->m_nBottomCornerEdgeThreshold  = _wtoi(strTemp);
         }
         else if (m_eSelectInsType == eRcp_InsType_RipThickness)
         {
            CRIP_THICKNESS_PARM& rip = pSideParam->m_RipThk;
            // 1. Use
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_bUseInspect = _wtoi(strTemp);
            // 2. Left Thres
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nLeftThres = _wtoi(strTemp);
            // 3. Right Thres
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRightThres = _wtoi(strTemp);
            // 4. Glass Thres
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nGlassThres = _wtoi(strTemp);
            // 5. Rip Direction
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRipDir = _wtoi(strTemp);
            // 6. Rect L
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRectLeft = _wtoi(strTemp);
            // 7. T Offset
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nTopOffset = _wtoi(strTemp);
            // 8. Rect R
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRectRight = _wtoi(strTemp);
            // 9. B Offset
            strTemp = m_SideInspectInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nBottomOffset = _wtoi(strTemp);
         }
      }
   }
}
void CViewMain_Recipe::Fill_JudgementInfo(BOOL bGetData)
{
@@ -2791,6 +2967,40 @@
            strTemp.Format(_T("%d"), pSideParam->m_nBottomCorner_Measure_Judge_OR_AND );
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
         }
         else if (m_eSelectInsType == eRcp_InsType_RipThickness)
         {
            const CRIP_THICKNESS_PARM& rip = pSideParam->m_RipThk;
            // 1. Glass Size Min um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nGlassSizeMin_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 2. Glass Size Max um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nGlassSizeMax_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 3. Left Rip Size Min um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nLeftRipSizeMin_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 4. Left Rip Size Max um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nLeftRipSizeMax_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 5. Right Rip Size Min um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRightRipSizeMin_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
            // 6. Right Rip Size Max um
            m_JudgementInfo.GetCell(nRowIdx, nColIdx)->SetBackClr(uCellColor);
            strTemp.Format(_T("%d"), rip.m_nRightRipSizeMax_um);
            m_JudgementInfo.SetItemText(nRowIdx++, nColIdx, strTemp);
         }
      }
      m_JudgementInfo.Invalidate();
@@ -2907,6 +3117,34 @@
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            pSideParam->m_nBottomCorner_Measure_Judge_OR_AND  = _wtoi(strTemp);
         }
         else if (m_eSelectInsType == eRcp_InsType_RipThickness)
         {
            CRIP_THICKNESS_PARM& rip = pSideParam->m_RipThk;
            // 1. Glass Size Min um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nGlassSizeMin_um = _wtoi(strTemp);
            // 2. Glass Size Max um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nGlassSizeMax_um = _wtoi(strTemp);
            // 3. Left Rip Size Min um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nLeftRipSizeMin_um = _wtoi(strTemp);
            // 4. Left Rip Size Max um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nLeftRipSizeMax_um = _wtoi(strTemp);
            // 5. Right Rip Size Min um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRightRipSizeMin_um = _wtoi(strTemp);
            // 6. Right Rip Size Max um
            strTemp = m_JudgementInfo.GetItemText(nRowIdx++, nColIdx);
            rip.m_nRightRipSizeMax_um = _wtoi(strTemp);
         }
      }
   }
}
@@ -2939,11 +3177,9 @@
{
   UINT nID = GetFocus()->GetDlgCtrlID();
   SetSideRadioExclusive(nID);
   UpdateRecipe(TRUE);
   ChangViewCdmSide(nID);
   RefreshRadioStates();
}
@@ -2951,10 +3187,10 @@
{
   UINT nID = GetFocus()->GetDlgCtrlID();
   Fill_SideInsInfo(TRUE);   // Get Data..
   Fill_SideInsInfo(TRUE);
   Fill_JudgementInfo(TRUE);
   ChangInsTypeSide(nID);
   RefreshRadioStates();
}
void CViewMain_Recipe::ClickButtonLang()
@@ -3260,17 +3496,69 @@
#endif // HALCON_VISION_KEY
}
void CViewMain_Recipe::SetSideRadioExclusive(UINT nSelId)
void CViewMain_Recipe::RefreshRadioStates()
{
   static const UINT kIds[] = {
   // 内部映射 lambda:枚举 -> 控件 ID
   auto InsTypeToCtrlId = [](eViewCmdInsType t) -> UINT {
      switch (t) {
      case eRcp_InsType_Chip:          return IDC_RDO_INSTYPE_CHIP;
      case eRcp_InsType_Crack:         return IDC_RDO_INSTYPE_CRACK;
      case eRcp_InsType_Burr:          return IDC_RDO_INSTYPE_BURR;
      case eRcp_InsType_Chamfer:       return IDC_RDO_INSTYPE_CHAMFER;
      case eRcp_InsType_In_Chip:       return IDC_RDO_INSTYPE_IN_CHIP;
      case eRcp_InsType_In_Crack:      return IDC_RDO_INSTYPE_IN_CRACK;
      case eRcp_InsType_In_Burr:       return IDC_RDO_INSTYPE_IN_BURR;
      case eRcp_InsType_In_Chamfer:    return IDC_RDO_INSTYPE_IN_CHAMFER;
      case eRcp_InsType_TopCorner:     return IDC_RDO_INSTYPE_TOP_CORNER;
      case eRcp_InsType_BotCorner:     return IDC_RDO_INSTYPE_BOT_CORNER;
      case eRcp_InsType_RipThickness:  return IDC_RDO_INSTYPE_RIP_THICKNESS;
      default: return 0;
      }
   };
   auto SideToCtrlId = [](eViewCmdSide s) -> UINT {
      switch (s) {
      case eRcp_SideRD_A:      return IDC_RDO_SIDE_A_TOP;
      case eRcp_SideRD_B:      return IDC_RDO_SIDE_B_TOP;
      case eRcp_SideRD_C:      return IDC_RDO_SIDE_C_TOP;
      case eRcp_SideRD_D:      return IDC_RDO_SIDE_D_TOP;
      case eRcp_SideRD_A_DN:   return IDC_RDO_SIDE_A_BOT;
      case eRcp_SideRD_B_DN:   return IDC_RDO_SIDE_B_BOT;
      case eRcp_SideRD_C_DN:   return IDC_RDO_SIDE_C_BOT;
      case eRcp_SideRD_D_DN:   return IDC_RDO_SIDE_D_BOT;
      case eRcp_SideRD_A_RIP:  return IDC_RDO_SIDE_A_RIP;
      case eRcp_SideRD_B_RIP:  return IDC_RDO_SIDE_B_RIP;
      case eRcp_SideRD_C_RIP:  return IDC_RDO_SIDE_C_RIP;
      case eRcp_SideRD_D_RIP:  return IDC_RDO_SIDE_D_RIP;
      default: return 0;
      }
   };
   const UINT nInsIds[] = {
      IDC_RDO_INSTYPE_CHIP, IDC_RDO_INSTYPE_CRACK, IDC_RDO_INSTYPE_BURR,
      IDC_RDO_INSTYPE_CHAMFER, IDC_RDO_INSTYPE_IN_CHIP, IDC_RDO_INSTYPE_IN_CRACK,
      IDC_RDO_INSTYPE_IN_BURR, IDC_RDO_INSTYPE_IN_CHAMFER,
      IDC_RDO_INSTYPE_TOP_CORNER, IDC_RDO_INSTYPE_BOT_CORNER,
      IDC_RDO_INSTYPE_RIP_THICKNESS
   };
   const UINT nSideIds[] = {
      IDC_RDO_SIDE_A_TOP, IDC_RDO_SIDE_B_TOP, IDC_RDO_SIDE_C_TOP, IDC_RDO_SIDE_D_TOP,
      IDC_RDO_SIDE_A_BOT, IDC_RDO_SIDE_B_BOT, IDC_RDO_SIDE_C_BOT, IDC_RDO_SIDE_D_BOT,
      IDC_RDO_SIDE_A_RIP, IDC_RDO_SIDE_B_RIP, IDC_RDO_SIDE_C_RIP, IDC_RDO_SIDE_D_RIP
   };
   for (UINT id : kIds) {
      if (CButton* p = (CButton*)GetDlgItem(id)) {
         p->SetCheck(id == nSelId ? 1 : 0);
   const UINT nSelIns = InsTypeToCtrlId(m_eSelectInsType);
   for (UINT id : nInsIds) {
      if (auto* p = (CButton*)GetDlgItem(id)) {
         p->SetCheck(id == nSelIns ? 1 : 0);
      }
   }
   const UINT nSelSide = SideToCtrlId(m_eSelectSide);
   for (UINT id : nSideIds) {
      if (auto* p = (CButton*)GetDlgItem(id)) {
         p->SetCheck(id == nSelSide ? 1 : 0);
      }
   }
}