From c08fcb0ca69c8893d64504e082608ad8fb82eb40 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 월, 25 10월 2021 08:58:31 +0900 Subject: [PATCH] 프로그램 시작시 백업 기능 삭제(네트워크 딜레이로 인한 프로그램 지연) --- ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h b/ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h index c7bcab0..b3d4ea5 100644 --- a/ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h +++ b/ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h @@ -83,6 +83,9 @@ std::vector<_akDefect> m_vectest; CImage m_DefectImage; + //LYW 20210825 #3486 ADD START + CImage m_DefectRotateImage; + //LYW 20210825 #3486 ADD END CImage m_ReviewImage; CRect m_picture_rect; @@ -109,6 +112,12 @@ CProgressCtrl m_ctlProgress; CakGridCtrl m_ctrlGridGlassList; + + /*< LYW 20211018 - #3684 ADD Start >*/ + //CurrentDefect, Offset 怨꾩궛 �궗�슜 + int m_dCurDefectIdx; + int m_dCurDefectID; + /*< LYW 20211018 - #3684 ADD End >*/ // tracker BOOL m_bDrawTracker; @@ -205,6 +214,9 @@ afx_msg LRESULT OnMapDefectSelected(WPARAM wParam, LPARAM lParam); afx_msg LRESULT OnMapDefectMouseOver(WPARAM wParam, LPARAM lParam); afx_msg LRESULT OnListDefectSelected(WPARAM wParam, LPARAM lParam); + /*< LYW 20211018 - #3684 ADD Start >*/ + afx_msg LRESULT OnImageClick(WPARAM wParam, LPARAM lParam); + /*< LYW 20211018 - #3684 ADD End >*/ afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnOptionPathsetting(); @@ -240,6 +252,10 @@ void Imagenoload(); + //LYW 20210825 #3486 ADD START + void ImageRotate(CImage& SrcImage, CImage& DstImage, double degree = 180.0); + //LYW 20210825 #3486 ADD END + BOOL GetCheckFileLoad(int nCount); void GlassInfoRest(); @@ -272,4 +288,10 @@ void SetCellCount() { m_nCellCount = m_nCellCount + 1; } int GetCellCount() { return m_nCellCount; } + afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); + int m_nEditCamIdx; + int m_nEditScanIdx; + double m_dEditOffsetX; + double m_dEditOffsetY; + CString m_strGantryIdx; }; -- Gitblit v1.9.3