-
Notifications
You must be signed in to change notification settings - Fork 0
/
TRXCHeaderCtrlBase.cpp
194 lines (165 loc) · 5.87 KB
/
TRXCHeaderCtrlBase.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
183
184
185
186
187
188
189
190
191
192
193
194
#include "stdafx.h"
#include "TRXCHeaderCtrlBase.h"
#include "TRXTools.h"
#include "TRXColors.h"
#include "TRXGlobal.h"
#include "TRXGDI.h"
#define LEN_TEXT64 64
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
IMPLEMENT_DYNAMIC(CTRXCHeaderCtrlBase, CHeaderCtrl)
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
CTRXCHeaderCtrlBase::CTRXCHeaderCtrlBase(void)
{
}
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
CTRXCHeaderCtrlBase::~CTRXCHeaderCtrlBase(void)
{
}
BEGIN_MESSAGE_MAP(CTRXCHeaderCtrlBase, CHeaderCtrl)
ON_WM_ERASEBKGND()
ON_WM_CTLCOLOR()
ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, &CTRXCHeaderCtrlBase::OnNMCustomdraw)
END_MESSAGE_MAP()
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
HBRUSH CTRXCHeaderCtrlBase::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
//
HBRUSH hBrush = CTRXColors::OnCtlColor ( pDC, pWnd, nCtlColor );
if ( hBrush != NULL )
{
return hBrush;
}
HBRUSH hbr = CHeaderCtrl::OnCtlColor(pDC, pWnd, nCtlColor);
//
return hbr;
}
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
BOOL CTRXCHeaderCtrlBase::OnEraseBkgnd(CDC* pDC)
{
//
if ( CTRXColors::OnEraseBkgnd(pDC, this ) )
{
return TRUE;
}
return CHeaderCtrl::OnEraseBkgnd(pDC);
}
//
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
void CTRXCHeaderCtrlBase::OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMCUSTOMDRAW pNMCD = reinterpret_cast<LPNMCUSTOMDRAW>(pNMHDR);
//
if ( CTRXColors::m_iDarkTheme == 0 )
{
*pResult = CDRF_DODEFAULT;
return;
}
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 [ LEN_TEXT64 ];
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 ( CTRXColors::GetFGHeaderCR(true) );
if ( tagHeaderInfo.iImage == 0 )
{
pDC->FillRect ( &rectLabel, CTRXColors::GetBKHeaderCBrush(true) );
// EraseRectWithGrade0 ( &rectLabel, pDC );
// DrawBitmap ( pDC->m_hDC, &rectLabel );
}
else if ( tagHeaderInfo.iImage == 1 )
{
pDC->FillRect ( &rectLabel, CTRXColors::GetBKHeaderCBrush(true) );
// EraseRectWithGrade1 ( &rectLabel, pDC );
// DrawBitmapDes ( pDC->m_hDC, &rectLabel );
}
else if ( tagHeaderInfo.iImage == 2 )
{
pDC->FillRect ( &rectLabel, CTRXColors::GetBKHeaderCBrush(true) );
// EraseRectWithGrade2 ( &rectLabel, pDC );
// DrawBitmapAsc ( pDC->m_hDC, &rectLabel );
}
else
{
if ( iCol % 2 == 0 )
{
pDC->FillRect ( &rectLabel, CTRXColors::GetBKHeaderCBrush(true) );
}
else
{
pDC->FillRect ( &rectLabel, CTRXColors::GetBKHeaderCBrush(true) );
}
//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;
}
}
}
}