From 572aebd50409d2f11183d6ebbb9d12fe9041e7a5 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 화, 17 8월 2021 18:47:48 +0900 Subject: [PATCH] Ongoing100 #3561 CF AOI Review Align 카메라 끊김 현상 조치 --- 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