-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMWCHeaderCtrl.cpp
182 lines (155 loc) · 5.67 KB
/
MWCHeaderCtrl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include "stdafx.h"
#include "MWCHeaderCtrl.h"
#include "Friend.h"
IMPLEMENT_DYNAMIC(CMWCHeaderCtrl, CHeaderCtrl)
//
/////////////////////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////////////////////
CMWCHeaderCtrl::CMWCHeaderCtrl(void)
{
}
//
/////////////////////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////////////////////
CMWCHeaderCtrl::~CMWCHeaderCtrl(void)
{
}
BEGIN_MESSAGE_MAP(CMWCHeaderCtrl, CHeaderCtrl)
ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, &CMWCHeaderCtrl::OnNMCustomdraw)
ON_WM_ERASEBKGND()
ON_WM_CTLCOLOR()
END_MESSAGE_MAP()
//
/////////////////////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////////////////////
void CMWCHeaderCtrl::OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMCUSTOMDRAW pNMCD = reinterpret_cast<LPNMCUSTOMDRAW>(pNMHDR);
//
*pResult = 0;
//
if ( pNMCD )
{
switch(pNMCD->dwDrawStage)
{
case CDDS_PREPAINT:
{
*pResult = CDRF_NOTIFYITEMDRAW;
*pResult = CDRF_NOTIFYSUBITEMDRAW;
break;
}
// case CDDS_ITEMPREPAINT:
// {
// *pResult = CDRF_NOTIFYSUBITEMDRAW;
// break;
// }
case CDDS_SUBITEM:
case CDDS_ITEMPREPAINT|CDDS_SUBITEM:
case CDDS_ITEMPREPAINT:
{
int iCol = ( int ) pNMCD->dwItemSpec;
HDITEM tagHeaderInfo;
memset ( &tagHeaderInfo, 0, sizeof ( tagHeaderInfo ) );
char szText [ 64 ];
ZeroMemory ( szText, sizeof(szText) );
tagHeaderInfo.mask = HDI_TEXT | HDI_IMAGE | HDI_FORMAT;
tagHeaderInfo.pszText = szText;
tagHeaderInfo.cchTextMax = sizeof ( szText ) - 1;
GetItem ( iCol, &tagHeaderInfo );
CRect rectLabel;
BOOL bResult = GetItemRect( iCol, rectLabel );
// get the device context.
CDC *pDC= CDC::FromHandle ( pNMCD->hdc );
pDC->SetBkMode ( TRANSPARENT );
pDC->SetTextColor ( CMWColors::GetFGNormalCR(CMWColors::m_iDarkTheme != 0) );
if ( tagHeaderInfo.iImage == 0 )
{
CBrush *brush = CMWColors::GetBKNormalCBrush(CMWColors::m_iDarkTheme != 0);
pDC->FillRect ( &rectLabel, brush );
// EraseRectWithGrade0 ( &rectLabel, pDC );
// DrawBitmap ( pDC->m_hDC, &rectLabel );
}
else if ( tagHeaderInfo.iImage == 1 )
{
CBrush *brush = CMWColors::GetBKNormalCBrush(CMWColors::m_iDarkTheme != 0);
pDC->FillRect ( &rectLabel, brush );
// EraseRectWithGrade1 ( &rectLabel, pDC );
// DrawBitmapDes ( pDC->m_hDC, &rectLabel );
}
else if ( tagHeaderInfo.iImage == 2 )
{
CBrush *brush = CMWColors::GetBKNormalCBrush(CMWColors::m_iDarkTheme != 0);
pDC->FillRect ( &rectLabel, brush );
// EraseRectWithGrade2 ( &rectLabel, pDC );
// DrawBitmapAsc ( pDC->m_hDC, &rectLabel );
}
else
{
if ( iCol % 2 == 0 )
{
CBrush *brush = CMWColors::GetBKNormalCBrush(CMWColors::m_iDarkTheme != 0);
pDC->FillRect ( &rectLabel, brush );
}
else
{
CBrush *brush = CMWColors::GetBKNormalCBrush(CMWColors::m_iDarkTheme != 0);
pDC->FillRect ( &rectLabel, brush );
}
//DrawBitmap ( pDC->m_hDC, &rectLabel );
}
// paint the text.
rectLabel.left += 2;
rectLabel.right -= 2;
UINT nFormat = DT_SINGLELINE|DT_VCENTER;
if ( tagHeaderInfo.fmt & HDF_LEFT )
{
nFormat |= DT_LEFT;
}
else if ( tagHeaderInfo.fmt & HDF_RIGHT )
{
nFormat |= DT_RIGHT;
}
else if ( tagHeaderInfo.fmt & HDF_CENTER )
{
nFormat |= DT_CENTER;
}
pDC->DrawText(szText, rectLabel, nFormat);
*pResult= CDRF_SKIPDEFAULT;
break;
}
default:
{
*pResult = CDRF_DODEFAULT;
break;
}
}
}
}
//
/////////////////////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////////////////////
BOOL CMWCHeaderCtrl::OnEraseBkgnd(CDC* pDC)
{
//
BOOL bRes = FriendEraseBkgnd(this, pDC);
if ( bRes )
{
return bRes;
}
return CHeaderCtrl::OnEraseBkgnd(pDC);
}
//
/////////////////////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////////////////////
HBRUSH CMWCHeaderCtrl::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
HBRUSH hbr = CHeaderCtrl::OnCtlColor(pDC, pWnd, nCtlColor);
//
//
return hbr;
}