From 08215fc9a36a1648e1a5040ffe5696b96483c3b9 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 월, 01 11월 2021 14:39:43 +0900 Subject: [PATCH] Ongoing90 #3684 CF AOI Review 전설비 Review History Defect이미지 클릭시 Offset 자동 계산 기능 추가 --- ReviewHistory/include/akGraph/akDDSettingDlg.h | 67 +++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) diff --git a/ReviewHistory/include/akGraph/akDDSettingDlg.h b/ReviewHistory/include/akGraph/akDDSettingDlg.h new file mode 100644 index 0000000..997056c --- /dev/null +++ b/ReviewHistory/include/akGraph/akDDSettingDlg.h @@ -0,0 +1,67 @@ +#pragma once + +//#define IDD_AKCOLORTABLEOPTIONDLG 11000 + +#include "akGraph/akResource.h" +#include "akGraph/akGraphBase.h" +#include "afxwin.h" + +// CakDDSettingDlg 대화 상자입니다. +#define DDSETTINGUPDATE WM_USER+0x105 + + + +class CakDDSettingDlg : public CDialog +{ + DECLARE_DYNAMIC(CakDDSettingDlg) + +public: + CakDDSettingDlg(CWnd* pParent = NULL); // 표준 생성자입니다. + virtual ~CakDDSettingDlg(); + +// 대화 상자 데이터입니다. + enum { IDD = IDD_AKDDSETTINGDLG }; + +protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다. + + DECLARE_MESSAGE_MAP() +public: + afx_msg void OnBnClickedOk(); + virtual BOOL OnInitDialog(); + +public: + void SetUpdate(); +public: + CWnd* m_pParent; + + CEdit m_ctrlEditXMin; + CEdit m_ctrlEditXMax; + CEdit m_ctrlEditGraphDepth1; + CEdit m_ctrlEditGraphDepth2; + CEdit m_ctrlEditGraphDepth3; + CEdit m_ctrlEditGraphDepth4; + CEdit m_ctrlEditStd; + + double m_RangeXMin; + double m_RangeXMax; + int m_GraphDepth1; + int m_GraphDepth2; + int m_GraphDepth3; + int m_GraphDepth4; + int m_Standard; + double m_DetectPoint[4][4]; + + CFont m_fontTitle, m_fontText; + CBrush m_bruTitle, m_bruText; + +private: + + +public: + afx_msg void OnBnClickedCancel(); + afx_msg void OnLButtonDown(UINT nFlags, CPoint point); + CStatic m_ctrlDetectPoint[4][4]; + afx_msg void OnPaint(); + afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); +}; -- Gitblit v1.9.3