From 20734d0fdaefe16a67511bdf8fe6e295c02f27dc Mon Sep 17 00:00:00 2001 From: kojingeun <diteam.co.kr> Date: 월, 19 6월 2023 16:25:31 +0900 Subject: [PATCH] Ongoing60 #4517 CF AOI Review 결과 파일 찾기 실패 개선 1. Find Bin File 무조건 실패하는 버그 개선 --- ReviewHistory/include/akGraph/akRangeSettingNormalDlg.h | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/ReviewHistory/include/akGraph/akRangeSettingNormalDlg.h b/ReviewHistory/include/akGraph/akRangeSettingNormalDlg.h new file mode 100644 index 0000000..86db602 --- /dev/null +++ b/ReviewHistory/include/akGraph/akRangeSettingNormalDlg.h @@ -0,0 +1,56 @@ +#pragma once + + + + +#include "akGraph/akGraphLinker.h" +#include "akGraph/akResource.h" + + +#define RANGESETTINGNORMALUPDATE WM_USER+0x106 + + +class CakRangeSettingNormalDlg : public CDialog +{ + DECLARE_DYNAMIC(CakRangeSettingNormalDlg) + +public: + CakRangeSettingNormalDlg(CWnd* pParent = NULL); // 표준 생성자입니다. + virtual ~CakRangeSettingNormalDlg(); + +// 대화 상자 데이터입니다. + enum { IDD = IDD_AKRANGESETTINGDLG_NORMAL }; + +protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다. + +public: + void SetUpdateData(bool bToVariable); //true --> 변수로 저장, false-->다이얼로그에 표시 + void SetTitle(char* strTitle); + void SetReverse(bool bReverse); +public: + double m_RangeMin; + double m_RangeMax; + + CFont m_fontTitle, m_fontText; + CBrush m_bruTitle, m_bruText; + + int m_nID; +private: + CString m_strTitle; + CWnd* m_pParent; + bool m_bReverse;//최대, 최소 반대로 설정 + + + DECLARE_MESSAGE_MAP() +public: + afx_msg void OnBnClickedOk(); + + virtual BOOL OnInitDialog(); + afx_msg void OnLButtonDown(UINT nFlags, CPoint point); + afx_msg void OnPaint(); + afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); + virtual BOOL DestroyWindow(); + + afx_msg void OnKillFocus(CWnd* pNewWnd); +}; -- Gitblit v1.9.3