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