From 0c66940a8e2cf64c9890519901f433b3668216b6 Mon Sep 17 00:00:00 2001 From: KEJ <kimeungju@diteam.co.kr> Date: 수, 26 6월 2024 15:13:18 +0900 Subject: [PATCH] Ongoing80 #4942 CF AOI Review Bin File Loading 실패 개선 1. GlassRawMessenger 동기화 2. BIN파일 FindFile 제거(RawMessenger, Review 공통) 3. Unloading 시 BIN파일 제거 --- 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