-
Notifications
You must be signed in to change notification settings - Fork 151
/
TreeViewCtrl2.h
386 lines (383 loc) · 8.78 KB
/
TreeViewCtrl2.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#pragma once
//#include <atlbase.h>
//#include <atlwin.h>
//#include <atlapp.h>
//#include <atldlgs.h>
//#include <atltypes.h>
//#include <atlctrls.h>
//
//#define NM_GetTipToolInfo NM_FIRST-50
//using namespace WTL;
//
//struct TipTooInfo
//{
// NMHDR hr;
// HTREEITEM Item;
// LPCWSTR String;
//};
//
//class CTreeViewCtrl2 :public CWindowImpl<CTreeViewCtrl2, CTreeViewCtrl>//, public CDoubleBufferImpl<CTreeViewCtrl2>
//{
// CToolTipCtrl m_pToolTip;
//
//
// TipTooInfo TipInfo;
// //HTREEITEM LastItem;
// //模式0
// void TravelParent0(HTREEITEM hItem, int nState)
// {
// HTREEITEM Parent = GetParentItem(hItem), Child;
// if (Parent)
// {
// int Count[5] = { 0 };
//
// for (Child = GetChildItem(Parent); Child; Child = GetNextSiblingItem(Child))
// {
// Count[GetItemState(Child, TVIS_STATEIMAGEMASK) >> 12]++;
// }
//
// if (Count[3] || Count[2])
// {
// //while (Parent)
// do
// {
// SetItemState(Parent, 0x3000, TVIS_STATEIMAGEMASK);
// } while (Parent = GetParentItem(Parent));
// }
// else
// {
// SetItemState(Parent, 0x1000, TVIS_STATEIMAGEMASK);
// TravelParent0(Parent, 0);
// }
// }
// }
// void TravelChild0(HTREEITEM hItem, int nState)
// {
// hItem = GetChildItem(hItem);
//
// while (hItem)
// {
// SetItemState(hItem, nState, TVIS_STATEIMAGEMASK);
// TravelChild0(hItem, nState);
// hItem = GetNextSiblingItem(hItem);
// }
// }
//
//
// //模式1 自然模式
// void TravelParent1(HTREEITEM hItem, int nState)
// {
// HTREEITEM Parent = GetParentItem(hItem), Child;
// int TState;
//
//
// if (Parent&&GetItemState(Parent, TVIS_STATEIMAGEMASK) > 0xFFF)
// {
// Child = GetChildItem(Parent);
//
// while (Child)
// {
// if (Child != hItem)
// {
// TState = GetItemState(Child, TVIS_STATEIMAGEMASK)&TVIS_STATEIMAGEMASK;
// if (TState > 0xFFF && TState != nState)
// {
// //nState = INDEXTOSTATEIMAGEMASK(2);
//
// do
// {
// SetItemState(Parent, 0x3000, TVIS_STATEIMAGEMASK);
// Parent = GetParentItem(Parent);
//
// } while (Parent&&GetItemState(Parent, TVIS_STATEIMAGEMASK) > 0xFFF);
//
// return;
// }
// }
// Child = GetNextSiblingItem(Child);
// }
//
// SetItemState(Parent, nState, TVIS_STATEIMAGEMASK);
// TravelParent1(Parent, nState);
// }
// }
//#define TravelChild1 TravelChild0
// //void TravelChild(HTREEITEM hItem, int nState);
//
// //模式2
// void TravelParent2(HTREEITEM hItem, int nState)
// {
// HTREEITEM Parent = GetParentItem(hItem), Child;
// if (Parent)
// {
// int Count[5] = { 0 };
//
// for (Child = GetChildItem(Parent); Child; Child = GetNextSiblingItem(Child))
// {
// Count[GetItemState(Child, TVIS_STATEIMAGEMASK) >> 12]++;
// }
//
// if (Count[1] == 0 && Count[4] == 0 && Count[3] == 0)
// {
// SetItemState(Parent, 2 << 12, TVIS_STATEIMAGEMASK);
// }
// else
// {
// if ((GetItemState(Parent, TVIS_STATEIMAGEMASK) >> 12) == 2 || Count[2] || Count[3])
// {
// SetItemState(Parent, 3 << 12, TVIS_STATEIMAGEMASK);
// }
// else if ((GetItemState(Parent, TVIS_STATEIMAGEMASK) >> 12) != 3)
// {
// SetItemState(Parent, 1 << 12, TVIS_STATEIMAGEMASK);
// }
// }
//
// TravelParent2(Parent, nState);
// }
// }
// void TravelChild2(HTREEITEM hItem, int nState)
// {
// switch (nState >> 12)
// {
// case 4:
// case 2:
// case 1:
// TravelChild0(hItem, nState); break;
// case 3:
// {
// if (GetChildItem(hItem))
// TravelChild0(hItem, 1 << 12);
// else
// {
// SetItemState(hItem, (3 % Flage + 1) << 12, TVIS_STATEIMAGEMASK);
// }
// break;
// }
// default:
// break;
// }
// }
//
// typedef void (CTreeViewCtrl2::*Travel)(HTREEITEM, int);
//
// Travel NowTravelParent, NowTravelChild;
//
//public:
// int Flage;
//
//
// void SubclassWindow(HWND hWnd, int s = 2)
// {
// //LastItem = 0;
// if (hWnd)
// {
// CWindowImpl<CTreeViewCtrl2, CTreeViewCtrl>::SubclassWindow(hWnd);
// //this->SetBkColor(GetSysColor(COLOR_WINDOWFRAME));
//
// static CImageList m_imgList;
// if (m_imgList.m_hImageList == NULL)
// {
// m_imgList.Create(14, 14, ILC_COLOR, 4, 4);
// m_imgList.SetBkColor(RGB(255, 255, 255));
// CBitmap Temp;
// Temp.LoadBitmapW(IDB_BITMAP_NotChecked);
// m_imgList.Add(Temp, RGB(0, 0, 0));
// m_imgList.Add(Temp, RGB(0, 0, 0));
// Temp.DeleteObject();
//
// Temp.LoadBitmapW(IDB_BITMAP_Checked);
// m_imgList.Add(Temp, RGB(0, 0, 0));
// Temp.DeleteObject();
//
// Temp.LoadBitmapW(IDB_BITMAP_PartChecked);
// m_imgList.Add(Temp, RGB(0, 0, 0));
// Temp.DeleteObject();
//
// Temp.LoadBitmapW(IDB_BITMAP_Delete);
// m_imgList.Add(Temp, RGB(0, 0, 0));
// Temp.DeleteObject();
// }
//
// SetImageList(m_imgList, TVSIL_STATE);
// TipInfo.hr.code = NM_GetTipToolInfo;
// TipInfo.hr.hwndFrom = m_hWnd;
// TipInfo.hr.idFrom = CWindow(m_hWnd).GetDlgCtrlID();
//
// TipInfo.Item = NULL;
// TipInfo.String = NULL;
//
// if (s == 1)
// {
// NowTravelParent = &CTreeViewCtrl2::TravelParent1;
// NowTravelChild = &CTreeViewCtrl2::TravelChild1;
// Flage = 2;
// }
// else if (s == 0)
// {
// NowTravelParent = &CTreeViewCtrl2::TravelParent0;
// NowTravelChild = &CTreeViewCtrl2::TravelChild0;
// Flage = 2;
// }
// else if (s == 2)
// {
// NowTravelParent = &CTreeViewCtrl2::TravelParent2;
// NowTravelChild = &CTreeViewCtrl2::TravelChild2;
// Flage = 4;
// }
//
// m_pToolTip.Create(m_hWnd, 0, NULL, TTS_ALWAYSTIP);
//
// m_pToolTip.AddTool(m_hWnd, LPSTR_TEXTCALLBACK);
// this->SetToolTips(m_pToolTip);
//
// m_pToolTip.Activate(TRUE);
//
//
//
// m_pToolTip.SetDelayTime(TTDT_AUTOPOP, 10000);
// m_pToolTip.SetMaxTipWidth(300);
//
// //m_pToolTip.SetTipBkColor(GetSysColor(COLOR_WINDOW));
// //m_pToolTip.SetTipTextColor(GetSysColor(COLOR_HIGHLIGHTTEXT));
//
// //CDCHandle cd(m_pToolTip.GetDC());
// //cd.SetBkColor(GetSysColor(COLOR_WINDOW));
// //cd.SetTextColor(GetSysColor(COLOR_HIGHLIGHTTEXT));
//
// }
// }
//
// BEGIN_MSG_MAP_EX(CTreeViewCtrl2)
// MSG_WM_LBUTTONDOWN(OnLButtonDown)
// //MESSAGE_HANDLER(WM_RBUTTONDOWN, OnRButtonDown)
// MSG_WM_RBUTTONDOWN(OnRButtonDown)
// MSG_WM_MOUSEMOVE(OnMouseMove)
// //CHAIN_MSG_MAP(CTreeViewCtrlWithWindow)
// DEFAULT_REFLECTION_HANDLER()
// END_MSG_MAP()
//
// //BOOL PreTranslateMessage(MSG* pMsg)
// //{
// // m_pToolTip.Activate(TRUE);
// // m_pToolTip.RelayEvent(pMsg);
//
// // return FALSE;
// //}
//
// void OnMouseMove(UINT nFlags, CPoint point)
// {
// SetMsgHandled(FALSE);
//
// UINT temp;
// HTREEITEM hItem = HitTest(point, &temp);
// if (temp&TVHT_ONITEM)
// {
// if (TipInfo.Item != hItem)
// {
// TipInfo.Item = hItem;
// //m_pToolTip.SetWindowTextW(L"哈哈");
// //m_pToolTip.Activate(1);
// //
// //m_pToolTip.ShowWindow(1);
// TipInfo.String = NULL;
//
//
// ::SendMessage(GetParent(), WM_NOTIFY, 0, (LPARAM)&TipInfo);
//
// if (TipInfo.String)
// {
//
// //m_pToolTip.SetToolInfo()
// m_pToolTip.Activate(1);
//
// m_pToolTip.UpdateTipText(TipInfo.String, m_hWnd);
//
// //m_pToolTip.ShowWindow(1);
//
// }
// else
// {
// //m_pToolTip.ShowWindow(0);
// //m_pToolTip.Pop();
// m_pToolTip.Activate(0);
// }
// }
//
// return;
//
// }
// else
// {
// TipInfo.Item = NULL;
// }
// m_pToolTip.Activate(0);
// //m_pToolTip.Pop();
// //m_pToolTip.ShowWindow(0);
// //m_pToolTip.Activate(0);
//
// //SetMsgHandled(FALSE);
// }
//
// void OnLButtonDown(UINT nFlags, CPoint point)
// {
// //this->P
// //m_pToolTip.RelayEvent()
// UINT temp;
// HTREEITEM hItem = HitTest(point, &temp);
//
// if (temp&TVHT_ONITEMSTATEICON)
// {
//
// temp = ((GetItemState(hItem, TVIS_STATEIMAGEMASK) >> 12) % Flage + 1) << 12;
// SetItemState(hItem, temp, TVIS_STATEIMAGEMASK);
//
// //////////////////////////////
// //将状态向下延伸
// //TravelChild(hItem, temp);
// (this->*NowTravelChild)(hItem, temp);
// //*(CTreeCtrlEx::NowTravelChild)(hItem, temp);
//
// //在向上反馈状态
// (this->*NowTravelParent)(hItem, temp);
//
// }
//
// SetMsgHandled(FALSE);
// }
//
// //LRESULT OnRButtonDown(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
// void OnRButtonDown(UINT nFlags, CPoint point)
// {
// SetMsgHandled(FALSE);
// //bHandled=FALSE;
// UINT temp;
// HTREEITEM hItem = HitTest(point, &temp);
//
// if (temp&TVHT_ONITEM)
// {
// auto T = GetNextSelectedItem();
//
// if (T)
// {
// SetItemState(T, 0, TVIS_SELECTED);
// }
//
// SetItemState(hItem, TVIS_SELECTED, TVIS_SELECTED);
// }
// //SendMessage(WM_LBUTTONDOWN, wParam, lParam);
//
// //return 0;
// }
//
//
// void SetCheck(HTREEITEM hItem)
// {
// SetItemState(hItem, 2 << 12, TVIS_STATEIMAGEMASK);
// (this->*NowTravelChild)(hItem, 2 << 12);
// //*(CTreeCtrlEx::NowTravelChild)(hItem, temp);
//
// //在向上反馈状态
// (this->*NowTravelParent)(hItem, 2 << 12);
// }
//};