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