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파일 제거

---
 Internal_Library/Include/CHCommonControls/GridCellBase.h |   19 ++++++++++++++++++-
 1 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/Internal_Library/Include/CHCommonControls/GridCellBase.h b/Internal_Library/Include/CHCommonControls/GridCellBase.h
index 6f181bd..957f7df 100644
--- a/Internal_Library/Include/CHCommonControls/GridCellBase.h
+++ b/Internal_Library/Include/CHCommonControls/GridCellBase.h
@@ -28,6 +28,7 @@
 #if _MSC_VER >= 1000
 #pragma once
 #endif // _MSC_VER >= 1000
+#include "CellRange.h"
 
 class CGridCtrl;
 
@@ -127,10 +128,13 @@
 
 // Operators
 public:
-    virtual void operator=(const CGridCellBase& cell);
+    virtual void operator=(CGridCellBase& cell);
 
 // Operations
 public:
+	virtual bool IsMerged();
+	virtual void SetMergeRange(CCellRange range);
+	virtual void Show(bool IsShow);
     virtual void Reset();
 
     virtual BOOL Draw(CDC* pDC, int nRow, int nCol, CRect rect, BOOL bEraseBkgnd = TRUE);
@@ -162,8 +166,21 @@
     virtual void OnDblClick( CPoint PointCellRelative);
     virtual BOOL OnSetCursor();
 
+public:
+	void UnMerge();
+	virtual bool IsShow();
+	virtual CCellRange GetMergeRange();
+	virtual bool IsMergeWithOthers();
+	virtual CCellID GetMergeCellID();
+	virtual void SetMergeCellID(CCellID cell);
 protected:
     DWORD    m_nState;      // Cell state (selected/focus etc)
+
+private:
+	CCellRange m_MergeRange;
+	bool m_IsMergeWithOthers;
+	CCellID m_MergeCellID;
+	bool m_Hide;
 };
 
 //{{AFX_INSERT_LOCATION}}

--
Gitblit v1.9.3