From 308273fef97381356e96fcd9c17011409a3c2920 Mon Sep 17 00:00:00 2001
From: kojingeun <diteam.co.kr>
Date: 수, 07 6월 2023 10:28:21 +0900
Subject: [PATCH] Ongoing50 #4517 CF AOI Review 결과 파일 찾기 실패 개선 1. Find Bin File 찾는 Library 변경  - CRT _findfirsti64 / _findnexti64 -> C++17 Filesystem directory_iterator  - 파일 탐색 시간 20k Files(80GB) 1sec 소요

---
 ReviewHistory/ReveiwHistory/akImageView.cpp |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/ReviewHistory/ReveiwHistory/akImageView.cpp b/ReviewHistory/ReveiwHistory/akImageView.cpp
index cd95e60..fda76d2 100644
--- a/ReviewHistory/ReveiwHistory/akImageView.cpp
+++ b/ReviewHistory/ReveiwHistory/akImageView.cpp
@@ -268,8 +268,11 @@
 		//글라스 외각선 그리기 태현[2016/3/23]
 		{
 			pOldBrush = (CBrush*)pDC->SelectObject(&BrushGlass);
-			CPen pen;
+			CPen pen, CenterLinePen;
 			pen.CreatePen(PS_SOLID, 1, RGB(64, 191, 79));
+			/*< LYW 20211029 - #3684 ADD Start >*/
+			CenterLinePen.CreatePen(PS_DOT, 1, RGB(255, 0, 0));
+			/*< LYW 20211029 - #3684 ADD End >*/
 			pDC->SelectObject(&pen);
 
 			pDC->MoveTo(GetWindowPosX(rectGlass.left), GetWindowPosY(rectGlass.top));
@@ -278,7 +281,16 @@
 			pDC->LineTo(GetWindowPosX(rectGlass.left), GetWindowPosY(rectGlass.bottom));
 			pDC->LineTo(GetWindowPosX(rectGlass.left), GetWindowPosY(rectGlass.top));
 
+			/*< LYW 20211029 - #3684 ADD Start >*/
+			pDC->SelectObject(&CenterLinePen);
+			pDC->MoveTo(GetWindowPosX((rectGlass.left + rectGlass.right) / 2), GetWindowPosY(rectGlass.top));
+			pDC->LineTo(GetWindowPosX((rectGlass.left + rectGlass.right) / 2), GetWindowPosY(rectGlass.bottom));
+			pDC->MoveTo(GetWindowPosX(rectGlass.left), GetWindowPosY((rectGlass.top + rectGlass.bottom) / 2));
+			pDC->LineTo(GetWindowPosX(rectGlass.right), GetWindowPosY((rectGlass.top + rectGlass.bottom) / 2));
+			/*< LYW 20211029 - #3684 ADD End >*/
+			
 			pDC->SelectObject(&pOldBrush);
+
 		}
 	}
 	pDC->SelectClipRgn(NULL);	

--
Gitblit v1.9.3