From 6e0a9dd083fae3138418444eb783e99509bb522b Mon Sep 17 00:00:00 2001
From: LYW <leeyeanwoo@diteam.co.kr>
Date: 금, 09 7월 2021 12:02:49 +0900
Subject: [PATCH] Merge branch 'feature/#3486_CF_AOI_Review_Review_History_프로그램_테스트_및_적용' into feature/#3495_CF_AOI_Review(QD,_Blue)_GlassLoading_시_다운_현상_조치

---
 ReviewHistory/ReveiwHistory/PathSettingDlg.h |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/ReviewHistory/ReveiwHistory/PathSettingDlg.h b/ReviewHistory/ReveiwHistory/PathSettingDlg.h
new file mode 100644
index 0000000..f502ff2
--- /dev/null
+++ b/ReviewHistory/ReveiwHistory/PathSettingDlg.h
@@ -0,0 +1,47 @@
+癤�#pragma once
+#include "Singleton.h"
+
+// CPathSettingDlg ���솕 �긽�옄
+
+class CPathSettingDlg : public CDialogEx, public CSingleton< CPathSettingDlg >
+{
+	DECLARE_DYNAMIC(CPathSettingDlg)
+
+public:
+	CPathSettingDlg(CWnd* pParent = nullptr);   // �몴以� �깮�꽦�옄�엯�땲�떎.
+	virtual ~CPathSettingDlg();
+
+// ���솕 �긽�옄 �뜲�씠�꽣�엯�땲�떎.
+
+	enum { IDD = IDD_DLG_PATH_SETTING };
+
+protected:
+	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 吏��썝�엯�땲�떎.
+
+	CString m_strBinPath;
+	CString m_strInspectorPath;
+	CString m_strReviewPath;
+	CString m_strAlignPath;
+
+	DECLARE_MESSAGE_MAP()
+
+public:
+	virtual BOOL Create(CWnd* pParentWnd = NULL);
+	virtual BOOL PreTranslateMessage(MSG* pMsg);
+
+	afx_msg void OnDestroy();
+	afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
+public:
+	afx_msg void OnBnClickedBtnBinPath();
+	afx_msg void OnBnClickedBtnInspectorPath();
+	afx_msg void OnBnClickedBtnReviewPath();
+	afx_msg void OnBnClickedBtnAlignPath();
+	afx_msg void OnBnClickedBtnSave();
+	afx_msg void OnBnClickedCancel();
+
+	void PathSettingLoad();
+	CString GetBinPath() { return m_strBinPath; }
+	CString GetInspectorPath() { return m_strInspectorPath; }
+	CString GetReviewPath() { return m_strReviewPath; }
+	CString GetAlignPath() { return m_strAlignPath; }
+};

--
Gitblit v1.9.3