-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathListBoxPlus.h
208 lines (173 loc) · 6.42 KB
/
ListBoxPlus.h
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#pragma once
#define STRICT
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
struct Theme
{
COLORREF clrWindow = GetSysColor(COLOR_WINDOW);
COLORREF clrHighlight = GetSysColor(COLOR_HIGHLIGHT);
COLORREF clrWindowText = GetSysColor(COLOR_WINDOWTEXT);
COLORREF clrHighlightText = GetSysColor(COLOR_HIGHLIGHTTEXT);
COLORREF clrGrayText = GetSysColor(COLOR_GRAYTEXT);
HBRUSH brWindow = NULL;
HBRUSH brHighlight = NULL;
};
extern Theme g_Theme;
class ListBox
{
public:
void Create(_In_ HWND hParent, _In_ DWORD dwStyle, _In_ RECT rPos, _In_ int nID)
{
const HINSTANCE hInstance = NULL;
m_hWnd = CreateWindow(WC_LISTBOX, nullptr, dwStyle, rPos.left, rPos.top, Width(rPos), Height(rPos), hParent, reinterpret_cast<HMENU>(static_cast<INT_PTR>(nID)), hInstance, NULL);
}
operator bool() const { return m_hWnd != NULL; }
operator HWND() const { return m_hWnd; }
void ResetContent() { ListBox_ResetContent(m_hWnd); }
int AddString(LPCTSTR lpsz) { return ListBox_AddString(m_hWnd, lpsz); }
int GetCount() const { return ListBox_GetCount(m_hWnd); }
int GetCurSel() const { return ListBox_GetCurSel(m_hWnd); }
LPARAM GetItemData(int i) const { return ListBox_GetItemData(m_hWnd, i); }
int GetItemRect(int i, LPRECT pRect) { return ListBox_GetItemRect(m_hWnd, i, pRect); }
int GetText(int i, LPTSTR lpszBuffer) const { return ListBox_GetText(m_hWnd, i, lpszBuffer); }
int SetCurSel(int i) { return ListBox_SetCurSel(m_hWnd, i); }
int SetItemData(int i, LPARAM data) { return ListBox_SetItemData(m_hWnd, i, data); }
int SetTopIndex(int i) { return ListBox_SetTopIndex(m_hWnd, i); }
private:
HWND m_hWnd{ NULL };
};
class ListBoxOwnerDrawnFixed : public ListBox
{
private:
struct ItemData
{
LPARAM lParam;
HICON hIcon;
TCHAR strRight[MAX_PATH];
BOOL bGray;
};
ItemData* GetInternalItemData(int i)
{
const LPARAM lParam = ListBox::GetItemData(i);
ItemData* pData = lParam == CB_ERR ? nullptr : reinterpret_cast<ItemData*>(lParam);
if (pData == nullptr)
{
pData = new ItemData({});
ListBox::SetItemData(i, reinterpret_cast<LPARAM>(pData));
}
return pData;
}
const ItemData* GetInternalItemData(int i) const
{
const LPARAM lParam = ListBox::GetItemData(i);
ItemData* pData = lParam == CB_ERR ? nullptr : reinterpret_cast<ItemData*>(lParam);
return pData;
}
public:
void Create(_In_ HWND hParent, _In_ DWORD dwStyle, _In_ RECT rPos, _In_ int nID)
{
m_nID = nID;
ListBox::Create(hParent, dwStyle | LBS_OWNERDRAWFIXED, rPos, nID);
}
LPARAM GetItemData(int i) const
{
const ItemData* pData = GetInternalItemData(i);
return pData ? pData->lParam : 0;
}
void SetItemData(int i, LPARAM data)
{
ItemData* pData = GetInternalItemData(i);
pData->lParam = data;
}
void SetItemIcon(int i, HICON hIcon)
{
ItemData* pData = GetInternalItemData(i);
pData->hIcon = hIcon;
InvalidateItem(i);
}
void SetItemRightString(int i, LPCTSTR s)
{
ItemData* pData = GetInternalItemData(i);
lstrcpy(pData->strRight, s);
InvalidateItem(i);
}
void SetItemGray(int i, BOOL b)
{
ItemData* pData = GetInternalItemData(i);
pData->bGray = b;
InvalidateItem(i);
}
void InvalidateItem(int i)
{
if (IsWindow(*this))
{
RECT r;
GetItemRect(i, &r);
InvalidateRect(*this, &r, FALSE);
}
}
private:
void OnMeasureItem(MEASUREITEMSTRUCT* lpMeasureItem)
{
//if (lpMeasureItem->CtlID == GetWindowLong(m_hWndChild, GWL_ID))
if (lpMeasureItem->CtlID == m_nID)
{
lpMeasureItem->itemHeight = GetSystemMetrics(SM_CYICON) + 4;
}
}
void OnDrawItem(const DRAWITEMSTRUCT* lpDrawItem)
{
if (lpDrawItem->hwndItem == *this)
{
if (lpDrawItem->itemID == -1) // Empty item
return;
const ItemData* pData = reinterpret_cast<ItemData*>(lpDrawItem->itemData);
const COLORREF clrForeground = SetTextColor(lpDrawItem->hDC,
lpDrawItem->itemState & ODS_SELECTED ? g_Theme.clrHighlightText : (pData->bGray ? g_Theme.clrGrayText : g_Theme.clrWindowText));
const COLORREF clrBackground = SetBkColor(lpDrawItem->hDC,
lpDrawItem->itemState & ODS_SELECTED ? g_Theme.clrHighlight : g_Theme.clrWindow);
TCHAR text[1024];
const int cch = GetText(lpDrawItem->itemID, text);
FillRect(lpDrawItem->hDC, &lpDrawItem->rcItem, lpDrawItem->itemState & ODS_SELECTED ? g_Theme.brHighlight : g_Theme.brWindow);
RECT rc = lpDrawItem->rcItem;
rc.left = lpDrawItem->rcItem.right - Width(lpDrawItem->rcItem) / 4;
DrawText(lpDrawItem->hDC, pData->strRight, lstrlen(pData->strRight), &rc, DT_VCENTER | DT_RIGHT | DT_END_ELLIPSIS | DT_SINGLELINE | DT_NOPREFIX);
rc.right = rc.left;
rc.left = lpDrawItem->rcItem.left + GetSystemMetrics(SM_CXICON) + 4;
DrawText(lpDrawItem->hDC, text, cch, &rc, DT_VCENTER | DT_LEFT | DT_END_ELLIPSIS | DT_SINGLELINE | DT_NOPREFIX);
SetTextColor(lpDrawItem->hDC, clrForeground);
SetBkColor(lpDrawItem->hDC, clrBackground);
DrawIcon(lpDrawItem->hDC, lpDrawItem->rcItem.left + 2, lpDrawItem->rcItem.top + 2, pData->hIcon);
if (lpDrawItem->itemState & ODS_FOCUS)
DrawFocusRect(lpDrawItem->hDC, &lpDrawItem->rcItem);
}
}
void OnDeleteItem(const DELETEITEMSTRUCT* lpDeleteItem)
{
if (lpDeleteItem->hwndItem == *this)
{
ItemData* pData = reinterpret_cast<ItemData*>(lpDeleteItem->itemData);
DestroyIcon(pData->hIcon);
delete pData;
}
}
private:
bool m_bHandled;
void SetHandled(bool bHandled) { m_bHandled = bHandled; }
public:
LRESULT HandleChainMessage(const UINT uMsg, const WPARAM wParam, const LPARAM lParam)
{
m_bHandled = false;
LRESULT ret = 0;
switch (uMsg)
{
HANDLE_MSG(WM_MEASUREITEM, OnMeasureItem);
HANDLE_MSG(WM_DRAWITEM, OnDrawItem);
HANDLE_MSG(WM_DELETEITEM, OnDeleteItem);
}
return ret;
}
private:
int m_nID{ 0 };
};