8d2a6f3d1ff5d4a4dded1483769a83825d0b7ae7
[reactos.git] / reactos / dll / win32 / comctl32 / treeview.c
1 /* Treeview control
2 *
3 * Copyright 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
4 * Copyright 1998,1999 Alex Priem <alexp@sci.kun.nl>
5 * Copyright 1999 Sylvain St-Germain
6 * Copyright 2002 CodeWeavers, Aric Stewart
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 *
22 * NOTES
23 *
24 * Note that TREEVIEW_INFO * and HTREEITEM are the same thing.
25 *
26 * Note2: If item's text == LPSTR_TEXTCALLBACKA we allocate buffer
27 * of size TEXT_CALLBACK_SIZE in DoSetItem.
28 * We use callbackMask to keep track of fields to be updated.
29 *
30 * TODO:
31 * missing notifications: TVN_GETINFOTIP, TVN_KEYDOWN,
32 * TVN_SETDISPINFO, TVN_SINGLEEXPAND
33 *
34 * missing styles: TVS_FULLROWSELECT, TVS_INFOTIP, TVS_RTLREADING,
35 *
36 * missing item styles: TVIS_CUT, TVIS_EXPANDPARTIAL
37 *
38 * Make the insertion mark look right.
39 * Scroll (instead of repaint) as much as possible.
40 */
41
42 #include "config.h"
43 #include "wine/port.h"
44
45 #include <assert.h>
46 #include <ctype.h>
47 #include <stdarg.h>
48 #include <string.h>
49 #include <limits.h>
50 #include <stdlib.h>
51
52 #define NONAMELESSUNION
53 #define NONAMELESSSTRUCT
54 #include "windef.h"
55 #include "winbase.h"
56 #include "wingdi.h"
57 #include "winuser.h"
58 #include "winnls.h"
59 #include "commctrl.h"
60 #include "comctl32.h"
61 #include "uxtheme.h"
62 #include "tmschema.h"
63 #include "wine/unicode.h"
64 #include "wine/debug.h"
65
66 WINE_DEFAULT_DEBUG_CHANNEL(treeview);
67
68 /* internal structures */
69
70 typedef struct _TREEITEM /* HTREEITEM is a _TREEINFO *. */
71 {
72 UINT callbackMask;
73 UINT state;
74 UINT stateMask;
75 LPWSTR pszText;
76 int cchTextMax;
77 int iImage;
78 int iSelectedImage;
79 int cChildren;
80 LPARAM lParam;
81 int iIntegral; /* item height multiplier (1 is normal) */
82 int iLevel; /* indentation level:0=root level */
83 HTREEITEM parent; /* handle to parent or 0 if at root */
84 HTREEITEM firstChild; /* handle to first child or 0 if no child */
85 HTREEITEM lastChild;
86 HTREEITEM prevSibling; /* handle to prev item in list, 0 if first */
87 HTREEITEM nextSibling; /* handle to next item in list, 0 if last */
88 RECT rect;
89 LONG linesOffset;
90 LONG stateOffset;
91 LONG imageOffset;
92 LONG textOffset;
93 LONG textWidth; /* horizontal text extent for pszText */
94 LONG visibleOrder; /* visible ordering, 0 is first visible item */
95 } TREEVIEW_ITEM;
96
97
98 typedef struct tagTREEVIEW_INFO
99 {
100 HWND hwnd;
101 HWND hwndNotify; /* Owner window to send notifications to */
102 DWORD dwStyle;
103 HTREEITEM root;
104 UINT uInternalStatus;
105 INT Timer;
106 UINT uNumItems; /* number of valid TREEVIEW_ITEMs */
107 INT cdmode; /* last custom draw setting */
108 UINT uScrollTime; /* max. time for scrolling in milliseconds */
109 BOOL bRedraw; /* if FALSE we validate but don't redraw in TREEVIEW_Paint() */
110
111 UINT uItemHeight; /* item height */
112 BOOL bHeightSet;
113
114 LONG clientWidth; /* width of control window */
115 LONG clientHeight; /* height of control window */
116
117 LONG treeWidth; /* width of visible tree items */
118 LONG treeHeight; /* height of visible tree items */
119
120 UINT uIndent; /* indentation in pixels */
121 HTREEITEM selectedItem; /* handle to selected item or 0 if none */
122 HTREEITEM hotItem; /* handle currently under cursor, 0 if none */
123 HTREEITEM focusedItem; /* item that was under the cursor when WM_LBUTTONDOWN was received */
124 HTREEITEM editItem; /* item being edited with builtin edit box */
125
126 HTREEITEM firstVisible; /* handle to first visible item */
127 LONG maxVisibleOrder;
128 HTREEITEM dropItem; /* handle to item selected by drag cursor */
129 HTREEITEM insertMarkItem; /* item after which insertion mark is placed */
130 BOOL insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
131 HIMAGELIST dragList; /* Bitmap of dragged item */
132 LONG scrollX;
133 COLORREF clrBk;
134 COLORREF clrText;
135 COLORREF clrLine;
136 COLORREF clrInsertMark;
137 HFONT hFont;
138 HFONT hDefaultFont;
139 HFONT hBoldFont;
140 HFONT hUnderlineFont;
141 HCURSOR hcurHand;
142 HWND hwndToolTip;
143
144 HWND hwndEdit;
145 WNDPROC wpEditOrig; /* orig window proc for subclassing edit */
146 BOOL bIgnoreEditKillFocus;
147 BOOL bLabelChanged;
148
149 BOOL bNtfUnicode; /* TRUE if should send NOTIFY with W */
150 HIMAGELIST himlNormal;
151 int normalImageHeight;
152 int normalImageWidth;
153 HIMAGELIST himlState;
154 int stateImageHeight;
155 int stateImageWidth;
156 HDPA items;
157
158 DWORD lastKeyPressTimestamp;
159 WPARAM charCode;
160 INT nSearchParamLength;
161 WCHAR szSearchParam[ MAX_PATH ];
162 } TREEVIEW_INFO;
163
164
165 /******** Defines that TREEVIEW_ProcessLetterKeys uses ****************/
166 #define KEY_DELAY 450
167
168 /* bitflags for infoPtr->uInternalStatus */
169
170 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */
171 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */
172 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */
173 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */
174 #define TV_RDRAG 0x10 /* ditto Rbutton */
175 #define TV_RDRAGGING 0x20
176
177 /* bitflags for infoPtr->timer */
178
179 #define TV_EDIT_TIMER 2
180 #define TV_EDIT_TIMER_SET 2
181
182 #define TEXT_CALLBACK_SIZE 260
183
184 #define TREEVIEW_LEFT_MARGIN 8
185
186 #define MINIMUM_INDENT 19
187
188 #define CALLBACK_MASK_ALL (TVIF_TEXT|TVIF_CHILDREN|TVIF_IMAGE|TVIF_SELECTEDIMAGE)
189
190 #define STATEIMAGEINDEX(x) (((x) >> 12) & 0x0f)
191 #define OVERLAYIMAGEINDEX(x) (((x) >> 8) & 0x0f)
192 #define ISVISIBLE(x) ((x)->visibleOrder >= 0)
193
194 #define GETLINECOLOR(x) ((x) == CLR_DEFAULT ? comctl32_color.clrGrayText : (x))
195 #define GETBKCOLOR(x) ((x) == CLR_NONE ? comctl32_color.clrWindow : (x))
196 #define GETTXTCOLOR(x) ((x) == CLR_NONE ? comctl32_color.clrWindowText : (x))
197 #define GETINSCOLOR(x) ((x) == CLR_DEFAULT ? comctl32_color.clrBtnText : (x))
198
199 static const WCHAR themeClass[] = { 'T','r','e','e','v','i','e','w',0 };
200
201
202 typedef VOID (*TREEVIEW_ItemEnumFunc)(TREEVIEW_INFO *, TREEVIEW_ITEM *,LPVOID);
203
204
205 static VOID TREEVIEW_Invalidate(const TREEVIEW_INFO *, const TREEVIEW_ITEM *);
206
207 static LRESULT TREEVIEW_DoSelectItem(TREEVIEW_INFO *, INT, HTREEITEM, INT);
208 static VOID TREEVIEW_SetFirstVisible(TREEVIEW_INFO *, TREEVIEW_ITEM *, BOOL);
209 static LRESULT TREEVIEW_EnsureVisible(TREEVIEW_INFO *, HTREEITEM, BOOL);
210 static LRESULT TREEVIEW_RButtonUp(const TREEVIEW_INFO *, const POINT *);
211 static LRESULT TREEVIEW_EndEditLabelNow(TREEVIEW_INFO *infoPtr, BOOL bCancel);
212 static VOID TREEVIEW_UpdateScrollBars(TREEVIEW_INFO *infoPtr);
213 static LRESULT TREEVIEW_HScroll(TREEVIEW_INFO *, WPARAM);
214
215 /* Random Utilities *****************************************************/
216
217 #ifndef NDEBUG
218 static inline void
219 TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr)
220 {
221 (void)infoPtr;
222 }
223 #else
224 /* The definition is at the end of the file. */
225 static void TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr);
226 #endif
227
228 /* Returns the treeview private data if hwnd is a treeview.
229 * Otherwise returns an undefined value. */
230 static TREEVIEW_INFO *
231 TREEVIEW_GetInfoPtr(HWND hwnd)
232 {
233 return (TREEVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
234 }
235
236 /* Don't call this. Nothing wants an item index. */
237 static inline int
238 TREEVIEW_GetItemIndex(const TREEVIEW_INFO *infoPtr, HTREEITEM handle)
239 {
240 return DPA_GetPtrIndex(infoPtr->items, handle);
241 }
242
243 /* Checks if item has changed and needs to be redrawn */
244 static inline BOOL item_changed (const TREEVIEW_ITEM *tiOld, const TREEVIEW_ITEM *tiNew,
245 const TVITEMEXW *tvChange)
246 {
247 /* Number of children has changed */
248 if ((tvChange->mask & TVIF_CHILDREN) && (tiOld->cChildren != tiNew->cChildren))
249 return TRUE;
250
251 /* Image has changed and it's not a callback */
252 if ((tvChange->mask & TVIF_IMAGE) && (tiOld->iImage != tiNew->iImage) &&
253 tiNew->iImage != I_IMAGECALLBACK)
254 return TRUE;
255
256 /* Selected image has changed and it's not a callback */
257 if ((tvChange->mask & TVIF_SELECTEDIMAGE) && (tiOld->iSelectedImage != tiNew->iSelectedImage) &&
258 tiNew->iSelectedImage != I_IMAGECALLBACK)
259 return TRUE;
260
261 /* Text has changed and it's not a callback */
262 if ((tvChange->mask & TVIF_TEXT) && (tiOld->pszText != tiNew->pszText) &&
263 tiNew->pszText != LPSTR_TEXTCALLBACKW)
264 return TRUE;
265
266 /* Indent has changed */
267 if ((tvChange->mask & TVIF_INTEGRAL) && (tiOld->iIntegral != tiNew->iIntegral))
268 return TRUE;
269
270 /* Item state has changed */
271 if ((tvChange->mask & TVIF_STATE) && ((tiOld->state ^ tiNew->state) & tvChange->stateMask ))
272 return TRUE;
273
274 return FALSE;
275 }
276
277 /***************************************************************************
278 * This method checks that handle is an item for this tree.
279 */
280 static BOOL
281 TREEVIEW_ValidItem(const TREEVIEW_INFO *infoPtr, HTREEITEM handle)
282 {
283 if (TREEVIEW_GetItemIndex(infoPtr, handle) == -1)
284 {
285 TRACE("invalid item %p\n", handle);
286 return FALSE;
287 }
288 else
289 return TRUE;
290 }
291
292 static HFONT
293 TREEVIEW_CreateBoldFont(HFONT hOrigFont)
294 {
295 LOGFONTW font;
296
297 GetObjectW(hOrigFont, sizeof(font), &font);
298 font.lfWeight = FW_BOLD;
299 return CreateFontIndirectW(&font);
300 }
301
302 static HFONT
303 TREEVIEW_CreateUnderlineFont(HFONT hOrigFont)
304 {
305 LOGFONTW font;
306
307 GetObjectW(hOrigFont, sizeof(font), &font);
308 font.lfUnderline = TRUE;
309 return CreateFontIndirectW(&font);
310 }
311
312 static inline HFONT
313 TREEVIEW_FontForItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *item)
314 {
315 if ((infoPtr->dwStyle & TVS_TRACKSELECT) && (item == infoPtr->hotItem))
316 return infoPtr->hUnderlineFont;
317 if (item->state & TVIS_BOLD)
318 return infoPtr->hBoldFont;
319 return infoPtr->hFont;
320 }
321
322 /* for trace/debugging purposes only */
323 static const char *
324 TREEVIEW_ItemName(const TREEVIEW_ITEM *item)
325 {
326 if (item == NULL) return "<null item>";
327 if (item->pszText == LPSTR_TEXTCALLBACKW) return "<callback>";
328 if (item->pszText == NULL) return "<null>";
329 return debugstr_w(item->pszText);
330 }
331
332 /* An item is not a child of itself. */
333 static BOOL
334 TREEVIEW_IsChildOf(const TREEVIEW_ITEM *parent, const TREEVIEW_ITEM *child)
335 {
336 do
337 {
338 child = child->parent;
339 if (child == parent) return TRUE;
340 } while (child != NULL);
341
342 return FALSE;
343 }
344
345
346 /* Tree Traversal *******************************************************/
347
348 /***************************************************************************
349 * This method returns the last expanded sibling or child child item
350 * of a tree node
351 */
352 static TREEVIEW_ITEM *
353 TREEVIEW_GetLastListItem(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
354 {
355 if (!wineItem)
356 return NULL;
357
358 while (wineItem->lastChild)
359 {
360 if (wineItem->state & TVIS_EXPANDED)
361 wineItem = wineItem->lastChild;
362 else
363 break;
364 }
365
366 if (wineItem == infoPtr->root)
367 return NULL;
368
369 return wineItem;
370 }
371
372 /***************************************************************************
373 * This method returns the previous non-hidden item in the list not
374 * considering the tree hierarchy.
375 */
376 static TREEVIEW_ITEM *
377 TREEVIEW_GetPrevListItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *tvItem)
378 {
379 if (tvItem->prevSibling)
380 {
381 /* This item has a prevSibling, get the last item in the sibling's tree. */
382 TREEVIEW_ITEM *upItem = tvItem->prevSibling;
383
384 if ((upItem->state & TVIS_EXPANDED) && upItem->lastChild != NULL)
385 return TREEVIEW_GetLastListItem(infoPtr, upItem->lastChild);
386 else
387 return upItem;
388 }
389 else
390 {
391 /* this item does not have a prevSibling, get the parent */
392 return (tvItem->parent != infoPtr->root) ? tvItem->parent : NULL;
393 }
394 }
395
396
397 /***************************************************************************
398 * This method returns the next physical item in the treeview not
399 * considering the tree hierarchy.
400 */
401 static TREEVIEW_ITEM *
402 TREEVIEW_GetNextListItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *tvItem)
403 {
404 /*
405 * If this item has children and is expanded, return the first child
406 */
407 if ((tvItem->state & TVIS_EXPANDED) && tvItem->firstChild != NULL)
408 {
409 return tvItem->firstChild;
410 }
411
412
413 /*
414 * try to get the sibling
415 */
416 if (tvItem->nextSibling)
417 return tvItem->nextSibling;
418
419 /*
420 * Otherwise, get the parent's sibling.
421 */
422 while (tvItem->parent)
423 {
424 tvItem = tvItem->parent;
425
426 if (tvItem->nextSibling)
427 return tvItem->nextSibling;
428 }
429
430 return NULL;
431 }
432
433 /***************************************************************************
434 * This method returns the nth item starting at the given item. It returns
435 * the last item (or first) we we run out of items.
436 *
437 * Will scroll backward if count is <0.
438 * forward if count is >0.
439 */
440 static TREEVIEW_ITEM *
441 TREEVIEW_GetListItem(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
442 LONG count)
443 {
444 TREEVIEW_ITEM *(*next_item)(const TREEVIEW_INFO *, const TREEVIEW_ITEM *);
445 TREEVIEW_ITEM *previousItem;
446
447 assert(wineItem != NULL);
448
449 if (count > 0)
450 {
451 next_item = TREEVIEW_GetNextListItem;
452 }
453 else if (count < 0)
454 {
455 count = -count;
456 next_item = TREEVIEW_GetPrevListItem;
457 }
458 else
459 return wineItem;
460
461 do
462 {
463 previousItem = wineItem;
464 wineItem = next_item(infoPtr, wineItem);
465
466 } while (--count && wineItem != NULL);
467
468
469 return wineItem ? wineItem : previousItem;
470 }
471
472 /* Notifications ************************************************************/
473
474 static INT get_notifycode(const TREEVIEW_INFO *infoPtr, INT code)
475 {
476 if (!infoPtr->bNtfUnicode) {
477 switch (code) {
478 case TVN_SELCHANGINGW: return TVN_SELCHANGINGA;
479 case TVN_SELCHANGEDW: return TVN_SELCHANGEDA;
480 case TVN_GETDISPINFOW: return TVN_GETDISPINFOA;
481 case TVN_SETDISPINFOW: return TVN_SETDISPINFOA;
482 case TVN_ITEMEXPANDINGW: return TVN_ITEMEXPANDINGA;
483 case TVN_ITEMEXPANDEDW: return TVN_ITEMEXPANDEDA;
484 case TVN_BEGINDRAGW: return TVN_BEGINDRAGA;
485 case TVN_BEGINRDRAGW: return TVN_BEGINRDRAGA;
486 case TVN_DELETEITEMW: return TVN_DELETEITEMA;
487 case TVN_BEGINLABELEDITW: return TVN_BEGINLABELEDITA;
488 case TVN_ENDLABELEDITW: return TVN_ENDLABELEDITA;
489 case TVN_GETINFOTIPW: return TVN_GETINFOTIPA;
490 }
491 }
492 return code;
493 }
494
495 static LRESULT
496 TREEVIEW_SendRealNotify(const TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
497 {
498 TRACE("wParam=%ld, lParam=%ld\n", wParam, lParam);
499 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, wParam, lParam);
500 }
501
502 static BOOL
503 TREEVIEW_SendSimpleNotify(const TREEVIEW_INFO *infoPtr, UINT code)
504 {
505 NMHDR nmhdr;
506 HWND hwnd = infoPtr->hwnd;
507
508 TRACE("%d\n", code);
509 nmhdr.hwndFrom = hwnd;
510 nmhdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
511 nmhdr.code = get_notifycode(infoPtr, code);
512
513 return (BOOL)TREEVIEW_SendRealNotify(infoPtr, nmhdr.idFrom, (LPARAM)&nmhdr);
514 }
515
516 static VOID
517 TREEVIEW_TVItemFromItem(const TREEVIEW_INFO *infoPtr, UINT mask, TVITEMW *tvItem, TREEVIEW_ITEM *item)
518 {
519 tvItem->mask = mask;
520 tvItem->hItem = item;
521 tvItem->state = item->state;
522 tvItem->stateMask = 0;
523 tvItem->iImage = item->iImage;
524 tvItem->iSelectedImage = item->iSelectedImage;
525 tvItem->cChildren = item->cChildren;
526 tvItem->lParam = item->lParam;
527
528 if(mask & TVIF_TEXT)
529 {
530 if (!infoPtr->bNtfUnicode)
531 {
532 tvItem->cchTextMax = WideCharToMultiByte( CP_ACP, 0, item->pszText, -1, NULL, 0, NULL, NULL );
533 tvItem->pszText = Alloc (tvItem->cchTextMax);
534 WideCharToMultiByte( CP_ACP, 0, item->pszText, -1, (LPSTR)tvItem->pszText, tvItem->cchTextMax, 0, 0 );
535 }
536 else
537 {
538 tvItem->cchTextMax = item->cchTextMax;
539 tvItem->pszText = item->pszText;
540 }
541 }
542 else
543 {
544 tvItem->cchTextMax = 0;
545 tvItem->pszText = NULL;
546 }
547 }
548
549 static BOOL
550 TREEVIEW_SendTreeviewNotify(const TREEVIEW_INFO *infoPtr, UINT code, UINT action,
551 UINT mask, HTREEITEM oldItem, HTREEITEM newItem)
552 {
553 HWND hwnd = infoPtr->hwnd;
554 NMTREEVIEWW nmhdr;
555 BOOL ret;
556
557 TRACE("code:%d action:%x olditem:%p newitem:%p\n",
558 code, action, oldItem, newItem);
559
560 ZeroMemory(&nmhdr, sizeof(NMTREEVIEWW));
561
562 nmhdr.hdr.hwndFrom = hwnd;
563 nmhdr.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
564 nmhdr.hdr.code = get_notifycode(infoPtr, code);
565 nmhdr.action = action;
566
567 if (oldItem)
568 TREEVIEW_TVItemFromItem(infoPtr, mask, &nmhdr.itemOld, oldItem);
569
570 if (newItem)
571 TREEVIEW_TVItemFromItem(infoPtr, mask, &nmhdr.itemNew, newItem);
572
573 nmhdr.ptDrag.x = 0;
574 nmhdr.ptDrag.y = 0;
575
576 ret = (BOOL)TREEVIEW_SendRealNotify(infoPtr, nmhdr.hdr.idFrom, (LPARAM)&nmhdr);
577 if (!infoPtr->bNtfUnicode)
578 {
579 Free(nmhdr.itemOld.pszText);
580 Free(nmhdr.itemNew.pszText);
581 }
582 return ret;
583 }
584
585 static BOOL
586 TREEVIEW_SendTreeviewDnDNotify(const TREEVIEW_INFO *infoPtr, UINT code,
587 HTREEITEM dragItem, POINT pt)
588 {
589 HWND hwnd = infoPtr->hwnd;
590 NMTREEVIEWW nmhdr;
591
592 TRACE("code:%d dragitem:%p\n", code, dragItem);
593
594 nmhdr.hdr.hwndFrom = hwnd;
595 nmhdr.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
596 nmhdr.hdr.code = get_notifycode(infoPtr, code);
597 nmhdr.action = 0;
598 nmhdr.itemNew.mask = TVIF_STATE | TVIF_PARAM | TVIF_HANDLE;
599 nmhdr.itemNew.hItem = dragItem;
600 nmhdr.itemNew.state = dragItem->state;
601 nmhdr.itemNew.lParam = dragItem->lParam;
602
603 nmhdr.ptDrag.x = pt.x;
604 nmhdr.ptDrag.y = pt.y;
605
606 return (BOOL)TREEVIEW_SendRealNotify(infoPtr, nmhdr.hdr.idFrom, (LPARAM)&nmhdr);
607 }
608
609
610 static BOOL
611 TREEVIEW_SendCustomDrawNotify(const TREEVIEW_INFO *infoPtr, DWORD dwDrawStage,
612 HDC hdc, RECT rc)
613 {
614 HWND hwnd = infoPtr->hwnd;
615 NMTVCUSTOMDRAW nmcdhdr;
616 LPNMCUSTOMDRAW nmcd;
617
618 TRACE("drawstage:%x hdc:%p\n", dwDrawStage, hdc);
619
620 nmcd = &nmcdhdr.nmcd;
621 nmcd->hdr.hwndFrom = hwnd;
622 nmcd->hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
623 nmcd->hdr.code = NM_CUSTOMDRAW;
624 nmcd->dwDrawStage = dwDrawStage;
625 nmcd->hdc = hdc;
626 nmcd->rc = rc;
627 nmcd->dwItemSpec = 0;
628 nmcd->uItemState = 0;
629 nmcd->lItemlParam = 0;
630 nmcdhdr.clrText = infoPtr->clrText;
631 nmcdhdr.clrTextBk = infoPtr->clrBk;
632 nmcdhdr.iLevel = 0;
633
634 return (BOOL)TREEVIEW_SendRealNotify(infoPtr, nmcd->hdr.idFrom, (LPARAM)&nmcdhdr);
635 }
636
637
638
639 /* FIXME: need to find out when the flags in uItemState need to be set */
640
641 static BOOL
642 TREEVIEW_SendCustomDrawItemNotify(const TREEVIEW_INFO *infoPtr, HDC hdc,
643 TREEVIEW_ITEM *wineItem, UINT uItemDrawState,
644 NMTVCUSTOMDRAW *nmcdhdr)
645 {
646 HWND hwnd = infoPtr->hwnd;
647 LPNMCUSTOMDRAW nmcd;
648 DWORD dwDrawStage;
649 DWORD_PTR dwItemSpec;
650 UINT uItemState;
651 INT retval;
652
653 dwDrawStage = CDDS_ITEM | uItemDrawState;
654 dwItemSpec = (DWORD_PTR)wineItem;
655 uItemState = 0;
656 if (wineItem->state & TVIS_SELECTED)
657 uItemState |= CDIS_SELECTED;
658 if (wineItem == infoPtr->selectedItem)
659 uItemState |= CDIS_FOCUS;
660 if (wineItem == infoPtr->hotItem)
661 uItemState |= CDIS_HOT;
662
663 nmcd = &nmcdhdr->nmcd;
664 nmcd->hdr.hwndFrom = hwnd;
665 nmcd->hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
666 nmcd->hdr.code = NM_CUSTOMDRAW;
667 nmcd->dwDrawStage = dwDrawStage;
668 nmcd->hdc = hdc;
669 nmcd->rc = wineItem->rect;
670 nmcd->dwItemSpec = dwItemSpec;
671 nmcd->uItemState = uItemState;
672 nmcd->lItemlParam = wineItem->lParam;
673 nmcdhdr->iLevel = wineItem->iLevel;
674
675 TRACE("drawstage:%x hdc:%p item:%lx, itemstate:%x, lItemlParam:%lx\n",
676 nmcd->dwDrawStage, nmcd->hdc, nmcd->dwItemSpec,
677 nmcd->uItemState, nmcd->lItemlParam);
678
679 retval = TREEVIEW_SendRealNotify(infoPtr, nmcd->hdr.idFrom, (LPARAM)nmcdhdr);
680
681 return retval;
682 }
683
684 static BOOL
685 TREEVIEW_BeginLabelEditNotify(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *editItem)
686 {
687 HWND hwnd = infoPtr->hwnd;
688 NMTVDISPINFOW tvdi;
689 BOOL ret;
690
691 tvdi.hdr.hwndFrom = hwnd;
692 tvdi.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
693 tvdi.hdr.code = get_notifycode(infoPtr, TVN_BEGINLABELEDITW);
694
695 TREEVIEW_TVItemFromItem(infoPtr, TVIF_HANDLE | TVIF_STATE | TVIF_PARAM | TVIF_TEXT,
696 &tvdi.item, editItem);
697
698 ret = (BOOL)TREEVIEW_SendRealNotify(infoPtr, tvdi.hdr.idFrom, (LPARAM)&tvdi);
699
700 if (!infoPtr->bNtfUnicode)
701 Free(tvdi.item.pszText);
702
703 return ret;
704 }
705
706 static void
707 TREEVIEW_UpdateDispInfo(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
708 UINT mask)
709 {
710 NMTVDISPINFOEXW callback;
711 HWND hwnd = infoPtr->hwnd;
712
713 TRACE("mask %x callbackMask %x\n", mask, wineItem->callbackMask);
714 mask &= wineItem->callbackMask;
715
716 if (mask == 0) return;
717
718 callback.hdr.hwndFrom = hwnd;
719 callback.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
720 callback.hdr.code = get_notifycode(infoPtr, TVN_GETDISPINFOW);
721
722 /* 'state' always contains valid value, as well as 'lParam'.
723 * All other parameters are uninitialized.
724 */
725 callback.item.pszText = wineItem->pszText;
726 callback.item.cchTextMax = wineItem->cchTextMax;
727 callback.item.mask = mask;
728 callback.item.hItem = wineItem;
729 callback.item.state = wineItem->state;
730 callback.item.lParam = wineItem->lParam;
731
732 /* If text is changed we need to recalculate textWidth */
733 if (mask & TVIF_TEXT)
734 wineItem->textWidth = 0;
735
736 TREEVIEW_SendRealNotify(infoPtr, callback.hdr.idFrom, (LPARAM)&callback);
737
738 /* It may have changed due to a call to SetItem. */
739 mask &= wineItem->callbackMask;
740
741 if ((mask & TVIF_TEXT) && callback.item.pszText != wineItem->pszText)
742 {
743 /* Instead of copying text into our buffer user specified its own */
744 if (!infoPtr->bNtfUnicode) {
745 LPWSTR newText;
746 int buflen;
747 int len = MultiByteToWideChar( CP_ACP, 0,
748 (LPSTR)callback.item.pszText, -1,
749 NULL, 0);
750 buflen = max((len)*sizeof(WCHAR), TEXT_CALLBACK_SIZE);
751 newText = ReAlloc(wineItem->pszText, buflen);
752
753 TRACE("returned str %s, len=%d, buflen=%d\n",
754 debugstr_a((LPSTR)callback.item.pszText), len, buflen);
755
756 if (newText)
757 {
758 wineItem->pszText = newText;
759 MultiByteToWideChar( CP_ACP, 0,
760 (LPSTR)callback.item.pszText, -1,
761 wineItem->pszText, buflen/sizeof(WCHAR));
762 wineItem->cchTextMax = buflen/sizeof(WCHAR);
763 }
764 /* If ReAlloc fails we have nothing to do, but keep original text */
765 }
766 else {
767 int len = max(lstrlenW(callback.item.pszText) + 1,
768 TEXT_CALLBACK_SIZE);
769 LPWSTR newText = ReAlloc(wineItem->pszText, len);
770
771 TRACE("returned wstr %s, len=%d\n",
772 debugstr_w(callback.item.pszText), len);
773
774 if (newText)
775 {
776 wineItem->pszText = newText;
777 strcpyW(wineItem->pszText, callback.item.pszText);
778 wineItem->cchTextMax = len;
779 }
780 /* If ReAlloc fails we have nothing to do, but keep original text */
781 }
782 }
783 else if (mask & TVIF_TEXT) {
784 /* User put text into our buffer, that is ok unless A string */
785 if (!infoPtr->bNtfUnicode) {
786 LPWSTR newText;
787 LPWSTR oldText = NULL;
788 int buflen;
789 int len = MultiByteToWideChar( CP_ACP, 0,
790 (LPSTR)callback.item.pszText, -1,
791 NULL, 0);
792 buflen = max((len)*sizeof(WCHAR), TEXT_CALLBACK_SIZE);
793 newText = Alloc(buflen);
794
795 TRACE("same buffer str %s, len=%d, buflen=%d\n",
796 debugstr_a((LPSTR)callback.item.pszText), len, buflen);
797
798 if (newText)
799 {
800 oldText = wineItem->pszText;
801 wineItem->pszText = newText;
802 MultiByteToWideChar( CP_ACP, 0,
803 (LPSTR)callback.item.pszText, -1,
804 wineItem->pszText, buflen/sizeof(WCHAR));
805 wineItem->cchTextMax = buflen/sizeof(WCHAR);
806 Free(oldText);
807 }
808 }
809 }
810
811 if (mask & TVIF_IMAGE)
812 wineItem->iImage = callback.item.iImage;
813
814 if (mask & TVIF_SELECTEDIMAGE)
815 wineItem->iSelectedImage = callback.item.iSelectedImage;
816
817 if (mask & TVIF_CHILDREN)
818 wineItem->cChildren = callback.item.cChildren;
819
820 /* These members are now permanently set. */
821 if (callback.item.mask & TVIF_DI_SETITEM)
822 wineItem->callbackMask &= ~callback.item.mask;
823 }
824
825 /***************************************************************************
826 * This function uses cChildren field to decide whether the item has
827 * children or not.
828 * Note: if this returns TRUE, the child items may not actually exist,
829 * they could be virtual.
830 *
831 * Just use wineItem->firstChild to check for physical children.
832 */
833 static BOOL
834 TREEVIEW_HasChildren(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
835 {
836 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, TVIF_CHILDREN);
837
838 return wineItem->cChildren > 0;
839 }
840
841 static INT TREEVIEW_NotifyFormat (TREEVIEW_INFO *infoPtr, HWND hwndFrom, UINT nCommand)
842 {
843 INT format;
844
845 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom, nCommand);
846
847 if (nCommand != NF_REQUERY) return 0;
848
849 format = SendMessageW(hwndFrom, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwnd, NF_QUERY);
850 TRACE("format=%d\n", format);
851
852 if (format != NFR_ANSI && format != NFR_UNICODE) return 0;
853
854 infoPtr->bNtfUnicode = (format == NFR_UNICODE);
855
856 return format;
857 }
858
859 /* Item Position ********************************************************/
860
861 /* Compute linesOffset, stateOffset, imageOffset, textOffset of an item. */
862 static VOID
863 TREEVIEW_ComputeItemInternalMetrics(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
864 {
865 /* Same effect, different optimisation. */
866 #if 0
867 BOOL lar = ((infoPtr->dwStyle & TVS_LINESATROOT)
868 && (infoPtr->dwStyle & (TVS_HASLINES|TVS_HASBUTTONS)));
869 #else
870 BOOL lar = ((infoPtr->dwStyle
871 & (TVS_LINESATROOT|TVS_HASLINES|TVS_HASBUTTONS))
872 > TVS_LINESATROOT);
873 #endif
874
875 item->linesOffset = infoPtr->uIndent * (lar ? item->iLevel : item->iLevel - 1)
876 - infoPtr->scrollX;
877 item->stateOffset = item->linesOffset + infoPtr->uIndent;
878 item->imageOffset = item->stateOffset
879 + (STATEIMAGEINDEX(item->state) ? infoPtr->stateImageWidth : 0);
880 item->textOffset = item->imageOffset + infoPtr->normalImageWidth;
881 }
882
883 static VOID
884 TREEVIEW_ComputeTextWidth(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item, HDC hDC)
885 {
886 HDC hdc;
887 HFONT hOldFont=0;
888 SIZE sz;
889
890 /* DRAW's OM docker creates items like this */
891 if (item->pszText == NULL)
892 {
893 item->textWidth = 0;
894 return;
895 }
896
897 if (hDC != 0)
898 {
899 hdc = hDC;
900 }
901 else
902 {
903 hdc = GetDC(infoPtr->hwnd);
904 hOldFont = SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, item));
905 }
906
907 GetTextExtentPoint32W(hdc, item->pszText, strlenW(item->pszText), &sz);
908 item->textWidth = sz.cx;
909
910 if (hDC == 0)
911 {
912 SelectObject(hdc, hOldFont);
913 ReleaseDC(0, hdc);
914 }
915 }
916
917 static VOID
918 TREEVIEW_ComputeItemRect(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
919 {
920 item->rect.top = infoPtr->uItemHeight *
921 (item->visibleOrder - infoPtr->firstVisible->visibleOrder);
922
923 item->rect.bottom = item->rect.top
924 + infoPtr->uItemHeight * item->iIntegral - 1;
925
926 item->rect.left = 0;
927 item->rect.right = infoPtr->clientWidth;
928 }
929
930 /* We know that only items after start need their order updated. */
931 static void
932 TREEVIEW_RecalculateVisibleOrder(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *start)
933 {
934 TREEVIEW_ITEM *item;
935 int order;
936
937 if (!start)
938 {
939 start = infoPtr->root->firstChild;
940 order = 0;
941 }
942 else
943 order = start->visibleOrder;
944
945 for (item = start; item != NULL;
946 item = TREEVIEW_GetNextListItem(infoPtr, item))
947 {
948 if (!ISVISIBLE(item) && order > 0)
949 TREEVIEW_ComputeItemInternalMetrics(infoPtr, item);
950 item->visibleOrder = order;
951 order += item->iIntegral;
952 }
953
954 infoPtr->maxVisibleOrder = order;
955
956 for (item = start; item != NULL;
957 item = TREEVIEW_GetNextListItem(infoPtr, item))
958 {
959 TREEVIEW_ComputeItemRect(infoPtr, item);
960 }
961 }
962
963
964 /* Update metrics of all items in selected subtree.
965 * root must be expanded
966 */
967 static VOID
968 TREEVIEW_UpdateSubTree(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *root)
969 {
970 TREEVIEW_ITEM *sibling;
971 HDC hdc;
972 HFONT hOldFont;
973
974 if (!root->firstChild || !(root->state & TVIS_EXPANDED))
975 return;
976
977 root->state &= ~TVIS_EXPANDED;
978 sibling = TREEVIEW_GetNextListItem(infoPtr, root);
979 root->state |= TVIS_EXPANDED;
980
981 hdc = GetDC(infoPtr->hwnd);
982 hOldFont = SelectObject(hdc, infoPtr->hFont);
983
984 for (; root != sibling;
985 root = TREEVIEW_GetNextListItem(infoPtr, root))
986 {
987 TREEVIEW_ComputeItemInternalMetrics(infoPtr, root);
988
989 if (root->callbackMask & TVIF_TEXT)
990 TREEVIEW_UpdateDispInfo(infoPtr, root, TVIF_TEXT);
991
992 if (root->textWidth == 0)
993 {
994 SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, root));
995 TREEVIEW_ComputeTextWidth(infoPtr, root, hdc);
996 }
997 }
998
999 SelectObject(hdc, hOldFont);
1000 ReleaseDC(infoPtr->hwnd, hdc);
1001 }
1002
1003 /* Item Allocation **********************************************************/
1004
1005 static TREEVIEW_ITEM *
1006 TREEVIEW_AllocateItem(const TREEVIEW_INFO *infoPtr)
1007 {
1008 TREEVIEW_ITEM *newItem = Alloc(sizeof(TREEVIEW_ITEM));
1009
1010 if (!newItem)
1011 return NULL;
1012
1013 /* I_IMAGENONE would make more sense but this is neither what is
1014 * documented (MSDN doesn't specify) nor what Windows actually does
1015 * (it sets it to zero)... and I can so imagine an application using
1016 * inc/dec to toggle the images. */
1017 newItem->iImage = 0;
1018 newItem->iSelectedImage = 0;
1019
1020 if (DPA_InsertPtr(infoPtr->items, INT_MAX, newItem) == -1)
1021 {
1022 Free(newItem);
1023 return NULL;
1024 }
1025
1026 return newItem;
1027 }
1028
1029 /* Exact opposite of TREEVIEW_AllocateItem. In particular, it does not
1030 * free item->pszText. */
1031 static void
1032 TREEVIEW_FreeItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
1033 {
1034 DPA_DeletePtr(infoPtr->items, DPA_GetPtrIndex(infoPtr->items, item));
1035 if (infoPtr->selectedItem == item)
1036 infoPtr->selectedItem = NULL;
1037 if (infoPtr->hotItem == item)
1038 infoPtr->hotItem = NULL;
1039 if (infoPtr->focusedItem == item)
1040 infoPtr->focusedItem = NULL;
1041 if (infoPtr->firstVisible == item)
1042 infoPtr->firstVisible = NULL;
1043 if (infoPtr->dropItem == item)
1044 infoPtr->dropItem = NULL;
1045 if (infoPtr->insertMarkItem == item)
1046 infoPtr->insertMarkItem = NULL;
1047 Free(item);
1048 }
1049
1050
1051 /* Item Insertion *******************************************************/
1052
1053 /***************************************************************************
1054 * This method inserts newItem before sibling as a child of parent.
1055 * sibling can be NULL, but only if parent has no children.
1056 */
1057 static void
1058 TREEVIEW_InsertBefore(TREEVIEW_ITEM *newItem, TREEVIEW_ITEM *sibling,
1059 TREEVIEW_ITEM *parent)
1060 {
1061 assert(parent != NULL);
1062
1063 if (sibling != NULL)
1064 {
1065 assert(sibling->parent == parent);
1066
1067 if (sibling->prevSibling != NULL)
1068 sibling->prevSibling->nextSibling = newItem;
1069
1070 newItem->prevSibling = sibling->prevSibling;
1071 sibling->prevSibling = newItem;
1072 }
1073 else
1074 newItem->prevSibling = NULL;
1075
1076 newItem->nextSibling = sibling;
1077
1078 if (parent->firstChild == sibling)
1079 parent->firstChild = newItem;
1080
1081 if (parent->lastChild == NULL)
1082 parent->lastChild = newItem;
1083 }
1084
1085 /***************************************************************************
1086 * This method inserts newItem after sibling as a child of parent.
1087 * sibling can be NULL, but only if parent has no children.
1088 */
1089 static void
1090 TREEVIEW_InsertAfter(TREEVIEW_ITEM *newItem, TREEVIEW_ITEM *sibling,
1091 TREEVIEW_ITEM *parent)
1092 {
1093 assert(parent != NULL);
1094
1095 if (sibling != NULL)
1096 {
1097 assert(sibling->parent == parent);
1098
1099 if (sibling->nextSibling != NULL)
1100 sibling->nextSibling->prevSibling = newItem;
1101
1102 newItem->nextSibling = sibling->nextSibling;
1103 sibling->nextSibling = newItem;
1104 }
1105 else
1106 newItem->nextSibling = NULL;
1107
1108 newItem->prevSibling = sibling;
1109
1110 if (parent->lastChild == sibling)
1111 parent->lastChild = newItem;
1112
1113 if (parent->firstChild == NULL)
1114 parent->firstChild = newItem;
1115 }
1116
1117 static BOOL
1118 TREEVIEW_DoSetItemT(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
1119 const TVITEMEXW *tvItem, BOOL isW)
1120 {
1121 UINT callbackClear = 0;
1122 UINT callbackSet = 0;
1123
1124 TRACE("item %p\n", wineItem);
1125 /* Do this first in case it fails. */
1126 if (tvItem->mask & TVIF_TEXT)
1127 {
1128 wineItem->textWidth = 0; /* force width recalculation */
1129 if (tvItem->pszText != LPSTR_TEXTCALLBACKW && tvItem->pszText != NULL) /* covers != TEXTCALLBACKA too, and undocumented: pszText of NULL also means TEXTCALLBACK */
1130 {
1131 int len;
1132 LPWSTR newText;
1133 if (isW)
1134 len = lstrlenW(tvItem->pszText) + 1;
1135 else
1136 len = MultiByteToWideChar(CP_ACP, 0, (LPSTR)tvItem->pszText, -1, NULL, 0);
1137
1138 newText = ReAlloc(wineItem->pszText, len * sizeof(WCHAR));
1139
1140 if (newText == NULL) return FALSE;
1141
1142 callbackClear |= TVIF_TEXT;
1143
1144 wineItem->pszText = newText;
1145 wineItem->cchTextMax = len;
1146 if (isW)
1147 lstrcpynW(wineItem->pszText, tvItem->pszText, len);
1148 else
1149 MultiByteToWideChar(CP_ACP, 0, (LPSTR)tvItem->pszText, -1,
1150 wineItem->pszText, len);
1151
1152 TRACE("setting text %s, item %p\n", debugstr_w(wineItem->pszText), wineItem);
1153 }
1154 else
1155 {
1156 callbackSet |= TVIF_TEXT;
1157
1158 wineItem->pszText = ReAlloc(wineItem->pszText,
1159 TEXT_CALLBACK_SIZE * sizeof(WCHAR));
1160 wineItem->cchTextMax = TEXT_CALLBACK_SIZE;
1161 TRACE("setting callback, item %p\n", wineItem);
1162 }
1163 }
1164
1165 if (tvItem->mask & TVIF_CHILDREN)
1166 {
1167 wineItem->cChildren = tvItem->cChildren;
1168
1169 if (wineItem->cChildren == I_CHILDRENCALLBACK)
1170 callbackSet |= TVIF_CHILDREN;
1171 else
1172 callbackClear |= TVIF_CHILDREN;
1173 }
1174
1175 if (tvItem->mask & TVIF_IMAGE)
1176 {
1177 wineItem->iImage = tvItem->iImage;
1178
1179 if (wineItem->iImage == I_IMAGECALLBACK)
1180 callbackSet |= TVIF_IMAGE;
1181 else
1182 callbackClear |= TVIF_IMAGE;
1183 }
1184
1185 if (tvItem->mask & TVIF_SELECTEDIMAGE)
1186 {
1187 wineItem->iSelectedImage = tvItem->iSelectedImage;
1188
1189 if (wineItem->iSelectedImage == I_IMAGECALLBACK)
1190 callbackSet |= TVIF_SELECTEDIMAGE;
1191 else
1192 callbackClear |= TVIF_SELECTEDIMAGE;
1193 }
1194
1195 if (tvItem->mask & TVIF_PARAM)
1196 wineItem->lParam = tvItem->lParam;
1197
1198 /* If the application sets TVIF_INTEGRAL without
1199 * supplying a TVITEMEX structure, it's toast. */
1200 if (tvItem->mask & TVIF_INTEGRAL)
1201 wineItem->iIntegral = tvItem->iIntegral;
1202
1203 if (tvItem->mask & TVIF_STATE)
1204 {
1205 TRACE("prevstate,state,mask:%x,%x,%x\n", wineItem->state, tvItem->state,
1206 tvItem->stateMask);
1207 wineItem->state &= ~tvItem->stateMask;
1208 wineItem->state |= (tvItem->state & tvItem->stateMask);
1209 }
1210
1211 wineItem->callbackMask |= callbackSet;
1212 wineItem->callbackMask &= ~callbackClear;
1213
1214 return TRUE;
1215 }
1216
1217 /* Note that the new item is pre-zeroed. */
1218 static LRESULT
1219 TREEVIEW_InsertItemT(TREEVIEW_INFO *infoPtr, const TVINSERTSTRUCTW *ptdi, BOOL isW)
1220 {
1221 const TVITEMEXW *tvItem = &ptdi->u.itemex;
1222 HTREEITEM insertAfter;
1223 TREEVIEW_ITEM *newItem, *parentItem;
1224 BOOL bTextUpdated = FALSE;
1225
1226 if (ptdi->hParent == TVI_ROOT || ptdi->hParent == 0)
1227 {
1228 parentItem = infoPtr->root;
1229 }
1230 else
1231 {
1232 parentItem = ptdi->hParent;
1233
1234 if (!TREEVIEW_ValidItem(infoPtr, parentItem))
1235 {
1236 WARN("invalid parent %p\n", parentItem);
1237 return 0;
1238 }
1239 }
1240
1241 insertAfter = ptdi->hInsertAfter;
1242
1243 /* Validate this now for convenience. */
1244 switch ((DWORD_PTR)insertAfter)
1245 {
1246 case (DWORD_PTR)TVI_FIRST:
1247 case (DWORD_PTR)TVI_LAST:
1248 case (DWORD_PTR)TVI_SORT:
1249 break;
1250
1251 default:
1252 if (!TREEVIEW_ValidItem(infoPtr, insertAfter) ||
1253 insertAfter->parent != parentItem)
1254 {
1255 WARN("invalid insert after %p\n", insertAfter);
1256 insertAfter = TVI_LAST;
1257 }
1258 }
1259
1260 TRACE("parent %p position %p: %s\n", parentItem, insertAfter,
1261 (tvItem->mask & TVIF_TEXT)
1262 ? ((tvItem->pszText == LPSTR_TEXTCALLBACKW) ? "<callback>"
1263 : (isW ? debugstr_w(tvItem->pszText) : debugstr_a((LPSTR)tvItem->pszText)))
1264 : "<no label>");
1265
1266 newItem = TREEVIEW_AllocateItem(infoPtr);
1267 if (newItem == NULL)
1268 return 0;
1269
1270 newItem->parent = parentItem;
1271 newItem->iIntegral = 1;
1272 newItem->visibleOrder = -1;
1273
1274 if (!TREEVIEW_DoSetItemT(infoPtr, newItem, tvItem, isW))
1275 return 0;
1276
1277 /* After this point, nothing can fail. (Except for TVI_SORT.) */
1278
1279 infoPtr->uNumItems++;
1280
1281 switch ((DWORD_PTR)insertAfter)
1282 {
1283 case (DWORD_PTR)TVI_FIRST:
1284 {
1285 TREEVIEW_ITEM *originalFirst = parentItem->firstChild;
1286 TREEVIEW_InsertBefore(newItem, parentItem->firstChild, parentItem);
1287 if (infoPtr->firstVisible == originalFirst)
1288 TREEVIEW_SetFirstVisible(infoPtr, newItem, TRUE);
1289 }
1290 break;
1291
1292 case (DWORD_PTR)TVI_LAST:
1293 TREEVIEW_InsertAfter(newItem, parentItem->lastChild, parentItem);
1294 break;
1295
1296 /* hInsertAfter names a specific item we want to insert after */
1297 default:
1298 TREEVIEW_InsertAfter(newItem, insertAfter, insertAfter->parent);
1299 break;
1300
1301 case (DWORD_PTR)TVI_SORT:
1302 {
1303 TREEVIEW_ITEM *aChild;
1304 TREEVIEW_ITEM *previousChild = NULL;
1305 TREEVIEW_ITEM *originalFirst = parentItem->firstChild;
1306 BOOL bItemInserted = FALSE;
1307
1308 aChild = parentItem->firstChild;
1309
1310 bTextUpdated = TRUE;
1311 TREEVIEW_UpdateDispInfo(infoPtr, newItem, TVIF_TEXT);
1312
1313 /* Iterate the parent children to see where we fit in */
1314 while (aChild != NULL)
1315 {
1316 INT comp;
1317
1318 TREEVIEW_UpdateDispInfo(infoPtr, aChild, TVIF_TEXT);
1319 comp = lstrcmpW(newItem->pszText, aChild->pszText);
1320
1321 if (comp < 0) /* we are smaller than the current one */
1322 {
1323 TREEVIEW_InsertBefore(newItem, aChild, parentItem);
1324 if (infoPtr->firstVisible == originalFirst &&
1325 aChild == originalFirst)
1326 TREEVIEW_SetFirstVisible(infoPtr, newItem, TRUE);
1327 bItemInserted = TRUE;
1328 break;
1329 }
1330 else if (comp > 0) /* we are bigger than the current one */
1331 {
1332 previousChild = aChild;
1333
1334 /* This will help us to exit if there is no more sibling */
1335 aChild = (aChild->nextSibling == 0)
1336 ? NULL
1337 : aChild->nextSibling;
1338
1339 /* Look at the next item */
1340 continue;
1341 }
1342 else if (comp == 0)
1343 {
1344 /*
1345 * An item with this name is already existing, therefore,
1346 * we add after the one we found
1347 */
1348 TREEVIEW_InsertAfter(newItem, aChild, parentItem);
1349 bItemInserted = TRUE;
1350 break;
1351 }
1352 }
1353
1354 /*
1355 * we reach the end of the child list and the item has not
1356 * yet been inserted, therefore, insert it after the last child.
1357 */
1358 if ((!bItemInserted) && (aChild == NULL))
1359 TREEVIEW_InsertAfter(newItem, previousChild, parentItem);
1360
1361 break;
1362 }
1363 }
1364
1365
1366 TRACE("new item %p; parent %p, mask %x\n", newItem,
1367 newItem->parent, tvItem->mask);
1368
1369 newItem->iLevel = newItem->parent->iLevel + 1;
1370
1371 if (newItem->parent->cChildren == 0)
1372 newItem->parent->cChildren = 1;
1373
1374 if (infoPtr->dwStyle & TVS_CHECKBOXES)
1375 {
1376 if (STATEIMAGEINDEX(newItem->state) == 0)
1377 newItem->state |= INDEXTOSTATEIMAGEMASK(1);
1378 }
1379
1380 if (infoPtr->firstVisible == NULL)
1381 infoPtr->firstVisible = newItem;
1382
1383 TREEVIEW_VerifyTree(infoPtr);
1384
1385 if (!infoPtr->bRedraw) return (LRESULT)newItem;
1386
1387 if (parentItem == infoPtr->root ||
1388 (ISVISIBLE(parentItem) && parentItem->state & TVIS_EXPANDED))
1389 {
1390 TREEVIEW_ITEM *item;
1391 TREEVIEW_ITEM *prev = TREEVIEW_GetPrevListItem(infoPtr, newItem);
1392
1393 TREEVIEW_RecalculateVisibleOrder(infoPtr, prev);
1394 TREEVIEW_ComputeItemInternalMetrics(infoPtr, newItem);
1395
1396 if (!bTextUpdated)
1397 TREEVIEW_UpdateDispInfo(infoPtr, newItem, TVIF_TEXT);
1398
1399 TREEVIEW_ComputeTextWidth(infoPtr, newItem, 0);
1400 TREEVIEW_UpdateScrollBars(infoPtr);
1401 /*
1402 * if the item was inserted in a visible part of the tree,
1403 * invalidate it, as well as those after it
1404 */
1405 for (item = newItem;
1406 item != NULL;
1407 item = TREEVIEW_GetNextListItem(infoPtr, item))
1408 TREEVIEW_Invalidate(infoPtr, item);
1409 }
1410 else
1411 {
1412 /* refresh treeview if newItem is the first item inserted under parentItem */
1413 if (ISVISIBLE(parentItem) && newItem->prevSibling == newItem->nextSibling)
1414 {
1415 /* parent got '+' - update it */
1416 TREEVIEW_Invalidate(infoPtr, parentItem);
1417 }
1418 }
1419
1420 return (LRESULT)newItem;
1421 }
1422
1423 /* Item Deletion ************************************************************/
1424 static void
1425 TREEVIEW_RemoveItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem);
1426
1427 static void
1428 TREEVIEW_RemoveAllChildren(TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *parentItem)
1429 {
1430 TREEVIEW_ITEM *kill = parentItem->firstChild;
1431
1432 while (kill != NULL)
1433 {
1434 TREEVIEW_ITEM *next = kill->nextSibling;
1435
1436 TREEVIEW_RemoveItem(infoPtr, kill);
1437
1438 kill = next;
1439 }
1440
1441 assert(parentItem->cChildren <= 0); /* I_CHILDRENCALLBACK or 0 */
1442 assert(parentItem->firstChild == NULL);
1443 assert(parentItem->lastChild == NULL);
1444 }
1445
1446 static void
1447 TREEVIEW_UnlinkItem(const TREEVIEW_ITEM *item)
1448 {
1449 TREEVIEW_ITEM *parentItem = item->parent;
1450
1451 assert(item != NULL);
1452 assert(item->parent != NULL); /* i.e. it must not be the root */
1453
1454 if (parentItem->firstChild == item)
1455 parentItem->firstChild = item->nextSibling;
1456
1457 if (parentItem->lastChild == item)
1458 parentItem->lastChild = item->prevSibling;
1459
1460 if (parentItem->firstChild == NULL && parentItem->lastChild == NULL
1461 && parentItem->cChildren > 0)
1462 parentItem->cChildren = 0;
1463
1464 if (item->prevSibling)
1465 item->prevSibling->nextSibling = item->nextSibling;
1466
1467 if (item->nextSibling)
1468 item->nextSibling->prevSibling = item->prevSibling;
1469 }
1470
1471 static void
1472 TREEVIEW_RemoveItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
1473 {
1474 TRACE("%p, (%s)\n", wineItem, TREEVIEW_ItemName(wineItem));
1475
1476 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_DELETEITEMW, TVC_UNKNOWN,
1477 TVIF_HANDLE | TVIF_PARAM, wineItem, 0);
1478
1479 if (wineItem->firstChild)
1480 TREEVIEW_RemoveAllChildren(infoPtr, wineItem);
1481
1482 TREEVIEW_UnlinkItem(wineItem);
1483
1484 infoPtr->uNumItems--;
1485
1486 if (wineItem->pszText != LPSTR_TEXTCALLBACKW)
1487 Free(wineItem->pszText);
1488
1489 TREEVIEW_FreeItem(infoPtr, wineItem);
1490 }
1491
1492
1493 /* Empty out the tree. */
1494 static void
1495 TREEVIEW_RemoveTree(TREEVIEW_INFO *infoPtr)
1496 {
1497 TREEVIEW_RemoveAllChildren(infoPtr, infoPtr->root);
1498
1499 assert(infoPtr->uNumItems == 0); /* root isn't counted in uNumItems */
1500 }
1501
1502 static LRESULT
1503 TREEVIEW_DeleteItem(TREEVIEW_INFO *infoPtr, HTREEITEM wineItem)
1504 {
1505 TREEVIEW_ITEM *newSelection = NULL;
1506 TREEVIEW_ITEM *newFirstVisible = NULL;
1507 TREEVIEW_ITEM *parent, *prev = NULL;
1508 BOOL visible = FALSE;
1509
1510 if (wineItem == TVI_ROOT)
1511 {
1512 TRACE("TVI_ROOT\n");
1513 parent = infoPtr->root;
1514 newSelection = NULL;
1515 visible = TRUE;
1516 TREEVIEW_RemoveTree(infoPtr);
1517 }
1518 else
1519 {
1520 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
1521 return FALSE;
1522
1523 TRACE("%p (%s)\n", wineItem, TREEVIEW_ItemName(wineItem));
1524 parent = wineItem->parent;
1525
1526 if (ISVISIBLE(wineItem))
1527 {
1528 prev = TREEVIEW_GetPrevListItem(infoPtr, wineItem);
1529 visible = TRUE;
1530 }
1531
1532 if (infoPtr->selectedItem != NULL
1533 && (wineItem == infoPtr->selectedItem
1534 || TREEVIEW_IsChildOf(wineItem, infoPtr->selectedItem)))
1535 {
1536 if (wineItem->nextSibling)
1537 newSelection = wineItem->nextSibling;
1538 else if (wineItem->parent != infoPtr->root)
1539 newSelection = wineItem->parent;
1540 else
1541 newSelection = wineItem->prevSibling;
1542 TRACE("newSelection = %p\n", newSelection);
1543 }
1544
1545 if (infoPtr->firstVisible == wineItem)
1546 {
1547 if (wineItem->nextSibling)
1548 newFirstVisible = wineItem->nextSibling;
1549 else if (wineItem->prevSibling)
1550 newFirstVisible = wineItem->prevSibling;
1551 else if (wineItem->parent != infoPtr->root)
1552 newFirstVisible = wineItem->parent;
1553 TREEVIEW_SetFirstVisible(infoPtr, NULL, TRUE);
1554 }
1555 else
1556 newFirstVisible = infoPtr->firstVisible;
1557
1558 TREEVIEW_RemoveItem(infoPtr, wineItem);
1559 }
1560
1561 /* Don't change if somebody else already has (infoPtr->selectedItem is cleared by FreeItem). */
1562 if (!infoPtr->selectedItem && newSelection)
1563 {
1564 if (TREEVIEW_ValidItem(infoPtr, newSelection))
1565 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, newSelection, TVC_UNKNOWN);
1566 }
1567
1568 /* Validate insertMark dropItem.
1569 * hotItem ??? - used for comparison only.
1570 */
1571 if (!TREEVIEW_ValidItem(infoPtr, infoPtr->insertMarkItem))
1572 infoPtr->insertMarkItem = 0;
1573
1574 if (!TREEVIEW_ValidItem(infoPtr, infoPtr->dropItem))
1575 infoPtr->dropItem = 0;
1576
1577 if (!TREEVIEW_ValidItem(infoPtr, newFirstVisible))
1578 newFirstVisible = infoPtr->root->firstChild;
1579
1580 TREEVIEW_VerifyTree(infoPtr);
1581
1582 if (!infoPtr->bRedraw) return TRUE;
1583
1584 if (visible)
1585 {
1586 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
1587 TREEVIEW_RecalculateVisibleOrder(infoPtr, prev);
1588 TREEVIEW_UpdateScrollBars(infoPtr);
1589 TREEVIEW_Invalidate(infoPtr, NULL);
1590 }
1591 else if (ISVISIBLE(parent) && !TREEVIEW_HasChildren(infoPtr, parent))
1592 {
1593 /* parent lost '+/-' - update it */
1594 TREEVIEW_Invalidate(infoPtr, parent);
1595 }
1596
1597 return TRUE;
1598 }
1599
1600
1601 /* Get/Set Messages *********************************************************/
1602 static LRESULT
1603 TREEVIEW_SetRedraw(TREEVIEW_INFO* infoPtr, WPARAM wParam)
1604 {
1605 infoPtr->bRedraw = wParam ? TRUE : FALSE;
1606
1607 if (infoPtr->bRedraw)
1608 {
1609 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1610 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1611 TREEVIEW_UpdateScrollBars(infoPtr);
1612 TREEVIEW_Invalidate(infoPtr, NULL);
1613 }
1614 return 0;
1615 }
1616
1617 static LRESULT
1618 TREEVIEW_GetIndent(const TREEVIEW_INFO *infoPtr)
1619 {
1620 TRACE("\n");
1621 return infoPtr->uIndent;
1622 }
1623
1624 static LRESULT
1625 TREEVIEW_SetIndent(TREEVIEW_INFO *infoPtr, UINT newIndent)
1626 {
1627 TRACE("\n");
1628
1629 if (newIndent < MINIMUM_INDENT)
1630 newIndent = MINIMUM_INDENT;
1631
1632 if (infoPtr->uIndent != newIndent)
1633 {
1634 infoPtr->uIndent = newIndent;
1635 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1636 TREEVIEW_UpdateScrollBars(infoPtr);
1637 TREEVIEW_Invalidate(infoPtr, NULL);
1638 }
1639
1640 return 0;
1641 }
1642
1643
1644 static LRESULT
1645 TREEVIEW_GetToolTips(const TREEVIEW_INFO *infoPtr)
1646 {
1647 TRACE("\n");
1648 return (LRESULT)infoPtr->hwndToolTip;
1649 }
1650
1651 static LRESULT
1652 TREEVIEW_SetToolTips(TREEVIEW_INFO *infoPtr, HWND hwndTT)
1653 {
1654 HWND prevToolTip;
1655
1656 TRACE("\n");
1657 prevToolTip = infoPtr->hwndToolTip;
1658 infoPtr->hwndToolTip = hwndTT;
1659
1660 return (LRESULT)prevToolTip;
1661 }
1662
1663 static LRESULT
1664 TREEVIEW_SetUnicodeFormat(TREEVIEW_INFO *infoPtr, BOOL fUnicode)
1665 {
1666 BOOL rc = infoPtr->bNtfUnicode;
1667 infoPtr->bNtfUnicode = fUnicode;
1668 return rc;
1669 }
1670
1671 static LRESULT
1672 TREEVIEW_GetUnicodeFormat(const TREEVIEW_INFO *infoPtr)
1673 {
1674 return infoPtr->bNtfUnicode;
1675 }
1676
1677 static LRESULT
1678 TREEVIEW_GetScrollTime(const TREEVIEW_INFO *infoPtr)
1679 {
1680 return infoPtr->uScrollTime;
1681 }
1682
1683 static LRESULT
1684 TREEVIEW_SetScrollTime(TREEVIEW_INFO *infoPtr, UINT uScrollTime)
1685 {
1686 UINT uOldScrollTime = infoPtr->uScrollTime;
1687
1688 infoPtr->uScrollTime = min(uScrollTime, 100);
1689
1690 return uOldScrollTime;
1691 }
1692
1693
1694 static LRESULT
1695 TREEVIEW_GetImageList(const TREEVIEW_INFO *infoPtr, WPARAM wParam)
1696 {
1697 TRACE("\n");
1698
1699 switch (wParam)
1700 {
1701 case TVSIL_NORMAL:
1702 return (LRESULT)infoPtr->himlNormal;
1703
1704 case TVSIL_STATE:
1705 return (LRESULT)infoPtr->himlState;
1706
1707 default:
1708 return 0;
1709 }
1710 }
1711
1712 #define TVHEIGHT_MIN 16
1713 #define TVHEIGHT_FONT_ADJUST 3 /* 2 for focus border + 1 for margin some apps assume */
1714
1715 /* Compute the natural height for items. */
1716 static UINT
1717 TREEVIEW_NaturalHeight(const TREEVIEW_INFO *infoPtr)
1718 {
1719 TEXTMETRICW tm;
1720 HDC hdc = GetDC(0);
1721 HFONT hOldFont = SelectObject(hdc, infoPtr->hFont);
1722 UINT height;
1723
1724 /* Height is the maximum of:
1725 * 16 (a hack because our fonts are tiny), and
1726 * The text height + border & margin, and
1727 * The size of the normal image list
1728 */
1729 GetTextMetricsW(hdc, &tm);
1730 SelectObject(hdc, hOldFont);
1731 ReleaseDC(0, hdc);
1732
1733 height = TVHEIGHT_MIN;
1734 if (height < tm.tmHeight + tm.tmExternalLeading + TVHEIGHT_FONT_ADJUST)
1735 height = tm.tmHeight + tm.tmExternalLeading + TVHEIGHT_FONT_ADJUST;
1736 if (height < infoPtr->normalImageHeight)
1737 height = infoPtr->normalImageHeight;
1738
1739 /* Round down, unless we support odd ("non even") heights. */
1740 if (!(infoPtr->dwStyle & TVS_NONEVENHEIGHT))
1741 height &= ~1;
1742
1743 return height;
1744 }
1745
1746 static LRESULT
1747 TREEVIEW_SetImageList(TREEVIEW_INFO *infoPtr, WPARAM wParam, HIMAGELIST himlNew)
1748 {
1749 HIMAGELIST himlOld = 0;
1750 int oldWidth = infoPtr->normalImageWidth;
1751 int oldHeight = infoPtr->normalImageHeight;
1752
1753
1754 TRACE("%lx,%p\n", wParam, himlNew);
1755
1756 switch (wParam)
1757 {
1758 case TVSIL_NORMAL:
1759 himlOld = infoPtr->himlNormal;
1760 infoPtr->himlNormal = himlNew;
1761
1762 if (himlNew != NULL)
1763 ImageList_GetIconSize(himlNew, &infoPtr->normalImageWidth,
1764 &infoPtr->normalImageHeight);
1765 else
1766 {
1767 infoPtr->normalImageWidth = 0;
1768 infoPtr->normalImageHeight = 0;
1769 }
1770
1771 break;
1772
1773 case TVSIL_STATE:
1774 himlOld = infoPtr->himlState;
1775 infoPtr->himlState = himlNew;
1776
1777 if (himlNew != NULL)
1778 ImageList_GetIconSize(himlNew, &infoPtr->stateImageWidth,
1779 &infoPtr->stateImageHeight);
1780 else
1781 {
1782 infoPtr->stateImageWidth = 0;
1783 infoPtr->stateImageHeight = 0;
1784 }
1785
1786 break;
1787 }
1788
1789 if (oldWidth != infoPtr->normalImageWidth ||
1790 oldHeight != infoPtr->normalImageHeight)
1791 {
1792 BOOL bRecalcVisible = FALSE;
1793
1794 if (oldHeight != infoPtr->normalImageHeight &&
1795 !infoPtr->bHeightSet)
1796 {
1797 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
1798 bRecalcVisible = TRUE;
1799 }
1800
1801 if (infoPtr->normalImageWidth > MINIMUM_INDENT &&
1802 infoPtr->normalImageWidth != infoPtr->uIndent)
1803 {
1804 infoPtr->uIndent = infoPtr->normalImageWidth;
1805 bRecalcVisible = TRUE;
1806 }
1807
1808 if (bRecalcVisible)
1809 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1810
1811 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1812 TREEVIEW_UpdateScrollBars(infoPtr);
1813 }
1814
1815 TREEVIEW_Invalidate(infoPtr, NULL);
1816
1817 return (LRESULT)himlOld;
1818 }
1819
1820 static LRESULT
1821 TREEVIEW_SetItemHeight(TREEVIEW_INFO *infoPtr, INT newHeight)
1822 {
1823 INT prevHeight = infoPtr->uItemHeight;
1824
1825 TRACE("%d\n", newHeight);
1826 if (newHeight == -1)
1827 {
1828 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
1829 infoPtr->bHeightSet = FALSE;
1830 }
1831 else
1832 {
1833 infoPtr->uItemHeight = newHeight;
1834 infoPtr->bHeightSet = TRUE;
1835 }
1836
1837 /* Round down, unless we support odd ("non even") heights. */
1838 if (!(infoPtr->dwStyle & TVS_NONEVENHEIGHT))
1839 infoPtr->uItemHeight &= ~1;
1840
1841 if (infoPtr->uItemHeight != prevHeight)
1842 {
1843 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1844 TREEVIEW_UpdateScrollBars(infoPtr);
1845 TREEVIEW_Invalidate(infoPtr, NULL);
1846 }
1847
1848 return prevHeight;
1849 }
1850
1851 static LRESULT
1852 TREEVIEW_GetItemHeight(const TREEVIEW_INFO *infoPtr)
1853 {
1854 TRACE("\n");
1855 return infoPtr->uItemHeight;
1856 }
1857
1858
1859 static LRESULT
1860 TREEVIEW_GetFont(const TREEVIEW_INFO *infoPtr)
1861 {
1862 TRACE("%p\n", infoPtr->hFont);
1863 return (LRESULT)infoPtr->hFont;
1864 }
1865
1866
1867 static INT CALLBACK
1868 TREEVIEW_ResetTextWidth(LPVOID pItem, LPVOID unused)
1869 {
1870 (void)unused;
1871
1872 ((TREEVIEW_ITEM *)pItem)->textWidth = 0;
1873
1874 return 1;
1875 }
1876
1877 static LRESULT
1878 TREEVIEW_SetFont(TREEVIEW_INFO *infoPtr, HFONT hFont, BOOL bRedraw)
1879 {
1880 UINT uHeight = infoPtr->uItemHeight;
1881
1882 TRACE("%p %i\n", hFont, bRedraw);
1883
1884 infoPtr->hFont = hFont ? hFont : infoPtr->hDefaultFont;
1885
1886 DeleteObject(infoPtr->hBoldFont);
1887 DeleteObject(infoPtr->hUnderlineFont);
1888 infoPtr->hBoldFont = TREEVIEW_CreateBoldFont(infoPtr->hFont);
1889 infoPtr->hUnderlineFont = TREEVIEW_CreateUnderlineFont(infoPtr->hFont);
1890
1891 if (!infoPtr->bHeightSet)
1892 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
1893
1894 if (uHeight != infoPtr->uItemHeight)
1895 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1896
1897 DPA_EnumCallback(infoPtr->items, TREEVIEW_ResetTextWidth, 0);
1898
1899 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1900 TREEVIEW_UpdateScrollBars(infoPtr);
1901
1902 if (bRedraw)
1903 TREEVIEW_Invalidate(infoPtr, NULL);
1904
1905 return 0;
1906 }
1907
1908
1909 static LRESULT
1910 TREEVIEW_GetLineColor(const TREEVIEW_INFO *infoPtr)
1911 {
1912 TRACE("\n");
1913 return (LRESULT)infoPtr->clrLine;
1914 }
1915
1916 static LRESULT
1917 TREEVIEW_SetLineColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1918 {
1919 COLORREF prevColor = infoPtr->clrLine;
1920
1921 TRACE("\n");
1922 infoPtr->clrLine = color;
1923 return (LRESULT)prevColor;
1924 }
1925
1926
1927 static LRESULT
1928 TREEVIEW_GetTextColor(const TREEVIEW_INFO *infoPtr)
1929 {
1930 TRACE("\n");
1931 return (LRESULT)infoPtr->clrText;
1932 }
1933
1934 static LRESULT
1935 TREEVIEW_SetTextColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1936 {
1937 COLORREF prevColor = infoPtr->clrText;
1938
1939 TRACE("\n");
1940 infoPtr->clrText = color;
1941
1942 if (infoPtr->clrText != prevColor)
1943 TREEVIEW_Invalidate(infoPtr, NULL);
1944
1945 return (LRESULT)prevColor;
1946 }
1947
1948
1949 static LRESULT
1950 TREEVIEW_GetBkColor(const TREEVIEW_INFO *infoPtr)
1951 {
1952 TRACE("\n");
1953 return (LRESULT)infoPtr->clrBk;
1954 }
1955
1956 static LRESULT
1957 TREEVIEW_SetBkColor(TREEVIEW_INFO *infoPtr, COLORREF newColor)
1958 {
1959 COLORREF prevColor = infoPtr->clrBk;
1960
1961 TRACE("\n");
1962 infoPtr->clrBk = newColor;
1963
1964 if (newColor != prevColor)
1965 TREEVIEW_Invalidate(infoPtr, NULL);
1966
1967 return (LRESULT)prevColor;
1968 }
1969
1970
1971 static LRESULT
1972 TREEVIEW_GetInsertMarkColor(const TREEVIEW_INFO *infoPtr)
1973 {
1974 TRACE("\n");
1975 return (LRESULT)infoPtr->clrInsertMark;
1976 }
1977
1978 static LRESULT
1979 TREEVIEW_SetInsertMarkColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1980 {
1981 COLORREF prevColor = infoPtr->clrInsertMark;
1982
1983 TRACE("%x\n", color);
1984 infoPtr->clrInsertMark = color;
1985
1986 return (LRESULT)prevColor;
1987 }
1988
1989
1990 static LRESULT
1991 TREEVIEW_SetInsertMark(TREEVIEW_INFO *infoPtr, BOOL wParam, HTREEITEM item)
1992 {
1993 TRACE("%d %p\n", wParam, item);
1994
1995 if (!TREEVIEW_ValidItem(infoPtr, item))
1996 return 0;
1997
1998 infoPtr->insertBeforeorAfter = wParam;
1999 infoPtr->insertMarkItem = item;
2000
2001 TREEVIEW_Invalidate(infoPtr, NULL);
2002
2003 return 1;
2004 }
2005
2006
2007 /************************************************************************
2008 * Some serious braindamage here. lParam is a pointer to both the
2009 * input HTREEITEM and the output RECT.
2010 */
2011 static LRESULT
2012 TREEVIEW_GetItemRect(const TREEVIEW_INFO *infoPtr, BOOL fTextRect, LPRECT lpRect)
2013 {
2014 TREEVIEW_ITEM *wineItem;
2015 const HTREEITEM *pItem = (HTREEITEM *)lpRect;
2016
2017 TRACE("\n");
2018 /*
2019 * validate parameters
2020 */
2021 if (pItem == NULL)
2022 return FALSE;
2023
2024 wineItem = *pItem;
2025 if (!TREEVIEW_ValidItem(infoPtr, wineItem) || !ISVISIBLE(wineItem))
2026 return FALSE;
2027
2028 /*
2029 * If wParam is TRUE return the text size otherwise return
2030 * the whole item size
2031 */
2032 if (fTextRect)
2033 {
2034 /* Windows does not send TVN_GETDISPINFO here. */
2035
2036 lpRect->top = wineItem->rect.top;
2037 lpRect->bottom = wineItem->rect.bottom;
2038
2039 lpRect->left = wineItem->textOffset;
2040 if (!wineItem->textWidth)
2041 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, 0);
2042
2043 lpRect->right = wineItem->textOffset + wineItem->textWidth + 4;
2044 }
2045 else
2046 {
2047 *lpRect = wineItem->rect;
2048 }
2049
2050 TRACE("%s [%s]\n", fTextRect ? "text" : "item", wine_dbgstr_rect(lpRect));
2051
2052 return TRUE;
2053 }
2054
2055 static inline LRESULT
2056 TREEVIEW_GetVisibleCount(const TREEVIEW_INFO *infoPtr)
2057 {
2058 /* Surprise! This does not take integral height into account. */
2059 return infoPtr->clientHeight / infoPtr->uItemHeight;
2060 }
2061
2062
2063 static LRESULT
2064 TREEVIEW_GetItemT(const TREEVIEW_INFO *infoPtr, LPTVITEMEXW tvItem, BOOL isW)
2065 {
2066 TREEVIEW_ITEM *wineItem;
2067
2068 wineItem = tvItem->hItem;
2069 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2070 return FALSE;
2071
2072 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, tvItem->mask);
2073
2074 if (tvItem->mask & TVIF_CHILDREN)
2075 {
2076 if (wineItem->cChildren==I_CHILDRENCALLBACK)
2077 FIXME("I_CHILDRENCALLBACK not supported\n");
2078 tvItem->cChildren = wineItem->cChildren;
2079 }
2080
2081 if (tvItem->mask & TVIF_HANDLE)
2082 tvItem->hItem = wineItem;
2083
2084 if (tvItem->mask & TVIF_IMAGE)
2085 tvItem->iImage = wineItem->iImage;
2086
2087 if (tvItem->mask & TVIF_INTEGRAL)
2088 tvItem->iIntegral = wineItem->iIntegral;
2089
2090 /* undocumented: windows ignores TVIF_PARAM and
2091 * * always sets lParam
2092 */
2093 tvItem->lParam = wineItem->lParam;
2094
2095 if (tvItem->mask & TVIF_SELECTEDIMAGE)
2096 tvItem->iSelectedImage = wineItem->iSelectedImage;
2097
2098 if (tvItem->mask & TVIF_STATE)
2099 /* Careful here - Windows ignores the stateMask when you get the state
2100 That contradicts the documentation, but makes more common sense, masking
2101 retrieval in this way seems overkill */
2102 tvItem->state = wineItem->state;
2103
2104 if (tvItem->mask & TVIF_TEXT)
2105 {
2106 if (wineItem->pszText == NULL)
2107 {
2108 if (tvItem->cchTextMax > 0)
2109 tvItem->pszText[0] = '\0';
2110 }
2111 else if (isW)
2112 {
2113 if (wineItem->pszText == LPSTR_TEXTCALLBACKW)
2114 {
2115 tvItem->pszText = LPSTR_TEXTCALLBACKW;
2116 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2117 }
2118 else
2119 {
2120 lstrcpynW(tvItem->pszText, wineItem->pszText, tvItem->cchTextMax);
2121 }
2122 }
2123 else
2124 {
2125 if (wineItem->pszText == LPSTR_TEXTCALLBACKW)
2126 {
2127 tvItem->pszText = (LPWSTR)LPSTR_TEXTCALLBACKA;
2128 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2129 }
2130 else
2131 {
2132 WideCharToMultiByte(CP_ACP, 0, wineItem->pszText, -1,
2133 (LPSTR)tvItem->pszText, tvItem->cchTextMax, NULL, NULL);
2134 }
2135 }
2136 }
2137 TRACE("item <%p>, txt %p, img %p, mask %x\n",
2138 wineItem, tvItem->pszText, &tvItem->iImage, tvItem->mask);
2139
2140 return TRUE;
2141 }
2142
2143 /* Beware MSDN Library Visual Studio 6.0. It says -1 on failure, 0 on success,
2144 * which is wrong. */
2145 static LRESULT
2146 TREEVIEW_SetItemT(TREEVIEW_INFO *infoPtr, const TVITEMEXW *tvItem, BOOL isW)
2147 {
2148 TREEVIEW_ITEM *wineItem;
2149 TREEVIEW_ITEM originalItem;
2150
2151 wineItem = tvItem->hItem;
2152
2153 TRACE("item %d,mask %x\n", TREEVIEW_GetItemIndex(infoPtr, wineItem),
2154 tvItem->mask);
2155
2156 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2157 return FALSE;
2158
2159 /* store the original item values */
2160 originalItem = *wineItem;
2161
2162 if (!TREEVIEW_DoSetItemT(infoPtr, wineItem, tvItem, isW))
2163 return FALSE;
2164
2165 /* If the text or TVIS_BOLD was changed, and it is visible, recalculate. */
2166 if ((tvItem->mask & TVIF_TEXT
2167 || (tvItem->mask & TVIF_STATE && tvItem->stateMask & TVIS_BOLD))
2168 && ISVISIBLE(wineItem))
2169 {
2170 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, TVIF_TEXT);
2171 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, 0);
2172 }
2173
2174 if (tvItem->mask != 0 && ISVISIBLE(wineItem))
2175 {
2176 /* The refresh updates everything, but we can't wait until then. */
2177 TREEVIEW_ComputeItemInternalMetrics(infoPtr, wineItem);
2178
2179 /* if any of the item's values changed and it's not a callback, redraw the item */
2180 if (item_changed(&originalItem, wineItem, tvItem))
2181 {
2182 if (tvItem->mask & TVIF_INTEGRAL)
2183 {
2184 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
2185 TREEVIEW_UpdateScrollBars(infoPtr);
2186
2187 TREEVIEW_Invalidate(infoPtr, NULL);
2188 }
2189 else
2190 {
2191 TREEVIEW_UpdateScrollBars(infoPtr);
2192 TREEVIEW_Invalidate(infoPtr, wineItem);
2193 }
2194 }
2195 }
2196
2197 return TRUE;
2198 }
2199
2200 static LRESULT
2201 TREEVIEW_GetItemState(const TREEVIEW_INFO *infoPtr, HTREEITEM wineItem, UINT mask)
2202 {
2203 TRACE("\n");
2204
2205 if (!wineItem || !TREEVIEW_ValidItem(infoPtr, wineItem))
2206 return 0;
2207
2208 return (wineItem->state & mask);
2209 }
2210
2211 static LRESULT
2212 TREEVIEW_GetNextItem(const TREEVIEW_INFO *infoPtr, UINT which, HTREEITEM wineItem)
2213 {
2214 TREEVIEW_ITEM *retval;
2215
2216 retval = 0;
2217
2218 /* handle all the global data here */
2219 switch (which)
2220 {
2221 case TVGN_CHILD: /* Special case: child of 0 is root */
2222 if (wineItem)
2223 break;
2224 /* fall through */
2225 case TVGN_ROOT:
2226 retval = infoPtr->root->firstChild;
2227 break;
2228
2229 case TVGN_CARET:
2230 retval = infoPtr->selectedItem;
2231 break;
2232
2233 case TVGN_FIRSTVISIBLE:
2234 retval = infoPtr->firstVisible;
2235 break;
2236
2237 case TVGN_DROPHILITE:
2238 retval = infoPtr->dropItem;
2239 break;
2240
2241 case TVGN_LASTVISIBLE:
2242 retval = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
2243 break;
2244 }
2245
2246 if (retval)
2247 {
2248 TRACE("flags:%x, returns %p\n", which, retval);
2249 return (LRESULT)retval;
2250 }
2251
2252 if (wineItem == TVI_ROOT) wineItem = infoPtr->root;
2253
2254 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2255 return FALSE;
2256
2257 switch (which)
2258 {
2259 case TVGN_NEXT:
2260 retval = wineItem->nextSibling;
2261 break;
2262 case TVGN_PREVIOUS:
2263 retval = wineItem->prevSibling;
2264 break;
2265 case TVGN_PARENT:
2266 retval = (wineItem->parent != infoPtr->root) ? wineItem->parent : NULL;
2267 break;
2268 case TVGN_CHILD:
2269 retval = wineItem->firstChild;
2270 break;
2271 case TVGN_NEXTVISIBLE:
2272 retval = TREEVIEW_GetNextListItem(infoPtr, wineItem);
2273 break;
2274 case TVGN_PREVIOUSVISIBLE:
2275 retval = TREEVIEW_GetPrevListItem(infoPtr, wineItem);
2276 break;
2277 default:
2278 TRACE("Unknown msg %x,item %p\n", which, wineItem);
2279 break;
2280 }
2281
2282 TRACE("flags:%x, item %p;returns %p\n", which, wineItem, retval);
2283 return (LRESULT)retval;
2284 }
2285
2286
2287 static LRESULT
2288 TREEVIEW_GetCount(const TREEVIEW_INFO *infoPtr)
2289 {
2290 TRACE(" %d\n", infoPtr->uNumItems);
2291 return (LRESULT)infoPtr->uNumItems;
2292 }
2293
2294 static VOID
2295 TREEVIEW_ToggleItemState(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
2296 {
2297 if (infoPtr->dwStyle & TVS_CHECKBOXES)
2298 {
2299 static const unsigned int state_table[] = { 0, 2, 1 };
2300
2301 unsigned int state;
2302
2303 state = STATEIMAGEINDEX(item->state);
2304 TRACE("state:%x\n", state);
2305 item->state &= ~TVIS_STATEIMAGEMASK;
2306
2307 if (state < 3)
2308 state = state_table[state];
2309
2310 item->state |= INDEXTOSTATEIMAGEMASK(state);
2311
2312 TRACE("state:%x\n", state);
2313 TREEVIEW_Invalidate(infoPtr, item);
2314 }
2315 }
2316
2317
2318 /* Painting *************************************************************/
2319
2320 /* Draw the lines and expand button for an item. Also draws one section
2321 * of the line from item's parent to item's parent's next sibling. */
2322 static void
2323 TREEVIEW_DrawItemLines(const TREEVIEW_INFO *infoPtr, HDC hdc, const TREEVIEW_ITEM *item)
2324 {
2325 LONG centerx, centery;
2326 BOOL lar = ((infoPtr->dwStyle
2327 & (TVS_LINESATROOT|TVS_HASLINES|TVS_HASBUTTONS))
2328 > TVS_LINESATROOT);
2329 HBRUSH hbr, hbrOld;
2330 COLORREF clrBk = GETBKCOLOR(infoPtr->clrBk);
2331
2332 if (!lar && item->iLevel == 0)
2333 return;
2334
2335 hbr = CreateSolidBrush(clrBk);
2336 hbrOld = SelectObject(hdc, hbr);
2337
2338 centerx = (item->linesOffset + item->stateOffset) / 2;
2339 centery = (item->rect.top + item->rect.bottom) / 2;
2340
2341 if (infoPtr->dwStyle & TVS_HASLINES)
2342 {
2343 HPEN hOldPen, hNewPen;
2344 HTREEITEM parent;
2345 LOGBRUSH lb;
2346
2347 /* Get a dotted grey pen */
2348 lb.lbStyle = BS_SOLID;
2349 lb.lbColor = GETLINECOLOR(infoPtr->clrLine);
2350 hNewPen = ExtCreatePen(PS_COSMETIC|PS_ALTERNATE, 1, &lb, 0, NULL);
2351 hOldPen = SelectObject(hdc, hNewPen);
2352
2353 /* Make sure the center is on a dot (using +2 instead
2354 * of +1 gives us pixel-by-pixel compat with native) */
2355 centery = (centery + 2) & ~1;
2356
2357 MoveToEx(hdc, item->stateOffset, centery, NULL);
2358 LineTo(hdc, centerx - 1, centery);
2359
2360 if (item->prevSibling || item->parent != infoPtr->root)
2361 {
2362 MoveToEx(hdc, centerx, item->rect.top, NULL);
2363 LineTo(hdc, centerx, centery);
2364 }
2365
2366 if (item->nextSibling)
2367 {
2368 MoveToEx(hdc, centerx, centery, NULL);
2369 LineTo(hdc, centerx, item->rect.bottom + 1);
2370 }
2371
2372 /* Draw the line from our parent to its next sibling. */
2373 parent = item->parent;
2374 while (parent != infoPtr->root)
2375 {
2376 int pcenterx = (parent->linesOffset + parent->stateOffset) / 2;
2377
2378 if (parent->nextSibling
2379 /* skip top-levels unless TVS_LINESATROOT */
2380 && parent->stateOffset > parent->linesOffset)
2381 {
2382 MoveToEx(hdc, pcenterx, item->rect.top, NULL);
2383 LineTo(hdc, pcenterx, item->rect.bottom + 1);
2384 }
2385
2386 parent = parent->parent;
2387 }
2388
2389 SelectObject(hdc, hOldPen);
2390 DeleteObject(hNewPen);
2391 }
2392
2393 /*
2394 * Display the (+/-) signs
2395 */
2396
2397 if (infoPtr->dwStyle & TVS_HASBUTTONS)
2398 {
2399 if (item->cChildren)
2400 {
2401 HTHEME theme = GetWindowTheme(infoPtr->hwnd);
2402 if (theme)
2403 {
2404 RECT glyphRect = item->rect;
2405 glyphRect.left = item->linesOffset;
2406 glyphRect.right = item->stateOffset;
2407 DrawThemeBackground (theme, hdc, TVP_GLYPH,
2408 (item->state & TVIS_EXPANDED) ? GLPS_OPENED : GLPS_CLOSED,
2409 &glyphRect, NULL);
2410 }
2411 else
2412 {
2413 LONG height = item->rect.bottom - item->rect.top;
2414 LONG width = item->stateOffset - item->linesOffset;
2415 LONG rectsize = min(height, width) / 4;
2416 /* plussize = ceil(rectsize * 3/4) */
2417 LONG plussize = (rectsize + 1) * 3 / 4;
2418
2419 HPEN new_pen = CreatePen(PS_SOLID, 0, GETLINECOLOR(infoPtr->clrLine));
2420 HPEN old_pen = SelectObject(hdc, new_pen);
2421
2422 Rectangle(hdc, centerx - rectsize - 1, centery - rectsize - 1,
2423 centerx + rectsize + 2, centery + rectsize + 2);
2424
2425 SelectObject(hdc, old_pen);
2426 DeleteObject(new_pen);
2427
2428 /* draw +/- signs with current text color */
2429 new_pen = CreatePen(PS_SOLID, 0, GETTXTCOLOR(infoPtr->clrText));
2430 old_pen = SelectObject(hdc, new_pen);
2431
2432 if (height < 18 || width < 18)
2433 {
2434 MoveToEx(hdc, centerx - plussize + 1, centery, NULL);
2435 LineTo(hdc, centerx + plussize, centery);
2436
2437 if (!(item->state & TVIS_EXPANDED))
2438 {
2439 MoveToEx(hdc, centerx, centery - plussize + 1, NULL);
2440 LineTo(hdc, centerx, centery + plussize);
2441 }
2442 }
2443 else
2444 {
2445 Rectangle(hdc, centerx - plussize + 1, centery - 1,
2446 centerx + plussize, centery + 2);
2447
2448 if (!(item->state & TVIS_EXPANDED))
2449 {
2450 Rectangle(hdc, centerx - 1, centery - plussize + 1,
2451 centerx + 2, centery + plussize);
2452 SetPixel(hdc, centerx - 1, centery, clrBk);
2453 SetPixel(hdc, centerx + 1, centery, clrBk);
2454 }
2455 }
2456
2457 SelectObject(hdc, old_pen);
2458 DeleteObject(new_pen);
2459 }
2460 }
2461 }
2462 SelectObject(hdc, hbrOld);
2463 DeleteObject(hbr);
2464 }
2465
2466 static void
2467 TREEVIEW_DrawItem(const TREEVIEW_INFO *infoPtr, HDC hdc, TREEVIEW_ITEM *wineItem)
2468 {
2469 INT cditem;
2470 HFONT hOldFont;
2471 COLORREF oldTextColor, oldTextBkColor;
2472 int centery;
2473 BOOL inFocus = (GetFocus() == infoPtr->hwnd);
2474 NMTVCUSTOMDRAW nmcdhdr;
2475
2476 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, CALLBACK_MASK_ALL);
2477
2478 /* - If item is drop target or it is selected and window is in focus -
2479 * use blue background (COLOR_HIGHLIGHT).
2480 * - If item is selected, window is not in focus, but it has style
2481 * TVS_SHOWSELALWAYS - use grey background (COLOR_BTNFACE)
2482 * - Otherwise - use background color
2483 */
2484 if ((wineItem->state & TVIS_DROPHILITED) || ((wineItem == infoPtr->focusedItem) && !(wineItem->state & TVIS_SELECTED)) ||
2485 ((wineItem->state & TVIS_SELECTED) && (!infoPtr->focusedItem) &&
2486 (inFocus || (infoPtr->dwStyle & TVS_SHOWSELALWAYS))))
2487 {
2488 if ((wineItem->state & TVIS_DROPHILITED) || inFocus)
2489 {
2490 nmcdhdr.clrTextBk = comctl32_color.clrHighlight;
2491 nmcdhdr.clrText = comctl32_color.clrHighlightText;
2492 }
2493 else
2494 {
2495 nmcdhdr.clrTextBk = comctl32_color.clrBtnFace;
2496 nmcdhdr.clrText = GETTXTCOLOR(infoPtr->clrText);
2497 }
2498 }
2499 else
2500 {
2501 nmcdhdr.clrTextBk = GETBKCOLOR(infoPtr->clrBk);
2502 if ((infoPtr->dwStyle & TVS_TRACKSELECT) && (wineItem == infoPtr->hotItem))
2503 nmcdhdr.clrText = comctl32_color.clrHighlight;
2504 else
2505 nmcdhdr.clrText = GETTXTCOLOR(infoPtr->clrText);
2506 }
2507
2508 hOldFont = SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, wineItem));
2509
2510 /* The custom draw handler can query the text rectangle,
2511 * so get ready. */
2512 /* should already be known, set to 0 when changed */
2513 if (!wineItem->textWidth)
2514 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, hdc);
2515
2516 cditem = 0;
2517
2518 if (infoPtr->cdmode & CDRF_NOTIFYITEMDRAW)
2519 {
2520 cditem = TREEVIEW_SendCustomDrawItemNotify
2521 (infoPtr, hdc, wineItem, CDDS_ITEMPREPAINT, &nmcdhdr);
2522 TRACE("prepaint:cditem-app returns 0x%x\n", cditem);
2523
2524 if (cditem & CDRF_SKIPDEFAULT)
2525 {
2526 SelectObject(hdc, hOldFont);
2527 return;
2528 }
2529 }
2530
2531 if (cditem & CDRF_NEWFONT)
2532 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, hdc);
2533
2534 TREEVIEW_DrawItemLines(infoPtr, hdc, wineItem);
2535
2536 /* Set colors. Custom draw handler can change these so we do this after it. */
2537 oldTextColor = SetTextColor(hdc, nmcdhdr.clrText);
2538 oldTextBkColor = SetBkColor(hdc, nmcdhdr.clrTextBk);
2539
2540 centery = (wineItem->rect.top + wineItem->rect.bottom) / 2;
2541
2542 /*
2543 * Display the images associated with this item
2544 */
2545 {
2546 INT imageIndex;
2547
2548 /* State images are displayed to the left of the Normal image
2549 * image number is in state; zero should be `display no image'.
2550 */
2551 imageIndex = STATEIMAGEINDEX(wineItem->state);
2552
2553 if (infoPtr->himlState && imageIndex)
2554 {
2555 ImageList_Draw(infoPtr->himlState, imageIndex, hdc,
2556 wineItem->stateOffset,
2557 centery - infoPtr->stateImageHeight / 2,
2558 ILD_NORMAL);
2559 }
2560
2561 /* Now, draw the normal image; can be either selected or
2562 * non-selected image.
2563 */
2564
2565 if ((wineItem->state & TVIS_SELECTED) && (wineItem->iSelectedImage >= 0))
2566 {
2567 /* The item is currently selected */
2568 imageIndex = wineItem->iSelectedImage;
2569 }
2570 else
2571 {
2572 /* The item is not selected */
2573 imageIndex = wineItem->iImage;
2574 }
2575
2576 if (infoPtr->himlNormal)
2577 {
2578 int ovlIdx = wineItem->state & TVIS_OVERLAYMASK;
2579
2580 ImageList_Draw(infoPtr->himlNormal, imageIndex, hdc,
2581 wineItem->imageOffset,
2582 centery - infoPtr->normalImageHeight / 2,
2583 ILD_NORMAL | ovlIdx);
2584 }
2585 }
2586
2587
2588 /*
2589 * Display the text associated with this item
2590 */
2591
2592 /* Don't paint item's text if it's being edited */
2593 if (!infoPtr->hwndEdit || (infoPtr->selectedItem != wineItem))
2594 {
2595 if (wineItem->pszText)
2596 {
2597 RECT rcText;
2598
2599 rcText.top = wineItem->rect.top;
2600 rcText.bottom = wineItem->rect.bottom;
2601 rcText.left = wineItem->textOffset;
2602 rcText.right = rcText.left + wineItem->textWidth + 4;
2603
2604 TRACE("drawing text %s at (%s)\n",
2605 debugstr_w(wineItem->pszText), wine_dbgstr_rect(&rcText));
2606
2607 /* Draw it */
2608 ExtTextOutW(hdc, rcText.left + 2, rcText.top + 1,
2609 ETO_CLIPPED | ETO_OPAQUE,
2610 &rcText,
2611 wineItem->pszText,
2612 lstrlenW(wineItem->pszText),
2613 NULL);
2614
2615 /* Draw the box around the selected item */
2616 if ((wineItem == infoPtr->selectedItem) && inFocus)
2617 {
2618 DrawFocusRect(hdc,&rcText);
2619 }
2620
2621 }
2622 }
2623
2624 /* Draw insertion mark if necessary */
2625
2626 if (infoPtr->insertMarkItem)
2627 TRACE("item:%d,mark:%p\n",
2628 TREEVIEW_GetItemIndex(infoPtr, wineItem),
2629 infoPtr->insertMarkItem);
2630
2631 if (wineItem == infoPtr->insertMarkItem)
2632 {
2633 HPEN hNewPen, hOldPen;
2634 int offset;
2635 int left, right;
2636
2637 hNewPen = CreatePen(PS_SOLID, 2, GETINSCOLOR(infoPtr->clrInsertMark));
2638 hOldPen = SelectObject(hdc, hNewPen);
2639
2640 if (infoPtr->insertBeforeorAfter)
2641 offset = wineItem->rect.bottom - 1;
2642 else
2643 offset = wineItem->rect.top + 1;
2644
2645 left = wineItem->textOffset - 2;
2646 right = wineItem->textOffset + wineItem->textWidth + 2;
2647
2648 MoveToEx(hdc, left, offset - 3, NULL);
2649 LineTo(hdc, left, offset + 4);
2650
2651 MoveToEx(hdc, left, offset, NULL);
2652 LineTo(hdc, right + 1, offset);
2653
2654 MoveToEx(hdc, right, offset + 3, NULL);
2655 LineTo(hdc, right, offset - 4);
2656
2657 SelectObject(hdc, hOldPen);
2658 DeleteObject(hNewPen);
2659 }
2660
2661 if (cditem & CDRF_NOTIFYPOSTPAINT)
2662 {
2663 cditem = TREEVIEW_SendCustomDrawItemNotify
2664 (infoPtr, hdc, wineItem, CDDS_ITEMPOSTPAINT, &nmcdhdr);
2665 TRACE("postpaint:cditem-app returns 0x%x\n", cditem);
2666 }
2667
2668 /* Restore the hdc state */
2669 SetTextColor(hdc, oldTextColor);
2670 SetBkColor(hdc, oldTextBkColor);
2671 SelectObject(hdc, hOldFont);
2672 }
2673
2674 /* Computes treeHeight and treeWidth and updates the scroll bars.
2675 */
2676 static void
2677 TREEVIEW_UpdateScrollBars(TREEVIEW_INFO *infoPtr)
2678 {
2679 TREEVIEW_ITEM *wineItem;
2680 HWND hwnd = infoPtr->hwnd;
2681 BOOL vert = FALSE;
2682 BOOL horz = FALSE;
2683 SCROLLINFO si;
2684 LONG scrollX = infoPtr->scrollX;
2685
2686 infoPtr->treeWidth = 0;
2687 infoPtr->treeHeight = 0;
2688
2689 /* We iterate through all visible items in order to get the tree height
2690 * and width */
2691 wineItem = infoPtr->root->firstChild;
2692
2693 while (wineItem != NULL)
2694 {
2695 if (ISVISIBLE(wineItem))
2696 {
2697 /* actually we draw text at textOffset + 2 */
2698 if (2+wineItem->textOffset+wineItem->textWidth > infoPtr->treeWidth)
2699 infoPtr->treeWidth = wineItem->textOffset+wineItem->textWidth+2;
2700
2701 /* This is scroll-adjusted, but we fix this below. */
2702 infoPtr->treeHeight = wineItem->rect.bottom;
2703 }
2704
2705 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem);
2706 }
2707
2708 /* Fix the scroll adjusted treeHeight and treeWidth. */
2709 if (infoPtr->root->firstChild)
2710 infoPtr->treeHeight -= infoPtr->root->firstChild->rect.top;
2711
2712 infoPtr->treeWidth += infoPtr->scrollX;
2713
2714 if (infoPtr->dwStyle & TVS_NOSCROLL) return;
2715
2716 /* Adding one scroll bar may take up enough space that it forces us
2717 * to add the other as well. */
2718 if (infoPtr->treeHeight > infoPtr->clientHeight)
2719 {
2720 vert = TRUE;
2721
2722 if (infoPtr->treeWidth
2723 > infoPtr->clientWidth - GetSystemMetrics(SM_CXVSCROLL))
2724 horz = TRUE;
2725 }
2726 else if (infoPtr->treeWidth > infoPtr->clientWidth || infoPtr->scrollX > 0)
2727 horz = TRUE;
2728
2729 if (!vert && horz && infoPtr->treeHeight
2730 > infoPtr->clientHeight - GetSystemMetrics(SM_CYVSCROLL))
2731 vert = TRUE;
2732
2733 if (horz && (infoPtr->dwStyle & TVS_NOHSCROLL)) horz = FALSE;
2734
2735 si.cbSize = sizeof(SCROLLINFO);
2736 si.fMask = SIF_POS|SIF_RANGE|SIF_PAGE;
2737 si.nMin = 0;
2738
2739 if (vert)
2740 {
2741 si.nPage = TREEVIEW_GetVisibleCount(infoPtr);
2742 if ( si.nPage && NULL != infoPtr->firstVisible)
2743 {
2744 si.nPos = infoPtr->firstVisible->visibleOrder;
2745 si.nMax = infoPtr->maxVisibleOrder - 1;
2746
2747 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
2748
2749 if (!(infoPtr->uInternalStatus & TV_VSCROLL))
2750 ShowScrollBar(hwnd, SB_VERT, TRUE);
2751 infoPtr->uInternalStatus |= TV_VSCROLL;
2752 }
2753 else
2754 {
2755 if (infoPtr->uInternalStatus & TV_VSCROLL)
2756 ShowScrollBar(hwnd, SB_VERT, FALSE);
2757 infoPtr->uInternalStatus &= ~TV_VSCROLL;
2758 }
2759 }
2760 else
2761 {
2762 if (infoPtr->uInternalStatus & TV_VSCROLL)
2763 ShowScrollBar(hwnd, SB_VERT, FALSE);
2764 infoPtr->uInternalStatus &= ~TV_VSCROLL;
2765 }
2766
2767 if (horz)
2768 {
2769 si.nPage = infoPtr->clientWidth;
2770 si.nPos = infoPtr->scrollX;
2771 si.nMax = infoPtr->treeWidth - 1;
2772
2773 if (si.nPos > si.nMax - max( si.nPage-1, 0 ))
2774 {
2775 si.nPos = si.nMax - max( si.nPage-1, 0 );
2776 scrollX = si.nPos;
2777 }
2778
2779 if (!(infoPtr->uInternalStatus & TV_HSCROLL))
2780 ShowScrollBar(hwnd, SB_HORZ, TRUE);
2781 infoPtr->uInternalStatus |= TV_HSCROLL;
2782
2783 SetScrollInfo(hwnd, SB_HORZ, &si, TRUE);
2784 TREEVIEW_HScroll(infoPtr,
2785 MAKEWPARAM(SB_THUMBPOSITION, scrollX));
2786 }
2787 else
2788 {
2789 if (infoPtr->uInternalStatus & TV_HSCROLL)
2790 ShowScrollBar(hwnd, SB_HORZ, FALSE);
2791 infoPtr->uInternalStatus &= ~TV_HSCROLL;
2792
2793 scrollX = 0;
2794 if (infoPtr->scrollX != 0)
2795 {
2796 TREEVIEW_HScroll(infoPtr,
2797 MAKEWPARAM(SB_THUMBPOSITION, scrollX));
2798 }
2799 }
2800
2801 if (!horz)
2802 infoPtr->uInternalStatus &= ~TV_HSCROLL;
2803 }
2804
2805 static void
2806 TREEVIEW_FillBkgnd(const TREEVIEW_INFO *infoPtr, HDC hdc, const RECT *rc)
2807 {
2808 HBRUSH hBrush;
2809 COLORREF clrBk = GETBKCOLOR(infoPtr->clrBk);
2810
2811 hBrush = CreateSolidBrush(clrBk);
2812 FillRect(hdc, rc, hBrush);
2813 DeleteObject(hBrush);
2814 }
2815
2816 /* CtrlSpy doesn't mention this, but CorelDRAW's object manager needs it. */
2817 static LRESULT
2818 TREEVIEW_EraseBackground(const TREEVIEW_INFO *infoPtr, HDC hdc)
2819 {
2820 RECT rect;
2821
2822 TRACE("%p\n", infoPtr);
2823
2824 GetClientRect(infoPtr->hwnd, &rect);
2825 TREEVIEW_FillBkgnd(infoPtr, hdc, &rect);
2826
2827 return 1;
2828 }
2829
2830 static void
2831 TREEVIEW_Refresh(TREEVIEW_INFO *infoPtr, HDC hdc, const RECT *rc)
2832 {
2833 HWND hwnd = infoPtr->hwnd;
2834 RECT rect = *rc;
2835 TREEVIEW_ITEM *wineItem;
2836
2837 if (infoPtr->clientHeight == 0 || infoPtr->clientWidth == 0)
2838 {
2839 TRACE("empty window\n");
2840 return;
2841 }
2842
2843 infoPtr->cdmode = TREEVIEW_SendCustomDrawNotify(infoPtr, CDDS_PREPAINT,
2844 hdc, rect);
2845
2846 if (infoPtr->cdmode == CDRF_SKIPDEFAULT)
2847 {
2848 ReleaseDC(hwnd, hdc);
2849 return;
2850 }
2851
2852 for (wineItem = infoPtr->root->firstChild;
2853 wineItem != NULL;
2854 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem))
2855 {
2856 if (ISVISIBLE(wineItem))
2857 {
2858 /* Avoid unneeded calculations */
2859 if (wineItem->rect.top > rect.bottom)
2860 break;
2861 if (wineItem->rect.bottom < rect.top)
2862 continue;
2863
2864 TREEVIEW_DrawItem(infoPtr, hdc, wineItem);
2865 }
2866 }
2867
2868 //
2869 // This is correct, but is causes and infinite loop of WM_PAINT messages, resulting
2870 // in continuous painting of the scroll bar in reactos. Comment out until the real
2871 // bug is found
2872 //
2873 //TREEVIEW_UpdateScrollBars(infoPtr);
2874
2875 if (infoPtr->cdmode & CDRF_NOTIFYPOSTPAINT)
2876 infoPtr->cdmode =
2877 TREEVIEW_SendCustomDrawNotify(infoPtr, CDDS_POSTPAINT, hdc, rect);
2878 }
2879
2880 static inline void
2881 TREEVIEW_InvalidateItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *item)
2882 {
2883 if (item) InvalidateRect(infoPtr->hwnd, &item->rect, TRUE);
2884 }
2885
2886 static void
2887 TREEVIEW_Invalidate(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *item)
2888 {
2889 if (item)
2890 InvalidateRect(infoPtr->hwnd, &item->rect, TRUE);
2891 else
2892 InvalidateRect(infoPtr->hwnd, NULL, TRUE);
2893 }
2894
2895 static LRESULT
2896 TREEVIEW_Paint(TREEVIEW_INFO *infoPtr, HDC hdc_ref)
2897 {
2898 HDC hdc;
2899 PAINTSTRUCT ps;
2900 RECT rc;
2901
2902 TRACE("\n");
2903
2904 if (hdc_ref)
2905 {
2906 hdc = hdc_ref;
2907 GetClientRect(infoPtr->hwnd, &rc);
2908 }
2909 else
2910 {
2911 hdc = BeginPaint(infoPtr->hwnd, &ps);
2912 rc = ps.rcPaint;
2913 if(ps.fErase)
2914 TREEVIEW_FillBkgnd(infoPtr, hdc, &rc);
2915 }
2916
2917 if(infoPtr->bRedraw) /* WM_SETREDRAW sets bRedraw */
2918 TREEVIEW_Refresh(infoPtr, hdc, &rc);
2919
2920 if (!hdc_ref)
2921 EndPaint(infoPtr->hwnd, &ps);
2922
2923 return 0;
2924 }
2925
2926 static LRESULT
2927 TREEVIEW_PrintClient(TREEVIEW_INFO *infoPtr, HDC hdc, DWORD options)
2928 {
2929 FIXME("Partial Stub: (hdc=%p options=0x%08x)\n", hdc, options);
2930
2931 if ((options & PRF_CHECKVISIBLE) && !IsWindowVisible(infoPtr->hwnd))
2932 return 0;
2933
2934 if (options & PRF_ERASEBKGND)
2935 TREEVIEW_EraseBackground(infoPtr, hdc);
2936
2937 if (options & PRF_CLIENT)
2938 {
2939 RECT rc;
2940 GetClientRect(infoPtr->hwnd, &rc);
2941 TREEVIEW_Refresh(infoPtr, hdc, &rc);
2942 }
2943
2944 return 0;
2945 }
2946
2947 /* Sorting **************************************************************/
2948
2949 /***************************************************************************
2950 * Forward the DPA local callback to the treeview owner callback
2951 */
2952 static INT WINAPI
2953 TREEVIEW_CallBackCompare(const TREEVIEW_ITEM *first, const TREEVIEW_ITEM *second,
2954 const TVSORTCB *pCallBackSort)
2955 {
2956 /* Forward the call to the client-defined callback */
2957 return pCallBackSort->lpfnCompare(first->lParam,
2958 second->lParam,
2959 pCallBackSort->lParam);
2960 }
2961
2962 /***************************************************************************
2963 * Treeview native sort routine: sort on item text.
2964 */
2965 static INT WINAPI
2966 TREEVIEW_SortOnName(TREEVIEW_ITEM *first, TREEVIEW_ITEM *second,
2967 const TREEVIEW_INFO *infoPtr)
2968 {
2969 TREEVIEW_UpdateDispInfo(infoPtr, first, TVIF_TEXT);
2970 TREEVIEW_UpdateDispInfo(infoPtr, second, TVIF_TEXT);
2971
2972 if(first->pszText && second->pszText)
2973 return lstrcmpiW(first->pszText, second->pszText);
2974 else if(first->pszText)
2975 return -1;
2976 else if(second->pszText)
2977 return 1;
2978 else
2979 return 0;
2980 }
2981
2982 /* Returns the number of physical children belonging to item. */
2983 static INT
2984 TREEVIEW_CountChildren(const TREEVIEW_ITEM *item)
2985 {
2986 INT cChildren = 0;
2987 HTREEITEM hti;
2988
2989 for (hti = item->firstChild; hti != NULL; hti = hti->nextSibling)
2990 cChildren++;
2991
2992 return cChildren;
2993 }
2994
2995 /* Returns a DPA containing a pointer to each physical child of item in
2996 * sibling order. If item has no children, an empty DPA is returned. */
2997 static HDPA
2998 TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM *item)
2999 {
3000 HTREEITEM child = item->firstChild;
3001
3002 HDPA list = DPA_Create(8);
3003 if (list == 0) return NULL;
3004
3005 for (child = item->firstChild; child != NULL; child = child->nextSibling)
3006 {
3007 if (DPA_InsertPtr(list, INT_MAX, child) == -1)
3008 {
3009 DPA_Destroy(list);
3010 return NULL;
3011 }
3012 }
3013
3014 return list;
3015 }
3016
3017 /***************************************************************************
3018 * Setup the treeview structure with regards of the sort method
3019 * and sort the children of the TV item specified in lParam
3020 * fRecurse: currently unused. Should be zero.
3021 * parent: if pSort!=NULL, should equal pSort->hParent.
3022 * otherwise, item which child items are to be sorted.
3023 * pSort: sort method info. if NULL, sort on item text.
3024 * if non-NULL, sort on item's lParam content, and let the
3025 * application decide what that means. See also TVM_SORTCHILDRENCB.
3026 */
3027
3028 static LRESULT
3029 TREEVIEW_Sort(TREEVIEW_INFO *infoPtr, HTREEITEM parent,
3030 LPTVSORTCB pSort)
3031 {
3032 INT cChildren;
3033 PFNDPACOMPARE pfnCompare;
3034 LPARAM lpCompare;
3035
3036 /* undocumented feature: TVI_ROOT or NULL means `sort the whole tree' */
3037 if (parent == TVI_ROOT || parent == NULL)
3038 parent = infoPtr->root;
3039
3040 /* Check for a valid handle to the parent item */
3041 if (!TREEVIEW_ValidItem(infoPtr, parent))
3042 {
3043 ERR("invalid item hParent=%p\n", parent);
3044 return FALSE;
3045 }
3046
3047 if (pSort)
3048 {
3049 pfnCompare = (PFNDPACOMPARE)TREEVIEW_CallBackCompare;
3050 lpCompare = (LPARAM)pSort;
3051 }
3052 else
3053 {
3054 pfnCompare = (PFNDPACOMPARE)TREEVIEW_SortOnName;
3055 lpCompare = (LPARAM)infoPtr;
3056 }
3057
3058 cChildren = TREEVIEW_CountChildren(parent);
3059
3060 /* Make sure there is something to sort */
3061 if (cChildren > 1)
3062 {
3063 /* TREEVIEW_ITEM rechaining */
3064 INT count = 0;
3065 HTREEITEM item = 0;
3066 HTREEITEM nextItem = 0;
3067 HTREEITEM prevItem = 0;
3068
3069 HDPA sortList = TREEVIEW_BuildChildDPA(parent);
3070
3071 if (sortList == NULL)
3072 return FALSE;
3073
3074 /* let DPA sort the list */
3075 DPA_Sort(sortList, pfnCompare, lpCompare);
3076
3077 /* The order of DPA entries has been changed, so fixup the
3078 * nextSibling and prevSibling pointers. */
3079
3080 item = DPA_GetPtr(sortList, count++);
3081 while ((nextItem = DPA_GetPtr(sortList, count++)) != NULL)
3082 {
3083 /* link the two current item together */
3084 item->nextSibling = nextItem;
3085 nextItem->prevSibling = item;
3086
3087 if (prevItem == NULL)
3088 {
3089 /* this is the first item, update the parent */
3090 parent->firstChild = item;
3091 item->prevSibling = NULL;
3092 }
3093 else
3094 {
3095 /* fix the back chaining */
3096 item->prevSibling = prevItem;
3097 }
3098
3099 /* get ready for the next one */
3100 prevItem = item;
3101 item = nextItem;
3102 }
3103
3104 /* the last item is pointed to by item and never has a sibling */
3105 item->nextSibling = NULL;
3106 parent->lastChild = item;
3107
3108 DPA_Destroy(sortList);
3109
3110 TREEVIEW_VerifyTree(infoPtr);
3111
3112 if (parent->state & TVIS_EXPANDED)
3113 {
3114 int visOrder = infoPtr->firstVisible->visibleOrder;
3115
3116 if (parent == infoPtr->root)
3117 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
3118 else
3119 TREEVIEW_RecalculateVisibleOrder(infoPtr, parent);
3120
3121 if (TREEVIEW_IsChildOf(parent, infoPtr->firstVisible))
3122 {
3123 TREEVIEW_ITEM *item;
3124
3125 for (item = infoPtr->root->firstChild; item != NULL;
3126 item = TREEVIEW_GetNextListItem(infoPtr, item))
3127 {
3128 if (item->visibleOrder == visOrder)
3129 break;
3130 }
3131
3132 if (!item) item = parent->firstChild;
3133 TREEVIEW_SetFirstVisible(infoPtr, item, FALSE);
3134 }
3135
3136 TREEVIEW_Invalidate(infoPtr, NULL);
3137 }
3138
3139 return TRUE;
3140 }
3141 return FALSE;
3142 }
3143
3144
3145 /***************************************************************************
3146 * Setup the treeview structure with regards of the sort method
3147 * and sort the children of the TV item specified in lParam
3148 */
3149 static LRESULT
3150 TREEVIEW_SortChildrenCB(TREEVIEW_INFO *infoPtr, LPTVSORTCB pSort)
3151 {
3152 return TREEVIEW_Sort(infoPtr, pSort->hParent, pSort);
3153 }
3154
3155
3156 /***************************************************************************
3157 * Sort the children of the TV item specified in lParam.
3158 */
3159 static LRESULT
3160 TREEVIEW_SortChildren(TREEVIEW_INFO *infoPtr, LPARAM lParam)
3161 {
3162 return TREEVIEW_Sort(infoPtr, (HTREEITEM)lParam, NULL);
3163 }
3164
3165
3166 /* Expansion/Collapse ***************************************************/
3167
3168 static BOOL
3169 TREEVIEW_SendExpanding(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3170 UINT action)
3171 {
3172 return !TREEVIEW_SendTreeviewNotify(infoPtr, TVN_ITEMEXPANDINGW, action,
3173 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM
3174 | TVIF_IMAGE | TVIF_SELECTEDIMAGE,
3175 0, wineItem);
3176 }
3177
3178 static VOID
3179 TREEVIEW_SendExpanded(const TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3180 UINT action)
3181 {
3182 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_ITEMEXPANDEDW, action,
3183 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM
3184 | TVIF_IMAGE | TVIF_SELECTEDIMAGE,
3185 0, wineItem);
3186 }
3187
3188
3189 /* This corresponds to TVM_EXPAND with TVE_COLLAPSE.
3190 * bRemoveChildren corresponds to TVE_COLLAPSERESET. */
3191 static BOOL
3192 TREEVIEW_Collapse(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3193 BOOL bRemoveChildren, BOOL bUser)
3194 {
3195 UINT action = TVE_COLLAPSE | (bRemoveChildren ? TVE_COLLAPSERESET : 0);
3196 BOOL bSetSelection, bSetFirstVisible;
3197 RECT scrollRect;
3198 LONG scrollDist = 0;
3199 TREEVIEW_ITEM *nextItem = NULL, *tmpItem;
3200
3201 TRACE("TVE_COLLAPSE %p %s\n", wineItem, TREEVIEW_ItemName(wineItem));
3202
3203 if (!(wineItem->state & TVIS_EXPANDED))
3204 return FALSE;
3205
3206 if (bUser || !(wineItem->state & TVIS_EXPANDEDONCE))
3207 TREEVIEW_SendExpanding(infoPtr, wineItem, action);
3208
3209 if (wineItem->firstChild == NULL)
3210 return FALSE;
3211
3212 wineItem->state &= ~TVIS_EXPANDED;
3213
3214 if (bUser || !(wineItem->state & TVIS_EXPANDEDONCE))
3215 TREEVIEW_SendExpanded(infoPtr, wineItem, action);
3216
3217 bSetSelection = (infoPtr->selectedItem != NULL
3218 && TREEVIEW_IsChildOf(wineItem, infoPtr->selectedItem));
3219
3220 bSetFirstVisible = (infoPtr->firstVisible != NULL
3221 && TREEVIEW_IsChildOf(wineItem, infoPtr->firstVisible));
3222
3223 tmpItem = wineItem;
3224 while (tmpItem)
3225 {
3226 if (tmpItem->nextSibling)
3227 {
3228 nextItem = tmpItem->nextSibling;
3229 break;
3230 }
3231 tmpItem = tmpItem->parent;
3232 }
3233
3234 if (nextItem)
3235 scrollDist = nextItem->rect.top;
3236
3237 if (bRemoveChildren)
3238 {
3239 INT old_cChildren = wineItem->cChildren;
3240 TRACE("TVE_COLLAPSERESET\n");
3241 wineItem->state &= ~TVIS_EXPANDEDONCE;
3242 TREEVIEW_RemoveAllChildren(infoPtr, wineItem);
3243 wineItem->cChildren = old_cChildren;
3244 }
3245
3246 if (wineItem->firstChild)
3247 {
3248 TREEVIEW_ITEM *item, *sibling;
3249
3250 sibling = TREEVIEW_GetNextListItem(infoPtr, wineItem);
3251
3252 for (item = wineItem->firstChild; item != sibling;
3253 item = TREEVIEW_GetNextListItem(infoPtr, item))
3254 {
3255 item->visibleOrder = -1;
3256 }
3257 }
3258
3259 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
3260
3261 if (nextItem)
3262 scrollDist = -(scrollDist - nextItem->rect.top);
3263
3264 if (bSetSelection)
3265 {
3266 /* Don't call DoSelectItem, it sends notifications. */
3267 if (TREEVIEW_ValidItem(infoPtr, infoPtr->selectedItem))
3268 infoPtr->selectedItem->state &= ~TVIS_SELECTED;
3269 wineItem->state |= TVIS_SELECTED;
3270 infoPtr->selectedItem = wineItem;
3271 }
3272
3273 TREEVIEW_UpdateScrollBars(infoPtr);
3274
3275 scrollRect.left = 0;
3276 scrollRect.right = infoPtr->clientWidth;
3277 scrollRect.bottom = infoPtr->clientHeight;
3278
3279 if (nextItem)
3280 {
3281 scrollRect.top = nextItem->rect.top;
3282
3283 ScrollWindowEx (infoPtr->hwnd, 0, scrollDist, &scrollRect, &scrollRect,
3284 NULL, NULL, SW_ERASE | SW_INVALIDATE);
3285 TREEVIEW_Invalidate(infoPtr, wineItem);
3286 } else {
3287 scrollRect.top = wineItem->rect.top;
3288 InvalidateRect(infoPtr->hwnd, &scrollRect, TRUE);
3289 }
3290
3291 TREEVIEW_SetFirstVisible(infoPtr,
3292 bSetFirstVisible ? wineItem : infoPtr->firstVisible,
3293 TRUE);
3294
3295 return TRUE;
3296 }
3297
3298 static BOOL
3299 TREEVIEW_Expand(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3300 BOOL bExpandPartial, BOOL bUser)
3301 {
3302 LONG scrollDist;
3303 LONG orgNextTop = 0;
3304 RECT scrollRect;
3305 TREEVIEW_ITEM *nextItem, *tmpItem;
3306
3307 TRACE("\n");
3308
3309 if (wineItem->state & TVIS_EXPANDED)
3310 return TRUE;
3311
3312 tmpItem = wineItem; nextItem = NULL;
3313 while (tmpItem)
3314 {
3315 if (tmpItem->nextSibling)
3316 {
3317 nextItem = tmpItem->nextSibling;
3318 break;
3319 }
3320 tmpItem = tmpItem->parent;
3321 }
3322
3323 if (nextItem)
3324 orgNextTop = nextItem->rect.top;
3325
3326 TRACE("TVE_EXPAND %p %s\n", wineItem, TREEVIEW_ItemName(wineItem));
3327
3328 if (bUser || ((wineItem->cChildren != 0) &&
3329 !(wineItem->state & TVIS_EXPANDEDONCE)))
3330 {
3331 if (!TREEVIEW_SendExpanding(infoPtr, wineItem, TVE_EXPAND))
3332 {
3333 TRACE(" TVN_ITEMEXPANDING returned TRUE, exiting...\n");
3334 return FALSE;
3335 }
3336
3337 if (!wineItem->firstChild)
3338 return FALSE;
3339
3340 wineItem->state |= TVIS_EXPANDED;
3341 TREEVIEW_SendExpanded(infoPtr, wineItem, TVE_EXPAND);
3342 wineItem->state |= TVIS_EXPANDEDONCE;
3343 }
3344 else
3345 {
3346 if (!wineItem->firstChild)
3347 return FALSE;
3348
3349 /* this item has already been expanded */
3350 wineItem->state |= TVIS_EXPANDED;
3351 }
3352
3353 if (bExpandPartial)
3354 FIXME("TVE_EXPANDPARTIAL not implemented\n");
3355
3356 if (ISVISIBLE(wineItem))
3357 {
3358 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
3359 TREEVIEW_UpdateSubTree(infoPtr, wineItem);
3360 TREEVIEW_UpdateScrollBars(infoPtr);
3361
3362 scrollRect.left = 0;
3363 scrollRect.bottom = infoPtr->treeHeight;
3364 scrollRect.right = infoPtr->clientWidth;
3365 if (nextItem)
3366 {
3367 scrollDist = nextItem->rect.top - orgNextTop;
3368 scrollRect.top = orgNextTop;
3369
3370 ScrollWindowEx (infoPtr->hwnd, 0, scrollDist, &scrollRect, NULL,
3371 NULL, NULL, SW_ERASE | SW_INVALIDATE);
3372 TREEVIEW_Invalidate (infoPtr, wineItem);
3373 } else {
3374 scrollRect.top = wineItem->rect.top;
3375 InvalidateRect(infoPtr->hwnd, &scrollRect, FALSE);
3376 }
3377
3378 /* Scroll up so that as many children as possible are visible.
3379 * This fails when expanding causes an HScroll bar to appear, but we
3380 * don't know that yet, so the last item is obscured. */
3381 if (wineItem->firstChild != NULL)
3382 {
3383 int nChildren = wineItem->lastChild->visibleOrder
3384 - wineItem->firstChild->visibleOrder + 1;
3385
3386 int visible_pos = wineItem->visibleOrder
3387 - infoPtr->firstVisible->visibleOrder;
3388
3389 int rows_below = TREEVIEW_GetVisibleCount(infoPtr) - visible_pos - 1;
3390
3391 if (visible_pos > 0 && nChildren > rows_below)
3392 {
3393 int scroll = nChildren - rows_below;
3394
3395 if (scroll > visible_pos)
3396 scroll = visible_pos;
3397
3398 if (scroll > 0)
3399 {
3400 TREEVIEW_ITEM *newFirstVisible
3401 = TREEVIEW_GetListItem(infoPtr, infoPtr->firstVisible,
3402 scroll);
3403
3404
3405 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
3406 }
3407 }
3408 }
3409 }
3410
3411 return TRUE;
3412 }
3413
3414 static BOOL
3415 TREEVIEW_Toggle(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem, BOOL bUser)
3416 {
3417 TRACE("\n");
3418
3419 if (wineItem->state & TVIS_EXPANDED)
3420 return TREEVIEW_Collapse(infoPtr, wineItem, FALSE, bUser);
3421 else
3422 return TREEVIEW_Expand(infoPtr, wineItem, FALSE, bUser);
3423 }
3424
3425 static VOID
3426 TREEVIEW_ExpandAll(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
3427 {
3428 TREEVIEW_Expand(infoPtr, item, FALSE, TRUE);
3429
3430 for (item = item->firstChild; item != NULL; item = item->nextSibling)
3431 {
3432 if (TREEVIEW_HasChildren(infoPtr, item))
3433 TREEVIEW_ExpandAll(infoPtr, item);
3434 }
3435 }
3436
3437 /* Note:If the specified item is the child of a collapsed parent item,
3438 the parent's list of child items is (recursively) expanded to reveal the
3439 specified item. This is mentioned for TREEVIEW_SelectItem; don't
3440 know if it also applies here.
3441 */
3442
3443 static LRESULT
3444 TREEVIEW_ExpandMsg(TREEVIEW_INFO *infoPtr, UINT flag, HTREEITEM wineItem)
3445 {
3446 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
3447 return 0;
3448
3449 TRACE("For (%s) item:%d, flags %x, state:%d\n",
3450 TREEVIEW_ItemName(wineItem), flag,
3451 TREEVIEW_GetItemIndex(infoPtr, wineItem), wineItem->state);
3452
3453 switch (flag & TVE_TOGGLE)
3454 {
3455 case TVE_COLLAPSE:
3456 return TREEVIEW_Collapse(infoPtr, wineItem, flag & TVE_COLLAPSERESET,
3457 FALSE);
3458
3459 case TVE_EXPAND:
3460 return TREEVIEW_Expand(infoPtr, wineItem, flag & TVE_EXPANDPARTIAL,
3461 FALSE);
3462
3463 case TVE_TOGGLE:
3464 return TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
3465
3466 default:
3467 return 0;
3468 }
3469
3470 #if 0
3471 TRACE("Exiting, Item %p state is now %d...\n", wineItem, wineItem->state);
3472 #endif
3473 }
3474
3475 /* Hit-Testing **********************************************************/
3476
3477 static TREEVIEW_ITEM *
3478 TREEVIEW_HitTestPoint(const TREEVIEW_INFO *infoPtr, POINT pt)
3479 {
3480 TREEVIEW_ITEM *wineItem;
3481 LONG row;
3482
3483 if (!infoPtr->firstVisible)
3484 return NULL;
3485
3486 row = pt.y / infoPtr->uItemHeight + infoPtr->firstVisible->visibleOrder;
3487
3488 for (wineItem = infoPtr->firstVisible; wineItem != NULL;
3489 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem))
3490 {
3491 if (row >= wineItem->visibleOrder
3492 && row < wineItem->visibleOrder + wineItem->iIntegral)
3493 break;
3494 }
3495
3496 return wineItem;
3497 }
3498
3499 static LRESULT
3500 TREEVIEW_HitTest(const TREEVIEW_INFO *infoPtr, LPTVHITTESTINFO lpht)
3501 {
3502 TREEVIEW_ITEM *wineItem;
3503 RECT rect;
3504 UINT status;
3505 LONG x, y;
3506
3507 lpht->hItem = 0;
3508 GetClientRect(infoPtr->hwnd, &rect);
3509 status = 0;
3510 x = lpht->pt.x;
3511 y = lpht->pt.y;
3512
3513 if (x < rect.left)
3514 {
3515 status |= TVHT_TOLEFT;
3516 }
3517 else if (x > rect.right)
3518 {
3519 status |= TVHT_TORIGHT;
3520 }
3521
3522 if (y < rect.top)
3523 {
3524 status |= TVHT_ABOVE;
3525 }
3526 else if (y > rect.bottom)
3527 {
3528 status |= TVHT_BELOW;
3529 }
3530
3531 if (status)
3532 {
3533 lpht->flags = status;
3534 return 0;
3535 }
3536
3537 wineItem = TREEVIEW_HitTestPoint(infoPtr, lpht->pt);
3538 if (!wineItem)
3539 {
3540 lpht->flags = TVHT_NOWHERE;
3541 return 0;
3542 }
3543
3544 if (x >= wineItem->textOffset + wineItem->textWidth)
3545 {
3546 lpht->flags = TVHT_ONITEMRIGHT;
3547 }
3548 else if (x >= wineItem->textOffset)
3549 {
3550 lpht->flags = TVHT_ONITEMLABEL;
3551 }
3552 else if (x >= wineItem->imageOffset)
3553 {
3554 lpht->flags = TVHT_ONITEMICON;
3555 }
3556 else if (x >= wineItem->stateOffset)
3557 {
3558 lpht->flags = TVHT_ONITEMSTATEICON;
3559 }
3560 else if (x >= wineItem->linesOffset && infoPtr->dwStyle & TVS_HASBUTTONS)
3561 {
3562 lpht->flags = TVHT_ONITEMBUTTON;
3563 }
3564 else
3565 {
3566 lpht->flags = TVHT_ONITEMINDENT;
3567 }
3568
3569 lpht->hItem = wineItem;
3570 TRACE("(%d,%d):result %x\n", lpht->pt.x, lpht->pt.y, lpht->flags);
3571
3572 return (LRESULT)wineItem;
3573 }
3574
3575 /* Item Label Editing ***************************************************/
3576
3577 static LRESULT
3578 TREEVIEW_GetEditControl(const TREEVIEW_INFO *infoPtr)
3579 {
3580 return (LRESULT)infoPtr->hwndEdit;
3581 }
3582
3583 static LRESULT CALLBACK
3584 TREEVIEW_Edit_SubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3585 {
3586 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(GetParent(hwnd));
3587 BOOL bCancel = FALSE;
3588 LRESULT rc;
3589
3590 switch (uMsg)
3591 {
3592 case WM_PAINT:
3593 TRACE("WM_PAINT start\n");
3594 rc = CallWindowProcW(infoPtr->wpEditOrig, hwnd, uMsg, wParam,
3595 lParam);
3596 TRACE("WM_PAINT done\n");
3597 return rc;
3598
3599 case WM_KILLFOCUS:
3600 if (infoPtr->bIgnoreEditKillFocus)
3601 return TRUE;
3602 break;
3603
3604 case WM_DESTROY:
3605 {
3606 WNDPROC editProc = infoPtr->wpEditOrig;
3607 infoPtr->wpEditOrig = 0;
3608 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (DWORD_PTR)editProc);
3609 return CallWindowProcW(editProc, hwnd, uMsg, wParam, lParam);
3610 }
3611
3612 case WM_GETDLGCODE:
3613 return DLGC_WANTARROWS | DLGC_WANTALLKEYS;
3614
3615 case WM_KEYDOWN:
3616 if (wParam == VK_ESCAPE)
3617 {
3618 bCancel = TRUE;
3619 break;
3620 }
3621 else if (wParam == VK_RETURN)
3622 {
3623 break;
3624 }
3625
3626 /* fall through */
3627 default:
3628 return CallWindowProcW(infoPtr->wpEditOrig, hwnd, uMsg, wParam, lParam);
3629 }
3630
3631 /* Processing TVN_ENDLABELEDIT message could kill the focus */
3632 /* eg. Using a messagebox */
3633
3634 infoPtr->bIgnoreEditKillFocus = TRUE;
3635 TREEVIEW_EndEditLabelNow(infoPtr, bCancel || !infoPtr->bLabelChanged);
3636 infoPtr->bIgnoreEditKillFocus = FALSE;
3637
3638 return 0;
3639 }
3640
3641
3642 /* should handle edit control messages here */
3643
3644 static LRESULT
3645 TREEVIEW_Command(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3646 {
3647 TRACE("code=%x, id=%x, handle=%lx\n", HIWORD(wParam), LOWORD(wParam), lParam);
3648
3649 switch (HIWORD(wParam))
3650 {
3651 case EN_UPDATE:
3652 {
3653 /*
3654 * Adjust the edit window size
3655 */
3656 WCHAR buffer[1024];
3657 TREEVIEW_ITEM *editItem = infoPtr->editItem;
3658 HDC hdc = GetDC(infoPtr->hwndEdit);
3659 SIZE sz;
3660 HFONT hFont, hOldFont = 0;
3661
3662 TRACE("edit=%p\n", infoPtr->hwndEdit);
3663
3664 if (!IsWindow(infoPtr->hwndEdit) || !hdc) return FALSE;
3665
3666 infoPtr->bLabelChanged = TRUE;
3667
3668 GetWindowTextW(infoPtr->hwndEdit, buffer, sizeof(buffer)/sizeof(buffer[0]));
3669
3670 /* Select font to get the right dimension of the string */
3671 hFont = (HFONT)SendMessageW(infoPtr->hwndEdit, WM_GETFONT, 0, 0);
3672
3673 if (hFont != 0)
3674 {
3675 hOldFont = SelectObject(hdc, hFont);
3676 }
3677
3678 if (GetTextExtentPoint32W(hdc, buffer, strlenW(buffer), &sz))
3679 {
3680 TEXTMETRICW textMetric;
3681
3682 /* Add Extra spacing for the next character */
3683 GetTextMetricsW(hdc, &textMetric);
3684 sz.cx += (textMetric.tmMaxCharWidth * 2);
3685
3686 sz.cx = max(sz.cx, textMetric.tmMaxCharWidth * 3);
3687 sz.cx = min(sz.cx,
3688 infoPtr->clientWidth - editItem->textOffset + 2);
3689
3690 SetWindowPos(infoPtr->hwndEdit,
3691 HWND_TOP,
3692 0,
3693 0,
3694 sz.cx,
3695 editItem->rect.bottom - editItem->rect.top + 3,
3696 SWP_NOMOVE | SWP_DRAWFRAME);
3697 }
3698
3699 if (hFont != 0)
3700 {
3701 SelectObject(hdc, hOldFont);
3702 }
3703
3704 ReleaseDC(infoPtr->hwnd, hdc);
3705 break;
3706 }
3707 case EN_KILLFOCUS:
3708 /* apparently we should respect passed handle value */
3709 if (infoPtr->hwndEdit != (HWND)lParam) return FALSE;
3710
3711 TREEVIEW_EndEditLabelNow(infoPtr, FALSE);
3712 break;
3713
3714 default:
3715 return SendMessageW(infoPtr->hwndNotify, WM_COMMAND, wParam, lParam);
3716 }
3717
3718 return 0;
3719 }
3720
3721 static HWND
3722 TREEVIEW_EditLabel(TREEVIEW_INFO *infoPtr, HTREEITEM hItem)
3723 {
3724 HWND hwnd = infoPtr->hwnd;
3725 HWND hwndEdit;
3726 SIZE sz;
3727 HINSTANCE hinst = (HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE);
3728 HDC hdc;
3729 HFONT hOldFont=0;
3730 TEXTMETRICW textMetric;
3731
3732 TRACE("%p %p\n", hwnd, hItem);
3733 if (!TREEVIEW_ValidItem(infoPtr, hItem))
3734 return NULL;
3735
3736 if (infoPtr->hwndEdit)
3737 return infoPtr->hwndEdit;
3738
3739 infoPtr->bLabelChanged = FALSE;
3740
3741 /* make edit item visible */
3742 TREEVIEW_EnsureVisible(infoPtr, hItem, TRUE);
3743
3744 TREEVIEW_UpdateDispInfo(infoPtr, hItem, TVIF_TEXT);
3745
3746 hdc = GetDC(hwnd);
3747 /* Select the font to get appropriate metric dimensions */
3748 if (infoPtr->hFont != 0)
3749 {
3750 hOldFont = SelectObject(hdc, infoPtr->hFont);
3751 }
3752
3753 /* Get string length in pixels */
3754 if (hItem->pszText)
3755 GetTextExtentPoint32W(hdc, hItem->pszText, strlenW(hItem->pszText),
3756 &sz);
3757 else
3758 GetTextExtentPoint32A(hdc, "", 0, &sz);
3759
3760 /* Add Extra spacing for the next character */
3761 GetTextMetricsW(hdc, &textMetric);
3762 sz.cx += (textMetric.tmMaxCharWidth * 2);
3763
3764 sz.cx = max(sz.cx, textMetric.tmMaxCharWidth * 3);
3765 sz.cx = min(sz.cx, infoPtr->clientWidth - hItem->textOffset + 2);
3766
3767 if (infoPtr->hFont != 0)
3768 {
3769 SelectObject(hdc, hOldFont);
3770 }
3771
3772 ReleaseDC(hwnd, hdc);
3773
3774 infoPtr->editItem = hItem;
3775
3776 hwndEdit = CreateWindowExW(WS_EX_LEFT,
3777 WC_EDITW,
3778 0,
3779 WS_CHILD | WS_BORDER | ES_AUTOHSCROLL |
3780 WS_CLIPSIBLINGS | ES_WANTRETURN |
3781 ES_LEFT, hItem->textOffset - 2,
3782 hItem->rect.top - 1, sz.cx + 3,
3783 hItem->rect.bottom -
3784 hItem->rect.top + 3, hwnd, 0, hinst, 0);
3785 /* FIXME: (HMENU)IDTVEDIT,pcs->hInstance,0); */
3786
3787 infoPtr->hwndEdit = hwndEdit;
3788
3789 /* Get a 2D border. */
3790 SetWindowLongW(hwndEdit, GWL_EXSTYLE,
3791 GetWindowLongW(hwndEdit, GWL_EXSTYLE) & ~WS_EX_CLIENTEDGE);
3792 SetWindowLongW(hwndEdit, GWL_STYLE,
3793 GetWindowLongW(hwndEdit, GWL_STYLE) | WS_BORDER);
3794
3795 SendMessageW(hwndEdit, WM_SETFONT,
3796 (WPARAM)TREEVIEW_FontForItem(infoPtr, hItem), FALSE);
3797
3798 infoPtr->wpEditOrig = (WNDPROC)SetWindowLongPtrW(hwndEdit, GWLP_WNDPROC,
3799 (DWORD_PTR)
3800 TREEVIEW_Edit_SubclassProc);
3801
3802 if (TREEVIEW_BeginLabelEditNotify(infoPtr, hItem))
3803 {
3804 DestroyWindow(hwndEdit);
3805 infoPtr->hwndEdit = 0;
3806 infoPtr->editItem = NULL;
3807 return NULL;
3808 }
3809
3810 if (hItem->pszText)
3811 SetWindowTextW(hwndEdit, hItem->pszText);
3812
3813 SetFocus(hwndEdit);
3814 SendMessageW(hwndEdit, EM_SETSEL, 0, -1);
3815 ShowWindow(hwndEdit, SW_SHOW);
3816
3817 return hwndEdit;
3818 }
3819
3820
3821 static LRESULT
3822 TREEVIEW_EndEditLabelNow(TREEVIEW_INFO *infoPtr, BOOL bCancel)
3823 {
3824 HWND hwnd = infoPtr->hwnd;
3825 TREEVIEW_ITEM *editedItem = infoPtr->editItem;
3826 NMTVDISPINFOW tvdi;
3827 BOOL bCommit;
3828 WCHAR tmpText[1024] = { '\0' };
3829 WCHAR *newText = tmpText;
3830 int iLength = 0;
3831
3832 if (!IsWindow(infoPtr->hwndEdit)) return FALSE;
3833
3834 tvdi.hdr.hwndFrom = hwnd;
3835 tvdi.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);
3836 tvdi.hdr.code = get_notifycode(infoPtr, TVN_ENDLABELEDITW);
3837 tvdi.item.mask = 0;
3838 tvdi.item.hItem = editedItem;
3839 tvdi.item.state = editedItem->state;
3840 tvdi.item.lParam = editedItem->lParam;
3841
3842 if (!bCancel)
3843 {
3844 if (!infoPtr->bNtfUnicode)
3845 iLength = GetWindowTextA(infoPtr->hwndEdit, (LPSTR)tmpText, 1023);
3846 else
3847 iLength = GetWindowTextW(infoPtr->hwndEdit, tmpText, 1023);
3848
3849 if (iLength >= 1023)
3850 {
3851 ERR("Insufficient space to retrieve new item label\n");
3852 }
3853
3854 tvdi.item.mask = TVIF_TEXT;
3855 tvdi.item.pszText = tmpText;
3856 tvdi.item.cchTextMax = iLength + 1;
3857 }
3858 else
3859 {
3860 tvdi.item.pszText = NULL;
3861 tvdi.item.cchTextMax = 0;
3862 }
3863
3864 bCommit = (BOOL)TREEVIEW_SendRealNotify(infoPtr, tvdi.hdr.idFrom, (LPARAM)&tvdi);
3865
3866 if (!bCancel && bCommit) /* Apply the changes */
3867 {
3868 if (!infoPtr->bNtfUnicode)
3869 {
3870 DWORD len = MultiByteToWideChar( CP_ACP, 0, (LPSTR)tmpText, -1, NULL, 0 );
3871 newText = Alloc(len * sizeof(WCHAR));
3872 MultiByteToWideChar( CP_ACP, 0, (LPSTR)tmpText, -1, newText, len );
3873 iLength = len - 1;
3874 }
3875
3876 if (strcmpW(newText, editedItem->pszText) != 0)
3877 {
3878 WCHAR *ptr = ReAlloc(editedItem->pszText, sizeof(WCHAR)*(iLength + 1));
3879 if (ptr == NULL)
3880 {
3881 ERR("OutOfMemory, cannot allocate space for label\n");
3882 if(newText != tmpText) Free(newText);
3883 DestroyWindow(infoPtr->hwndEdit);
3884 infoPtr->hwndEdit = 0;
3885 infoPtr->editItem = NULL;
3886 return FALSE;
3887 }
3888 else
3889 {
3890 editedItem->pszText = ptr;
3891 editedItem->cchTextMax = iLength + 1;
3892 strcpyW(editedItem->pszText, newText);
3893 TREEVIEW_ComputeTextWidth(infoPtr, editedItem, 0);
3894 }
3895 }
3896 if(newText != tmpText) Free(newText);
3897 }
3898
3899 ShowWindow(infoPtr->hwndEdit, SW_HIDE);
3900 DestroyWindow(infoPtr->hwndEdit);
3901 infoPtr->hwndEdit = 0;
3902 infoPtr->editItem = NULL;
3903 return TRUE;
3904 }
3905
3906 static LRESULT
3907 TREEVIEW_HandleTimer(TREEVIEW_INFO *infoPtr, WPARAM wParam)
3908 {
3909 if (wParam != TV_EDIT_TIMER)
3910 {
3911 ERR("got unknown timer\n");
3912 return 1;
3913 }
3914
3915 KillTimer(infoPtr->hwnd, TV_EDIT_TIMER);
3916 infoPtr->Timer &= ~TV_EDIT_TIMER_SET;
3917
3918 TREEVIEW_EditLabel(infoPtr, infoPtr->selectedItem);
3919
3920 return 0;
3921 }
3922
3923
3924 /* Mouse Tracking/Drag **************************************************/
3925
3926 /***************************************************************************
3927 * This is quite unusual piece of code, but that's how it's implemented in
3928 * Windows.
3929 */
3930 static LRESULT
3931 TREEVIEW_TrackMouse(const TREEVIEW_INFO *infoPtr, POINT pt)
3932 {
3933 INT cxDrag = GetSystemMetrics(SM_CXDRAG);
3934 INT cyDrag = GetSystemMetrics(SM_CYDRAG);
3935 RECT r;
3936 MSG msg;
3937
3938 r.top = pt.y - cyDrag;
3939 r.left = pt.x - cxDrag;
3940 r.bottom = pt.y + cyDrag;
3941 r.right = pt.x + cxDrag;
3942
3943 SetCapture(infoPtr->hwnd);
3944
3945 while (1)
3946 {
3947 if (PeekMessageW(&msg, 0, 0, 0, PM_REMOVE | PM_NOYIELD))
3948 {
3949 if (msg.message == WM_MOUSEMOVE)
3950 {
3951 pt.x = (short)LOWORD(msg.lParam);
3952 pt.y = (short)HIWORD(msg.lParam);
3953 if (PtInRect(&r, pt))
3954 continue;
3955 else
3956 {
3957 ReleaseCapture();
3958 return 1;
3959 }
3960 }
3961 else if (msg.message >= WM_LBUTTONDOWN &&
3962 msg.message <= WM_RBUTTONDBLCLK)
3963 {
3964 if (msg.message == WM_RBUTTONUP)
3965 TREEVIEW_RButtonUp(infoPtr, &pt);
3966 break;
3967 }
3968
3969 DispatchMessageW(&msg);
3970 }
3971
3972 if (GetCapture() != infoPtr->hwnd)
3973 return 0;
3974 }
3975
3976 ReleaseCapture();
3977 return 0;
3978 }
3979
3980
3981 static LRESULT
3982 TREEVIEW_LButtonDoubleClick(TREEVIEW_INFO *infoPtr, LPARAM lParam)
3983 {
3984 TREEVIEW_ITEM *wineItem;
3985 TVHITTESTINFO hit;
3986
3987 TRACE("\n");
3988 SetFocus(infoPtr->hwnd);
3989
3990 if (infoPtr->Timer & TV_EDIT_TIMER_SET)
3991 {
3992 /* If there is pending 'edit label' event - kill it now */
3993 KillTimer(infoPtr->hwnd, TV_EDIT_TIMER);
3994 }
3995
3996 hit.pt.x = (short)LOWORD(lParam);
3997 hit.pt.y = (short)HIWORD(lParam);
3998
3999 wineItem = (TREEVIEW_ITEM *)TREEVIEW_HitTest(infoPtr, &hit);
4000 if (!wineItem)
4001 return 0;
4002 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr, wineItem));
4003
4004 if (TREEVIEW_SendSimpleNotify(infoPtr, NM_DBLCLK) == FALSE)
4005 { /* FIXME! */
4006 switch (hit.flags)
4007 {
4008 case TVHT_ONITEMRIGHT:
4009 /* FIXME: we should not have sent NM_DBLCLK in this case. */
4010 break;
4011
4012 case TVHT_ONITEMINDENT:
4013 if (!(infoPtr->dwStyle & TVS_HASLINES))
4014 {
4015 break;
4016 }
4017 else
4018 {
4019 int level = hit.pt.x / infoPtr->uIndent;
4020 if (!(infoPtr->dwStyle & TVS_LINESATROOT)) level++;
4021
4022 while (wineItem->iLevel > level)
4023 {
4024 wineItem = wineItem->parent;
4025 }
4026
4027 /* fall through */
4028 }
4029
4030 case TVHT_ONITEMLABEL:
4031 case TVHT_ONITEMICON:
4032 case TVHT_ONITEMBUTTON:
4033 TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
4034 break;
4035
4036 case TVHT_ONITEMSTATEICON:
4037 if (infoPtr->dwStyle & TVS_CHECKBOXES)
4038 TREEVIEW_ToggleItemState(infoPtr, wineItem);
4039 else
4040 TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
4041 break;
4042 }
4043 }
4044 return TRUE;
4045 }
4046
4047
4048 static LRESULT
4049 TREEVIEW_LButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam)
4050 {
4051 HWND hwnd = infoPtr->hwnd;
4052 TVHITTESTINFO ht;
4053 BOOL bTrack, bDoLabelEdit;
4054
4055 /* If Edit control is active - kill it and return.
4056 * The best way to do it is to set focus to itself.
4057 * Edit control subclassed procedure will automatically call
4058 * EndEditLabelNow.
4059 */
4060 if (infoPtr->hwndEdit)
4061 {
4062 SetFocus(hwnd);
4063 return 0;
4064 }
4065
4066 ht.pt.x = (short)LOWORD(lParam);
4067 ht.pt.y = (short)HIWORD(lParam);
4068
4069 TREEVIEW_HitTest(infoPtr, &ht);
4070 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr, ht.hItem));
4071
4072 /* update focusedItem and redraw both items */
4073 if(ht.hItem && (ht.flags & TVHT_ONITEM))
4074 {
4075 infoPtr->focusedItem = ht.hItem;
4076 TREEVIEW_InvalidateItem(infoPtr, infoPtr->focusedItem);
4077 TREEVIEW_InvalidateItem(infoPtr, infoPtr->selectedItem);
4078 }
4079
4080 bTrack = (ht.flags & TVHT_ONITEM)
4081 && !(infoPtr->dwStyle & TVS_DISABLEDRAGDROP);
4082
4083 /*
4084 * If the style allows editing and the node is already selected
4085 * and the click occurred on the item label...
4086 */
4087 bDoLabelEdit = (infoPtr->dwStyle & TVS_EDITLABELS) &&
4088 (ht.flags & TVHT_ONITEMLABEL) && (infoPtr->selectedItem == ht.hItem);
4089
4090 /* Send NM_CLICK right away */
4091 if (!bTrack)
4092 if (TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
4093 goto setfocus;
4094
4095 if (ht.flags & TVHT_ONITEMBUTTON)
4096 {
4097 TREEVIEW_Toggle(infoPtr, ht.hItem, TRUE);
4098 goto setfocus;
4099 }
4100 else if (bTrack)
4101 { /* if TREEVIEW_TrackMouse == 1 dragging occurred and the cursor left the dragged item's rectangle */
4102 if (TREEVIEW_TrackMouse(infoPtr, ht.pt))
4103 {
4104 TREEVIEW_SendTreeviewDnDNotify(infoPtr, TVN_BEGINDRAGW, ht.hItem, ht.pt);
4105 infoPtr->dropItem = ht.hItem;
4106
4107 /* clean up focusedItem as we dragged and won't select this item */
4108 if(infoPtr->focusedItem)
4109 {
4110 /* refresh the item that was focused */
4111 TREEVIEW_InvalidateItem(infoPtr, infoPtr->focusedItem);
4112 infoPtr->focusedItem = NULL;
4113
4114 /* refresh the selected item to return the filled background */
4115 TREEVIEW_InvalidateItem(infoPtr, infoPtr->selectedItem);
4116 }
4117
4118 return 0;
4119 }
4120 }
4121
4122 if (bTrack && TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
4123 goto setfocus;
4124
4125 if (bDoLabelEdit)
4126 {
4127 if (infoPtr->Timer & TV_EDIT_TIMER_SET)
4128 KillTimer(hwnd, TV_EDIT_TIMER);
4129
4130 SetTimer(hwnd, TV_EDIT_TIMER, GetDoubleClickTime(), 0);
4131 infoPtr->Timer |= TV_EDIT_TIMER_SET;
4132 }
4133 else if (ht.flags & (TVHT_ONITEMICON|TVHT_ONITEMLABEL)) /* select the item if the hit was inside of the icon or text */
4134 {
4135 /*
4136 * if we are TVS_SINGLEEXPAND then we want this single click to
4137 * do a bunch of things.
4138 */
4139 if((infoPtr->dwStyle & TVS_SINGLEEXPAND) &&
4140 (infoPtr->hwndEdit == 0))
4141 {
4142 TREEVIEW_ITEM *SelItem;
4143
4144 /*
4145 * Send the notification
4146 */
4147 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_SINGLEEXPAND, TVC_UNKNOWN, TVIF_HANDLE | TVIF_PARAM, ht.hItem, 0);
4148
4149 /*
4150 * Close the previous selection all the way to the root
4151 * as long as the new selection is not a child
4152 */
4153 if((infoPtr->selectedItem)
4154 && (infoPtr->selectedItem != ht.hItem))
4155 {
4156 BOOL closeit = TRUE;
4157 SelItem = ht.hItem;
4158
4159 /* determine if the hitItem is a child of the currently selected item */
4160 while(closeit && SelItem && TREEVIEW_ValidItem(infoPtr, SelItem) && (SelItem != infoPtr->root))
4161 {
4162 closeit = (SelItem != infoPtr->selectedItem);
4163 SelItem = SelItem->parent;
4164 }
4165
4166 if(closeit)
4167 {
4168 if(TREEVIEW_ValidItem(infoPtr, infoPtr->selectedItem))
4169 SelItem = infoPtr->selectedItem;
4170
4171 while(SelItem && (SelItem != ht.hItem) && TREEVIEW_ValidItem(infoPtr, SelItem) && (SelItem != infoPtr->root))
4172 {
4173 TREEVIEW_Collapse(infoPtr, SelItem, FALSE, FALSE);
4174 SelItem = SelItem->parent;
4175 }
4176 }
4177 }
4178
4179 /*
4180 * Expand the current item
4181 */
4182 TREEVIEW_Expand(infoPtr, ht.hItem, TVE_TOGGLE, FALSE);
4183 }
4184
4185 /* Select the current item */
4186 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, ht.hItem, TVC_BYMOUSE);
4187 }
4188 else if (ht.flags & TVHT_ONITEMSTATEICON)
4189 {
4190 /* TVS_CHECKBOXES requires us to toggle the current state */
4191 if (infoPtr->dwStyle & TVS_CHECKBOXES)
4192 TREEVIEW_ToggleItemState(infoPtr, ht.hItem);
4193 }
4194
4195 setfocus:
4196 SetFocus(hwnd);
4197 return 0;
4198 }
4199
4200
4201 static LRESULT
4202 TREEVIEW_RButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam)
4203 {
4204 TVHITTESTINFO ht;
4205
4206 if (infoPtr->hwndEdit)
4207 {
4208 SetFocus(infoPtr->hwnd);
4209 return 0;
4210 }
4211
4212 ht.pt.x = (short)LOWORD(lParam);
4213 ht.pt.y = (short)HIWORD(lParam);
4214
4215 TREEVIEW_HitTest(infoPtr, &ht);
4216
4217 if (TREEVIEW_TrackMouse(infoPtr, ht.pt))
4218 {
4219 if (ht.hItem)
4220 {
4221 TREEVIEW_SendTreeviewDnDNotify(infoPtr, TVN_BEGINRDRAGW, ht.hItem, ht.pt);
4222 infoPtr->dropItem = ht.hItem;
4223 }
4224 }
4225 else
4226 {
4227 SetFocus(infoPtr->hwnd);
4228 TREEVIEW_SendSimpleNotify(infoPtr, NM_RCLICK);
4229 }
4230
4231 return 0;
4232 }
4233
4234 static LRESULT
4235 TREEVIEW_RButtonUp(const TREEVIEW_INFO *infoPtr, const POINT *pPt)
4236 {
4237 TVHITTESTINFO ht;
4238
4239 ht.pt = *pPt;
4240
4241 TREEVIEW_HitTest(infoPtr, &ht);
4242
4243 if (ht.hItem)
4244 {
4245 /* Change to screen coordinate for WM_CONTEXTMENU */
4246 ClientToScreen(infoPtr->hwnd, &ht.pt);
4247
4248 /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
4249 SendMessageW(infoPtr->hwnd, WM_CONTEXTMENU,
4250 (WPARAM)infoPtr->hwnd, MAKELPARAM(ht.pt.x, ht.pt.y));
4251 }
4252 return 0;
4253 }
4254
4255
4256 static LRESULT
4257 TREEVIEW_CreateDragImage(TREEVIEW_INFO *infoPtr, LPARAM lParam)
4258 {
4259 TREEVIEW_ITEM *dragItem = (HTREEITEM)lParam;
4260 INT cx, cy;
4261 HDC hdc, htopdc;
4262 HWND hwtop;
4263 HBITMAP hbmp, hOldbmp;
4264 SIZE size;
4265 RECT rc;
4266 HFONT hOldFont;
4267
4268 TRACE("\n");
4269
4270 if (!(infoPtr->himlNormal))
4271 return 0;
4272
4273 if (!dragItem || !TREEVIEW_ValidItem(infoPtr, dragItem))
4274 return 0;
4275
4276 TREEVIEW_UpdateDispInfo(infoPtr, dragItem, TVIF_TEXT);
4277
4278 hwtop = GetDesktopWindow();
4279 htopdc = GetDC(hwtop);
4280 hdc = CreateCompatibleDC(htopdc);
4281
4282 hOldFont = SelectObject(hdc, infoPtr->hFont);
4283
4284 if (dragItem->pszText)
4285 GetTextExtentPoint32W(hdc, dragItem->pszText, strlenW(dragItem->pszText),
4286 &size);
4287 else
4288 GetTextExtentPoint32A(hdc, "", 0, &size);
4289
4290 TRACE("%d %d %s\n", size.cx, size.cy, debugstr_w(dragItem->pszText));
4291 hbmp = CreateCompatibleBitmap(htopdc, size.cx, size.cy);
4292 hOldbmp = SelectObject(hdc, hbmp);
4293
4294 ImageList_GetIconSize(infoPtr->himlNormal, &cx, &cy);
4295 size.cx += cx;
4296 if (cy > size.cy)
4297 size.cy = cy;
4298
4299 infoPtr->dragList = ImageList_Create(size.cx, size.cy, ILC_COLOR, 10, 10);
4300 ImageList_Draw(infoPtr->himlNormal, dragItem->iImage, hdc, 0, 0,
4301 ILD_NORMAL);
4302
4303 /*
4304 ImageList_GetImageInfo (infoPtr->himlNormal, dragItem->hItem, &iminfo);
4305 ImageList_AddMasked (infoPtr->dragList, iminfo.hbmImage, CLR_DEFAULT);
4306 */
4307
4308 /* draw item text */
4309
4310 SetRect(&rc, cx, 0, size.cx, size.cy);
4311
4312 if (dragItem->pszText)
4313 DrawTextW(hdc, dragItem->pszText, strlenW(dragItem->pszText), &rc,
4314 DT_LEFT);
4315
4316 SelectObject(hdc, hOldFont);
4317 SelectObject(hdc, hOldbmp);
4318
4319 ImageList_Add(infoPtr->dragList, hbmp, 0);
4320
4321 DeleteDC(hdc);
4322 DeleteObject(hbmp);
4323 ReleaseDC(hwtop, htopdc);
4324
4325 return (LRESULT)infoPtr->dragList;
4326 }
4327
4328 /* Selection ************************************************************/
4329
4330 static LRESULT
4331 TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
4332 INT cause)
4333 {
4334 TREEVIEW_ITEM *prevSelect;
4335
4336 assert(newSelect == NULL || TREEVIEW_ValidItem(infoPtr, newSelect));
4337
4338 TRACE("Entering item %p (%s), flag %x, cause %x, state %d\n",
4339 newSelect, TREEVIEW_ItemName(newSelect), action, cause,
4340 newSelect ? newSelect->state : 0);
4341
4342 /* reset and redraw focusedItem if focusedItem was set so we don't */
4343 /* have to worry about the previously focused item when we set a new one */
4344 TREEVIEW_InvalidateItem(infoPtr, infoPtr->focusedItem);
4345 infoPtr->focusedItem = NULL;
4346
4347 switch (action)
4348 {
4349 case TVGN_CARET:
4350 prevSelect = infoPtr->selectedItem;
4351
4352 if (prevSelect == newSelect) {
4353 TREEVIEW_EnsureVisible(infoPtr, infoPtr->selectedItem, FALSE);
4354 break;
4355 }
4356
4357 if (TREEVIEW_SendTreeviewNotify(infoPtr,
4358 TVN_SELCHANGINGW,
4359 cause,
4360 TVIF_TEXT | TVIF_HANDLE | TVIF_STATE | TVIF_PARAM,
4361 prevSelect,
4362 newSelect))
4363 return FALSE;
4364
4365 if (prevSelect)
4366 prevSelect->state &= ~TVIS_SELECTED;
4367 if (newSelect)
4368 newSelect->state |= TVIS_SELECTED;
4369
4370 infoPtr->selectedItem = newSelect;
4371
4372 TREEVIEW_EnsureVisible(infoPtr, infoPtr->selectedItem, FALSE);
4373
4374 TREEVIEW_InvalidateItem(infoPtr, prevSelect);
4375 TREEVIEW_InvalidateItem(infoPtr, newSelect);
4376
4377 TREEVIEW_SendTreeviewNotify(infoPtr,
4378 TVN_SELCHANGEDW,
4379 cause,
4380 TVIF_TEXT | TVIF_HANDLE | TVIF_STATE | TVIF_PARAM,
4381 prevSelect,
4382 newSelect);
4383 break;
4384
4385 case TVGN_DROPHILITE:
4386 prevSelect = infoPtr->dropItem;
4387
4388 if (prevSelect)
4389 prevSelect->state &= ~TVIS_DROPHILITED;
4390
4391 infoPtr->dropItem = newSelect;
4392
4393 if (newSelect)
4394 newSelect->state |= TVIS_DROPHILITED;
4395
4396 TREEVIEW_Invalidate(infoPtr, prevSelect);
4397 TREEVIEW_Invalidate(infoPtr, newSelect);
4398 break;
4399
4400 case TVGN_FIRSTVISIBLE:
4401 if (newSelect != NULL)
4402 {
4403 TREEVIEW_EnsureVisible(infoPtr, newSelect, FALSE);
4404 TREEVIEW_SetFirstVisible(infoPtr, newSelect, TRUE);
4405 TREEVIEW_Invalidate(infoPtr, NULL);
4406 }
4407 break;
4408 }
4409
4410 TRACE("Leaving state %d\n", newSelect ? newSelect->state : 0);
4411 return TRUE;
4412 }
4413
4414 /* FIXME: handle NM_KILLFOCUS etc */
4415 static LRESULT
4416 TREEVIEW_SelectItem(TREEVIEW_INFO *infoPtr, INT wParam, HTREEITEM item)
4417 {
4418 if (item != NULL && !TREEVIEW_ValidItem(infoPtr, item))
4419 return FALSE;
4420
4421 TRACE("%p (%s) %d\n", item, TREEVIEW_ItemName(item), wParam);
4422
4423 if (!TREEVIEW_DoSelectItem(infoPtr, wParam, item, TVC_UNKNOWN))
4424 return FALSE;
4425
4426 return TRUE;
4427 }
4428
4429 /*************************************************************************
4430 * TREEVIEW_ProcessLetterKeys
4431 *
4432 * Processes keyboard messages generated by pressing the letter keys
4433 * on the keyboard.
4434 * What this does is perform a case insensitive search from the
4435 * current position with the following quirks:
4436 * - If two chars or more are pressed in quick succession we search
4437 * for the corresponding string (e.g. 'abc').
4438 * - If there is a delay we wipe away the current search string and
4439 * restart with just that char.
4440 * - If the user keeps pressing the same character, whether slowly or
4441 * fast, so that the search string is entirely composed of this
4442 * character ('aaaaa' for instance), then we search for first item
4443 * that starting with that character.
4444 * - If the user types the above character in quick succession, then
4445 * we must also search for the corresponding string ('aaaaa'), and
4446 * go to that string if there is a match.
4447 *
4448 * RETURNS
4449 *
4450 * Zero.
4451 *
4452 * BUGS
4453 *
4454 * - The current implementation has a list of characters it will
4455 * accept and it ignores everything else. In particular it will
4456 * ignore accentuated characters which seems to match what
4457 * Windows does. But I'm not sure it makes sense to follow
4458 * Windows there.
4459 * - We don't sound a beep when the search fails.
4460 * - The search should start from the focused item, not from the selected
4461 * item. One reason for this is to allow for multiple selections in trees.
4462 * But currently infoPtr->focusedItem does not seem very usable.
4463 *
4464 * SEE ALSO
4465 *
4466 * TREEVIEW_ProcessLetterKeys
4467 */
4468 static INT TREEVIEW_ProcessLetterKeys(TREEVIEW_INFO *infoPtr, WPARAM charCode, LPARAM keyData)
4469 {
4470 HTREEITEM nItem;
4471 HTREEITEM endidx,idx;
4472 TVITEMEXW item;
4473 WCHAR buffer[MAX_PATH];
4474 DWORD timestamp,elapsed;
4475
4476 /* simple parameter checking */
4477 if (!charCode || !keyData) return 0;
4478
4479 /* only allow the valid WM_CHARs through */
4480 if (!isalnum(charCode) &&
4481 charCode != '.' && charCode != '`' && charCode != '!' &&
4482 charCode != '@' && charCode != '#' && charCode != '$' &&
4483 charCode != '%' && charCode != '^' && charCode != '&' &&
4484 charCode != '*' && charCode != '(' && charCode != ')' &&
4485 charCode != '-' && charCode != '_' && charCode != '+' &&
4486 charCode != '=' && charCode != '\\'&& charCode != ']' &&
4487 charCode != '}' && charCode != '[' && charCode != '{' &&
4488 charCode != '/' && charCode != '?' && charCode != '>' &&
4489 charCode != '<' && charCode != ',' && charCode != '~')
4490 return 0;
4491
4492 /* compute how much time elapsed since last keypress */
4493 timestamp = GetTickCount();
4494 if (timestamp > infoPtr->lastKeyPressTimestamp) {
4495 elapsed=timestamp-infoPtr->lastKeyPressTimestamp;
4496 } else {
4497 elapsed=infoPtr->lastKeyPressTimestamp-timestamp;
4498 }
4499
4500 /* update the search parameters */
4501 infoPtr->lastKeyPressTimestamp=timestamp;
4502 if (elapsed < KEY_DELAY) {
4503 if (infoPtr->nSearchParamLength < sizeof(infoPtr->szSearchParam) / sizeof(WCHAR)) {
4504 infoPtr->szSearchParam[infoPtr->nSearchParamLength++]=charCode;
4505 }
4506 if (infoPtr->charCode != charCode) {
4507 infoPtr->charCode=charCode=0;
4508 }
4509 } else {
4510 infoPtr->charCode=charCode;
4511 infoPtr->szSearchParam[0]=charCode;
4512 infoPtr->nSearchParamLength=1;
4513 /* Redundant with the 1 char string */
4514 charCode=0;
4515 }
4516
4517 /* and search from the current position */
4518 nItem=NULL;
4519 if (infoPtr->selectedItem != NULL) {
4520 endidx=infoPtr->selectedItem;
4521 /* if looking for single character match,
4522 * then we must always move forward
4523 */
4524 if (infoPtr->nSearchParamLength == 1)
4525 idx=TREEVIEW_GetNextListItem(infoPtr,endidx);
4526 else
4527 idx=endidx;
4528 } else {
4529 endidx=NULL;
4530 idx=infoPtr->root->firstChild;
4531 }
4532 do {
4533 /* At the end point, sort out wrapping */
4534 if (idx == NULL) {
4535
4536 /* If endidx is null, stop at the last item (ie top to bottom) */
4537 if (endidx == NULL)
4538 break;
4539
4540 /* Otherwise, start again at the very beginning */
4541 idx=infoPtr->root->firstChild;
4542
4543 /* But if we are stopping on the first child, end now! */
4544 if (idx == endidx) break;
4545 }
4546
4547 /* get item */
4548 ZeroMemory(&item, sizeof(item));
4549 item.mask = TVIF_TEXT;
4550 item.hItem = idx;
4551 item.pszText = buffer;
4552 item.cchTextMax = sizeof(buffer);
4553 TREEVIEW_GetItemT( infoPtr, &item, TRUE );
4554
4555 /* check for a match */
4556 if (strncmpiW(item.pszText,infoPtr->szSearchParam,infoPtr->nSearchParamLength) == 0) {
4557 nItem=idx;
4558 break;
4559 } else if ( (charCode != 0) && (nItem == NULL) &&
4560 (nItem != infoPtr->selectedItem) &&
4561 (strncmpiW(item.pszText,infoPtr->szSearchParam,1) == 0) ) {
4562 /* This would work but we must keep looking for a longer match */
4563 nItem=idx;
4564 }
4565 idx=TREEVIEW_GetNextListItem(infoPtr,idx);
4566 } while (idx != endidx);
4567
4568 if (nItem != NULL) {
4569 if (TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, nItem, TVC_BYKEYBOARD)) {
4570 TREEVIEW_EnsureVisible(infoPtr, nItem, FALSE);
4571 }
4572 }
4573
4574 return 0;
4575 }
4576
4577 /* Scrolling ************************************************************/
4578
4579 static LRESULT
4580 TREEVIEW_EnsureVisible(TREEVIEW_INFO *infoPtr, HTREEITEM item, BOOL bHScroll)
4581 {
4582 int viscount;
4583 BOOL hasFirstVisible = infoPtr->firstVisible != NULL;
4584 HTREEITEM newFirstVisible = NULL;
4585 int visible_pos = -1;
4586
4587 if (!TREEVIEW_ValidItem(infoPtr, item))
4588 return FALSE;
4589
4590 if (!ISVISIBLE(item))
4591 {
4592 /* Expand parents as necessary. */
4593 HTREEITEM parent;
4594
4595 /* see if we are trying to ensure that root is visible */
4596 if((item != infoPtr->root) && TREEVIEW_ValidItem(infoPtr, item))
4597 parent = item->parent;
4598 else
4599 parent = item; /* this item is the topmost item */
4600
4601 while (parent != infoPtr->root)
4602 {
4603 if (!(parent->state & TVIS_EXPANDED))
4604 TREEVIEW_Expand(infoPtr, parent, FALSE, FALSE);
4605
4606 parent = parent->parent;
4607 }
4608 }
4609
4610 viscount = TREEVIEW_GetVisibleCount(infoPtr);
4611
4612 TRACE("%p (%s) %d - %d viscount(%d)\n", item, TREEVIEW_ItemName(item), item->visibleOrder,
4613 hasFirstVisible ? infoPtr->firstVisible->visibleOrder : -1, viscount);
4614
4615 if (hasFirstVisible)
4616 visible_pos = item->visibleOrder - infoPtr->firstVisible->visibleOrder;
4617
4618 if (visible_pos < 0)
4619 {
4620 /* item is before the start of the list: put it at the top. */
4621 newFirstVisible = item;
4622 }
4623 else if (visible_pos >= viscount
4624 /* Sometimes, before we are displayed, GVC is 0, causing us to
4625 * spuriously scroll up. */
4626 && visible_pos > 0 && !(infoPtr->dwStyle & TVS_NOSCROLL) )
4627 {
4628 /* item is past the end of the list. */
4629 int scroll = visible_pos - viscount;
4630
4631 newFirstVisible = TREEVIEW_GetListItem(infoPtr, infoPtr->firstVisible,
4632 scroll + 1);
4633 }
4634
4635 if (bHScroll)
4636 {
4637 /* Scroll window so item's text is visible as much as possible */
4638 /* Calculation of amount of extra space is taken from EditLabel code */
4639 INT pos, x;
4640 TEXTMETRICW textMetric;
4641 HDC hdc = GetWindowDC(infoPtr->hwnd);
4642
4643 x = item->textWidth;
4644
4645 GetTextMetricsW(hdc, &textMetric);
4646 ReleaseDC(infoPtr->hwnd, hdc);
4647
4648 x += (textMetric.tmMaxCharWidth * 2);
4649 x = max(x, textMetric.tmMaxCharWidth * 3);
4650
4651 if (item->textOffset < 0)
4652 pos = item->textOffset;
4653 else if (item->textOffset + x > infoPtr->clientWidth)
4654 {
4655 if (x > infoPtr->clientWidth)
4656 pos = item->textOffset;
4657 else
4658 pos = item->textOffset + x - infoPtr->clientWidth;
4659 }
4660 else
4661 pos = 0;
4662
4663 TREEVIEW_HScroll(infoPtr, MAKEWPARAM(SB_THUMBPOSITION, infoPtr->scrollX + pos));
4664 }
4665
4666 if (newFirstVisible != NULL && newFirstVisible != infoPtr->firstVisible)
4667 {
4668 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
4669
4670 return TRUE;
4671 }
4672
4673 return FALSE;
4674 }
4675
4676 static VOID
4677 TREEVIEW_SetFirstVisible(TREEVIEW_INFO *infoPtr,
4678 TREEVIEW_ITEM *newFirstVisible,
4679 BOOL bUpdateScrollPos)
4680 {
4681 int gap_size;
4682
4683 TRACE("%p: %s\n", newFirstVisible, TREEVIEW_ItemName(newFirstVisible));
4684
4685 if (newFirstVisible != NULL)
4686 {
4687 /* Prevent an empty gap from appearing at the bottom... */
4688 gap_size = TREEVIEW_GetVisibleCount(infoPtr)
4689 - infoPtr->maxVisibleOrder + newFirstVisible->visibleOrder;
4690
4691 if (gap_size > 0)
4692 {
4693 newFirstVisible = TREEVIEW_GetListItem(infoPtr, newFirstVisible,
4694 -gap_size);
4695
4696 /* ... unless we just don't have enough items. */
4697 if (newFirstVisible == NULL)
4698 newFirstVisible = infoPtr->root->firstChild;
4699 }
4700 }
4701
4702 if (infoPtr->firstVisible != newFirstVisible)
4703 {
4704 if (infoPtr->firstVisible == NULL || newFirstVisible == NULL)
4705 {
4706 infoPtr->firstVisible = newFirstVisible;
4707 TREEVIEW_Invalidate(infoPtr, NULL);
4708 }
4709 else
4710 {
4711 TREEVIEW_ITEM *item;
4712 int scroll = infoPtr->uItemHeight *
4713 (infoPtr->firstVisible->visibleOrder
4714 - newFirstVisible->visibleOrder);
4715
4716 infoPtr->firstVisible = newFirstVisible;
4717
4718 for (item = infoPtr->root->firstChild; item != NULL;
4719 item = TREEVIEW_GetNextListItem(infoPtr, item))
4720 {
4721 item->rect.top += scroll;
4722 item->rect.bottom += scroll;
4723 }
4724
4725 if (bUpdateScrollPos)
4726 SetScrollPos(infoPtr->hwnd, SB_VERT,
4727 newFirstVisible->visibleOrder, TRUE);
4728
4729 ScrollWindowEx(infoPtr->hwnd, 0, scroll, NULL, NULL, NULL, NULL, SW_ERASE | SW_INVALIDATE);
4730 }
4731 }
4732 }
4733
4734 /************************************************************************
4735 * VScroll is always in units of visible items. i.e. we always have a
4736 * visible item aligned to the top of the control. (Unless we have no
4737 * items at all.)
4738 */
4739 static LRESULT
4740 TREEVIEW_VScroll(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4741 {
4742 TREEVIEW_ITEM *oldFirstVisible = infoPtr->firstVisible;
4743 TREEVIEW_ITEM *newFirstVisible = NULL;
4744
4745 int nScrollCode = LOWORD(wParam);
4746
4747 TRACE("wp %lx\n", wParam);
4748
4749 if (!(infoPtr->uInternalStatus & TV_VSCROLL))
4750 return 0;
4751
4752 if (!oldFirstVisible)
4753 {
4754 assert(infoPtr->root->firstChild == NULL);
4755 return 0;
4756 }
4757
4758 switch (nScrollCode)
4759 {
4760 case SB_TOP:
4761 newFirstVisible = infoPtr->root->firstChild;
4762 break;
4763
4764 case SB_BOTTOM:
4765 newFirstVisible = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
4766 break;
4767
4768 case SB_LINEUP:
4769 newFirstVisible = TREEVIEW_GetPrevListItem(infoPtr, oldFirstVisible);
4770 break;
4771
4772 case SB_LINEDOWN:
4773 newFirstVisible = TREEVIEW_GetNextListItem(infoPtr, oldFirstVisible);
4774 break;
4775
4776 case SB_PAGEUP:
4777 newFirstVisible = TREEVIEW_GetListItem(infoPtr, oldFirstVisible,
4778 -max(1, TREEVIEW_GetVisibleCount(infoPtr)));
4779 break;
4780
4781 case SB_PAGEDOWN:
4782 newFirstVisible = TREEVIEW_GetListItem(infoPtr, oldFirstVisible,
4783 max(1, TREEVIEW_GetVisibleCount(infoPtr)));
4784 break;
4785
4786 case SB_THUMBTRACK:
4787 case SB_THUMBPOSITION:
4788 newFirstVisible = TREEVIEW_GetListItem(infoPtr,
4789 infoPtr->root->firstChild,
4790 (LONG)(SHORT)HIWORD(wParam));
4791 break;
4792
4793 case SB_ENDSCROLL:
4794 return 0;
4795 }
4796
4797 if (newFirstVisible != NULL)
4798 {
4799 if (newFirstVisible != oldFirstVisible)
4800 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible,
4801 nScrollCode != SB_THUMBTRACK);
4802 else if (nScrollCode == SB_THUMBPOSITION)
4803 SetScrollPos(infoPtr->hwnd, SB_VERT,
4804 newFirstVisible->visibleOrder, TRUE);
4805 }
4806
4807 return 0;
4808 }
4809
4810 static LRESULT
4811 TREEVIEW_HScroll(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4812 {
4813 int maxWidth;
4814 int scrollX = infoPtr->scrollX;
4815 int nScrollCode = LOWORD(wParam);
4816
4817 TRACE("wp %lx\n", wParam);
4818
4819 if (!(infoPtr->uInternalStatus & TV_HSCROLL))
4820 return FALSE;
4821
4822 maxWidth = infoPtr->treeWidth - infoPtr->clientWidth;
4823 /* shall never occur */
4824 if (maxWidth <= 0)
4825 {
4826 scrollX = 0;
4827 goto scroll;
4828 }
4829
4830 switch (nScrollCode)
4831 {
4832 case SB_LINELEFT:
4833 scrollX -= infoPtr->uItemHeight;
4834 break;
4835 case SB_LINERIGHT:
4836 scrollX += infoPtr->uItemHeight;
4837 break;
4838 case SB_PAGELEFT:
4839 scrollX -= infoPtr->clientWidth;
4840 break;
4841 case SB_PAGERIGHT:
4842 scrollX += infoPtr->clientWidth;
4843 break;
4844
4845 case SB_THUMBTRACK:
4846 case SB_THUMBPOSITION:
4847 scrollX = (int)(SHORT)HIWORD(wParam);
4848 break;
4849
4850 case SB_ENDSCROLL:
4851 return 0;
4852 }
4853
4854 if (scrollX > maxWidth)
4855 scrollX = maxWidth;
4856 else if (scrollX < 0)
4857 scrollX = 0;
4858
4859 scroll:
4860 if (scrollX != infoPtr->scrollX)
4861 {
4862 TREEVIEW_ITEM *item;
4863 LONG scroll_pixels = infoPtr->scrollX - scrollX;
4864
4865 for (item = infoPtr->root->firstChild; item != NULL;
4866 item = TREEVIEW_GetNextListItem(infoPtr, item))
4867 {
4868 item->linesOffset += scroll_pixels;
4869 item->stateOffset += scroll_pixels;
4870 item->imageOffset += scroll_pixels;
4871 item->textOffset += scroll_pixels;
4872 }
4873
4874 ScrollWindow(infoPtr->hwnd, scroll_pixels, 0, NULL, NULL);
4875 infoPtr->scrollX = scrollX;
4876 UpdateWindow(infoPtr->hwnd);
4877 }
4878
4879 if (nScrollCode != SB_THUMBTRACK)
4880 SetScrollPos(infoPtr->hwnd, SB_HORZ, scrollX, TRUE);
4881
4882 return 0;
4883 }
4884
4885 static LRESULT
4886 TREEVIEW_MouseWheel(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4887 {
4888 short gcWheelDelta;
4889 UINT pulScrollLines = 3;
4890
4891 if (wParam & (MK_SHIFT | MK_CONTROL))
4892 return DefWindowProcW(infoPtr->hwnd, WM_MOUSEWHEEL, wParam, lParam);
4893
4894 if (infoPtr->firstVisible == NULL)
4895 return TRUE;
4896
4897 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES, 0, &pulScrollLines, 0);
4898
4899 gcWheelDelta = -(short)HIWORD(wParam);
4900 pulScrollLines *= (gcWheelDelta / WHEEL_DELTA);
4901
4902 if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
4903 {
4904 int newDy = infoPtr->firstVisible->visibleOrder + pulScrollLines;
4905 int maxDy = infoPtr->maxVisibleOrder;
4906
4907 if (newDy > maxDy)
4908 newDy = maxDy;
4909
4910 if (newDy < 0)
4911 newDy = 0;
4912
4913 TREEVIEW_VScroll(infoPtr, MAKEWPARAM(SB_THUMBPOSITION, newDy));
4914 }
4915 return TRUE;
4916 }
4917
4918 /* Create/Destroy *******************************************************/
4919
4920 static void
4921 initialize_checkboxes(TREEVIEW_INFO *infoPtr)
4922 {
4923 RECT rc;
4924 HBITMAP hbm, hbmOld;
4925 HDC hdc, hdcScreen;
4926 int nIndex;
4927
4928 infoPtr->himlState = ImageList_Create(16, 16, ILC_COLOR | ILC_MASK, 3, 0);
4929
4930 hdcScreen = GetDC(0);
4931
4932 hdc = CreateCompatibleDC(hdcScreen);
4933 hbm = CreateCompatibleBitmap(hdcScreen, 48, 16);
4934 hbmOld = SelectObject(hdc, hbm);
4935
4936 SetRect(&rc, 0, 0, 48, 16);
4937 FillRect(hdc, &rc, (HBRUSH)(COLOR_WINDOW+1));
4938
4939 SetRect(&rc, 18, 2, 30, 14);
4940 DrawFrameControl(hdc, &rc, DFC_BUTTON,
4941 DFCS_BUTTONCHECK|DFCS_FLAT);
4942
4943 SetRect(&rc, 34, 2, 46, 14);
4944 DrawFrameControl(hdc, &rc, DFC_BUTTON,
4945 DFCS_BUTTONCHECK|DFCS_FLAT|DFCS_CHECKED);
4946
4947 SelectObject(hdc, hbmOld);
4948 nIndex = ImageList_AddMasked(infoPtr->himlState, hbm,
4949 comctl32_color.clrWindow);
4950 TRACE("checkbox index %d\n", nIndex);
4951
4952 DeleteObject(hbm);
4953 DeleteDC(hdc);
4954 ReleaseDC(0, hdcScreen);
4955
4956 infoPtr->stateImageWidth = 16;
4957 infoPtr->stateImageHeight = 16;
4958 }
4959
4960 static LRESULT
4961 TREEVIEW_Create(HWND hwnd, const CREATESTRUCTW *lpcs)
4962 {
4963 RECT rcClient;
4964 TREEVIEW_INFO *infoPtr;
4965 LOGFONTW lf;
4966
4967 TRACE("wnd %p, style %x\n", hwnd, GetWindowLongW(hwnd, GWL_STYLE));
4968
4969 infoPtr = Alloc(sizeof(TREEVIEW_INFO));
4970
4971 if (infoPtr == NULL)
4972 {
4973 ERR("could not allocate info memory!\n");
4974 return 0;
4975 }
4976
4977 SetWindowLongPtrW(hwnd, 0, (DWORD_PTR)infoPtr);
4978
4979 infoPtr->hwnd = hwnd;
4980 infoPtr->dwStyle = GetWindowLongW(hwnd, GWL_STYLE);
4981 infoPtr->Timer = 0;
4982 infoPtr->uNumItems = 0;
4983 infoPtr->cdmode = 0;
4984 infoPtr->uScrollTime = 300; /* milliseconds */
4985 infoPtr->bRedraw = TRUE;
4986
4987 GetClientRect(hwnd, &rcClient);
4988
4989 /* No scroll bars yet. */
4990 infoPtr->clientWidth = rcClient.right;
4991 infoPtr->clientHeight = rcClient.bottom;
4992 infoPtr->uInternalStatus = 0;
4993
4994 infoPtr->treeWidth = 0;
4995 infoPtr->treeHeight = 0;
4996
4997 infoPtr->uIndent = MINIMUM_INDENT;
4998 infoPtr->selectedItem = NULL;
4999 infoPtr->focusedItem = NULL;
5000 infoPtr->hotItem = NULL;
5001 infoPtr->editItem = NULL;
5002 infoPtr->firstVisible = NULL;
5003 infoPtr->maxVisibleOrder = 0;
5004 infoPtr->dropItem = NULL;
5005 infoPtr->insertMarkItem = NULL;
5006 infoPtr->insertBeforeorAfter = 0;
5007 /* dragList */
5008
5009 infoPtr->scrollX = 0;
5010
5011 infoPtr->clrBk = CLR_NONE; /* use system color */
5012 infoPtr->clrText = CLR_NONE; /* use system color */
5013 infoPtr->clrLine = CLR_DEFAULT;
5014 infoPtr->clrInsertMark = CLR_DEFAULT;
5015
5016 /* hwndToolTip */
5017
5018 infoPtr->hwndEdit = NULL;
5019 infoPtr->wpEditOrig = NULL;
5020 infoPtr->bIgnoreEditKillFocus = FALSE;
5021 infoPtr->bLabelChanged = FALSE;
5022
5023 infoPtr->himlNormal = NULL;
5024 infoPtr->himlState = NULL;
5025 infoPtr->normalImageWidth = 0;
5026 infoPtr->normalImageHeight = 0;
5027 infoPtr->stateImageWidth = 0;
5028 infoPtr->stateImageHeight = 0;
5029
5030 infoPtr->items = DPA_Create(16);
5031
5032 SystemParametersInfoW(SPI_GETICONTITLELOGFONT, sizeof(lf), &lf, 0);
5033 infoPtr->hFont = infoPtr->hDefaultFont = CreateFontIndirectW(&lf);
5034 infoPtr->hBoldFont = TREEVIEW_CreateBoldFont(infoPtr->hFont);
5035 infoPtr->hUnderlineFont = TREEVIEW_CreateUnderlineFont(infoPtr->hFont);
5036 infoPtr->hcurHand = LoadCursorW(NULL, (LPWSTR)IDC_HAND);
5037
5038 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
5039
5040 infoPtr->root = TREEVIEW_AllocateItem(infoPtr);
5041 infoPtr->root->state = TVIS_EXPANDED;
5042 infoPtr->root->iLevel = -1;
5043 infoPtr->root->visibleOrder = -1;
5044
5045 infoPtr->hwndNotify = lpcs->hwndParent;
5046 #if 0
5047 infoPtr->bTransparent = ( GetWindowLongW( hwnd, GWL_STYLE) & TBSTYLE_FLAT);
5048 #endif
5049
5050 infoPtr->hwndToolTip = 0;
5051
5052 infoPtr->bNtfUnicode = IsWindowUnicode (hwnd);
5053
5054 /* Determine what type of notify should be issued */
5055 /* sets infoPtr->bNtfUnicode */
5056 TREEVIEW_NotifyFormat(infoPtr, infoPtr->hwndNotify, NF_REQUERY);
5057
5058 if (!(infoPtr->dwStyle & TVS_NOTOOLTIPS))
5059 infoPtr->hwndToolTip = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL, WS_POPUP,
5060 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
5061 hwnd, 0, 0, 0);
5062
5063 if (infoPtr->dwStyle & TVS_CHECKBOXES)
5064 initialize_checkboxes(infoPtr);
5065
5066 /* Make sure actual scrollbar state is consistent with uInternalStatus */
5067 ShowScrollBar(hwnd, SB_VERT, FALSE);
5068 ShowScrollBar(hwnd, SB_HORZ, FALSE);
5069
5070 OpenThemeData (hwnd, themeClass);
5071
5072 return 0;
5073 }
5074
5075
5076 static LRESULT
5077 TREEVIEW_Destroy(TREEVIEW_INFO *infoPtr)
5078 {
5079 TRACE("\n");
5080
5081 /* free item data */
5082 TREEVIEW_RemoveTree(infoPtr);
5083 /* root isn't freed with other items */
5084 TREEVIEW_FreeItem(infoPtr, infoPtr->root);
5085 DPA_Destroy(infoPtr->items);
5086
5087 /* tool tip is automatically destroyed: we are its owner */
5088
5089 /* Restore original wndproc */
5090 if (infoPtr->hwndEdit)
5091 SetWindowLongPtrW(infoPtr->hwndEdit, GWLP_WNDPROC,
5092 (DWORD_PTR)infoPtr->wpEditOrig);
5093
5094 CloseThemeData (GetWindowTheme (infoPtr->hwnd));
5095
5096 /* Deassociate treeview from the window before doing anything drastic. */
5097 SetWindowLongPtrW(infoPtr->hwnd, 0, 0);
5098
5099
5100 DeleteObject(infoPtr->hDefaultFont);
5101 DeleteObject(infoPtr->hBoldFont);
5102 DeleteObject(infoPtr->hUnderlineFont);
5103 Free(infoPtr);
5104
5105 return 0;
5106 }
5107
5108 /* Miscellaneous Messages ***********************************************/
5109
5110 static LRESULT
5111 TREEVIEW_ScrollKeyDown(TREEVIEW_INFO *infoPtr, WPARAM key)
5112 {
5113 static const struct
5114 {
5115 unsigned char code;
5116 }
5117 scroll[] =
5118 {
5119 #define SCROLL_ENTRY(dir, code) { ((dir) << 7) | (code) }
5120 SCROLL_ENTRY(SB_VERT, SB_PAGEUP), /* VK_PRIOR */
5121 SCROLL_ENTRY(SB_VERT, SB_PAGEDOWN), /* VK_NEXT */
5122 SCROLL_ENTRY(SB_VERT, SB_BOTTOM), /* VK_END */
5123 SCROLL_ENTRY(SB_VERT, SB_TOP), /* VK_HOME */
5124 SCROLL_ENTRY(SB_HORZ, SB_LINEUP), /* VK_LEFT */
5125 SCROLL_ENTRY(SB_VERT, SB_LINEUP), /* VK_UP */
5126 SCROLL_ENTRY(SB_HORZ, SB_LINEDOWN), /* VK_RIGHT */
5127 SCROLL_ENTRY(SB_VERT, SB_LINEDOWN) /* VK_DOWN */
5128 #undef SCROLL_ENTRY
5129 };
5130
5131 if (key >= VK_PRIOR && key <= VK_DOWN)
5132 {
5133 unsigned char code = scroll[key - VK_PRIOR].code;
5134
5135 (((code & (1 << 7)) == (SB_HORZ << 7))
5136 ? TREEVIEW_HScroll
5137 : TREEVIEW_VScroll)(infoPtr, code & 0x7F);
5138 }
5139
5140 return 0;
5141 }
5142
5143 /************************************************************************
5144 * TREEVIEW_KeyDown
5145 *
5146 * VK_UP Move selection to the previous non-hidden item.
5147 * VK_DOWN Move selection to the next non-hidden item.
5148 * VK_HOME Move selection to the first item.
5149 * VK_END Move selection to the last item.
5150 * VK_LEFT If expanded then collapse, otherwise move to parent.
5151 * VK_RIGHT If collapsed then expand, otherwise move to first child.
5152 * VK_ADD Expand.
5153 * VK_SUBTRACT Collapse.
5154 * VK_MULTIPLY Expand all.
5155 * VK_PRIOR Move up GetVisibleCount items.
5156 * VK_NEXT Move down GetVisibleCount items.
5157 * VK_BACK Move to parent.
5158 * CTRL-Left,Right,Up,Down,PgUp,PgDown,Home,End: Scroll without changing selection
5159 */
5160 static LRESULT
5161 TREEVIEW_KeyDown(TREEVIEW_INFO *infoPtr, WPARAM wParam)
5162 {
5163 /* If it is non-NULL and different, it will be selected and visible. */
5164 TREEVIEW_ITEM *newSelection = NULL;
5165
5166 TREEVIEW_ITEM *prevItem = infoPtr->selectedItem;
5167
5168 TRACE("%lx\n", wParam);
5169
5170 if (prevItem == NULL)
5171 return FALSE;
5172
5173 if (GetAsyncKeyState(VK_CONTROL) & 0x8000)
5174 return TREEVIEW_ScrollKeyDown(infoPtr, wParam);
5175
5176 switch (wParam)
5177 {
5178 case VK_UP:
5179 newSelection = TREEVIEW_GetPrevListItem(infoPtr, prevItem);
5180 if (!newSelection)
5181 newSelection = infoPtr->root->firstChild;
5182 break;
5183
5184 case VK_DOWN:
5185 newSelection = TREEVIEW_GetNextListItem(infoPtr, prevItem);
5186 break;
5187
5188 case VK_HOME:
5189 newSelection = infoPtr->root->firstChild;
5190 break;
5191
5192 case VK_END:
5193 newSelection = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
5194 break;
5195
5196 case VK_LEFT:
5197 if (prevItem->state & TVIS_EXPANDED)
5198 {
5199 TREEVIEW_Collapse(infoPtr, prevItem, FALSE, TRUE);
5200 }
5201 else if (prevItem->parent != infoPtr->root)
5202 {
5203 newSelection = prevItem->parent;
5204 }
5205 break;
5206
5207 case VK_RIGHT:
5208 if (TREEVIEW_HasChildren(infoPtr, prevItem))
5209 {
5210 if (!(prevItem->state & TVIS_EXPANDED))
5211 TREEVIEW_Expand(infoPtr, prevItem, FALSE, TRUE);
5212 else
5213 {
5214 newSelection = prevItem->firstChild;
5215 }
5216 }
5217
5218 break;
5219
5220 case VK_MULTIPLY:
5221 TREEVIEW_ExpandAll(infoPtr, prevItem);
5222 break;
5223
5224 case VK_ADD:
5225 if (!(prevItem->state & TVIS_EXPANDED))
5226 TREEVIEW_Expand(infoPtr, prevItem, FALSE, TRUE);
5227 break;
5228
5229 case VK_SUBTRACT:
5230 if (prevItem->state & TVIS_EXPANDED)
5231 TREEVIEW_Collapse(infoPtr, prevItem, FALSE, TRUE);
5232 break;
5233
5234 case VK_PRIOR:
5235 newSelection
5236 = TREEVIEW_GetListItem(infoPtr, prevItem,
5237 -TREEVIEW_GetVisibleCount(infoPtr));
5238 break;
5239
5240 case VK_NEXT:
5241 newSelection
5242 = TREEVIEW_GetListItem(infoPtr, prevItem,
5243 TREEVIEW_GetVisibleCount(infoPtr));
5244 break;
5245
5246 case VK_BACK:
5247 newSelection = prevItem->parent;
5248 if (newSelection == infoPtr->root)
5249 newSelection = NULL;
5250 break;
5251
5252 case VK_SPACE:
5253 if (infoPtr->dwStyle & TVS_CHECKBOXES)
5254 TREEVIEW_ToggleItemState(infoPtr, prevItem);
5255 break;
5256 }
5257
5258 if (newSelection && newSelection != prevItem)
5259 {
5260 if (TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, newSelection,
5261 TVC_BYKEYBOARD))
5262 {
5263 TREEVIEW_EnsureVisible(infoPtr, newSelection, FALSE);
5264 }
5265 }
5266
5267 return FALSE;
5268 }
5269
5270 static LRESULT
5271 TREEVIEW_MouseLeave (TREEVIEW_INFO * infoPtr)
5272 {
5273 /* remove hot effect from item */
5274 TREEVIEW_InvalidateItem(infoPtr, infoPtr->hotItem);
5275 infoPtr->hotItem = NULL;
5276
5277 return 0;
5278 }
5279
5280 static LRESULT
5281 TREEVIEW_MouseMove (TREEVIEW_INFO * infoPtr, LPARAM lParam)
5282 {
5283 POINT pt;
5284 TRACKMOUSEEVENT trackinfo;
5285 TREEVIEW_ITEM * item;
5286
5287 if (!(infoPtr->dwStyle & TVS_TRACKSELECT)) return 0;
5288
5289 /* fill in the TRACKMOUSEEVENT struct */
5290 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
5291 trackinfo.dwFlags = TME_QUERY;
5292 trackinfo.hwndTrack = infoPtr->hwnd;
5293
5294 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
5295 _TrackMouseEvent(&trackinfo);
5296
5297 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
5298 if(!(trackinfo.dwFlags & TME_LEAVE))
5299 {
5300 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
5301 trackinfo.hwndTrack = infoPtr->hwnd;
5302 /* do it as fast as possible, minimal systimer latency will be used */
5303 trackinfo.dwHoverTime = 1;
5304
5305 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
5306 /* and can properly deactivate the hot item */
5307 _TrackMouseEvent(&trackinfo);
5308 }
5309
5310 pt.x = (short)LOWORD(lParam);
5311 pt.y = (short)HIWORD(lParam);
5312
5313 item = TREEVIEW_HitTestPoint(infoPtr, pt);
5314
5315 if (item != infoPtr->hotItem)
5316 {
5317 /* redraw old hot item */
5318 TREEVIEW_InvalidateItem(infoPtr, infoPtr->hotItem);
5319 infoPtr->hotItem = item;
5320 /* redraw new hot item */
5321 TREEVIEW_InvalidateItem(infoPtr, infoPtr->hotItem);
5322 }
5323
5324 return 0;
5325 }
5326
5327 /* Draw themed border */
5328 static BOOL TREEVIEW_NCPaint (const TREEVIEW_INFO *infoPtr, HRGN region, LPARAM lParam)
5329 {
5330 HTHEME theme = GetWindowTheme (infoPtr->hwnd);
5331 HDC dc;
5332 RECT r;
5333 HRGN cliprgn;
5334 int cxEdge = GetSystemMetrics (SM_CXEDGE),
5335 cyEdge = GetSystemMetrics (SM_CYEDGE);
5336
5337 if (!theme)
5338 return DefWindowProcW (infoPtr->hwnd, WM_NCPAINT, (WPARAM)region, lParam);
5339
5340 GetWindowRect(infoPtr->hwnd, &r);
5341
5342 cliprgn = CreateRectRgn (r.left + cxEdge, r.top + cyEdge,
5343 r.right - cxEdge, r.bottom - cyEdge);
5344 if (region != (HRGN)1)
5345 CombineRgn (cliprgn, cliprgn, region, RGN_AND);
5346 OffsetRect(&r, -r.left, -r.top);
5347
5348 dc = GetDCEx(infoPtr->hwnd, region, DCX_WINDOW|DCX_INTERSECTRGN);
5349 OffsetRect(&r, -r.left, -r.top);
5350
5351 if (IsThemeBackgroundPartiallyTransparent (theme, 0, 0))
5352 DrawThemeParentBackground(infoPtr->hwnd, dc, &r);
5353 DrawThemeBackground (theme, dc, 0, 0, &r, 0);
5354 ReleaseDC(infoPtr->hwnd, dc);
5355
5356 /* Call default proc to get the scrollbars etc. painted */
5357 DefWindowProcW (infoPtr->hwnd, WM_NCPAINT, (WPARAM)cliprgn, 0);
5358
5359 return TRUE;
5360 }
5361
5362 static LRESULT
5363 TREEVIEW_Notify(const TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5364 {
5365 LPNMHDR lpnmh = (LPNMHDR)lParam;
5366
5367 if (lpnmh->code == PGN_CALCSIZE) {
5368 LPNMPGCALCSIZE lppgc = (LPNMPGCALCSIZE)lParam;
5369
5370 if (lppgc->dwFlag == PGF_CALCWIDTH) {
5371 lppgc->iWidth = infoPtr->treeWidth;
5372 TRACE("got PGN_CALCSIZE, returning horz size = %d, client=%d\n",
5373 infoPtr->treeWidth, infoPtr->clientWidth);
5374 }
5375 else {
5376 lppgc->iHeight = infoPtr->treeHeight;
5377 TRACE("got PGN_CALCSIZE, returning vert size = %d, client=%d\n",
5378 infoPtr->treeHeight, infoPtr->clientHeight);
5379 }
5380 return 0;
5381 }
5382 return DefWindowProcW(infoPtr->hwnd, WM_NOTIFY, wParam, lParam);
5383 }
5384
5385 static LRESULT
5386 TREEVIEW_Size(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5387 {
5388 if (wParam == SIZE_RESTORED)
5389 {
5390 infoPtr->clientWidth = (short)LOWORD(lParam);
5391 infoPtr->clientHeight = (short)HIWORD(lParam);
5392
5393 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
5394 TREEVIEW_SetFirstVisible(infoPtr, infoPtr->firstVisible, TRUE);
5395 TREEVIEW_UpdateScrollBars(infoPtr);
5396 }
5397 else
5398 {
5399 FIXME("WM_SIZE flag %lx %lx not handled\n", wParam, lParam);
5400 }
5401
5402 TREEVIEW_Invalidate(infoPtr, NULL);
5403 return 0;
5404 }
5405
5406 static LRESULT
5407 TREEVIEW_StyleChanged(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5408 {
5409 TRACE("(%lx %lx)\n", wParam, lParam);
5410
5411 if (wParam == GWL_STYLE)
5412 {
5413 DWORD dwNewStyle = ((LPSTYLESTRUCT)lParam)->styleNew;
5414
5415 if ((infoPtr->dwStyle ^ dwNewStyle) & TVS_CHECKBOXES)
5416 {
5417 if (dwNewStyle & TVS_CHECKBOXES)
5418 {
5419 initialize_checkboxes(infoPtr);
5420 TRACE("checkboxes enabled\n");
5421 }
5422 else
5423 {
5424 FIXME("tried to disable checkboxes\n");
5425 }
5426 }
5427
5428 if ((infoPtr->dwStyle ^ dwNewStyle) & TVS_NOTOOLTIPS)
5429 {
5430 if (infoPtr->dwStyle & TVS_NOTOOLTIPS)
5431 {
5432 infoPtr->hwndToolTip = COMCTL32_CreateToolTip(infoPtr->hwnd);
5433 TRACE("tooltips enabled\n");
5434 }
5435 else
5436 {
5437 DestroyWindow(infoPtr->hwndToolTip);
5438 infoPtr->hwndToolTip = 0;
5439 TRACE("tooltips disabled\n");
5440 }
5441 }
5442
5443 infoPtr->dwStyle = dwNewStyle;
5444 }
5445
5446 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
5447 TREEVIEW_UpdateScrollBars(infoPtr);
5448 TREEVIEW_Invalidate(infoPtr, NULL);
5449
5450 return 0;
5451 }
5452
5453 static LRESULT
5454 TREEVIEW_SetCursor(const TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5455 {
5456 POINT pt;
5457 TREEVIEW_ITEM * item;
5458 NMMOUSE nmmouse;
5459
5460 GetCursorPos(&pt);
5461 ScreenToClient(infoPtr->hwnd, &pt);
5462
5463 item = TREEVIEW_HitTestPoint(infoPtr, pt);
5464
5465 memset(&nmmouse, 0, sizeof(nmmouse));
5466 nmmouse.hdr.hwndFrom = infoPtr->hwnd;
5467 nmmouse.hdr.idFrom = GetWindowLongPtrW(infoPtr->hwnd, GWLP_ID);
5468 nmmouse.hdr.code = NM_SETCURSOR;
5469 if (item)
5470 {
5471 nmmouse.dwItemSpec = (DWORD_PTR)item;
5472 nmmouse.dwItemData = item->lParam;
5473 }
5474 nmmouse.pt.x = 0;
5475 nmmouse.pt.y = 0;
5476 nmmouse.dwHitInfo = lParam;
5477 if (TREEVIEW_SendRealNotify(infoPtr, nmmouse.hdr.idFrom, (LPARAM)&nmmouse))
5478 return 0;
5479
5480 if (item && (infoPtr->dwStyle & TVS_TRACKSELECT))
5481 {
5482 SetCursor(infoPtr->hcurHand);
5483 return 0;
5484 }
5485 else
5486 return DefWindowProcW(infoPtr->hwnd, WM_SETCURSOR, wParam, lParam);
5487 }
5488
5489 static LRESULT
5490 TREEVIEW_SetFocus(TREEVIEW_INFO *infoPtr)
5491 {
5492 TRACE("\n");
5493
5494 if (!infoPtr->selectedItem)
5495 {
5496 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, infoPtr->firstVisible,
5497 TVC_UNKNOWN);
5498 }
5499
5500 TREEVIEW_Invalidate(infoPtr, infoPtr->selectedItem);
5501 TREEVIEW_SendSimpleNotify(infoPtr, NM_SETFOCUS);
5502 return 0;
5503 }
5504
5505 static LRESULT
5506 TREEVIEW_KillFocus(const TREEVIEW_INFO *infoPtr)
5507 {
5508 TRACE("\n");
5509
5510 TREEVIEW_Invalidate(infoPtr, infoPtr->selectedItem);
5511 UpdateWindow(infoPtr->hwnd);
5512 TREEVIEW_SendSimpleNotify(infoPtr, NM_KILLFOCUS);
5513 return 0;
5514 }
5515
5516 /* update theme after a WM_THEMECHANGED message */
5517 static LRESULT TREEVIEW_ThemeChanged(const TREEVIEW_INFO *infoPtr)
5518 {
5519 HTHEME theme = GetWindowTheme (infoPtr->hwnd);
5520 CloseThemeData (theme);
5521 OpenThemeData (infoPtr->hwnd, themeClass);
5522 return 0;
5523 }
5524
5525
5526 static LRESULT WINAPI
5527 TREEVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
5528 {
5529 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(hwnd);
5530
5531 TRACE("hwnd %p msg %04x wp=%08lx lp=%08lx\n", hwnd, uMsg, wParam, lParam);
5532
5533 if (infoPtr) TREEVIEW_VerifyTree(infoPtr);
5534 else
5535 {
5536 if (uMsg == WM_CREATE)
5537 TREEVIEW_Create(hwnd, (LPCREATESTRUCTW)lParam);
5538 else
5539 goto def;
5540 }
5541
5542 switch (uMsg)
5543 {
5544 case TVM_CREATEDRAGIMAGE:
5545 return TREEVIEW_CreateDragImage(infoPtr, lParam);
5546
5547 case TVM_DELETEITEM:
5548 return TREEVIEW_DeleteItem(infoPtr, (HTREEITEM)lParam);
5549
5550 case TVM_EDITLABELA:
5551 case TVM_EDITLABELW:
5552 return (LRESULT)TREEVIEW_EditLabel(infoPtr, (HTREEITEM)lParam);
5553
5554 case TVM_ENDEDITLABELNOW:
5555 return TREEVIEW_EndEditLabelNow(infoPtr, (BOOL)wParam);
5556
5557 case TVM_ENSUREVISIBLE:
5558 return TREEVIEW_EnsureVisible(infoPtr, (HTREEITEM)lParam, TRUE);
5559
5560 case TVM_EXPAND:
5561 return TREEVIEW_ExpandMsg(infoPtr, (UINT)wParam, (HTREEITEM)lParam);
5562
5563 case TVM_GETBKCOLOR:
5564 return TREEVIEW_GetBkColor(infoPtr);
5565
5566 case TVM_GETCOUNT:
5567 return TREEVIEW_GetCount(infoPtr);
5568
5569 case TVM_GETEDITCONTROL:
5570 return TREEVIEW_GetEditControl(infoPtr);
5571
5572 case TVM_GETIMAGELIST:
5573 return TREEVIEW_GetImageList(infoPtr, wParam);
5574
5575 case TVM_GETINDENT:
5576 return TREEVIEW_GetIndent(infoPtr);
5577
5578 case TVM_GETINSERTMARKCOLOR:
5579 return TREEVIEW_GetInsertMarkColor(infoPtr);
5580
5581 case TVM_GETISEARCHSTRINGA:
5582 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGA\n");
5583 return 0;
5584
5585 case TVM_GETISEARCHSTRINGW:
5586 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGW\n");
5587 return 0;
5588
5589 case TVM_GETITEMA:
5590 case TVM_GETITEMW:
5591 return TREEVIEW_GetItemT(infoPtr, (LPTVITEMEXW)lParam,
5592 uMsg == TVM_GETITEMW);
5593 case TVM_GETITEMHEIGHT:
5594 return TREEVIEW_GetItemHeight(infoPtr);
5595
5596 case TVM_GETITEMRECT:
5597 return TREEVIEW_GetItemRect(infoPtr, (BOOL)wParam, (LPRECT)lParam);
5598
5599 case TVM_GETITEMSTATE:
5600 return TREEVIEW_GetItemState(infoPtr, (HTREEITEM)wParam, (UINT)lParam);
5601
5602 case TVM_GETLINECOLOR:
5603 return TREEVIEW_GetLineColor(infoPtr);
5604
5605 case TVM_GETNEXTITEM:
5606 return TREEVIEW_GetNextItem(infoPtr, (UINT)wParam, (HTREEITEM)lParam);
5607
5608 case TVM_GETSCROLLTIME:
5609 return TREEVIEW_GetScrollTime(infoPtr);
5610
5611 case TVM_GETTEXTCOLOR:
5612 return TREEVIEW_GetTextColor(infoPtr);
5613
5614 case TVM_GETTOOLTIPS:
5615 return TREEVIEW_GetToolTips(infoPtr);
5616
5617 case TVM_GETUNICODEFORMAT:
5618 return TREEVIEW_GetUnicodeFormat(infoPtr);
5619
5620 case TVM_GETVISIBLECOUNT:
5621 return TREEVIEW_GetVisibleCount(infoPtr);
5622
5623 case TVM_HITTEST:
5624 return TREEVIEW_HitTest(infoPtr, (LPTVHITTESTINFO)lParam);
5625
5626 case TVM_INSERTITEMA:
5627 case TVM_INSERTITEMW:
5628 return TREEVIEW_InsertItemT(infoPtr, (LPTVINSERTSTRUCTW)lParam,
5629 uMsg == TVM_INSERTITEMW);
5630 case TVM_SELECTITEM:
5631 return TREEVIEW_SelectItem(infoPtr, (INT)wParam, (HTREEITEM)lParam);
5632
5633 case TVM_SETBKCOLOR:
5634 return TREEVIEW_SetBkColor(infoPtr, (COLORREF)lParam);
5635
5636 case TVM_SETIMAGELIST:
5637 return TREEVIEW_SetImageList(infoPtr, wParam, (HIMAGELIST)lParam);
5638
5639 case TVM_SETINDENT:
5640 return TREEVIEW_SetIndent(infoPtr, (UINT)wParam);
5641
5642 case TVM_SETINSERTMARK:
5643 return TREEVIEW_SetInsertMark(infoPtr, (BOOL)wParam, (HTREEITEM)lParam);
5644
5645 case TVM_SETINSERTMARKCOLOR:
5646 return TREEVIEW_SetInsertMarkColor(infoPtr, (COLORREF)lParam);
5647
5648 case TVM_SETITEMA:
5649 case TVM_SETITEMW:
5650 return TREEVIEW_SetItemT(infoPtr, (LPTVITEMEXW)lParam,
5651 uMsg == TVM_SETITEMW);
5652 case TVM_SETLINECOLOR:
5653 return TREEVIEW_SetLineColor(infoPtr, (COLORREF)lParam);
5654
5655 case TVM_SETITEMHEIGHT:
5656 return TREEVIEW_SetItemHeight(infoPtr, (INT)(SHORT)wParam);
5657
5658 case TVM_SETSCROLLTIME:
5659 return TREEVIEW_SetScrollTime(infoPtr, (UINT)wParam);
5660
5661 case TVM_SETTEXTCOLOR:
5662 return TREEVIEW_SetTextColor(infoPtr, (COLORREF)lParam);
5663
5664 case TVM_SETTOOLTIPS:
5665 return TREEVIEW_SetToolTips(infoPtr, (HWND)wParam);
5666
5667 case TVM_SETUNICODEFORMAT:
5668 return TREEVIEW_SetUnicodeFormat(infoPtr, (BOOL)wParam);
5669
5670 case TVM_SORTCHILDREN:
5671 return TREEVIEW_SortChildren(infoPtr, lParam);
5672
5673 case TVM_SORTCHILDRENCB:
5674 return TREEVIEW_SortChildrenCB(infoPtr, (LPTVSORTCB)lParam);
5675
5676 case WM_CHAR:
5677 return TREEVIEW_ProcessLetterKeys(infoPtr, wParam, lParam);
5678
5679 case WM_COMMAND:
5680 return TREEVIEW_Command(infoPtr, wParam, lParam);
5681
5682 case WM_DESTROY:
5683 return TREEVIEW_Destroy(infoPtr);
5684
5685 /* WM_ENABLE */
5686
5687 case WM_ERASEBKGND:
5688 return TREEVIEW_EraseBackground(infoPtr, (HDC)wParam);
5689
5690 case WM_GETDLGCODE:
5691 return DLGC_WANTARROWS | DLGC_WANTCHARS;
5692
5693 case WM_GETFONT:
5694 return TREEVIEW_GetFont(infoPtr);
5695
5696 case WM_HSCROLL:
5697 return TREEVIEW_HScroll(infoPtr, wParam);
5698
5699 case WM_KEYDOWN:
5700 return TREEVIEW_KeyDown(infoPtr, wParam);
5701
5702 case WM_KILLFOCUS:
5703 return TREEVIEW_KillFocus(infoPtr);
5704
5705 case WM_LBUTTONDBLCLK:
5706 return TREEVIEW_LButtonDoubleClick(infoPtr, lParam);
5707
5708 case WM_LBUTTONDOWN:
5709 return TREEVIEW_LButtonDown(infoPtr, lParam);
5710
5711 /* WM_MBUTTONDOWN */
5712
5713 case WM_MOUSELEAVE:
5714 return TREEVIEW_MouseLeave(infoPtr);
5715
5716 case WM_MOUSEMOVE:
5717 return TREEVIEW_MouseMove(infoPtr, lParam);
5718
5719 case WM_NCLBUTTONDOWN:
5720 if (infoPtr->hwndEdit)
5721 SetFocus(infoPtr->hwnd);
5722 goto def;
5723
5724 case WM_NCPAINT:
5725 return TREEVIEW_NCPaint (infoPtr, (HRGN)wParam, lParam);
5726
5727 case WM_NOTIFY:
5728 return TREEVIEW_Notify(infoPtr, wParam, lParam);
5729
5730 case WM_NOTIFYFORMAT:
5731 return TREEVIEW_NotifyFormat(infoPtr, (HWND)wParam, (UINT)lParam);
5732
5733 case WM_PRINTCLIENT:
5734 return TREEVIEW_PrintClient(infoPtr, (HDC)wParam, lParam);
5735
5736 case WM_PAINT:
5737 return TREEVIEW_Paint(infoPtr, (HDC)wParam);
5738
5739 case WM_RBUTTONDOWN:
5740 return TREEVIEW_RButtonDown(infoPtr, lParam);
5741
5742 case WM_SETCURSOR:
5743 return TREEVIEW_SetCursor(infoPtr, wParam, lParam);
5744
5745 case WM_SETFOCUS:
5746 return TREEVIEW_SetFocus(infoPtr);
5747
5748 case WM_SETFONT:
5749 return TREEVIEW_SetFont(infoPtr, (HFONT)wParam, (BOOL)lParam);
5750
5751 case WM_SETREDRAW:
5752 return TREEVIEW_SetRedraw(infoPtr, wParam);
5753
5754 case WM_SIZE:
5755 return TREEVIEW_Size(infoPtr, wParam, lParam);
5756
5757 case WM_STYLECHANGED:
5758 return TREEVIEW_StyleChanged(infoPtr, wParam, lParam);
5759
5760 case WM_SYSCOLORCHANGE:
5761 COMCTL32_RefreshSysColors();
5762 return 0;
5763
5764 /* WM_SYSKEYDOWN */
5765
5766 case WM_TIMER:
5767 return TREEVIEW_HandleTimer(infoPtr, wParam);
5768
5769 case WM_THEMECHANGED:
5770 return TREEVIEW_ThemeChanged (infoPtr);
5771
5772 case WM_VSCROLL:
5773 return TREEVIEW_VScroll(infoPtr, wParam);
5774
5775 /* WM_WININICHANGE */
5776
5777 case WM_MOUSEWHEEL:
5778 return TREEVIEW_MouseWheel(infoPtr, wParam, lParam);
5779
5780 case WM_DRAWITEM:
5781 TRACE("drawItem\n");
5782 goto def;
5783
5784 default:
5785 /* This mostly catches MFC and Delphi messages. :( */
5786 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
5787 TRACE("Unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
5788 def:
5789 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
5790 }
5791 }
5792
5793
5794 /* Class Registration ***************************************************/
5795
5796 VOID
5797 TREEVIEW_Register(void)
5798 {
5799 WNDCLASSW wndClass;
5800
5801 TRACE("\n");
5802
5803 ZeroMemory(&wndClass, sizeof(WNDCLASSW));
5804 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
5805 wndClass.lpfnWndProc = TREEVIEW_WindowProc;
5806 wndClass.cbClsExtra = 0;
5807 wndClass.cbWndExtra = sizeof(TREEVIEW_INFO *);
5808
5809 wndClass.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
5810 wndClass.hbrBackground = 0;
5811 wndClass.lpszClassName = WC_TREEVIEWW;
5812
5813 RegisterClassW(&wndClass);
5814 }
5815
5816
5817 VOID
5818 TREEVIEW_Unregister(void)
5819 {
5820 UnregisterClassW(WC_TREEVIEWW, NULL);
5821 }
5822
5823
5824 /* Tree Verification ****************************************************/
5825
5826 #ifdef NDEBUG
5827 static inline void
5828 TREEVIEW_VerifyChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item);
5829
5830 static inline void TREEVIEW_VerifyItemCommon(TREEVIEW_INFO *infoPtr,
5831 TREEVIEW_ITEM *item)
5832 {
5833 assert(infoPtr != NULL);
5834 assert(item != NULL);
5835
5836 /* both NULL, or both non-null */
5837 assert((item->firstChild == NULL) == (item->lastChild == NULL));
5838
5839 assert(item->firstChild != item);
5840 assert(item->lastChild != item);
5841
5842 if (item->firstChild)
5843 {
5844 assert(item->firstChild->parent == item);
5845 assert(item->firstChild->prevSibling == NULL);
5846 }
5847
5848 if (item->lastChild)
5849 {
5850 assert(item->lastChild->parent == item);
5851 assert(item->lastChild->nextSibling == NULL);
5852 }
5853
5854 assert(item->nextSibling != item);
5855 if (item->nextSibling)
5856 {
5857 assert(item->nextSibling->parent == item->parent);
5858 assert(item->nextSibling->prevSibling == item);
5859 }
5860
5861 assert(item->prevSibling != item);
5862 if (item->prevSibling)
5863 {
5864 assert(item->prevSibling->parent == item->parent);
5865 assert(item->prevSibling->nextSibling == item);
5866 }
5867 }
5868
5869 static inline void
5870 TREEVIEW_VerifyItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
5871 {
5872 assert(item != NULL);
5873
5874 assert(item->parent != NULL);
5875 assert(item->parent != item);
5876 assert(item->iLevel == item->parent->iLevel + 1);
5877
5878 assert(DPA_GetPtrIndex(infoPtr->items, item) != -1);
5879
5880 TREEVIEW_VerifyItemCommon(infoPtr, item);
5881
5882 TREEVIEW_VerifyChildren(infoPtr, item);
5883 }
5884
5885 static inline void
5886 TREEVIEW_VerifyChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
5887 {
5888 TREEVIEW_ITEM *child;
5889 assert(item != NULL);
5890
5891 for (child = item->firstChild; child != NULL; child = child->nextSibling)
5892 TREEVIEW_VerifyItem(infoPtr, child);
5893 }
5894
5895 static inline void
5896 TREEVIEW_VerifyRoot(TREEVIEW_INFO *infoPtr)
5897 {
5898 TREEVIEW_ITEM *root = infoPtr->root;
5899
5900 assert(root != NULL);
5901 assert(root->iLevel == -1);
5902 assert(root->parent == NULL);
5903 assert(root->prevSibling == NULL);
5904
5905 TREEVIEW_VerifyItemCommon(infoPtr, root);
5906
5907 TREEVIEW_VerifyChildren(infoPtr, root);
5908 }
5909
5910 static void
5911 TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr)
5912 {
5913 assert(infoPtr != NULL);
5914
5915 TREEVIEW_VerifyRoot(infoPtr);
5916 }
5917 #endif