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