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