- fix multiple consecutive downloads (by flushing when needed the
[wine/multimedia.git] / dlls / comctl32 / treeview.c
blobe11c848982750fab2c22b5bda5c319fd08e48802
1 /* Treeview control
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
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.
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.
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
21 * Note that TREEVIEW_INFO * and HTREEITEM are the same thing.
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.
28 * TODO:
29 * missing notifications: NM_SETCURSOR, TVN_GETINFOTIP, TVN_KEYDOWN,
30 * TVN_SETDISPINFO, TVN_SINGLEEXPAND
32 * missing styles: TVS_FULLROWSELECT, TVS_INFOTIP, TVS_NOSCROLL,
33 * TVS_RTLREADING, TVS_TRACKSELECT
35 * missing item styles: TVIS_CUT, TVIS_EXPANDPARTIAL
37 * Make the insertion mark look right.
38 * Scroll (instead of repaint) as much as possible.
41 #include "config.h"
42 #include "wine/port.h"
44 #include <assert.h>
45 #include <ctype.h>
46 #include <string.h>
47 #include <limits.h>
48 #include <stdlib.h>
50 #define NONAMELESSUNION
51 #define NONAMELESSSTRUCT
52 #include "winbase.h"
53 #include "wingdi.h"
54 #include "commctrl.h"
55 #include "comctl32.h"
56 #include "wine/debug.h"
58 /* internal structures */
60 typedef struct _TREEITEM /* HTREEITEM is a _TREEINFO *. */
62 UINT callbackMask;
63 UINT state;
64 UINT stateMask;
65 LPSTR pszText;
66 int cchTextMax;
67 int iImage;
68 int iSelectedImage;
69 int cChildren;
70 LPARAM lParam;
71 int iIntegral; /* item height multiplier (1 is normal) */
72 int iLevel; /* indentation level:0=root level */
73 HTREEITEM parent; /* handle to parent or 0 if at root */
74 HTREEITEM firstChild; /* handle to first child or 0 if no child */
75 HTREEITEM lastChild;
76 HTREEITEM prevSibling; /* handle to prev item in list, 0 if first */
77 HTREEITEM nextSibling; /* handle to next item in list, 0 if last */
78 RECT rect;
79 LONG linesOffset;
80 LONG stateOffset;
81 LONG imageOffset;
82 LONG textOffset;
83 LONG textWidth; /* horizontal text extent for pszText */
84 LONG visibleOrder; /* visible ordering, 0 is first visible item */
85 } TREEVIEW_ITEM;
88 typedef struct tagTREEVIEW_INFO
90 HWND hwnd;
91 HWND hwndNotify; /* Owner window to send notifications to */
92 DWORD dwStyle;
93 HTREEITEM root;
94 UINT uInternalStatus;
95 INT Timer;
96 UINT uNumItems; /* number of valid TREEVIEW_ITEMs */
97 INT cdmode; /* last custom draw setting */
98 UINT uScrollTime; /* max. time for scrolling in milliseconds */
99 BOOL bRedraw; /* if FALSE we validate but don't redraw in TREEVIEW_Paint() */
101 UINT uItemHeight; /* item height */
102 BOOL bHeightSet;
104 LONG clientWidth; /* width of control window */
105 LONG clientHeight; /* height of control window */
107 LONG treeWidth; /* width of visible tree items */
108 LONG treeHeight; /* height of visible tree items */
110 UINT uIndent; /* indentation in pixels */
111 HTREEITEM selectedItem; /* handle to selected item or 0 if none */
112 HTREEITEM hotItem; /* handle currently under cursor, 0 if none */
113 HTREEITEM focusedItem; /* item that was under the cursor when WM_LBUTTONDOWN was received */
115 HTREEITEM firstVisible; /* handle to first visible item */
116 LONG maxVisibleOrder;
117 HTREEITEM dropItem; /* handle to item selected by drag cursor */
118 HTREEITEM insertMarkItem; /* item after which insertion mark is placed */
119 BOOL insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
120 HIMAGELIST dragList; /* Bitmap of dragged item */
121 LONG scrollX;
122 COLORREF clrBk;
123 COLORREF clrText;
124 COLORREF clrLine;
125 COLORREF clrInsertMark;
126 HFONT hFont;
127 HFONT hBoldFont;
128 HWND hwndToolTip;
130 HWND hwndEdit;
131 WNDPROC wpEditOrig; /* orig window proc for subclassing edit */
132 BOOL bIgnoreEditKillFocus;
133 BOOL bLabelChanged;
135 BOOL bNtfUnicode; /* TRUE if should send NOTIFY with W */
136 BOOL bUnicode; /* set by CCM_SETUNICODEFORMAT */
137 HIMAGELIST himlNormal;
138 int normalImageHeight;
139 int normalImageWidth;
140 HIMAGELIST himlState;
141 int stateImageHeight;
142 int stateImageWidth;
143 HDPA items;
145 DWORD lastKeyPressTimestamp; /* Added */
146 WPARAM charCode; /* Added */
147 INT nSearchParamLength; /* Added */
148 CHAR szSearchParam[ MAX_PATH ]; /* Added */
149 } TREEVIEW_INFO;
152 /******** Defines that TREEVIEW_ProcessLetterKeys uses ****************/
153 #define KEY_DELAY 450
155 /* bitflags for infoPtr->uInternalStatus */
157 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */
158 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */
159 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */
160 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */
161 #define TV_RDRAG 0x10 /* dito Rbutton */
162 #define TV_RDRAGGING 0x20
164 /* bitflags for infoPtr->timer */
166 #define TV_EDIT_TIMER 2
167 #define TV_EDIT_TIMER_SET 2
170 VOID TREEVIEW_Register (VOID);
171 VOID TREEVIEW_Unregister (VOID);
174 WINE_DEFAULT_DEBUG_CHANNEL(treeview);
177 #define TEXT_CALLBACK_SIZE 260
179 #define TREEVIEW_LEFT_MARGIN 8
181 #define MINIMUM_INDENT 19
183 #define CALLBACK_MASK_ALL (TVIF_TEXT|TVIF_CHILDREN|TVIF_IMAGE|TVIF_SELECTEDIMAGE)
185 #define STATEIMAGEINDEX(x) (((x) >> 12) & 0x0f)
186 #define OVERLAYIMAGEINDEX(x) (((x) >> 8) & 0x0f)
187 #define ISVISIBLE(x) ((x)->visibleOrder >= 0)
190 typedef VOID (*TREEVIEW_ItemEnumFunc)(TREEVIEW_INFO *, TREEVIEW_ITEM *,LPVOID);
193 static VOID TREEVIEW_Invalidate(TREEVIEW_INFO *, TREEVIEW_ITEM *);
195 static LRESULT TREEVIEW_DoSelectItem(TREEVIEW_INFO *, INT, HTREEITEM, INT);
196 static VOID TREEVIEW_SetFirstVisible(TREEVIEW_INFO *, TREEVIEW_ITEM *, BOOL);
197 static LRESULT TREEVIEW_EnsureVisible(TREEVIEW_INFO *, HTREEITEM, BOOL);
198 static LRESULT TREEVIEW_RButtonUp(TREEVIEW_INFO *, LPPOINT);
199 static LRESULT TREEVIEW_EndEditLabelNow(TREEVIEW_INFO *infoPtr, BOOL bCancel);
200 static VOID TREEVIEW_UpdateScrollBars(TREEVIEW_INFO *infoPtr);
201 static LRESULT TREEVIEW_HScroll(TREEVIEW_INFO *, WPARAM);
202 static INT TREEVIEW_NotifyFormat (TREEVIEW_INFO *infoPtr, HWND wParam, UINT lParam);
205 /* Random Utilities *****************************************************/
207 #ifndef NDEBUG
208 static inline void
209 TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr)
211 (void)infoPtr;
213 #else
214 /* The definition is at the end of the file. */
215 static void TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr);
216 #endif
218 /* Returns the treeview private data if hwnd is a treeview.
219 * Otherwise returns an undefined value. */
220 static TREEVIEW_INFO *
221 TREEVIEW_GetInfoPtr(HWND hwnd)
223 return (TREEVIEW_INFO *)GetWindowLongA(hwnd, 0);
226 /* Don't call this. Nothing wants an item index. */
227 static inline int
228 TREEVIEW_GetItemIndex(TREEVIEW_INFO *infoPtr, HTREEITEM handle)
230 assert(infoPtr != NULL);
232 return DPA_GetPtrIndex(infoPtr->items, handle);
235 /***************************************************************************
236 * This method checks that handle is an item for this tree.
238 static BOOL
239 TREEVIEW_ValidItem(TREEVIEW_INFO *infoPtr, HTREEITEM handle)
241 if (TREEVIEW_GetItemIndex(infoPtr, handle) == -1)
243 TRACE("invalid item %p\n", handle);
244 return FALSE;
246 else
247 return TRUE;
250 static HFONT
251 TREEVIEW_CreateBoldFont(HFONT hOrigFont)
253 LOGFONTA font;
255 GetObjectA(hOrigFont, sizeof(font), &font);
256 font.lfWeight = FW_BOLD;
257 return CreateFontIndirectA(&font);
260 static inline HFONT
261 TREEVIEW_FontForItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
263 return (item->state & TVIS_BOLD) ? infoPtr->hBoldFont : infoPtr->hFont;
266 /* for trace/debugging purposes only */
267 static const char *
268 TREEVIEW_ItemName(TREEVIEW_ITEM *item)
270 if (item == NULL) return "<null item>";
271 if (item->pszText == LPSTR_TEXTCALLBACKA) return "<callback>";
272 if (item->pszText == NULL) return "<null>";
273 return item->pszText;
276 /* An item is not a child of itself. */
277 static BOOL
278 TREEVIEW_IsChildOf(TREEVIEW_ITEM *parent, TREEVIEW_ITEM *child)
282 child = child->parent;
283 if (child == parent) return TRUE;
284 } while (child != NULL);
286 return FALSE;
290 /* Tree Traversal *******************************************************/
292 /***************************************************************************
293 * This method returns the last expanded sibling or child child item
294 * of a tree node
296 static TREEVIEW_ITEM *
297 TREEVIEW_GetLastListItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
299 if (!wineItem)
300 return NULL;
302 while (wineItem->lastChild)
304 if (wineItem->state & TVIS_EXPANDED)
305 wineItem = wineItem->lastChild;
306 else
307 break;
310 if (wineItem == infoPtr->root)
311 return NULL;
313 return wineItem;
316 /***************************************************************************
317 * This method returns the previous non-hidden item in the list not
318 * considering the tree hierarchy.
320 static TREEVIEW_ITEM *
321 TREEVIEW_GetPrevListItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *tvItem)
323 if (tvItem->prevSibling)
325 /* This item has a prevSibling, get the last item in the sibling's tree. */
326 TREEVIEW_ITEM *upItem = tvItem->prevSibling;
328 if ((upItem->state & TVIS_EXPANDED) && upItem->lastChild != NULL)
329 return TREEVIEW_GetLastListItem(infoPtr, upItem->lastChild);
330 else
331 return upItem;
333 else
335 /* this item does not have a prevSibling, get the parent */
336 return (tvItem->parent != infoPtr->root) ? tvItem->parent : NULL;
341 /***************************************************************************
342 * This method returns the next physical item in the treeview not
343 * considering the tree hierarchy.
345 static TREEVIEW_ITEM *
346 TREEVIEW_GetNextListItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *tvItem)
348 assert(tvItem != NULL);
351 * If this item has children and is expanded, return the first child
353 if ((tvItem->state & TVIS_EXPANDED) && tvItem->firstChild != NULL)
355 return tvItem->firstChild;
360 * try to get the sibling
362 if (tvItem->nextSibling)
363 return tvItem->nextSibling;
366 * Otherwise, get the parent's sibling.
368 while (tvItem->parent)
370 tvItem = tvItem->parent;
372 if (tvItem->nextSibling)
373 return tvItem->nextSibling;
376 return NULL;
379 /***************************************************************************
380 * This method returns the nth item starting at the given item. It returns
381 * the last item (or first) we we run out of items.
383 * Will scroll backward if count is <0.
384 * forward if count is >0.
386 static TREEVIEW_ITEM *
387 TREEVIEW_GetListItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
388 LONG count)
390 TREEVIEW_ITEM *(*next_item)(TREEVIEW_INFO *, TREEVIEW_ITEM *);
391 TREEVIEW_ITEM *previousItem;
393 assert(wineItem != NULL);
395 if (count > 0)
397 next_item = TREEVIEW_GetNextListItem;
399 else if (count < 0)
401 count = -count;
402 next_item = TREEVIEW_GetPrevListItem;
404 else
405 return wineItem;
409 previousItem = wineItem;
410 wineItem = next_item(infoPtr, wineItem);
412 } while (--count && wineItem != NULL);
415 return wineItem ? wineItem : previousItem;
418 /* Notifications ************************************************************/
420 static INT get_notifycode(TREEVIEW_INFO *infoPtr, INT code)
422 if (!infoPtr->bNtfUnicode) {
423 switch (code) {
424 case TVN_SELCHANGINGW: return TVN_SELCHANGINGA;
425 case TVN_SELCHANGEDW: return TVN_SELCHANGEDA;
426 case TVN_GETDISPINFOW: return TVN_GETDISPINFOA;
427 case TVN_SETDISPINFOW: return TVN_SETDISPINFOA;
428 case TVN_ITEMEXPANDINGW: return TVN_ITEMEXPANDINGA;
429 case TVN_ITEMEXPANDEDW: return TVN_ITEMEXPANDEDA;
430 case TVN_BEGINDRAGW: return TVN_BEGINDRAGA;
431 case TVN_BEGINRDRAGW: return TVN_BEGINRDRAGA;
432 case TVN_DELETEITEMW: return TVN_DELETEITEMA;
433 case TVN_BEGINLABELEDITW: return TVN_BEGINLABELEDITA;
434 case TVN_ENDLABELEDITW: return TVN_ENDLABELEDITA;
435 case TVN_GETINFOTIPW: return TVN_GETINFOTIPA;
438 return code;
441 static LRESULT
442 TREEVIEW_SendRealNotify(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
444 TRACE("wParam=%d, lParam=%ld\n", wParam, lParam);
445 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, wParam, lParam);
448 static BOOL
449 TREEVIEW_SendSimpleNotify(TREEVIEW_INFO *infoPtr, UINT code)
451 NMHDR nmhdr;
452 HWND hwnd = infoPtr->hwnd;
454 TRACE("%d\n", code);
455 nmhdr.hwndFrom = hwnd;
456 nmhdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
457 nmhdr.code = get_notifycode(infoPtr, code);
459 return (BOOL)TREEVIEW_SendRealNotify(infoPtr,
460 (WPARAM)nmhdr.idFrom, (LPARAM)&nmhdr);
463 static VOID
464 TREEVIEW_TVItemFromItem(TREEVIEW_INFO *infoPtr, UINT mask, TVITEMA *tvItem, TREEVIEW_ITEM *item)
466 tvItem->mask = mask;
467 tvItem->hItem = item;
468 tvItem->state = item->state;
469 tvItem->stateMask = 0;
470 tvItem->iImage = item->iImage;
471 tvItem->cchTextMax = item->cchTextMax;
472 tvItem->iImage = item->iImage;
473 tvItem->iSelectedImage = item->iSelectedImage;
474 tvItem->cChildren = item->cChildren;
475 tvItem->lParam = item->lParam;
477 /* **** **** **** **** WARNING **** **** **** **** */
478 /* This control stores all the data in A format */
479 /* we will convert it to W if the notify format */
480 /* is Unicode. */
481 /* **** **** **** **** WARNING **** **** **** **** */
482 if (infoPtr->bNtfUnicode) {
483 INT len = MultiByteToWideChar( CP_ACP, 0, item->pszText, -1, NULL, 0 );
484 if (len > 1) {
485 tvItem->pszText = (LPSTR)COMCTL32_Alloc (len*sizeof(WCHAR));
486 MultiByteToWideChar( CP_ACP, 0, item->pszText, -1, (LPWSTR)tvItem->pszText, len*sizeof(WCHAR) );
489 else
490 tvItem->pszText = item->pszText;
493 static BOOL
494 TREEVIEW_SendTreeviewNotify(TREEVIEW_INFO *infoPtr, UINT code, UINT action,
495 UINT mask, HTREEITEM oldItem, HTREEITEM newItem)
497 HWND hwnd = infoPtr->hwnd;
498 NMTREEVIEWA nmhdr;
499 BOOL ret;
501 TRACE("code:%d action:%x olditem:%p newitem:%p\n",
502 code, action, oldItem, newItem);
504 ZeroMemory(&nmhdr, sizeof(NMTREEVIEWA));
506 nmhdr.hdr.hwndFrom = hwnd;
507 nmhdr.hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
508 nmhdr.hdr.code = get_notifycode(infoPtr, code);
509 nmhdr.action = action;
511 if (oldItem)
512 TREEVIEW_TVItemFromItem(infoPtr, mask, &nmhdr.itemOld, oldItem);
514 if (newItem)
515 TREEVIEW_TVItemFromItem(infoPtr, mask, &nmhdr.itemNew, newItem);
517 nmhdr.ptDrag.x = 0;
518 nmhdr.ptDrag.y = 0;
520 ret = (BOOL)TREEVIEW_SendRealNotify(infoPtr,
521 (WPARAM)GetWindowLongA(hwnd, GWL_ID),
522 (LPARAM)&nmhdr);
523 if (infoPtr->bNtfUnicode) {
524 COMCTL32_Free(nmhdr.itemOld.pszText);
525 COMCTL32_Free(nmhdr.itemNew.pszText);
527 return ret;
530 static BOOL
531 TREEVIEW_SendTreeviewDnDNotify(TREEVIEW_INFO *infoPtr, UINT code,
532 HTREEITEM dragItem, POINT pt)
534 HWND hwnd = infoPtr->hwnd;
535 NMTREEVIEWA nmhdr;
537 TRACE("code:%d dragitem:%p\n", code, dragItem);
539 nmhdr.hdr.hwndFrom = hwnd;
540 nmhdr.hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
541 nmhdr.hdr.code = get_notifycode(infoPtr, code);
542 nmhdr.action = 0;
543 nmhdr.itemNew.mask = TVIF_STATE | TVIF_PARAM | TVIF_HANDLE;
544 nmhdr.itemNew.hItem = dragItem;
545 nmhdr.itemNew.state = dragItem->state;
546 nmhdr.itemNew.lParam = dragItem->lParam;
548 nmhdr.ptDrag.x = pt.x;
549 nmhdr.ptDrag.y = pt.y;
551 return (BOOL)TREEVIEW_SendRealNotify(infoPtr,
552 (WPARAM)GetWindowLongA(hwnd, GWL_ID),
553 (LPARAM)&nmhdr);
557 static BOOL
558 TREEVIEW_SendCustomDrawNotify(TREEVIEW_INFO *infoPtr, DWORD dwDrawStage,
559 HDC hdc, RECT rc)
561 HWND hwnd = infoPtr->hwnd;
562 NMTVCUSTOMDRAW nmcdhdr;
563 LPNMCUSTOMDRAW nmcd;
565 TRACE("drawstage:%lx hdc:%p\n", dwDrawStage, hdc);
567 nmcd = &nmcdhdr.nmcd;
568 nmcd->hdr.hwndFrom = hwnd;
569 nmcd->hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
570 nmcd->hdr.code = NM_CUSTOMDRAW;
571 nmcd->dwDrawStage = dwDrawStage;
572 nmcd->hdc = hdc;
573 nmcd->rc = rc;
574 nmcd->dwItemSpec = 0;
575 nmcd->uItemState = 0;
576 nmcd->lItemlParam = 0;
577 nmcdhdr.clrText = infoPtr->clrText;
578 nmcdhdr.clrTextBk = infoPtr->clrBk;
579 nmcdhdr.iLevel = 0;
581 return (BOOL)TREEVIEW_SendRealNotify(infoPtr,
582 (WPARAM)GetWindowLongA(hwnd, GWL_ID),
583 (LPARAM)&nmcdhdr);
588 /* FIXME: need to find out when the flags in uItemState need to be set */
590 static BOOL
591 TREEVIEW_SendCustomDrawItemNotify(TREEVIEW_INFO *infoPtr, HDC hdc,
592 TREEVIEW_ITEM *wineItem, UINT uItemDrawState)
594 HWND hwnd = infoPtr->hwnd;
595 NMTVCUSTOMDRAW nmcdhdr;
596 LPNMCUSTOMDRAW nmcd;
597 DWORD dwDrawStage, dwItemSpec;
598 UINT uItemState;
599 INT retval;
601 dwDrawStage = CDDS_ITEM | uItemDrawState;
602 dwItemSpec = (DWORD)wineItem;
603 uItemState = 0;
604 if (wineItem->state & TVIS_SELECTED)
605 uItemState |= CDIS_SELECTED;
606 if (wineItem == infoPtr->selectedItem)
607 uItemState |= CDIS_FOCUS;
608 if (wineItem == infoPtr->hotItem)
609 uItemState |= CDIS_HOT;
611 nmcd = &nmcdhdr.nmcd;
612 nmcd->hdr.hwndFrom = hwnd;
613 nmcd->hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
614 nmcd->hdr.code = NM_CUSTOMDRAW;
615 nmcd->dwDrawStage = dwDrawStage;
616 nmcd->hdc = hdc;
617 nmcd->rc = wineItem->rect;
618 nmcd->dwItemSpec = dwItemSpec;
619 nmcd->uItemState = uItemState;
620 nmcd->lItemlParam = wineItem->lParam;
621 nmcdhdr.clrText = infoPtr->clrText;
622 nmcdhdr.clrTextBk = infoPtr->clrBk;
623 nmcdhdr.iLevel = wineItem->iLevel;
625 TRACE("drawstage:%lx hdc:%p item:%lx, itemstate:%x, lItemlParam:%lx\n",
626 nmcd->dwDrawStage, nmcd->hdc, nmcd->dwItemSpec,
627 nmcd->uItemState, nmcd->lItemlParam);
629 retval = TREEVIEW_SendRealNotify(infoPtr,
630 (WPARAM)GetWindowLongA(hwnd, GWL_ID),
631 (LPARAM)&nmcdhdr);
633 infoPtr->clrText = nmcdhdr.clrText;
634 infoPtr->clrBk = nmcdhdr.clrTextBk;
635 return (BOOL)retval;
638 static BOOL
639 TREEVIEW_BeginLabelEditNotify(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *editItem)
641 HWND hwnd = infoPtr->hwnd;
642 LPSTR allocated = NULL;
643 NMTVDISPINFOA tvdi;
644 BOOL ret;
646 tvdi.hdr.hwndFrom = hwnd;
647 tvdi.hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
648 tvdi.hdr.code = get_notifycode(infoPtr, TVN_BEGINLABELEDITW);
650 tvdi.item.mask = TVIF_HANDLE | TVIF_STATE | TVIF_PARAM | TVIF_TEXT;
651 tvdi.item.hItem = editItem;
652 tvdi.item.state = editItem->state;
653 tvdi.item.lParam = editItem->lParam;
654 if (infoPtr->bNtfUnicode) {
655 INT len = MultiByteToWideChar( CP_ACP, 0, editItem->pszText, -1, NULL, 0 );
656 if (len > 1) {
657 tvdi.item.pszText = allocated = (LPSTR)COMCTL32_Alloc (len*sizeof(WCHAR));
658 MultiByteToWideChar( CP_ACP, 0, editItem->pszText, -1, (LPWSTR)tvdi.item.pszText, len*sizeof(WCHAR) );
659 tvdi.item.cchTextMax = len*sizeof(WCHAR);
661 else {
662 tvdi.item.pszText = editItem->pszText; /* ??? */
663 tvdi.item.cchTextMax = editItem->cchTextMax; /* ??? */
666 else {
667 tvdi.item.pszText = editItem->pszText;
668 tvdi.item.cchTextMax = editItem->cchTextMax;
671 ret = (BOOL)TREEVIEW_SendRealNotify(infoPtr,
672 tvdi.hdr.idFrom,
673 (LPARAM)&tvdi);
674 if (allocated)
675 COMCTL32_Free(allocated);
676 return ret;
679 static void
680 TREEVIEW_UpdateDispInfo(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
681 UINT mask)
683 NMTVDISPINFOA callback;
684 HWND hwnd = infoPtr->hwnd;
686 mask &= wineItem->callbackMask;
688 if (mask == 0) return;
690 callback.hdr.hwndFrom = hwnd;
691 callback.hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
692 callback.hdr.code = get_notifycode(infoPtr, TVN_GETDISPINFOW);
694 /* 'state' always contains valid value, as well as 'lParam'.
695 * All other parameters are uninitialized.
697 callback.item.pszText = wineItem->pszText;
698 callback.item.cchTextMax = wineItem->cchTextMax;
699 callback.item.mask = mask;
700 callback.item.hItem = wineItem;
701 callback.item.state = wineItem->state;
702 callback.item.lParam = wineItem->lParam;
704 /* If text is changed we need to recalculate textWidth */
705 if (mask & TVIF_TEXT)
706 wineItem->textWidth = 0;
708 TREEVIEW_SendRealNotify(infoPtr,
709 (WPARAM)callback.hdr.idFrom, (LPARAM)&callback);
711 /* It may have changed due to a call to SetItem. */
712 mask &= wineItem->callbackMask;
714 if ((mask & TVIF_TEXT) && callback.item.pszText != wineItem->pszText)
716 /* Instead of copying text into our buffer user specified its own */
717 if (infoPtr->bNtfUnicode) {
718 LPWSTR newText;
719 int buflen;
720 int len = WideCharToMultiByte( CP_ACP, 0,
721 (LPWSTR)callback.item.pszText, -1,
722 NULL, 0, NULL, NULL );
723 buflen = max((len+1)*sizeof(WCHAR), TEXT_CALLBACK_SIZE);
724 newText = (LPWSTR)COMCTL32_ReAlloc(wineItem->pszText, buflen);
726 TRACE("returned wstr %s, len=%d, buflen=%d\n",
727 debugstr_w((LPWSTR)callback.item.pszText), len, buflen);
729 if (newText)
731 wineItem->pszText = (LPSTR)newText;
732 WideCharToMultiByte( CP_ACP, 0,
733 (LPWSTR)callback.item.pszText, -1,
734 wineItem->pszText, buflen,
735 NULL, NULL );
736 wineItem->cchTextMax = buflen;
738 /* If ReAlloc fails we have nothing to do, but keep original text */
740 else {
741 int len = max(lstrlenA(callback.item.pszText) + 1,
742 TEXT_CALLBACK_SIZE);
743 LPSTR newText = COMCTL32_ReAlloc(wineItem->pszText, len);
745 TRACE("returned str %s, len=%d\n",
746 debugstr_a(callback.item.pszText), len);
748 if (newText)
750 wineItem->pszText = newText;
751 strcpy(wineItem->pszText, callback.item.pszText);
752 wineItem->cchTextMax = len;
754 /* If ReAlloc fails we have nothing to do, but keep original text */
757 else if (mask & TVIF_TEXT) {
758 /* User put text into our buffer, that is ok unless W string */
759 if (infoPtr->bNtfUnicode) {
760 LPWSTR newText;
761 LPSTR oldText = NULL;
762 int buflen;
763 int len = WideCharToMultiByte( CP_ACP, 0,
764 (LPWSTR)callback.item.pszText, -1,
765 NULL, 0, NULL, NULL );
766 buflen = max((len+1)*sizeof(WCHAR), TEXT_CALLBACK_SIZE);
767 newText = (LPWSTR)COMCTL32_Alloc(buflen);
769 TRACE("same buffer wstr %s, len=%d, buflen=%d\n",
770 debugstr_w((LPWSTR)callback.item.pszText), len, buflen);
772 if (newText)
774 oldText = wineItem->pszText;
775 wineItem->pszText = (LPSTR)newText;
776 WideCharToMultiByte( CP_ACP, 0,
777 (LPWSTR)callback.item.pszText, -1,
778 wineItem->pszText, buflen, NULL, NULL );
779 wineItem->cchTextMax = buflen;
780 if (oldText)
781 COMCTL32_Free(oldText);
786 if (mask & TVIF_IMAGE)
787 wineItem->iImage = callback.item.iImage;
789 if (mask & TVIF_SELECTEDIMAGE)
790 wineItem->iSelectedImage = callback.item.iSelectedImage;
792 if (mask & TVIF_CHILDREN)
793 wineItem->cChildren = callback.item.cChildren;
795 /* These members are now permanently set. */
796 if (callback.item.mask & TVIF_DI_SETITEM)
797 wineItem->callbackMask &= ~callback.item.mask;
800 /***************************************************************************
801 * This function uses cChildren field to decide whether the item has
802 * children or not.
803 * Note: if this returns TRUE, the child items may not actually exist,
804 * they could be virtual.
806 * Just use wineItem->firstChild to check for physical children.
808 static BOOL
809 TREEVIEW_HasChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
811 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, TVIF_CHILDREN);
813 return wineItem->cChildren > 0;
817 /* Item Position ********************************************************/
819 /* Compute linesOffset, stateOffset, imageOffset, textOffset of an item. */
820 static VOID
821 TREEVIEW_ComputeItemInternalMetrics(TREEVIEW_INFO *infoPtr,
822 TREEVIEW_ITEM *item)
824 /* Same effect, different optimisation. */
825 #if 0
826 BOOL lar = ((infoPtr->dwStyle & TVS_LINESATROOT)
827 && (infoPtr->dwStyle & (TVS_HASLINES|TVS_HASBUTTONS)));
828 #else
829 BOOL lar = ((infoPtr->dwStyle
830 & (TVS_LINESATROOT|TVS_HASLINES|TVS_HASBUTTONS))
831 > TVS_LINESATROOT);
832 #endif
834 item->linesOffset = infoPtr->uIndent * (item->iLevel + lar - 1)
835 - infoPtr->scrollX;
836 item->stateOffset = item->linesOffset + infoPtr->uIndent;
837 item->imageOffset = item->stateOffset
838 + (STATEIMAGEINDEX(item->state) ? infoPtr->stateImageWidth : 0);
839 item->textOffset = item->imageOffset + infoPtr->normalImageWidth;
842 static VOID
843 TREEVIEW_ComputeTextWidth(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item, HDC hDC)
845 HDC hdc;
846 HFONT hOldFont=0;
847 SIZE sz;
849 /* DRAW's OM docker creates items like this */
850 if (item->pszText == NULL)
852 item->textWidth = 0;
853 return;
856 if (item->textWidth != 0 && !(item->callbackMask & TVIF_TEXT))
857 return;
859 if (hDC != 0)
861 hdc = hDC;
863 else
865 hdc = GetDC(infoPtr->hwnd);
866 hOldFont = SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, item));
869 GetTextExtentPoint32A(hdc, item->pszText, strlen(item->pszText), &sz);
870 item->textWidth = sz.cx;
872 if (hDC == 0)
874 SelectObject(hdc, hOldFont);
875 ReleaseDC(0, hdc);
879 static VOID
880 TREEVIEW_ComputeItemRect(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
882 item->rect.top = infoPtr->uItemHeight *
883 (item->visibleOrder - infoPtr->firstVisible->visibleOrder);
885 item->rect.bottom = item->rect.top
886 + infoPtr->uItemHeight * item->iIntegral - 1;
888 item->rect.left = 0;
889 item->rect.right = infoPtr->clientWidth;
892 /* We know that only items after start need their order updated. */
893 static void
894 TREEVIEW_RecalculateVisibleOrder(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *start)
896 TREEVIEW_ITEM *item;
897 int order;
899 if (!start)
901 start = infoPtr->root->firstChild;
902 order = 0;
904 else
905 order = start->visibleOrder;
907 for (item = start; item != NULL;
908 item = TREEVIEW_GetNextListItem(infoPtr, item))
910 item->visibleOrder = order;
911 order += item->iIntegral;
914 infoPtr->maxVisibleOrder = order;
916 for (item = start; item != NULL;
917 item = TREEVIEW_GetNextListItem(infoPtr, item))
919 TREEVIEW_ComputeItemRect(infoPtr, item);
924 /* Update metrics of all items in selected subtree.
925 * root must be expanded
927 static VOID
928 TREEVIEW_UpdateSubTree(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *root)
930 TREEVIEW_ITEM *sibling;
931 HDC hdc;
932 HFONT hOldFont;
934 if (!root->firstChild || !(root->state & TVIS_EXPANDED))
935 return;
937 root->state &= ~TVIS_EXPANDED;
938 sibling = TREEVIEW_GetNextListItem(infoPtr, root);
939 root->state |= TVIS_EXPANDED;
941 hdc = GetDC(infoPtr->hwnd);
942 hOldFont = SelectObject(hdc, infoPtr->hFont);
944 for (; root != sibling;
945 root = TREEVIEW_GetNextListItem(infoPtr, root))
947 TREEVIEW_ComputeItemInternalMetrics(infoPtr, root);
949 if (root->callbackMask & TVIF_TEXT)
950 TREEVIEW_UpdateDispInfo(infoPtr, root, TVIF_TEXT);
952 if (root->textWidth == 0)
954 SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, root));
955 TREEVIEW_ComputeTextWidth(infoPtr, root, hdc);
959 SelectObject(hdc, hOldFont);
960 ReleaseDC(infoPtr->hwnd, hdc);
963 /* Item Allocation **********************************************************/
965 static TREEVIEW_ITEM *
966 TREEVIEW_AllocateItem(TREEVIEW_INFO *infoPtr)
968 TREEVIEW_ITEM *newItem = COMCTL32_Alloc(sizeof(TREEVIEW_ITEM));
970 if (!newItem)
971 return NULL;
973 if (DPA_InsertPtr(infoPtr->items, INT_MAX, newItem) == -1)
975 COMCTL32_Free(newItem);
976 return NULL;
979 return newItem;
982 /* Exact opposite of TREEVIEW_AllocateItem. In particular, it does not
983 * free item->pszText. */
984 static void
985 TREEVIEW_FreeItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
987 DPA_DeletePtr(infoPtr->items, DPA_GetPtrIndex(infoPtr->items, item));
988 COMCTL32_Free(item);
989 if (infoPtr->selectedItem == item)
990 infoPtr->selectedItem = NULL;
991 if (infoPtr->hotItem == item)
992 infoPtr->hotItem = NULL;
993 if (infoPtr->focusedItem == item)
994 infoPtr->focusedItem = NULL;
995 if (infoPtr->firstVisible == item)
996 infoPtr->firstVisible = NULL;
997 if (infoPtr->dropItem == item)
998 infoPtr->dropItem = NULL;
999 if (infoPtr->insertMarkItem == item)
1000 infoPtr->insertMarkItem = NULL;
1004 /* Item Insertion *******************************************************/
1006 /***************************************************************************
1007 * This method inserts newItem before sibling as a child of parent.
1008 * sibling can be NULL, but only if parent has no children.
1010 static void
1011 TREEVIEW_InsertBefore(TREEVIEW_ITEM *newItem, TREEVIEW_ITEM *sibling,
1012 TREEVIEW_ITEM *parent)
1014 assert(newItem != NULL);
1015 assert(parent != NULL);
1017 if (sibling != NULL)
1019 assert(sibling->parent == parent);
1021 if (sibling->prevSibling != NULL)
1022 sibling->prevSibling->nextSibling = newItem;
1024 newItem->prevSibling = sibling->prevSibling;
1025 sibling->prevSibling = newItem;
1027 else
1028 newItem->prevSibling = NULL;
1030 newItem->nextSibling = sibling;
1032 if (parent->firstChild == sibling)
1033 parent->firstChild = newItem;
1035 if (parent->lastChild == NULL)
1036 parent->lastChild = newItem;
1039 /***************************************************************************
1040 * This method inserts newItem after sibling as a child of parent.
1041 * sibling can be NULL, but only if parent has no children.
1043 static void
1044 TREEVIEW_InsertAfter(TREEVIEW_ITEM *newItem, TREEVIEW_ITEM *sibling,
1045 TREEVIEW_ITEM *parent)
1047 assert(newItem != NULL);
1048 assert(parent != NULL);
1050 if (sibling != NULL)
1052 assert(sibling->parent == parent);
1054 if (sibling->nextSibling != NULL)
1055 sibling->nextSibling->prevSibling = newItem;
1057 newItem->nextSibling = sibling->nextSibling;
1058 sibling->nextSibling = newItem;
1060 else
1061 newItem->nextSibling = NULL;
1063 newItem->prevSibling = sibling;
1065 if (parent->lastChild == sibling)
1066 parent->lastChild = newItem;
1068 if (parent->firstChild == NULL)
1069 parent->firstChild = newItem;
1072 static BOOL
1073 TREEVIEW_DoSetItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
1074 const TVITEMEXA *tvItem)
1076 UINT callbackClear = 0;
1077 UINT callbackSet = 0;
1079 /* Do this first in case it fails. */
1080 if (tvItem->mask & TVIF_TEXT)
1082 wineItem->textWidth = 0; /* force width recalculation */
1083 if (tvItem->pszText != LPSTR_TEXTCALLBACKA)
1085 int len = lstrlenA(tvItem->pszText) + 1;
1086 LPSTR newText = COMCTL32_ReAlloc(wineItem->pszText, len);
1088 if (newText == NULL) return FALSE;
1090 callbackClear |= TVIF_TEXT;
1092 wineItem->pszText = newText;
1093 wineItem->cchTextMax = len;
1094 lstrcpynA(wineItem->pszText, tvItem->pszText, len);
1095 TRACE("setting text %s, item %p\n",
1096 debugstr_a(wineItem->pszText), wineItem);
1098 else
1100 callbackSet |= TVIF_TEXT;
1102 wineItem->pszText = COMCTL32_ReAlloc(wineItem->pszText,
1103 TEXT_CALLBACK_SIZE);
1104 wineItem->cchTextMax = TEXT_CALLBACK_SIZE;
1105 TRACE("setting callback, item %p\n",
1106 wineItem);
1110 if (tvItem->mask & TVIF_CHILDREN)
1112 wineItem->cChildren = tvItem->cChildren;
1114 if (wineItem->cChildren == I_CHILDRENCALLBACK)
1115 callbackSet |= TVIF_CHILDREN;
1116 else
1117 callbackClear |= TVIF_CHILDREN;
1120 if (tvItem->mask & TVIF_IMAGE)
1122 wineItem->iImage = tvItem->iImage;
1124 if (wineItem->iImage == I_IMAGECALLBACK)
1125 callbackSet |= TVIF_IMAGE;
1126 else
1127 callbackClear |= TVIF_IMAGE;
1130 if (tvItem->mask & TVIF_SELECTEDIMAGE)
1132 wineItem->iSelectedImage = tvItem->iSelectedImage;
1134 if (wineItem->iSelectedImage == I_IMAGECALLBACK)
1135 callbackSet |= TVIF_SELECTEDIMAGE;
1136 else
1137 callbackClear |= TVIF_SELECTEDIMAGE;
1140 if (tvItem->mask & TVIF_PARAM)
1141 wineItem->lParam = tvItem->lParam;
1143 /* If the application sets TVIF_INTEGRAL without
1144 * supplying a TVITEMEX structure, it's toast. */
1145 if (tvItem->mask & TVIF_INTEGRAL)
1146 wineItem->iIntegral = tvItem->iIntegral;
1148 if (tvItem->mask & TVIF_STATE)
1150 TRACE("prevstate,state,mask:%x,%x,%x\n", wineItem->state, tvItem->state,
1151 tvItem->stateMask);
1152 wineItem->state &= ~tvItem->stateMask;
1153 wineItem->state |= (tvItem->state & tvItem->stateMask);
1156 wineItem->callbackMask |= callbackSet;
1157 wineItem->callbackMask &= ~callbackClear;
1159 return TRUE;
1162 /* Note that the new item is pre-zeroed. */
1163 static LRESULT
1164 TREEVIEW_InsertItemA(TREEVIEW_INFO *infoPtr, LPARAM lParam)
1166 const TVINSERTSTRUCTA *ptdi = (LPTVINSERTSTRUCTA) lParam;
1167 const TVITEMEXA *tvItem = &ptdi->DUMMYUNIONNAME.itemex;
1168 HTREEITEM insertAfter;
1169 TREEVIEW_ITEM *newItem, *parentItem;
1170 BOOL bTextUpdated = FALSE;
1172 if (ptdi->hParent == TVI_ROOT || ptdi->hParent == 0)
1174 parentItem = infoPtr->root;
1176 else
1178 parentItem = ptdi->hParent;
1180 if (!TREEVIEW_ValidItem(infoPtr, parentItem))
1182 WARN("invalid parent %p\n", parentItem);
1183 return (LRESULT)(HTREEITEM)NULL;
1187 insertAfter = ptdi->hInsertAfter;
1189 /* Validate this now for convenience. */
1190 switch ((DWORD)insertAfter)
1192 case (DWORD)TVI_FIRST:
1193 case (DWORD)TVI_LAST:
1194 case (DWORD)TVI_SORT:
1195 break;
1197 default:
1198 if (!TREEVIEW_ValidItem(infoPtr, insertAfter) ||
1199 insertAfter->parent != parentItem)
1201 WARN("invalid insert after %p\n", insertAfter);
1202 insertAfter = TVI_LAST;
1206 TRACE("parent %p position %p: '%s'\n", parentItem, insertAfter,
1207 (tvItem->mask & TVIF_TEXT)
1208 ? ((tvItem->pszText == LPSTR_TEXTCALLBACKA) ? "<callback>"
1209 : tvItem->pszText)
1210 : "<no label>");
1212 newItem = TREEVIEW_AllocateItem(infoPtr);
1213 if (newItem == NULL)
1214 return (LRESULT)(HTREEITEM)NULL;
1216 newItem->parent = parentItem;
1217 newItem->iIntegral = 1;
1219 if (!TREEVIEW_DoSetItem(infoPtr, newItem, tvItem))
1220 return (LRESULT)(HTREEITEM)NULL;
1222 /* After this point, nothing can fail. (Except for TVI_SORT.) */
1224 infoPtr->uNumItems++;
1226 switch ((DWORD)insertAfter)
1228 case (DWORD)TVI_FIRST:
1230 TREEVIEW_ITEM *originalFirst = parentItem->firstChild;
1231 TREEVIEW_InsertBefore(newItem, parentItem->firstChild, parentItem);
1232 if (infoPtr->firstVisible == originalFirst)
1233 TREEVIEW_SetFirstVisible(infoPtr, newItem, TRUE);
1235 break;
1237 case (DWORD)TVI_LAST:
1238 TREEVIEW_InsertAfter(newItem, parentItem->lastChild, parentItem);
1239 break;
1241 /* hInsertAfter names a specific item we want to insert after */
1242 default:
1243 TREEVIEW_InsertAfter(newItem, insertAfter, insertAfter->parent);
1244 break;
1246 case (DWORD)TVI_SORT:
1248 TREEVIEW_ITEM *aChild;
1249 TREEVIEW_ITEM *previousChild = NULL;
1250 BOOL bItemInserted = FALSE;
1252 aChild = parentItem->firstChild;
1254 bTextUpdated = TRUE;
1255 TREEVIEW_UpdateDispInfo(infoPtr, newItem, TVIF_TEXT);
1257 /* Iterate the parent children to see where we fit in */
1258 while (aChild != NULL)
1260 INT comp;
1262 TREEVIEW_UpdateDispInfo(infoPtr, aChild, TVIF_TEXT);
1263 comp = lstrcmpA(newItem->pszText, aChild->pszText);
1265 if (comp < 0) /* we are smaller than the current one */
1267 TREEVIEW_InsertBefore(newItem, aChild, parentItem);
1268 bItemInserted = TRUE;
1269 break;
1271 else if (comp > 0) /* we are bigger than the current one */
1273 previousChild = aChild;
1275 /* This will help us to exit if there is no more sibling */
1276 aChild = (aChild->nextSibling == 0)
1277 ? NULL
1278 : aChild->nextSibling;
1280 /* Look at the next item */
1281 continue;
1283 else if (comp == 0)
1286 * An item with this name is already existing, therefore,
1287 * we add after the one we found
1289 TREEVIEW_InsertAfter(newItem, aChild, parentItem);
1290 bItemInserted = TRUE;
1291 break;
1296 * we reach the end of the child list and the item has not
1297 * yet been inserted, therefore, insert it after the last child.
1299 if ((!bItemInserted) && (aChild == NULL))
1300 TREEVIEW_InsertAfter(newItem, previousChild, parentItem);
1302 break;
1307 TRACE("new item %p; parent %p, mask %x\n", newItem,
1308 newItem->parent, tvItem->mask);
1310 newItem->iLevel = newItem->parent->iLevel + 1;
1312 if (newItem->parent->cChildren == 0)
1313 newItem->parent->cChildren = 1;
1315 if (infoPtr->dwStyle & TVS_CHECKBOXES)
1317 if (STATEIMAGEINDEX(newItem->state) == 0)
1318 newItem->state |= INDEXTOSTATEIMAGEMASK(1);
1321 if (infoPtr->firstVisible == NULL)
1322 infoPtr->firstVisible = newItem;
1324 TREEVIEW_VerifyTree(infoPtr);
1326 if (parentItem == infoPtr->root ||
1327 (ISVISIBLE(parentItem) && parentItem->state & TVIS_EXPANDED))
1329 TREEVIEW_ITEM *item;
1330 TREEVIEW_ITEM *prev = TREEVIEW_GetPrevListItem(infoPtr, newItem);
1332 TREEVIEW_RecalculateVisibleOrder(infoPtr, prev);
1333 TREEVIEW_ComputeItemInternalMetrics(infoPtr, newItem);
1335 if (!bTextUpdated)
1336 TREEVIEW_UpdateDispInfo(infoPtr, newItem, TVIF_TEXT);
1338 TREEVIEW_ComputeTextWidth(infoPtr, newItem, 0);
1339 TREEVIEW_UpdateScrollBars(infoPtr);
1341 * if the item was inserted in a visible part of the tree,
1342 * invalidate it, as well as those after it
1344 for (item = newItem;
1345 item != NULL;
1346 item = TREEVIEW_GetNextListItem(infoPtr, item))
1347 TREEVIEW_Invalidate(infoPtr, item);
1349 else
1351 newItem->visibleOrder = -1;
1353 /* refresh treeview if newItem is the first item inserted under parentItem */
1354 if (ISVISIBLE(parentItem) && newItem->prevSibling == newItem->nextSibling)
1356 /* parent got '+' - update it */
1357 TREEVIEW_Invalidate(infoPtr, parentItem);
1361 return (LRESULT)newItem;
1365 static LRESULT
1366 TREEVIEW_InsertItemW(TREEVIEW_INFO *infoPtr, LPARAM lParam)
1368 TVINSERTSTRUCTW *tvisW;
1369 TVINSERTSTRUCTA tvisA;
1370 LRESULT lRes;
1372 tvisW = (LPTVINSERTSTRUCTW) lParam;
1374 tvisA.hParent = tvisW->hParent;
1375 tvisA.hInsertAfter = tvisW->hInsertAfter;
1377 tvisA.DUMMYUNIONNAME.item.mask = tvisW->DUMMYUNIONNAME.item.mask;
1378 tvisA.DUMMYUNIONNAME.item.hItem = tvisW->DUMMYUNIONNAME.item.hItem;
1379 tvisA.DUMMYUNIONNAME.item.state = tvisW->DUMMYUNIONNAME.item.state;
1380 tvisA.DUMMYUNIONNAME.item.stateMask = tvisW->DUMMYUNIONNAME.item.stateMask;
1381 tvisA.DUMMYUNIONNAME.item.cchTextMax =
1382 tvisW->DUMMYUNIONNAME.item.cchTextMax;
1384 if (tvisW->DUMMYUNIONNAME.item.pszText)
1386 if (tvisW->DUMMYUNIONNAME.item.pszText != LPSTR_TEXTCALLBACKW)
1388 int len = WideCharToMultiByte( CP_ACP, 0, tvisW->DUMMYUNIONNAME.item.pszText, -1,
1389 NULL, 0, NULL, NULL );
1390 tvisA.DUMMYUNIONNAME.item.pszText = COMCTL32_Alloc(len);
1391 WideCharToMultiByte( CP_ACP, 0, tvisW->DUMMYUNIONNAME.item.pszText, -1,
1392 tvisA.DUMMYUNIONNAME.item.pszText, len, NULL, NULL );
1394 else
1396 tvisA.DUMMYUNIONNAME.item.pszText = LPSTR_TEXTCALLBACKA;
1397 tvisA.DUMMYUNIONNAME.item.cchTextMax = 0;
1401 tvisA.DUMMYUNIONNAME.item.iImage = tvisW->DUMMYUNIONNAME.item.iImage;
1402 tvisA.DUMMYUNIONNAME.item.iSelectedImage =
1403 tvisW->DUMMYUNIONNAME.item.iSelectedImage;
1404 tvisA.DUMMYUNIONNAME.item.cChildren = tvisW->DUMMYUNIONNAME.item.cChildren;
1405 tvisA.DUMMYUNIONNAME.item.lParam = tvisW->DUMMYUNIONNAME.item.lParam;
1407 lRes = TREEVIEW_InsertItemA(infoPtr, (LPARAM)&tvisA);
1409 if (tvisA.DUMMYUNIONNAME.item.pszText != LPSTR_TEXTCALLBACKA)
1411 COMCTL32_Free(tvisA.DUMMYUNIONNAME.item.pszText);
1414 return lRes;
1419 /* Item Deletion ************************************************************/
1420 static void
1421 TREEVIEW_RemoveItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem);
1423 static void
1424 TREEVIEW_RemoveAllChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *parentItem)
1426 TREEVIEW_ITEM *kill = parentItem->firstChild;
1428 while (kill != NULL)
1430 TREEVIEW_ITEM *next = kill->nextSibling;
1432 TREEVIEW_RemoveItem(infoPtr, kill);
1434 kill = next;
1437 assert(parentItem->cChildren <= 0); /* I_CHILDRENCALLBACK or 0 */
1438 assert(parentItem->firstChild == NULL);
1439 assert(parentItem->lastChild == NULL);
1442 static void
1443 TREEVIEW_UnlinkItem(TREEVIEW_ITEM *item)
1445 TREEVIEW_ITEM *parentItem = item->parent;
1447 assert(item != NULL);
1448 assert(item->parent != NULL); /* i.e. it must not be the root */
1450 if (parentItem->firstChild == item)
1451 parentItem->firstChild = item->nextSibling;
1453 if (parentItem->lastChild == item)
1454 parentItem->lastChild = item->prevSibling;
1456 if (parentItem->firstChild == NULL && parentItem->lastChild == NULL
1457 && parentItem->cChildren > 0)
1458 parentItem->cChildren = 0;
1460 if (item->prevSibling)
1461 item->prevSibling->nextSibling = item->nextSibling;
1463 if (item->nextSibling)
1464 item->nextSibling->prevSibling = item->prevSibling;
1467 static void
1468 TREEVIEW_RemoveItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem)
1470 TRACE("%p, (%s)\n", wineItem, TREEVIEW_ItemName(wineItem));
1472 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_DELETEITEMW, TVC_UNKNOWN,
1473 TVIF_HANDLE | TVIF_PARAM, wineItem, 0);
1475 if (wineItem->firstChild)
1476 TREEVIEW_RemoveAllChildren(infoPtr, wineItem);
1478 TREEVIEW_UnlinkItem(wineItem);
1480 infoPtr->uNumItems--;
1482 if (wineItem->pszText != LPSTR_TEXTCALLBACKA)
1483 COMCTL32_Free(wineItem->pszText);
1485 TREEVIEW_FreeItem(infoPtr, wineItem);
1489 /* Empty out the tree. */
1490 static void
1491 TREEVIEW_RemoveTree(TREEVIEW_INFO *infoPtr)
1493 TREEVIEW_RemoveAllChildren(infoPtr, infoPtr->root);
1495 assert(infoPtr->uNumItems == 0); /* root isn't counted in uNumItems */
1498 static LRESULT
1499 TREEVIEW_DeleteItem(TREEVIEW_INFO *infoPtr, HTREEITEM wineItem)
1501 TREEVIEW_ITEM *oldSelection = infoPtr->selectedItem;
1502 TREEVIEW_ITEM *newSelection = oldSelection;
1503 TREEVIEW_ITEM *newFirstVisible = NULL;
1504 TREEVIEW_ITEM *parent, *prev = NULL;
1505 BOOL visible = FALSE;
1507 if (wineItem == TVI_ROOT)
1509 TRACE("TVI_ROOT\n");
1510 parent = infoPtr->root;
1511 newSelection = NULL;
1512 visible = TRUE;
1513 TREEVIEW_RemoveTree(infoPtr);
1515 else
1517 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
1518 return FALSE;
1520 TRACE("%p (%s)\n", wineItem, TREEVIEW_ItemName(wineItem));
1521 parent = wineItem->parent;
1523 if (ISVISIBLE(wineItem))
1525 prev = TREEVIEW_GetPrevListItem(infoPtr, wineItem);
1526 visible = TRUE;
1529 if (infoPtr->selectedItem != NULL
1530 && (wineItem == infoPtr->selectedItem
1531 || TREEVIEW_IsChildOf(wineItem, infoPtr->selectedItem)))
1533 if (wineItem->nextSibling)
1534 newSelection = wineItem->nextSibling;
1535 else if (wineItem->parent != infoPtr->root)
1536 newSelection = wineItem->parent;
1539 if (infoPtr->firstVisible == wineItem)
1541 if (wineItem->nextSibling)
1542 newFirstVisible = wineItem->nextSibling;
1543 else if (wineItem->prevSibling)
1544 newFirstVisible = wineItem->prevSibling;
1545 else if (wineItem->parent != infoPtr->root)
1546 newFirstVisible = wineItem->parent;
1547 TREEVIEW_SetFirstVisible(infoPtr, NULL, TRUE);
1549 else
1550 newFirstVisible = infoPtr->firstVisible;
1552 TREEVIEW_RemoveItem(infoPtr, wineItem);
1555 /* Don't change if somebody else already has. */
1556 if (oldSelection == infoPtr->selectedItem)
1558 if (TREEVIEW_ValidItem(infoPtr, newSelection))
1559 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, newSelection, TVC_UNKNOWN);
1560 else
1561 infoPtr->selectedItem = 0;
1564 /* Validate insertMark dropItem.
1565 * hotItem ??? - used for comparison only.
1567 if (!TREEVIEW_ValidItem(infoPtr, infoPtr->insertMarkItem))
1568 infoPtr->insertMarkItem = 0;
1570 if (!TREEVIEW_ValidItem(infoPtr, infoPtr->dropItem))
1571 infoPtr->dropItem = 0;
1573 if (!TREEVIEW_ValidItem(infoPtr, newFirstVisible))
1574 newFirstVisible = infoPtr->root->firstChild;
1576 TREEVIEW_VerifyTree(infoPtr);
1579 if (visible)
1581 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
1582 TREEVIEW_RecalculateVisibleOrder(infoPtr, prev);
1583 TREEVIEW_UpdateScrollBars(infoPtr);
1584 TREEVIEW_Invalidate(infoPtr, NULL);
1586 else if (ISVISIBLE(parent) && !TREEVIEW_HasChildren(infoPtr, parent))
1588 /* parent lost '+/-' - update it */
1589 TREEVIEW_Invalidate(infoPtr, parent);
1592 return TRUE;
1596 /* Get/Set Messages *********************************************************/
1597 static LRESULT
1598 TREEVIEW_SetRedraw(TREEVIEW_INFO* infoPtr, WPARAM wParam, LPARAM lParam)
1600 if(wParam)
1601 infoPtr->bRedraw = TRUE;
1602 else
1603 infoPtr->bRedraw = FALSE;
1605 return 0;
1608 static LRESULT
1609 TREEVIEW_GetIndent(TREEVIEW_INFO *infoPtr)
1611 TRACE("\n");
1612 return infoPtr->uIndent;
1615 static LRESULT
1616 TREEVIEW_SetIndent(TREEVIEW_INFO *infoPtr, UINT newIndent)
1618 TRACE("\n");
1620 if (newIndent < MINIMUM_INDENT)
1621 newIndent = MINIMUM_INDENT;
1623 if (infoPtr->uIndent != newIndent)
1625 infoPtr->uIndent = newIndent;
1626 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1627 TREEVIEW_UpdateScrollBars(infoPtr);
1628 TREEVIEW_Invalidate(infoPtr, NULL);
1631 return 0;
1635 static LRESULT
1636 TREEVIEW_GetToolTips(TREEVIEW_INFO *infoPtr)
1638 TRACE("\n");
1639 return (LRESULT)infoPtr->hwndToolTip;
1642 static LRESULT
1643 TREEVIEW_SetToolTips(TREEVIEW_INFO *infoPtr, HWND hwndTT)
1645 HWND prevToolTip;
1647 TRACE("\n");
1648 prevToolTip = infoPtr->hwndToolTip;
1649 infoPtr->hwndToolTip = hwndTT;
1651 return (LRESULT)prevToolTip;
1655 static LRESULT
1656 TREEVIEW_GetScrollTime(TREEVIEW_INFO *infoPtr)
1658 return infoPtr->uScrollTime;
1661 static LRESULT
1662 TREEVIEW_SetScrollTime(TREEVIEW_INFO *infoPtr, UINT uScrollTime)
1664 UINT uOldScrollTime = infoPtr->uScrollTime;
1666 infoPtr->uScrollTime = min(uScrollTime, 100);
1668 return uOldScrollTime;
1672 static LRESULT
1673 TREEVIEW_GetImageList(TREEVIEW_INFO *infoPtr, WPARAM wParam)
1675 TRACE("\n");
1677 switch (wParam)
1679 case (WPARAM)TVSIL_NORMAL:
1680 return (LRESULT)infoPtr->himlNormal;
1682 case (WPARAM)TVSIL_STATE:
1683 return (LRESULT)infoPtr->himlState;
1685 default:
1686 return 0;
1690 static LRESULT
1691 TREEVIEW_SetImageList(TREEVIEW_INFO *infoPtr, WPARAM wParam, HIMAGELIST himlNew)
1693 HIMAGELIST himlOld = 0;
1694 int oldWidth = infoPtr->normalImageWidth;
1695 int oldHeight = infoPtr->normalImageHeight;
1698 TRACE("%x,%p\n", wParam, himlNew);
1700 switch (wParam)
1702 case (WPARAM)TVSIL_NORMAL:
1703 himlOld = infoPtr->himlNormal;
1704 infoPtr->himlNormal = himlNew;
1706 if (himlNew != NULL)
1707 ImageList_GetIconSize(himlNew, &infoPtr->normalImageWidth,
1708 &infoPtr->normalImageHeight);
1709 else
1711 infoPtr->normalImageWidth = 0;
1712 infoPtr->normalImageHeight = 0;
1715 break;
1717 case (WPARAM)TVSIL_STATE:
1718 himlOld = infoPtr->himlState;
1719 infoPtr->himlState = himlNew;
1721 if (himlNew != NULL)
1722 ImageList_GetIconSize(himlNew, &infoPtr->stateImageWidth,
1723 &infoPtr->stateImageHeight);
1724 else
1726 infoPtr->stateImageWidth = 0;
1727 infoPtr->stateImageHeight = 0;
1730 break;
1733 if (oldWidth != infoPtr->normalImageWidth ||
1734 oldHeight != infoPtr->normalImageHeight)
1736 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1737 TREEVIEW_UpdateScrollBars(infoPtr);
1740 TREEVIEW_Invalidate(infoPtr, NULL);
1742 return (LRESULT)himlOld;
1745 /* Compute the natural height (based on the font size) for items. */
1746 static UINT
1747 TREEVIEW_NaturalHeight(TREEVIEW_INFO *infoPtr)
1749 TEXTMETRICA tm;
1750 HDC hdc = GetDC(0);
1751 HFONT hOldFont = SelectObject(hdc, infoPtr->hFont);
1753 GetTextMetricsA(hdc, &tm);
1755 SelectObject(hdc, hOldFont);
1756 ReleaseDC(0, hdc);
1758 /* The 16 is a hack because our fonts are tiny. */
1759 /* add 2 for the focus border and 1 more for margin some apps assume */
1760 return max(16, tm.tmHeight + tm.tmExternalLeading + 3);
1763 static LRESULT
1764 TREEVIEW_SetItemHeight(TREEVIEW_INFO *infoPtr, INT newHeight)
1766 INT prevHeight = infoPtr->uItemHeight;
1768 TRACE("%d \n", newHeight);
1769 if (newHeight == -1)
1771 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
1772 infoPtr->bHeightSet = FALSE;
1774 else
1776 infoPtr->uItemHeight = newHeight;
1777 infoPtr->bHeightSet = TRUE;
1780 /* Round down, unless we support odd ("non even") heights. */
1781 if (!(infoPtr->dwStyle) & TVS_NONEVENHEIGHT)
1782 infoPtr->uItemHeight &= ~1;
1784 if (infoPtr->uItemHeight != prevHeight)
1786 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1787 TREEVIEW_UpdateScrollBars(infoPtr);
1788 TREEVIEW_Invalidate(infoPtr, NULL);
1791 return prevHeight;
1794 static LRESULT
1795 TREEVIEW_GetItemHeight(TREEVIEW_INFO *infoPtr)
1797 TRACE("\n");
1798 return infoPtr->uItemHeight;
1802 static LRESULT
1803 TREEVIEW_GetFont(TREEVIEW_INFO *infoPtr)
1805 TRACE("%p\n", infoPtr->hFont);
1806 return (LRESULT)infoPtr->hFont;
1810 static INT CALLBACK
1811 TREEVIEW_ResetTextWidth(LPVOID pItem, DWORD unused)
1813 (void)unused;
1815 ((TREEVIEW_ITEM *)pItem)->textWidth = 0;
1817 return 1;
1820 static LRESULT
1821 TREEVIEW_SetFont(TREEVIEW_INFO *infoPtr, HFONT hFont, BOOL bRedraw)
1823 UINT uHeight = infoPtr->uItemHeight;
1825 TRACE("%p %i\n", hFont, bRedraw);
1827 infoPtr->hFont = hFont ? hFont : GetStockObject(SYSTEM_FONT);
1829 DeleteObject(infoPtr->hBoldFont);
1830 infoPtr->hBoldFont = TREEVIEW_CreateBoldFont(infoPtr->hFont);
1832 if (!infoPtr->bHeightSet)
1833 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
1835 if (uHeight != infoPtr->uItemHeight)
1836 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
1838 DPA_EnumCallback(infoPtr->items, TREEVIEW_ResetTextWidth, 0);
1840 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
1841 TREEVIEW_UpdateScrollBars(infoPtr);
1843 if (bRedraw)
1844 TREEVIEW_Invalidate(infoPtr, NULL);
1846 return 0;
1850 static LRESULT
1851 TREEVIEW_GetLineColor(TREEVIEW_INFO *infoPtr)
1853 TRACE("\n");
1854 return (LRESULT)infoPtr->clrLine;
1857 static LRESULT
1858 TREEVIEW_SetLineColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1860 COLORREF prevColor = infoPtr->clrLine;
1862 TRACE("\n");
1863 infoPtr->clrLine = color;
1864 return (LRESULT)prevColor;
1868 static LRESULT
1869 TREEVIEW_GetTextColor(TREEVIEW_INFO *infoPtr)
1871 TRACE("\n");
1872 return (LRESULT)infoPtr->clrText;
1875 static LRESULT
1876 TREEVIEW_SetTextColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1878 COLORREF prevColor = infoPtr->clrText;
1880 TRACE("\n");
1881 infoPtr->clrText = color;
1883 if (infoPtr->clrText != prevColor)
1884 TREEVIEW_Invalidate(infoPtr, NULL);
1886 return (LRESULT)prevColor;
1890 static LRESULT
1891 TREEVIEW_GetBkColor(TREEVIEW_INFO *infoPtr)
1893 TRACE("\n");
1894 return (LRESULT)infoPtr->clrBk;
1897 static LRESULT
1898 TREEVIEW_SetBkColor(TREEVIEW_INFO *infoPtr, COLORREF newColor)
1900 COLORREF prevColor = infoPtr->clrBk;
1902 TRACE("\n");
1903 infoPtr->clrBk = newColor;
1905 if (newColor != prevColor)
1906 TREEVIEW_Invalidate(infoPtr, NULL);
1908 return (LRESULT)prevColor;
1912 static LRESULT
1913 TREEVIEW_GetInsertMarkColor(TREEVIEW_INFO *infoPtr)
1915 TRACE("\n");
1916 return (LRESULT)infoPtr->clrInsertMark;
1919 static LRESULT
1920 TREEVIEW_SetInsertMarkColor(TREEVIEW_INFO *infoPtr, COLORREF color)
1922 COLORREF prevColor = infoPtr->clrInsertMark;
1924 TRACE("%lx\n", color);
1925 infoPtr->clrInsertMark = color;
1927 return (LRESULT)prevColor;
1931 static LRESULT
1932 TREEVIEW_SetInsertMark(TREEVIEW_INFO *infoPtr, BOOL wParam, HTREEITEM item)
1934 TRACE("%d %p\n", wParam, item);
1936 if (!TREEVIEW_ValidItem(infoPtr, item))
1937 return 0;
1939 infoPtr->insertBeforeorAfter = wParam;
1940 infoPtr->insertMarkItem = item;
1942 TREEVIEW_Invalidate(infoPtr, NULL);
1944 return 1;
1948 /************************************************************************
1949 * Some serious braindamage here. lParam is a pointer to both the
1950 * input HTREEITEM and the output RECT.
1952 static LRESULT
1953 TREEVIEW_GetItemRect(TREEVIEW_INFO *infoPtr, BOOL fTextRect, LPRECT lpRect)
1955 TREEVIEW_ITEM *wineItem;
1956 const HTREEITEM *pItem = (HTREEITEM *)lpRect;
1958 TRACE("\n");
1960 * validate parameters
1962 if (pItem == NULL)
1963 return FALSE;
1965 wineItem = *pItem;
1966 if (!TREEVIEW_ValidItem(infoPtr, wineItem) || !ISVISIBLE(wineItem))
1967 return FALSE;
1970 * If wParam is TRUE return the text size otherwise return
1971 * the whole item size
1973 if (fTextRect)
1975 /* Windows does not send TVN_GETDISPINFO here. */
1977 lpRect->top = wineItem->rect.top;
1978 lpRect->bottom = wineItem->rect.bottom;
1980 lpRect->left = wineItem->textOffset;
1981 lpRect->right = wineItem->textOffset + wineItem->textWidth;
1983 else
1985 *lpRect = wineItem->rect;
1988 TRACE("%s [L:%ld R:%ld T:%ld B:%ld]\n", fTextRect ? "text" : "item",
1989 lpRect->left, lpRect->right, lpRect->top, lpRect->bottom);
1991 return TRUE;
1994 static inline LRESULT
1995 TREEVIEW_GetVisibleCount(TREEVIEW_INFO *infoPtr)
1997 /* Suprise! This does not take integral height into account. */
1998 return infoPtr->clientHeight / infoPtr->uItemHeight;
2002 static LRESULT
2003 TREEVIEW_GetItemA(TREEVIEW_INFO *infoPtr, LPTVITEMEXA tvItem)
2005 TREEVIEW_ITEM *wineItem;
2007 wineItem = tvItem->hItem;
2008 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2009 return FALSE;
2011 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, tvItem->mask);
2013 if (tvItem->mask & TVIF_CHILDREN)
2014 tvItem->cChildren = wineItem->cChildren;
2016 if (tvItem->mask & TVIF_HANDLE)
2017 tvItem->hItem = wineItem;
2019 if (tvItem->mask & TVIF_IMAGE)
2020 tvItem->iImage = wineItem->iImage;
2022 if (tvItem->mask & TVIF_INTEGRAL)
2023 tvItem->iIntegral = wineItem->iIntegral;
2025 /* undocumented: windows ignores TVIF_PARAM and
2026 * * always sets lParam
2028 tvItem->lParam = wineItem->lParam;
2030 if (tvItem->mask & TVIF_SELECTEDIMAGE)
2031 tvItem->iSelectedImage = wineItem->iSelectedImage;
2033 if (tvItem->mask & TVIF_STATE) {
2034 /* Careful here - Windows ignores the stateMask when you get the state
2035 That contradicts the documentation, but makes more common sense, masking
2036 retrieval in this way seems overkill */
2037 tvItem->state = wineItem->state;
2040 if (tvItem->mask & TVIF_TEXT)
2041 lstrcpynA(tvItem->pszText, wineItem->pszText, tvItem->cchTextMax);
2043 TRACE("item <%p>, txt %p, img %p, mask %x\n",
2044 wineItem, tvItem->pszText, &tvItem->iImage, tvItem->mask);
2046 return TRUE;
2049 /* Beware MSDN Library Visual Studio 6.0. It says -1 on failure, 0 on success,
2050 * which is wrong. */
2051 static LRESULT
2052 TREEVIEW_SetItemA(TREEVIEW_INFO *infoPtr, LPTVITEMEXA tvItem)
2054 TREEVIEW_ITEM *wineItem;
2055 TREEVIEW_ITEM originalItem;
2057 wineItem = tvItem->hItem;
2059 TRACE("item %d,mask %x\n", TREEVIEW_GetItemIndex(infoPtr, wineItem),
2060 tvItem->mask);
2062 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2063 return FALSE;
2065 /* store the orignal item values */
2066 originalItem = *wineItem;
2068 if (!TREEVIEW_DoSetItem(infoPtr, wineItem, tvItem))
2069 return FALSE;
2071 /* If the text or TVIS_BOLD was changed, and it is visible, recalculate. */
2072 if ((tvItem->mask & TVIF_TEXT
2073 || (tvItem->mask & TVIF_STATE && tvItem->stateMask & TVIS_BOLD))
2074 && ISVISIBLE(wineItem))
2076 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, TVIF_TEXT);
2077 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, 0);
2080 if (tvItem->mask != 0 && ISVISIBLE(wineItem))
2082 /* The refresh updates everything, but we can't wait until then. */
2083 TREEVIEW_ComputeItemInternalMetrics(infoPtr, wineItem);
2085 /* if any of the items values changed, redraw the item */
2086 if(memcmp(&originalItem, wineItem, sizeof(TREEVIEW_ITEM)))
2088 if (tvItem->mask & TVIF_INTEGRAL)
2090 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
2091 TREEVIEW_UpdateScrollBars(infoPtr);
2093 TREEVIEW_Invalidate(infoPtr, NULL);
2095 else
2097 TREEVIEW_UpdateScrollBars(infoPtr);
2098 TREEVIEW_Invalidate(infoPtr, wineItem);
2103 return TRUE;
2106 static LRESULT
2107 TREEVIEW_GetItemW(TREEVIEW_INFO *infoPtr, LPTVITEMEXW tvItem)
2109 TREEVIEW_ITEM *wineItem;
2110 INT iItem;
2111 iItem = (INT)tvItem->hItem;
2113 wineItem = tvItem->hItem;
2114 if(!TREEVIEW_ValidItem (infoPtr, wineItem))
2115 return FALSE;
2117 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, tvItem->mask);
2119 if (tvItem->mask & TVIF_CHILDREN) {
2120 if (TVIF_CHILDREN==I_CHILDRENCALLBACK)
2121 FIXME("I_CHILDRENCALLBACK not supported\n");
2122 tvItem->cChildren = wineItem->cChildren;
2125 if (tvItem->mask & TVIF_HANDLE) {
2126 tvItem->hItem = wineItem;
2128 if (tvItem->mask & TVIF_IMAGE) {
2129 tvItem->iImage = wineItem->iImage;
2131 if (tvItem->mask & TVIF_INTEGRAL) {
2132 tvItem->iIntegral = wineItem->iIntegral;
2134 /* undocumented: windows ignores TVIF_PARAM and
2135 * always sets lParam */
2136 tvItem->lParam = wineItem->lParam;
2137 if (tvItem->mask & TVIF_SELECTEDIMAGE) {
2138 tvItem->iSelectedImage = wineItem->iSelectedImage;
2140 if (tvItem->mask & TVIF_STATE) {
2141 tvItem->state = wineItem->state & tvItem->stateMask;
2144 if (tvItem->mask & TVIF_TEXT) {
2145 if (wineItem->pszText == LPSTR_TEXTCALLBACKA) {
2146 tvItem->pszText = LPSTR_TEXTCALLBACKW;
2147 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2149 else if (wineItem->pszText) {
2150 TRACE("orig str %s at %p\n",
2151 debugstr_a(wineItem->pszText), wineItem->pszText);
2152 MultiByteToWideChar(CP_ACP, 0, wineItem->pszText,
2153 -1 , tvItem->pszText, tvItem->cchTextMax);
2157 TRACE("item %d<%p>, txt %p<%s>, img %p, action %x\n",
2158 iItem, tvItem, tvItem->pszText, debugstr_w(tvItem->pszText),
2159 &tvItem->iImage, tvItem->mask);
2160 return TRUE;
2163 static LRESULT
2164 TREEVIEW_SetItemW(TREEVIEW_INFO *infoPtr, LPTVITEMEXW tvItem)
2166 TVITEMEXA tvItemA;
2167 INT len;
2168 LRESULT rc;
2170 tvItemA.mask = tvItem->mask;
2171 tvItemA.hItem = tvItem->hItem;
2172 tvItemA.state = tvItem->state;
2173 tvItemA.stateMask = tvItem->stateMask;
2174 if (tvItem->mask & TVIF_TEXT) {
2175 len = WideCharToMultiByte(CP_ACP, 0, tvItem->pszText, -1,
2176 NULL ,0 , NULL,NULL);
2177 if (len) {
2178 len ++;
2179 tvItemA.pszText = HeapAlloc(GetProcessHeap(),0,len*sizeof(WCHAR));
2180 len = WideCharToMultiByte(CP_ACP, 0, tvItem->pszText, -1,
2181 tvItemA.pszText ,len*sizeof(WCHAR),
2182 NULL,NULL);
2184 else
2185 tvItemA.pszText = NULL;
2187 tvItemA.cchTextMax = tvItem->cchTextMax;
2188 tvItemA.iImage = tvItem->iImage;
2189 tvItemA.iSelectedImage = tvItem->iSelectedImage;
2190 tvItemA.cChildren = tvItem->cChildren;
2191 tvItemA.lParam = tvItem->lParam;
2192 tvItemA.iIntegral = tvItem->iIntegral;
2194 rc = TREEVIEW_SetItemA(infoPtr,&tvItemA);
2195 HeapFree(GetProcessHeap(),0,tvItemA.pszText);
2196 return rc;
2199 static LRESULT
2200 TREEVIEW_GetItemState(TREEVIEW_INFO *infoPtr, HTREEITEM wineItem, UINT mask)
2202 TRACE("\n");
2204 if (!wineItem || !TREEVIEW_ValidItem(infoPtr, wineItem))
2205 return 0;
2207 return (wineItem->state & mask);
2210 static LRESULT
2211 TREEVIEW_GetNextItem(TREEVIEW_INFO *infoPtr, UINT which, HTREEITEM wineItem)
2213 TREEVIEW_ITEM *retval;
2215 retval = 0;
2217 /* handle all the global data here */
2218 switch (which)
2220 case TVGN_CHILD: /* Special case: child of 0 is root */
2221 if (wineItem)
2222 break;
2223 /* fall through */
2224 case TVGN_ROOT:
2225 retval = infoPtr->root->firstChild;
2226 break;
2228 case TVGN_CARET:
2229 retval = infoPtr->selectedItem;
2230 break;
2232 case TVGN_FIRSTVISIBLE:
2233 retval = infoPtr->firstVisible;
2234 break;
2236 case TVGN_DROPHILITE:
2237 retval = infoPtr->dropItem;
2238 break;
2240 case TVGN_LASTVISIBLE:
2241 retval = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
2242 break;
2245 if (retval)
2247 TRACE("flags:%x, returns %p\n", which, retval);
2248 return (LRESULT)retval;
2251 if (wineItem == TVI_ROOT) wineItem = infoPtr->root;
2253 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
2254 return FALSE;
2256 switch (which)
2258 case TVGN_NEXT:
2259 retval = wineItem->nextSibling;
2260 break;
2261 case TVGN_PREVIOUS:
2262 retval = wineItem->prevSibling;
2263 break;
2264 case TVGN_PARENT:
2265 retval = (wineItem->parent != infoPtr->root) ? wineItem->parent : NULL;
2266 break;
2267 case TVGN_CHILD:
2268 retval = wineItem->firstChild;
2269 break;
2270 case TVGN_NEXTVISIBLE:
2271 retval = TREEVIEW_GetNextListItem(infoPtr, wineItem);
2272 break;
2273 case TVGN_PREVIOUSVISIBLE:
2274 retval = TREEVIEW_GetPrevListItem(infoPtr, wineItem);
2275 break;
2276 default:
2277 TRACE("Unknown msg %x,item %p\n", which, wineItem);
2278 break;
2281 TRACE("flags:%x, item %p;returns %p\n", which, wineItem, retval);
2282 return (LRESULT)retval;
2286 static LRESULT
2287 TREEVIEW_GetCount(TREEVIEW_INFO *infoPtr)
2289 TRACE(" %d\n", infoPtr->uNumItems);
2290 return (LRESULT)infoPtr->uNumItems;
2293 static VOID
2294 TREEVIEW_ToggleItemState(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
2296 if (infoPtr->dwStyle & TVS_CHECKBOXES)
2298 static const unsigned int state_table[] = { 0, 2, 1 };
2300 unsigned int state;
2302 state = STATEIMAGEINDEX(item->state);
2303 TRACE("state:%x\n", state);
2304 item->state &= ~TVIS_STATEIMAGEMASK;
2306 if (state < 3)
2307 state = state_table[state];
2309 item->state |= INDEXTOSTATEIMAGEMASK(state);
2311 TRACE("state:%x\n", state);
2312 TREEVIEW_Invalidate(infoPtr, item);
2317 /* Painting *************************************************************/
2319 /* Draw the lines and expand button for an item. Also draws one section
2320 * of the line from item's parent to item's parent's next sibling. */
2321 static void
2322 TREEVIEW_DrawItemLines(TREEVIEW_INFO *infoPtr, HDC hdc, TREEVIEW_ITEM *item)
2324 LONG centerx, centery;
2325 BOOL lar = ((infoPtr->dwStyle
2326 & (TVS_LINESATROOT|TVS_HASLINES|TVS_HASBUTTONS))
2327 > TVS_LINESATROOT);
2329 if (!lar && item->iLevel == 0)
2330 return;
2332 centerx = (item->linesOffset + item->stateOffset) / 2;
2333 centery = (item->rect.top + item->rect.bottom) / 2;
2335 if (infoPtr->dwStyle & TVS_HASLINES)
2337 HPEN hOldPen, hNewPen;
2338 HTREEITEM parent;
2341 * Get a dotted grey pen
2343 hNewPen = CreatePen(PS_ALTERNATE, 0, infoPtr->clrLine);
2344 hOldPen = SelectObject(hdc, hNewPen);
2346 MoveToEx(hdc, item->stateOffset, centery, NULL);
2347 LineTo(hdc, centerx - 1, centery);
2349 if (item->prevSibling || item->parent != infoPtr->root)
2351 MoveToEx(hdc, centerx, item->rect.top, NULL);
2352 LineTo(hdc, centerx, centery);
2355 if (item->nextSibling)
2357 MoveToEx(hdc, centerx, centery, NULL);
2358 LineTo(hdc, centerx, item->rect.bottom + 1);
2361 /* Draw the line from our parent to its next sibling. */
2362 parent = item->parent;
2363 while (parent != infoPtr->root)
2365 int pcenterx = (parent->linesOffset + parent->stateOffset) / 2;
2367 if (parent->nextSibling
2368 /* skip top-levels unless TVS_LINESATROOT */
2369 && parent->stateOffset > parent->linesOffset)
2371 MoveToEx(hdc, pcenterx, item->rect.top, NULL);
2372 LineTo(hdc, pcenterx, item->rect.bottom + 1);
2375 parent = parent->parent;
2378 SelectObject(hdc, hOldPen);
2379 DeleteObject(hNewPen);
2383 * Display the (+/-) signs
2386 if (infoPtr->dwStyle & TVS_HASBUTTONS)
2388 if (item->cChildren)
2390 LONG height = item->rect.bottom - item->rect.top;
2391 LONG width = item->stateOffset - item->linesOffset;
2392 LONG rectsize = min(height, width) / 4;
2393 /* plussize = ceil(rectsize * 3/4) */
2394 LONG plussize = (rectsize + 1) * 3 / 4;
2396 HPEN hNewPen = CreatePen(PS_SOLID, 0, infoPtr->clrLine);
2397 HPEN hOldPen = SelectObject(hdc, hNewPen);
2398 HBRUSH hbr = CreateSolidBrush(infoPtr->clrBk);
2399 HBRUSH hbrOld = SelectObject(hdc, hbr);
2401 Rectangle(hdc, centerx - rectsize, centery - rectsize,
2402 centerx + rectsize + 1, centery + rectsize + 1);
2404 SelectObject(hdc, hbrOld);
2405 DeleteObject(hbr);
2407 SelectObject(hdc, hOldPen);
2408 DeleteObject(hNewPen);
2410 MoveToEx(hdc, centerx - plussize + 1, centery, NULL);
2411 LineTo(hdc, centerx + plussize, centery);
2413 if (!(item->state & TVIS_EXPANDED))
2415 MoveToEx(hdc, centerx, centery - plussize + 1, NULL);
2416 LineTo(hdc, centerx, centery + plussize);
2422 static void
2423 TREEVIEW_DrawItem(TREEVIEW_INFO *infoPtr, HDC hdc, TREEVIEW_ITEM *wineItem)
2425 INT cditem;
2426 HFONT hOldFont;
2427 int centery;
2429 hOldFont = SelectObject(hdc, TREEVIEW_FontForItem(infoPtr, wineItem));
2431 TREEVIEW_UpdateDispInfo(infoPtr, wineItem, CALLBACK_MASK_ALL);
2433 /* The custom draw handler can query the text rectangle,
2434 * so get ready. */
2435 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, hdc);
2437 cditem = 0;
2439 if (infoPtr->cdmode & CDRF_NOTIFYITEMDRAW)
2441 cditem = TREEVIEW_SendCustomDrawItemNotify
2442 (infoPtr, hdc, wineItem, CDDS_ITEMPREPAINT);
2443 TRACE("prepaint:cditem-app returns 0x%x\n", cditem);
2445 if (cditem & CDRF_SKIPDEFAULT)
2447 SelectObject(hdc, hOldFont);
2448 return;
2452 if (cditem & CDRF_NEWFONT)
2453 TREEVIEW_ComputeTextWidth(infoPtr, wineItem, hdc);
2455 TREEVIEW_DrawItemLines(infoPtr, hdc, wineItem);
2457 centery = (wineItem->rect.top + wineItem->rect.bottom) / 2;
2460 * Display the images associated with this item
2463 INT imageIndex;
2465 /* State images are displayed to the left of the Normal image
2466 * image number is in state; zero should be `display no image'.
2468 imageIndex = STATEIMAGEINDEX(wineItem->state);
2470 if (infoPtr->himlState && imageIndex)
2472 ImageList_Draw(infoPtr->himlState, imageIndex, hdc,
2473 wineItem->stateOffset,
2474 centery - infoPtr->stateImageHeight / 2,
2475 ILD_NORMAL);
2478 /* Now, draw the normal image; can be either selected or
2479 * non-selected image.
2482 if ((wineItem->state & TVIS_SELECTED) && (wineItem->iSelectedImage))
2484 /* The item is currently selected */
2485 imageIndex = wineItem->iSelectedImage;
2487 else
2489 /* The item is not selected */
2490 imageIndex = wineItem->iImage;
2493 if (infoPtr->himlNormal)
2495 int ovlIdx = wineItem->state & TVIS_OVERLAYMASK;
2497 ImageList_Draw(infoPtr->himlNormal, imageIndex, hdc,
2498 wineItem->imageOffset,
2499 centery - infoPtr->normalImageHeight / 2,
2500 ILD_NORMAL | ovlIdx);
2506 * Display the text associated with this item
2509 /* Don't paint item's text if it's being edited */
2510 if (!infoPtr->hwndEdit || (infoPtr->selectedItem != wineItem))
2512 if (wineItem->pszText)
2514 COLORREF oldTextColor = 0;
2515 INT oldBkMode;
2516 HBRUSH hbrBk = 0;
2517 BOOL inFocus = (GetFocus() == infoPtr->hwnd);
2518 RECT rcText;
2520 oldBkMode = SetBkMode(hdc, TRANSPARENT);
2522 /* - If item is drop target or it is selected and window is in focus -
2523 * use blue background (COLOR_HIGHLIGHT).
2524 * - If item is selected, window is not in focus, but it has style
2525 * TVS_SHOWSELALWAYS - use grey background (COLOR_BTNFACE)
2526 * - Otherwise - don't fill background
2528 if ((wineItem->state & TVIS_DROPHILITED) || ((wineItem == infoPtr->focusedItem) && !(wineItem->state & TVIS_SELECTED)) ||
2529 ((wineItem->state & TVIS_SELECTED) && (!infoPtr->focusedItem) &&
2530 (inFocus || (infoPtr->dwStyle & TVS_SHOWSELALWAYS))))
2532 if ((wineItem->state & TVIS_DROPHILITED) || inFocus)
2534 hbrBk = CreateSolidBrush(GetSysColor(COLOR_HIGHLIGHT));
2535 oldTextColor =
2536 SetTextColor(hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
2538 else
2540 hbrBk = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
2542 if (infoPtr->clrText == -1)
2543 oldTextColor =
2544 SetTextColor(hdc, GetSysColor(COLOR_WINDOWTEXT));
2545 else
2546 oldTextColor = SetTextColor(hdc, infoPtr->clrText);
2549 else
2551 if (infoPtr->clrText == -1)
2552 oldTextColor =
2553 SetTextColor(hdc, GetSysColor(COLOR_WINDOWTEXT));
2554 else
2555 oldTextColor = SetTextColor(hdc, infoPtr->clrText);
2558 rcText.top = wineItem->rect.top;
2559 rcText.bottom = wineItem->rect.bottom;
2560 rcText.left = wineItem->textOffset;
2561 rcText.right = rcText.left + wineItem->textWidth + 4;
2563 if (hbrBk)
2565 FillRect(hdc, &rcText, hbrBk);
2566 DeleteObject(hbrBk);
2569 /* Draw the box around the selected item */
2570 if ((wineItem == infoPtr->selectedItem) && inFocus)
2572 DrawFocusRect(hdc,&rcText);
2575 InflateRect(&rcText, -2, -1); /* allow for the focus rect */
2577 TRACE("drawing text %s at (%ld,%ld)-(%ld,%ld)\n",
2578 debugstr_a(wineItem->pszText),
2579 rcText.left, rcText.top, rcText.right, rcText.bottom);
2581 /* Draw it */
2582 DrawTextA(hdc,
2583 wineItem->pszText,
2584 lstrlenA(wineItem->pszText),
2585 &rcText,
2586 DT_CENTER | DT_VCENTER | DT_SINGLELINE | DT_NOPREFIX);
2588 /* Restore the hdc state */
2589 SetTextColor(hdc, oldTextColor);
2591 if (oldBkMode != TRANSPARENT)
2592 SetBkMode(hdc, oldBkMode);
2596 /* Draw insertion mark if necessary */
2598 if (infoPtr->insertMarkItem)
2599 TRACE("item:%d,mark:%d\n",
2600 TREEVIEW_GetItemIndex(infoPtr, wineItem),
2601 (int)infoPtr->insertMarkItem);
2603 if (wineItem == infoPtr->insertMarkItem)
2605 HPEN hNewPen, hOldPen;
2606 int offset;
2607 int left, right;
2609 hNewPen = CreatePen(PS_SOLID, 2, infoPtr->clrInsertMark);
2610 hOldPen = SelectObject(hdc, hNewPen);
2612 if (infoPtr->insertBeforeorAfter)
2613 offset = wineItem->rect.bottom - 1;
2614 else
2615 offset = wineItem->rect.top + 1;
2617 left = wineItem->textOffset - 2;
2618 right = wineItem->textOffset + wineItem->textWidth + 2;
2620 MoveToEx(hdc, left, offset - 3, NULL);
2621 LineTo(hdc, left, offset + 4);
2623 MoveToEx(hdc, left, offset, NULL);
2624 LineTo(hdc, right + 1, offset);
2626 MoveToEx(hdc, right, offset + 3, NULL);
2627 LineTo(hdc, right, offset - 4);
2629 SelectObject(hdc, hOldPen);
2630 DeleteObject(hNewPen);
2633 if (cditem & CDRF_NOTIFYPOSTPAINT)
2635 cditem = TREEVIEW_SendCustomDrawItemNotify
2636 (infoPtr, hdc, wineItem, CDDS_ITEMPOSTPAINT);
2637 TRACE("postpaint:cditem-app returns 0x%x\n", cditem);
2640 SelectObject(hdc, hOldFont);
2643 /* Computes treeHeight and treeWidth and updates the scroll bars.
2645 static void
2646 TREEVIEW_UpdateScrollBars(TREEVIEW_INFO *infoPtr)
2648 TREEVIEW_ITEM *wineItem;
2649 HWND hwnd = infoPtr->hwnd;
2650 BOOL vert = FALSE;
2651 BOOL horz = FALSE;
2652 SCROLLINFO si;
2653 LONG scrollX = infoPtr->scrollX;
2655 infoPtr->treeWidth = 0;
2656 infoPtr->treeHeight = 0;
2658 /* We iterate through all visible items in order to get the tree height
2659 * and width */
2660 wineItem = infoPtr->root->firstChild;
2662 while (wineItem != NULL)
2664 if (ISVISIBLE(wineItem))
2666 /* actually we draw text at textOffset + 2 */
2667 if (2+wineItem->textOffset+wineItem->textWidth > infoPtr->treeWidth)
2668 infoPtr->treeWidth = wineItem->textOffset+wineItem->textWidth+2;
2670 /* This is scroll-adjusted, but we fix this below. */
2671 infoPtr->treeHeight = wineItem->rect.bottom;
2674 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem);
2677 /* Fix the scroll adjusted treeHeight and treeWidth. */
2678 if (infoPtr->root->firstChild)
2679 infoPtr->treeHeight -= infoPtr->root->firstChild->rect.top;
2681 infoPtr->treeWidth += infoPtr->scrollX;
2683 if (infoPtr->dwStyle & TVS_NOSCROLL) return;
2685 /* Adding one scroll bar may take up enough space that it forces us
2686 * to add the other as well. */
2687 if (infoPtr->treeHeight > infoPtr->clientHeight)
2689 vert = TRUE;
2691 if (infoPtr->treeWidth
2692 > infoPtr->clientWidth - GetSystemMetrics(SM_CXVSCROLL))
2693 horz = TRUE;
2695 else if (infoPtr->treeWidth > infoPtr->clientWidth)
2696 horz = TRUE;
2698 if (!vert && horz && infoPtr->treeHeight
2699 > infoPtr->clientHeight - GetSystemMetrics(SM_CYVSCROLL))
2700 vert = TRUE;
2702 if (horz && (infoPtr->dwStyle & TVS_NOHSCROLL)) horz = FALSE;
2704 si.cbSize = sizeof(SCROLLINFO);
2705 si.fMask = SIF_POS|SIF_RANGE|SIF_PAGE;
2706 si.nMin = 0;
2708 if (vert)
2710 si.nPage = TREEVIEW_GetVisibleCount(infoPtr);
2711 if ( si.nPage )
2713 si.nPos = infoPtr->firstVisible->visibleOrder;
2714 si.nMax = infoPtr->maxVisibleOrder - 1;
2716 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
2718 if (!(infoPtr->uInternalStatus & TV_VSCROLL))
2719 ShowScrollBar(hwnd, SB_VERT, TRUE);
2720 infoPtr->uInternalStatus |= TV_VSCROLL;
2722 else
2724 if (infoPtr->uInternalStatus & TV_VSCROLL)
2725 ShowScrollBar(hwnd, SB_VERT, FALSE);
2726 infoPtr->uInternalStatus &= ~TV_VSCROLL;
2729 else
2731 if (infoPtr->uInternalStatus & TV_VSCROLL)
2732 ShowScrollBar(hwnd, SB_VERT, FALSE);
2733 infoPtr->uInternalStatus &= ~TV_VSCROLL;
2736 if (horz)
2738 si.nPage = infoPtr->clientWidth;
2739 si.nPos = infoPtr->scrollX;
2740 si.nMax = infoPtr->treeWidth - 1;
2742 if (si.nPos > si.nMax - max( si.nPage-1, 0 ))
2744 si.nPos = si.nMax - max( si.nPage-1, 0 );
2745 scrollX = si.nPos;
2748 if (!(infoPtr->uInternalStatus & TV_HSCROLL))
2749 ShowScrollBar(hwnd, SB_HORZ, TRUE);
2750 infoPtr->uInternalStatus |= TV_HSCROLL;
2752 SetScrollInfo(hwnd, SB_HORZ, &si, TRUE);
2754 else
2756 if (infoPtr->uInternalStatus & TV_HSCROLL)
2757 ShowScrollBar(hwnd, SB_HORZ, FALSE);
2758 infoPtr->uInternalStatus &= ~TV_HSCROLL;
2760 scrollX = 0;
2763 if (infoPtr->scrollX != scrollX)
2765 TREEVIEW_HScroll(infoPtr,
2766 MAKEWPARAM(SB_THUMBPOSITION, scrollX));
2769 if (!horz)
2770 infoPtr->uInternalStatus &= ~TV_HSCROLL;
2773 /* CtrlSpy doesn't mention this, but CorelDRAW's object manager needs it. */
2774 static LRESULT
2775 TREEVIEW_EraseBackground(TREEVIEW_INFO *infoPtr, HDC hDC)
2777 HBRUSH hBrush = CreateSolidBrush(infoPtr->clrBk);
2778 RECT rect;
2780 GetClientRect(infoPtr->hwnd, &rect);
2781 FillRect(hDC, &rect, hBrush);
2782 DeleteObject(hBrush);
2784 return 1;
2787 static void
2788 TREEVIEW_Refresh(TREEVIEW_INFO *infoPtr, HDC hdc, RECT *rc)
2790 HWND hwnd = infoPtr->hwnd;
2791 RECT rect = *rc;
2792 TREEVIEW_ITEM *wineItem;
2794 if (infoPtr->clientHeight == 0 || infoPtr->clientWidth == 0)
2796 TRACE("empty window\n");
2797 return;
2800 infoPtr->cdmode = TREEVIEW_SendCustomDrawNotify(infoPtr, CDDS_PREPAINT,
2801 hdc, rect);
2803 if (infoPtr->cdmode == CDRF_SKIPDEFAULT)
2805 ReleaseDC(hwnd, hdc);
2806 return;
2809 for (wineItem = infoPtr->root->firstChild;
2810 wineItem != NULL;
2811 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem))
2813 if (ISVISIBLE(wineItem))
2815 /* Avoid unneeded calculations */
2816 if (wineItem->rect.top > rect.bottom)
2817 break;
2818 if (wineItem->rect.bottom < rect.top)
2819 continue;
2821 TREEVIEW_DrawItem(infoPtr, hdc, wineItem);
2825 TREEVIEW_UpdateScrollBars(infoPtr);
2827 if (infoPtr->cdmode & CDRF_NOTIFYPOSTPAINT)
2828 infoPtr->cdmode =
2829 TREEVIEW_SendCustomDrawNotify(infoPtr, CDDS_POSTPAINT, hdc, rect);
2832 static void
2833 TREEVIEW_Invalidate(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
2835 if (item != NULL)
2836 InvalidateRect(infoPtr->hwnd, &item->rect, TRUE);
2837 else
2838 InvalidateRect(infoPtr->hwnd, NULL, TRUE);
2841 static LRESULT
2842 TREEVIEW_Paint(TREEVIEW_INFO *infoPtr, WPARAM wParam)
2844 HDC hdc;
2845 PAINTSTRUCT ps;
2846 RECT rc;
2848 TRACE("\n");
2850 if (wParam)
2852 hdc = (HDC)wParam;
2853 if (!GetUpdateRect(infoPtr->hwnd, &rc, TRUE))
2855 HBITMAP hbitmap;
2856 BITMAP bitmap;
2857 hbitmap = GetCurrentObject(hdc, OBJ_BITMAP);
2858 if (!hbitmap) return 0;
2859 GetObjectA(hbitmap, sizeof(BITMAP), &bitmap);
2860 rc.left = 0; rc.top = 0;
2861 rc.right = bitmap.bmWidth;
2862 rc.bottom = bitmap.bmHeight;
2863 TREEVIEW_EraseBackground(infoPtr, (HDC)wParam);
2866 else
2868 hdc = BeginPaint(infoPtr->hwnd, &ps);
2869 rc = ps.rcPaint;
2872 if(infoPtr->bRedraw) /* WM_SETREDRAW sets bRedraw */
2873 TREEVIEW_Refresh(infoPtr, hdc, &rc);
2875 if (!wParam)
2876 EndPaint(infoPtr->hwnd, &ps);
2878 return 0;
2882 /* Sorting **************************************************************/
2884 /***************************************************************************
2885 * Forward the DPA local callback to the treeview owner callback
2887 static INT WINAPI
2888 TREEVIEW_CallBackCompare(TREEVIEW_ITEM *first, TREEVIEW_ITEM *second, LPTVSORTCB pCallBackSort)
2890 /* Forward the call to the client-defined callback */
2891 return pCallBackSort->lpfnCompare(first->lParam,
2892 second->lParam,
2893 pCallBackSort->lParam);
2896 /***************************************************************************
2897 * Treeview native sort routine: sort on item text.
2899 static INT WINAPI
2900 TREEVIEW_SortOnName(TREEVIEW_ITEM *first, TREEVIEW_ITEM *second,
2901 TREEVIEW_INFO *infoPtr)
2903 TREEVIEW_UpdateDispInfo(infoPtr, first, TVIF_TEXT);
2904 TREEVIEW_UpdateDispInfo(infoPtr, second, TVIF_TEXT);
2906 return strcasecmp(first->pszText, second->pszText);
2909 /* Returns the number of physical children belonging to item. */
2910 static INT
2911 TREEVIEW_CountChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
2913 INT cChildren = 0;
2914 HTREEITEM hti;
2916 for (hti = item->firstChild; hti != NULL; hti = hti->nextSibling)
2917 cChildren++;
2919 return cChildren;
2922 /* Returns a DPA containing a pointer to each physical child of item in
2923 * sibling order. If item has no children, an empty DPA is returned. */
2924 static HDPA
2925 TREEVIEW_BuildChildDPA(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
2927 HTREEITEM child = item->firstChild;
2929 HDPA list = DPA_Create(8);
2930 if (list == 0) return NULL;
2932 for (child = item->firstChild; child != NULL; child = child->nextSibling)
2934 if (DPA_InsertPtr(list, INT_MAX, child) == -1)
2936 DPA_Destroy(list);
2937 return NULL;
2941 return list;
2944 /***************************************************************************
2945 * Setup the treeview structure with regards of the sort method
2946 * and sort the children of the TV item specified in lParam
2947 * fRecurse: currently unused. Should be zero.
2948 * parent: if pSort!=NULL, should equal pSort->hParent.
2949 * otherwise, item which child items are to be sorted.
2950 * pSort: sort method info. if NULL, sort on item text.
2951 * if non-NULL, sort on item's lParam content, and let the
2952 * application decide what that means. See also TVM_SORTCHILDRENCB.
2955 static LRESULT
2956 TREEVIEW_Sort(TREEVIEW_INFO *infoPtr, BOOL fRecurse, HTREEITEM parent,
2957 LPTVSORTCB pSort)
2959 INT cChildren;
2960 PFNDPACOMPARE pfnCompare;
2961 LPARAM lpCompare;
2963 /* undocumented feature: TVI_ROOT or NULL means `sort the whole tree' */
2964 if (parent == TVI_ROOT || parent == NULL)
2965 parent = infoPtr->root;
2967 /* Check for a valid handle to the parent item */
2968 if (!TREEVIEW_ValidItem(infoPtr, parent))
2970 ERR("invalid item hParent=%x\n", (INT)parent);
2971 return FALSE;
2974 if (pSort)
2976 pfnCompare = (PFNDPACOMPARE)TREEVIEW_CallBackCompare;
2977 lpCompare = (LPARAM)pSort;
2979 else
2981 pfnCompare = (PFNDPACOMPARE)TREEVIEW_SortOnName;
2982 lpCompare = (LPARAM)infoPtr;
2985 cChildren = TREEVIEW_CountChildren(infoPtr, parent);
2987 /* Make sure there is something to sort */
2988 if (cChildren > 1)
2990 /* TREEVIEW_ITEM rechaining */
2991 INT count = 0;
2992 HTREEITEM item = 0;
2993 HTREEITEM nextItem = 0;
2994 HTREEITEM prevItem = 0;
2996 HDPA sortList = TREEVIEW_BuildChildDPA(infoPtr, parent);
2998 if (sortList == NULL)
2999 return FALSE;
3001 /* let DPA sort the list */
3002 DPA_Sort(sortList, pfnCompare, lpCompare);
3004 /* The order of DPA entries has been changed, so fixup the
3005 * nextSibling and prevSibling pointers. */
3007 item = (HTREEITEM)DPA_GetPtr(sortList, count++);
3008 while ((nextItem = (HTREEITEM)DPA_GetPtr(sortList, count++)) != NULL)
3010 /* link the two current item toghether */
3011 item->nextSibling = nextItem;
3012 nextItem->prevSibling = item;
3014 if (prevItem == NULL)
3016 /* this is the first item, update the parent */
3017 parent->firstChild = item;
3018 item->prevSibling = NULL;
3020 else
3022 /* fix the back chaining */
3023 item->prevSibling = prevItem;
3026 /* get ready for the next one */
3027 prevItem = item;
3028 item = nextItem;
3031 /* the last item is pointed to by item and never has a sibling */
3032 item->nextSibling = NULL;
3033 parent->lastChild = item;
3035 DPA_Destroy(sortList);
3037 TREEVIEW_VerifyTree(infoPtr);
3039 if (parent->state & TVIS_EXPANDED)
3041 int visOrder = infoPtr->firstVisible->visibleOrder;
3043 if (parent == infoPtr->root)
3044 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
3045 else
3046 TREEVIEW_RecalculateVisibleOrder(infoPtr, parent);
3048 if (TREEVIEW_IsChildOf(parent, infoPtr->firstVisible))
3050 TREEVIEW_ITEM *item;
3052 for (item = infoPtr->root->firstChild; item != NULL;
3053 item = TREEVIEW_GetNextListItem(infoPtr, item))
3055 if (item->visibleOrder == visOrder)
3056 break;
3059 TREEVIEW_SetFirstVisible(infoPtr, item, FALSE);
3062 TREEVIEW_Invalidate(infoPtr, NULL);
3065 return TRUE;
3067 return FALSE;
3071 /***************************************************************************
3072 * Setup the treeview structure with regards of the sort method
3073 * and sort the children of the TV item specified in lParam
3075 static LRESULT
3076 TREEVIEW_SortChildrenCB(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPTVSORTCB pSort)
3078 return TREEVIEW_Sort(infoPtr, wParam, pSort->hParent, pSort);
3082 /***************************************************************************
3083 * Sort the children of the TV item specified in lParam.
3085 static LRESULT
3086 TREEVIEW_SortChildren(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3088 return TREEVIEW_Sort(infoPtr, (BOOL)wParam, (HTREEITEM)lParam, NULL);
3092 /* Expansion/Collapse ***************************************************/
3094 static BOOL
3095 TREEVIEW_SendExpanding(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3096 UINT action)
3098 return !TREEVIEW_SendTreeviewNotify(infoPtr, TVN_ITEMEXPANDINGW, action,
3099 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM
3100 | TVIF_IMAGE | TVIF_SELECTEDIMAGE,
3101 0, wineItem);
3104 static VOID
3105 TREEVIEW_SendExpanded(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3106 UINT action)
3108 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_ITEMEXPANDEDW, action,
3109 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM
3110 | TVIF_IMAGE | TVIF_SELECTEDIMAGE,
3111 0, wineItem);
3115 /* This corresponds to TVM_EXPAND with TVE_COLLAPSE.
3116 * bRemoveChildren corresponds to TVE_COLLAPSERESET. */
3117 static BOOL
3118 TREEVIEW_Collapse(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3119 BOOL bRemoveChildren, BOOL bUser)
3121 UINT action = TVE_COLLAPSE | (bRemoveChildren ? TVE_COLLAPSERESET : 0);
3122 BOOL bSetSelection, bSetFirstVisible;
3124 TRACE("TVE_COLLAPSE %p %s\n", wineItem, TREEVIEW_ItemName(wineItem));
3126 if (!(wineItem->state & TVIS_EXPANDED) || wineItem->firstChild == NULL)
3127 return FALSE;
3129 if (bUser)
3130 TREEVIEW_SendExpanding(infoPtr, wineItem, action);
3132 wineItem->state &= ~TVIS_EXPANDED;
3134 if (bUser)
3135 TREEVIEW_SendExpanded(infoPtr, wineItem, action);
3137 bSetSelection = (infoPtr->selectedItem != NULL
3138 && TREEVIEW_IsChildOf(wineItem, infoPtr->selectedItem));
3140 bSetFirstVisible = (infoPtr->firstVisible != NULL
3141 && TREEVIEW_IsChildOf(wineItem, infoPtr->firstVisible));
3143 if (bRemoveChildren)
3145 TRACE("TVE_COLLAPSERESET\n");
3146 wineItem->state &= ~TVIS_EXPANDEDONCE;
3147 TREEVIEW_RemoveAllChildren(infoPtr, wineItem);
3150 if (wineItem->firstChild)
3152 TREEVIEW_ITEM *item, *sibling;
3154 sibling = TREEVIEW_GetNextListItem(infoPtr, wineItem);
3156 for (item = wineItem->firstChild; item != sibling;
3157 item = TREEVIEW_GetNextListItem(infoPtr, item))
3159 item->visibleOrder = -1;
3163 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
3165 TREEVIEW_SetFirstVisible(infoPtr, bSetFirstVisible ? wineItem
3166 : infoPtr->firstVisible, TRUE);
3168 if (bSetSelection)
3170 /* Don't call DoSelectItem, it sends notifications. */
3171 if (TREEVIEW_ValidItem(infoPtr, infoPtr->selectedItem))
3172 infoPtr->selectedItem->state &= ~TVIS_SELECTED;
3173 wineItem->state |= TVIS_SELECTED;
3174 infoPtr->selectedItem = wineItem;
3176 TREEVIEW_EnsureVisible(infoPtr, wineItem, FALSE);
3179 TREEVIEW_UpdateScrollBars(infoPtr);
3180 TREEVIEW_Invalidate(infoPtr, NULL);
3182 return TRUE;
3185 static BOOL
3186 TREEVIEW_Expand(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
3187 BOOL bExpandPartial, BOOL bUser)
3189 TRACE("\n");
3191 if (!TREEVIEW_HasChildren(infoPtr, wineItem)
3192 || wineItem->state & TVIS_EXPANDED)
3193 return FALSE;
3195 TRACE("TVE_EXPAND %p %s\n", wineItem, TREEVIEW_ItemName(wineItem));
3197 if (bUser || !(wineItem->state & TVIS_EXPANDEDONCE))
3199 if (!TREEVIEW_SendExpanding(infoPtr, wineItem, TVE_EXPAND))
3201 TRACE(" TVN_ITEMEXPANDING returned TRUE, exiting...\n");
3202 return FALSE;
3205 wineItem->state |= TVIS_EXPANDED;
3206 TREEVIEW_SendExpanded(infoPtr, wineItem, TVE_EXPAND);
3207 wineItem->state |= TVIS_EXPANDEDONCE;
3209 else
3211 /* this item has already been expanded */
3212 wineItem->state |= TVIS_EXPANDED;
3215 if (bExpandPartial)
3216 FIXME("TVE_EXPANDPARTIAL not implemented\n");
3218 TREEVIEW_RecalculateVisibleOrder(infoPtr, wineItem);
3219 TREEVIEW_UpdateSubTree(infoPtr, wineItem);
3220 TREEVIEW_UpdateScrollBars(infoPtr);
3222 /* Scroll up so that as many children as possible are visible.
3223 * This looses when expanding causes an HScroll bar to appear, but we
3224 * don't know that yet, so the last item is obscured. */
3225 if (wineItem->firstChild != NULL)
3227 int nChildren = wineItem->lastChild->visibleOrder
3228 - wineItem->firstChild->visibleOrder + 1;
3230 int visible_pos = wineItem->visibleOrder
3231 - infoPtr->firstVisible->visibleOrder;
3233 int rows_below = TREEVIEW_GetVisibleCount(infoPtr) - visible_pos - 1;
3235 if (visible_pos > 0 && nChildren > rows_below)
3237 int scroll = nChildren - rows_below;
3239 if (scroll > visible_pos)
3240 scroll = visible_pos;
3242 if (scroll > 0)
3244 TREEVIEW_ITEM *newFirstVisible
3245 = TREEVIEW_GetListItem(infoPtr, infoPtr->firstVisible,
3246 scroll);
3249 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
3254 TREEVIEW_Invalidate(infoPtr, NULL);
3256 return TRUE;
3259 static BOOL
3260 TREEVIEW_Toggle(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem, BOOL bUser)
3262 TRACE("\n");
3264 if (wineItem->state & TVIS_EXPANDED)
3265 return TREEVIEW_Collapse(infoPtr, wineItem, FALSE, bUser);
3266 else
3267 return TREEVIEW_Expand(infoPtr, wineItem, FALSE, bUser);
3270 static VOID
3271 TREEVIEW_ExpandAll(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
3273 TREEVIEW_Expand(infoPtr, item, FALSE, TRUE);
3275 for (item = item->firstChild; item != NULL; item = item->nextSibling)
3277 if (TREEVIEW_HasChildren(infoPtr, item))
3278 TREEVIEW_ExpandAll(infoPtr, item);
3282 /* Note:If the specified item is the child of a collapsed parent item,
3283 the parent's list of child items is (recursively) expanded to reveal the
3284 specified item. This is mentioned for TREEVIEW_SelectItem; don't
3285 know if it also applies here.
3288 static LRESULT
3289 TREEVIEW_ExpandMsg(TREEVIEW_INFO *infoPtr, UINT flag, HTREEITEM wineItem)
3291 if (!TREEVIEW_ValidItem(infoPtr, wineItem))
3292 return 0;
3294 TRACE("For (%s) item:%d, flags %x, state:%d\n",
3295 TREEVIEW_ItemName(wineItem), flag,
3296 TREEVIEW_GetItemIndex(infoPtr, wineItem), wineItem->state);
3298 switch (flag & TVE_TOGGLE)
3300 case TVE_COLLAPSE:
3301 return TREEVIEW_Collapse(infoPtr, wineItem, flag & TVE_COLLAPSERESET,
3302 FALSE);
3304 case TVE_EXPAND:
3305 return TREEVIEW_Expand(infoPtr, wineItem, flag & TVE_EXPANDPARTIAL,
3306 FALSE);
3308 case TVE_TOGGLE:
3309 return TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
3311 default:
3312 return 0;
3315 #if 0
3316 TRACE("Exiting, Item %p state is now %d...\n", wineItem, wineItem->state);
3317 #endif
3320 /* Hit-Testing **********************************************************/
3322 static TREEVIEW_ITEM *
3323 TREEVIEW_HitTestPoint(TREEVIEW_INFO *infoPtr, POINT pt)
3325 TREEVIEW_ITEM *wineItem;
3326 LONG row;
3328 if (!infoPtr->firstVisible)
3329 return NULL;
3331 row = pt.y / infoPtr->uItemHeight + infoPtr->firstVisible->visibleOrder;
3333 for (wineItem = infoPtr->firstVisible; wineItem != NULL;
3334 wineItem = TREEVIEW_GetNextListItem(infoPtr, wineItem))
3336 if (row >= wineItem->visibleOrder
3337 && row < wineItem->visibleOrder + wineItem->iIntegral)
3338 break;
3341 return wineItem;
3344 static LRESULT
3345 TREEVIEW_HitTest(TREEVIEW_INFO *infoPtr, LPTVHITTESTINFO lpht)
3347 TREEVIEW_ITEM *wineItem;
3348 RECT rect;
3349 UINT status;
3350 LONG x, y;
3352 lpht->hItem = 0;
3353 GetClientRect(infoPtr->hwnd, &rect);
3354 status = 0;
3355 x = lpht->pt.x;
3356 y = lpht->pt.y;
3358 if (x < rect.left)
3360 status |= TVHT_TOLEFT;
3362 else if (x > rect.right)
3364 status |= TVHT_TORIGHT;
3367 if (y < rect.top)
3369 status |= TVHT_ABOVE;
3371 else if (y > rect.bottom)
3373 status |= TVHT_BELOW;
3376 if (status)
3378 lpht->flags = status;
3379 return (LRESULT)(HTREEITEM)NULL;
3382 wineItem = TREEVIEW_HitTestPoint(infoPtr, lpht->pt);
3383 if (!wineItem)
3385 lpht->flags = TVHT_NOWHERE;
3386 return (LRESULT)(HTREEITEM)NULL;
3389 if (x >= wineItem->textOffset + wineItem->textWidth)
3391 lpht->flags = TVHT_ONITEMRIGHT;
3393 else if (x >= wineItem->textOffset)
3395 lpht->flags = TVHT_ONITEMLABEL;
3397 else if (x >= wineItem->imageOffset)
3399 lpht->flags = TVHT_ONITEMICON;
3401 else if (x >= wineItem->stateOffset)
3403 lpht->flags = TVHT_ONITEMSTATEICON;
3405 else if (x >= wineItem->linesOffset && infoPtr->dwStyle & TVS_HASBUTTONS)
3407 lpht->flags = TVHT_ONITEMBUTTON;
3409 else
3411 lpht->flags = TVHT_ONITEMINDENT;
3414 lpht->hItem = wineItem;
3415 TRACE("(%ld,%ld):result %x\n", lpht->pt.x, lpht->pt.y, lpht->flags);
3417 return (LRESULT)wineItem;
3420 /* Item Label Editing ***************************************************/
3422 static LRESULT
3423 TREEVIEW_GetEditControl(TREEVIEW_INFO *infoPtr)
3425 return (LRESULT)infoPtr->hwndEdit;
3428 static LRESULT CALLBACK
3429 TREEVIEW_Edit_SubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3431 TREEVIEW_INFO *infoPtr;
3432 BOOL bCancel = FALSE;
3434 switch (uMsg)
3436 case WM_PAINT:
3438 LRESULT rc;
3439 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(GetParent(hwnd));
3441 TRACE("WM_PAINT start\n");
3442 rc = CallWindowProcA(infoPtr->wpEditOrig, hwnd, uMsg, wParam,
3443 lParam);
3444 TRACE("WM_PAINT done\n");
3445 return rc;
3448 case WM_KILLFOCUS:
3450 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(GetParent(hwnd));
3451 if (infoPtr->bIgnoreEditKillFocus)
3452 return TRUE;
3454 break;
3457 case WM_GETDLGCODE:
3458 return DLGC_WANTARROWS | DLGC_WANTALLKEYS;
3460 case WM_KEYDOWN:
3461 if (wParam == (WPARAM)VK_ESCAPE)
3463 bCancel = TRUE;
3464 break;
3466 else if (wParam == (WPARAM)VK_RETURN)
3468 break;
3471 /* fall through */
3472 default:
3474 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(GetParent(hwnd));
3476 return CallWindowProcA(infoPtr->wpEditOrig, hwnd, uMsg, wParam,
3477 lParam);
3481 /* Processing TVN_ENDLABELEDIT message could kill the focus */
3482 /* eg. Using a messagebox */
3484 infoPtr = TREEVIEW_GetInfoPtr(GetParent(hwnd));
3485 infoPtr->bIgnoreEditKillFocus = TRUE;
3486 TREEVIEW_EndEditLabelNow(infoPtr, bCancel || !infoPtr->bLabelChanged);
3487 infoPtr->bIgnoreEditKillFocus = FALSE;
3489 return 0;
3493 /* should handle edit control messages here */
3495 static LRESULT
3496 TREEVIEW_Command(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3498 TRACE("%x %ld\n", wParam, lParam);
3500 switch (HIWORD(wParam))
3502 case EN_UPDATE:
3505 * Adjust the edit window size
3507 char buffer[1024];
3508 TREEVIEW_ITEM *editItem = infoPtr->selectedItem;
3509 HDC hdc = GetDC(infoPtr->hwndEdit);
3510 SIZE sz;
3511 int len;
3512 HFONT hFont, hOldFont = 0;
3514 infoPtr->bLabelChanged = TRUE;
3516 len = GetWindowTextA(infoPtr->hwndEdit, buffer, sizeof(buffer));
3518 /* Select font to get the right dimension of the string */
3519 hFont = (HFONT)SendMessageA(infoPtr->hwndEdit, WM_GETFONT, 0, 0);
3520 if (hFont != 0)
3522 hOldFont = SelectObject(hdc, hFont);
3525 if (GetTextExtentPoint32A(hdc, buffer, strlen(buffer), &sz))
3527 TEXTMETRICA textMetric;
3529 /* Add Extra spacing for the next character */
3530 GetTextMetricsA(hdc, &textMetric);
3531 sz.cx += (textMetric.tmMaxCharWidth * 2);
3533 sz.cx = max(sz.cx, textMetric.tmMaxCharWidth * 3);
3534 sz.cx = min(sz.cx,
3535 infoPtr->clientWidth - editItem->textOffset + 2);
3537 SetWindowPos(infoPtr->hwndEdit,
3538 HWND_TOP,
3541 sz.cx,
3542 editItem->rect.bottom - editItem->rect.top + 3,
3543 SWP_NOMOVE | SWP_DRAWFRAME);
3546 if (hFont != 0)
3548 SelectObject(hdc, hOldFont);
3551 ReleaseDC(infoPtr->hwnd, hdc);
3552 break;
3555 default:
3556 return SendMessageA(GetParent(infoPtr->hwnd), WM_COMMAND, wParam, lParam);
3559 return 0;
3562 static HWND
3563 TREEVIEW_EditLabelA(TREEVIEW_INFO *infoPtr, HTREEITEM hItem)
3565 HWND hwnd = infoPtr->hwnd;
3566 HWND hwndEdit;
3567 SIZE sz;
3568 TREEVIEW_ITEM *editItem = hItem;
3569 HINSTANCE hinst = (HINSTANCE)GetWindowLongA(hwnd, GWL_HINSTANCE);
3570 HDC hdc;
3571 HFONT hOldFont=0;
3572 TEXTMETRICA textMetric;
3574 TRACE("%x %p\n", (unsigned)hwnd, hItem);
3575 if (!TREEVIEW_ValidItem(infoPtr, editItem))
3576 return NULL;
3578 if (infoPtr->hwndEdit)
3579 return infoPtr->hwndEdit;
3581 infoPtr->bLabelChanged = FALSE;
3583 /* Make sure that edit item is selected */
3584 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, hItem, TVC_UNKNOWN);
3585 TREEVIEW_EnsureVisible(infoPtr, hItem, TRUE);
3587 TREEVIEW_UpdateDispInfo(infoPtr, editItem, TVIF_TEXT);
3589 hdc = GetDC(hwnd);
3590 /* Select the font to get appropriate metric dimensions */
3591 if (infoPtr->hFont != 0)
3593 hOldFont = SelectObject(hdc, infoPtr->hFont);
3596 /* Get string length in pixels */
3597 GetTextExtentPoint32A(hdc, editItem->pszText, strlen(editItem->pszText),
3598 &sz);
3600 /* Add Extra spacing for the next character */
3601 GetTextMetricsA(hdc, &textMetric);
3602 sz.cx += (textMetric.tmMaxCharWidth * 2);
3604 sz.cx = max(sz.cx, textMetric.tmMaxCharWidth * 3);
3605 sz.cx = min(sz.cx, infoPtr->clientWidth - editItem->textOffset + 2);
3607 if (infoPtr->hFont != 0)
3609 SelectObject(hdc, hOldFont);
3612 ReleaseDC(hwnd, hdc);
3613 hwndEdit = CreateWindowExA(WS_EX_LEFT,
3614 "EDIT",
3616 WS_CHILD | WS_BORDER | ES_AUTOHSCROLL |
3617 WS_CLIPSIBLINGS | ES_WANTRETURN |
3618 ES_LEFT, editItem->textOffset - 2,
3619 editItem->rect.top - 1, sz.cx + 3,
3620 editItem->rect.bottom -
3621 editItem->rect.top + 3, hwnd, 0, hinst, 0);
3622 /* FIXME: (HMENU)IDTVEDIT,pcs->hInstance,0); */
3624 infoPtr->hwndEdit = hwndEdit;
3626 /* Get a 2D border. */
3627 SetWindowLongA(hwndEdit, GWL_EXSTYLE,
3628 GetWindowLongA(hwndEdit, GWL_EXSTYLE) & ~WS_EX_CLIENTEDGE);
3629 SetWindowLongA(hwndEdit, GWL_STYLE,
3630 GetWindowLongA(hwndEdit, GWL_STYLE) | WS_BORDER);
3632 SendMessageA(hwndEdit, WM_SETFONT,
3633 (WPARAM)TREEVIEW_FontForItem(infoPtr, editItem), FALSE);
3635 infoPtr->wpEditOrig = (WNDPROC)SetWindowLongA(hwndEdit, GWL_WNDPROC,
3636 (DWORD)
3637 TREEVIEW_Edit_SubclassProc);
3639 if (TREEVIEW_BeginLabelEditNotify(infoPtr, editItem))
3641 DestroyWindow(hwndEdit);
3642 infoPtr->hwndEdit = 0;
3643 return NULL;
3646 infoPtr->selectedItem = hItem;
3647 SetWindowTextA(hwndEdit, editItem->pszText);
3648 SetFocus(hwndEdit);
3649 SendMessageA(hwndEdit, EM_SETSEL, 0, -1);
3650 ShowWindow(hwndEdit, SW_SHOW);
3652 return hwndEdit;
3656 static LRESULT
3657 TREEVIEW_EndEditLabelNow(TREEVIEW_INFO *infoPtr, BOOL bCancel)
3659 HWND hwnd = infoPtr->hwnd;
3660 TREEVIEW_ITEM *editedItem = infoPtr->selectedItem;
3661 NMTVDISPINFOA tvdi;
3662 BOOL bCommit;
3663 char tmpText[1024] = { '\0' };
3664 int iLength = 0;
3666 if (!infoPtr->hwndEdit)
3667 return FALSE;
3669 tvdi.hdr.hwndFrom = hwnd;
3670 tvdi.hdr.idFrom = GetWindowLongA(hwnd, GWL_ID);
3671 tvdi.hdr.code = get_notifycode(infoPtr, TVN_ENDLABELEDITW);
3672 tvdi.item.mask = 0;
3673 tvdi.item.hItem = editedItem;
3674 tvdi.item.state = editedItem->state;
3675 tvdi.item.lParam = editedItem->lParam;
3677 if (!bCancel)
3679 iLength = GetWindowTextA(infoPtr->hwndEdit, tmpText, 1023);
3681 if (iLength >= 1023)
3683 ERR("Insufficient space to retrieve new item label\n");
3686 tvdi.item.pszText = tmpText;
3687 tvdi.item.cchTextMax = iLength + 1;
3689 else
3691 tvdi.item.pszText = NULL;
3692 tvdi.item.cchTextMax = 0;
3695 bCommit = (BOOL)TREEVIEW_SendRealNotify(infoPtr,
3696 (WPARAM)tvdi.hdr.idFrom, (LPARAM)&tvdi);
3698 if (!bCancel && bCommit) /* Apply the changes */
3700 if (strcmp(tmpText, editedItem->pszText) != 0)
3702 if (NULL == COMCTL32_ReAlloc(editedItem->pszText, iLength + 1))
3704 ERR("OutOfMemory, cannot allocate space for label\n");
3705 DestroyWindow(infoPtr->hwndEdit);
3706 infoPtr->hwndEdit = 0;
3707 return FALSE;
3709 else
3711 editedItem->cchTextMax = iLength + 1;
3712 lstrcpyA(editedItem->pszText, tmpText);
3717 ShowWindow(infoPtr->hwndEdit, SW_HIDE);
3718 DestroyWindow(infoPtr->hwndEdit);
3719 infoPtr->hwndEdit = 0;
3720 return TRUE;
3723 static LRESULT
3724 TREEVIEW_HandleTimer(TREEVIEW_INFO *infoPtr, WPARAM wParam)
3726 if (wParam != TV_EDIT_TIMER)
3728 ERR("got unknown timer\n");
3729 return 1;
3732 KillTimer(infoPtr->hwnd, TV_EDIT_TIMER);
3733 infoPtr->Timer &= ~TV_EDIT_TIMER_SET;
3735 TREEVIEW_EditLabelA(infoPtr, infoPtr->selectedItem);
3737 return 0;
3741 /* Mouse Tracking/Drag **************************************************/
3743 /***************************************************************************
3744 * This is quite unusual piece of code, but that's how it's implemented in
3745 * Windows.
3747 static LRESULT
3748 TREEVIEW_TrackMouse(TREEVIEW_INFO *infoPtr, POINT pt)
3750 INT cxDrag = GetSystemMetrics(SM_CXDRAG);
3751 INT cyDrag = GetSystemMetrics(SM_CYDRAG);
3752 RECT r;
3753 MSG msg;
3755 r.top = pt.y - cyDrag;
3756 r.left = pt.x - cxDrag;
3757 r.bottom = pt.y + cyDrag;
3758 r.right = pt.x + cxDrag;
3760 SetCapture(infoPtr->hwnd);
3762 while (1)
3764 if (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE | PM_NOYIELD))
3766 if (msg.message == WM_MOUSEMOVE)
3768 pt.x = SLOWORD(msg.lParam);
3769 pt.y = SHIWORD(msg.lParam);
3770 if (PtInRect(&r, pt))
3771 continue;
3772 else
3774 ReleaseCapture();
3775 return 1;
3778 else if (msg.message >= WM_LBUTTONDOWN &&
3779 msg.message <= WM_RBUTTONDBLCLK)
3781 if (msg.message == WM_RBUTTONUP)
3782 TREEVIEW_RButtonUp(infoPtr, &pt);
3783 break;
3786 DispatchMessageA(&msg);
3789 if (GetCapture() != infoPtr->hwnd)
3790 return 0;
3793 ReleaseCapture();
3794 return 0;
3798 static LRESULT
3799 TREEVIEW_LButtonDoubleClick(TREEVIEW_INFO *infoPtr, LPARAM lParam)
3801 TREEVIEW_ITEM *wineItem;
3802 TVHITTESTINFO hit;
3804 TRACE("\n");
3805 SetFocus(infoPtr->hwnd);
3807 if (infoPtr->Timer & TV_EDIT_TIMER_SET)
3809 /* If there is pending 'edit label' event - kill it now */
3810 KillTimer(infoPtr->hwnd, TV_EDIT_TIMER);
3813 hit.pt.x = SLOWORD(lParam);
3814 hit.pt.y = SHIWORD(lParam);
3816 wineItem = (TREEVIEW_ITEM *)TREEVIEW_HitTest(infoPtr, &hit);
3817 if (!wineItem)
3818 return 0;
3819 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr, wineItem));
3821 if (TREEVIEW_SendSimpleNotify(infoPtr, NM_DBLCLK) == FALSE)
3822 { /* FIXME! */
3823 switch (hit.flags)
3825 case TVHT_ONITEMRIGHT:
3826 /* FIXME: we should not have sent NM_DBLCLK in this case. */
3827 break;
3829 case TVHT_ONITEMINDENT:
3830 if (!(infoPtr->dwStyle & TVS_HASLINES))
3832 break;
3834 else
3836 int level = hit.pt.x / infoPtr->uIndent;
3837 if (!(infoPtr->dwStyle & TVS_LINESATROOT)) level++;
3839 while (wineItem->iLevel > level)
3841 wineItem = wineItem->parent;
3844 /* fall through */
3847 case TVHT_ONITEMLABEL:
3848 case TVHT_ONITEMICON:
3849 case TVHT_ONITEMBUTTON:
3850 TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
3851 break;
3853 case TVHT_ONITEMSTATEICON:
3854 if (infoPtr->dwStyle & TVS_CHECKBOXES)
3855 TREEVIEW_ToggleItemState(infoPtr, wineItem);
3856 else
3857 TREEVIEW_Toggle(infoPtr, wineItem, TRUE);
3858 break;
3861 return TRUE;
3865 static LRESULT
3866 TREEVIEW_LButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam)
3868 HWND hwnd = infoPtr->hwnd;
3869 TVHITTESTINFO ht;
3870 BOOL bTrack;
3871 HTREEITEM tempItem;
3873 /* If Edit control is active - kill it and return.
3874 * The best way to do it is to set focus to itself.
3875 * Edit control subclassed procedure will automatically call
3876 * EndEditLabelNow.
3878 if (infoPtr->hwndEdit)
3880 SetFocus(hwnd);
3881 return 0;
3884 ht.pt.x = SLOWORD(lParam);
3885 ht.pt.y = SHIWORD(lParam);
3887 TREEVIEW_HitTest(infoPtr, &ht);
3888 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr, ht.hItem));
3890 /* update focusedItem and redraw both items */
3891 if(ht.hItem && (ht.flags & TVHT_ONITEM))
3893 infoPtr->focusedItem = ht.hItem;
3894 InvalidateRect(hwnd, &(((HTREEITEM)(ht.hItem))->rect), TRUE);
3896 if(infoPtr->selectedItem)
3897 InvalidateRect(hwnd, &(infoPtr->selectedItem->rect), TRUE);
3900 bTrack = (ht.flags & TVHT_ONITEM)
3901 && !(infoPtr->dwStyle & TVS_DISABLEDRAGDROP);
3903 /* Send NM_CLICK right away */
3904 if (!bTrack)
3905 if (TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
3906 goto setfocus;
3908 if (ht.flags & TVHT_ONITEMBUTTON)
3910 TREEVIEW_Toggle(infoPtr, ht.hItem, TRUE);
3911 goto setfocus;
3913 else if (bTrack)
3914 { /* if TREEVIEW_TrackMouse == 1 dragging occurred and the cursor left the dragged item's rectangle */
3915 if (TREEVIEW_TrackMouse(infoPtr, ht.pt))
3917 TREEVIEW_SendTreeviewDnDNotify(infoPtr, TVN_BEGINDRAGW, ht.hItem, ht.pt);
3918 infoPtr->dropItem = ht.hItem;
3920 /* clean up focusedItem as we dragged and won't select this item */
3921 if(infoPtr->focusedItem)
3923 /* refresh the item that was focused */
3924 tempItem = infoPtr->focusedItem;
3925 infoPtr->focusedItem = 0;
3926 InvalidateRect(infoPtr->hwnd, &tempItem->rect, TRUE);
3928 /* refresh the selected item to return the filled background */
3929 InvalidateRect(infoPtr->hwnd, &(infoPtr->selectedItem->rect), TRUE);
3932 return 0;
3936 if (bTrack && TREEVIEW_SendSimpleNotify(infoPtr, NM_CLICK))
3937 goto setfocus;
3940 * If the style allows editing and the node is already selected
3941 * and the click occurred on the item label...
3943 if ((infoPtr->dwStyle & TVS_EDITLABELS) &&
3944 (ht.flags & TVHT_ONITEMLABEL) && (infoPtr->selectedItem == ht.hItem))
3946 if (infoPtr->Timer & TV_EDIT_TIMER_SET)
3947 KillTimer(hwnd, TV_EDIT_TIMER);
3949 SetTimer(hwnd, TV_EDIT_TIMER, GetDoubleClickTime(), 0);
3950 infoPtr->Timer |= TV_EDIT_TIMER_SET;
3952 else if (ht.flags & TVHT_ONITEM) /* select the item if the hit was inside of the icon or text */
3955 * if we are TVS_SINGLEEXPAND then we want this single click to
3956 * do a bunch of things.
3958 if((infoPtr->dwStyle & TVS_SINGLEEXPAND) &&
3959 (infoPtr->hwndEdit == 0))
3961 TREEVIEW_ITEM *SelItem;
3964 * Send the notification
3966 TREEVIEW_SendTreeviewNotify(infoPtr, TVN_SINGLEEXPAND, TVC_UNKNOWN, TVIF_HANDLE | TVIF_PARAM, ht.hItem, 0);
3969 * Close the previous selection all the way to the root
3970 * as long as the new selection is not a child
3972 if((infoPtr->selectedItem)
3973 && (infoPtr->selectedItem != ht.hItem))
3975 BOOL closeit = TRUE;
3976 SelItem = ht.hItem;
3978 /* determine if the hitItem is a child of the currently selected item */
3979 while(closeit && SelItem && TREEVIEW_ValidItem(infoPtr, SelItem) && (SelItem != infoPtr->root))
3981 closeit = (SelItem != infoPtr->selectedItem);
3982 SelItem = SelItem->parent;
3985 if(closeit)
3987 if(TREEVIEW_ValidItem(infoPtr, infoPtr->selectedItem))
3988 SelItem = infoPtr->selectedItem;
3990 while(SelItem && (SelItem != ht.hItem) && TREEVIEW_ValidItem(infoPtr, SelItem) && (SelItem != infoPtr->root))
3992 TREEVIEW_Collapse(infoPtr, SelItem, FALSE, FALSE);
3993 SelItem = SelItem->parent;
3999 * Expand the current item
4001 TREEVIEW_Expand(infoPtr, ht.hItem, TVE_TOGGLE, FALSE);
4004 /* Select the current item */
4005 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, ht.hItem, TVC_BYMOUSE);
4007 else if (ht.flags & TVHT_ONITEMSTATEICON)
4009 /* TVS_CHECKBOXES requires us to toggle the current state */
4010 if (infoPtr->dwStyle & TVS_CHECKBOXES)
4011 TREEVIEW_ToggleItemState(infoPtr, ht.hItem);
4014 setfocus:
4015 SetFocus(hwnd);
4016 return 0;
4020 static LRESULT
4021 TREEVIEW_RButtonDown(TREEVIEW_INFO *infoPtr, LPARAM lParam)
4023 TVHITTESTINFO ht;
4025 if (infoPtr->hwndEdit)
4027 SetFocus(infoPtr->hwnd);
4028 return 0;
4031 ht.pt.x = SLOWORD(lParam);
4032 ht.pt.y = SHIWORD(lParam);
4034 TREEVIEW_HitTest(infoPtr, &ht);
4036 if (TREEVIEW_TrackMouse(infoPtr, ht.pt))
4038 if (ht.hItem)
4040 TREEVIEW_SendTreeviewDnDNotify(infoPtr, TVN_BEGINRDRAGW, ht.hItem, ht.pt);
4041 infoPtr->dropItem = ht.hItem;
4044 else
4046 SetFocus(infoPtr->hwnd);
4047 TREEVIEW_SendSimpleNotify(infoPtr, NM_RCLICK);
4050 return 0;
4053 static LRESULT
4054 TREEVIEW_RButtonUp(TREEVIEW_INFO *infoPtr, LPPOINT pPt)
4056 return 0;
4060 static LRESULT
4061 TREEVIEW_CreateDragImage(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4063 TREEVIEW_ITEM *dragItem = (HTREEITEM)lParam;
4064 INT cx, cy;
4065 HDC hdc, htopdc;
4066 HWND hwtop;
4067 HBITMAP hbmp, hOldbmp;
4068 SIZE size;
4069 RECT rc;
4070 HFONT hOldFont;
4072 TRACE("\n");
4074 if (!(infoPtr->himlNormal))
4075 return 0;
4077 if (!dragItem || !TREEVIEW_ValidItem(infoPtr, dragItem))
4078 return 0;
4080 TREEVIEW_UpdateDispInfo(infoPtr, dragItem, TVIF_TEXT);
4082 hwtop = GetDesktopWindow();
4083 htopdc = GetDC(hwtop);
4084 hdc = CreateCompatibleDC(htopdc);
4086 hOldFont = SelectObject(hdc, infoPtr->hFont);
4087 GetTextExtentPoint32A(hdc, dragItem->pszText, lstrlenA(dragItem->pszText),
4088 &size);
4089 TRACE("%ld %ld %s %d\n", size.cx, size.cy, dragItem->pszText,
4090 lstrlenA(dragItem->pszText));
4091 hbmp = CreateCompatibleBitmap(htopdc, size.cx, size.cy);
4092 hOldbmp = SelectObject(hdc, hbmp);
4094 ImageList_GetIconSize(infoPtr->himlNormal, &cx, &cy);
4095 size.cx += cx;
4096 if (cy > size.cy)
4097 size.cy = cy;
4099 infoPtr->dragList = ImageList_Create(size.cx, size.cy, ILC_COLOR, 10, 10);
4100 ImageList_Draw(infoPtr->himlNormal, dragItem->iImage, hdc, 0, 0,
4101 ILD_NORMAL);
4104 ImageList_GetImageInfo (infoPtr->himlNormal, dragItem->hItem, &iminfo);
4105 ImageList_AddMasked (infoPtr->dragList, iminfo.hbmImage, CLR_DEFAULT);
4108 /* draw item text */
4110 SetRect(&rc, cx, 0, size.cx, size.cy);
4111 DrawTextA(hdc, dragItem->pszText, lstrlenA(dragItem->pszText), &rc,
4112 DT_LEFT);
4113 SelectObject(hdc, hOldFont);
4114 SelectObject(hdc, hOldbmp);
4116 ImageList_Add(infoPtr->dragList, hbmp, 0);
4118 DeleteDC(hdc);
4119 DeleteObject(hbmp);
4120 ReleaseDC(hwtop, htopdc);
4122 return (LRESULT)infoPtr->dragList;
4125 /* Selection ************************************************************/
4127 static LRESULT
4128 TREEVIEW_DoSelectItem(TREEVIEW_INFO *infoPtr, INT action, HTREEITEM newSelect,
4129 INT cause)
4131 TREEVIEW_ITEM *prevSelect;
4132 RECT rcFocused;
4134 assert(newSelect == NULL || TREEVIEW_ValidItem(infoPtr, newSelect));
4136 TRACE("Entering item %p (%s), flag %x, cause %x, state %d\n",
4137 newSelect, TREEVIEW_ItemName(newSelect), action, cause,
4138 newSelect ? newSelect->state : 0);
4140 /* reset and redraw focusedItem if focusedItem was set so we don't */
4141 /* have to worry about the previously focused item when we set a new one */
4142 if(infoPtr->focusedItem)
4144 rcFocused = (infoPtr->focusedItem)->rect;
4145 infoPtr->focusedItem = 0;
4146 InvalidateRect(infoPtr->hwnd, &rcFocused, TRUE);
4149 switch (action)
4151 case TVGN_CARET:
4152 prevSelect = infoPtr->selectedItem;
4154 if (prevSelect == newSelect)
4155 return FALSE;
4157 if (TREEVIEW_SendTreeviewNotify(infoPtr,
4158 TVN_SELCHANGINGW,
4159 cause,
4160 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM,
4161 prevSelect,
4162 newSelect))
4163 return FALSE;
4165 if (prevSelect)
4166 prevSelect->state &= ~TVIS_SELECTED;
4167 if (newSelect)
4168 newSelect->state |= TVIS_SELECTED;
4170 infoPtr->selectedItem = newSelect;
4172 TREEVIEW_EnsureVisible(infoPtr, infoPtr->selectedItem, FALSE);
4174 TREEVIEW_SendTreeviewNotify(infoPtr,
4175 TVN_SELCHANGEDW,
4176 cause,
4177 TVIF_HANDLE | TVIF_STATE | TVIF_PARAM,
4178 prevSelect,
4179 newSelect);
4180 TREEVIEW_Invalidate(infoPtr, prevSelect);
4181 TREEVIEW_Invalidate(infoPtr, newSelect);
4182 break;
4184 case TVGN_DROPHILITE:
4185 prevSelect = infoPtr->dropItem;
4187 if (prevSelect)
4188 prevSelect->state &= ~TVIS_DROPHILITED;
4190 infoPtr->dropItem = newSelect;
4192 if (newSelect)
4193 newSelect->state |= TVIS_DROPHILITED;
4195 TREEVIEW_Invalidate(infoPtr, prevSelect);
4196 TREEVIEW_Invalidate(infoPtr, newSelect);
4197 break;
4199 case TVGN_FIRSTVISIBLE:
4200 TREEVIEW_EnsureVisible(infoPtr, newSelect, FALSE);
4201 TREEVIEW_SetFirstVisible(infoPtr, newSelect, TRUE);
4202 TREEVIEW_Invalidate(infoPtr, NULL);
4203 break;
4206 TRACE("Leaving state %d\n", newSelect ? newSelect->state : 0);
4207 return TRUE;
4210 /* FIXME: handle NM_KILLFOCUS etc */
4211 static LRESULT
4212 TREEVIEW_SelectItem(TREEVIEW_INFO *infoPtr, INT wParam, HTREEITEM item)
4214 if (item != NULL && !TREEVIEW_ValidItem(infoPtr, item))
4215 return FALSE;
4217 TRACE("%p (%s) %d\n", item, TREEVIEW_ItemName(item), wParam);
4219 if (!TREEVIEW_DoSelectItem(infoPtr, wParam, item, TVC_UNKNOWN))
4220 return FALSE;
4222 return TRUE;
4225 /*************************************************************************
4226 * TREEVIEW_ProcessLetterKeys
4228 * Processes keyboard messages generated by pressing the letter keys
4229 * on the keyboard.
4230 * What this does is perform a case insensitive search from the
4231 * current position with the following quirks:
4232 * - If two chars or more are pressed in quick succession we search
4233 * for the corresponding string (e.g. 'abc').
4234 * - If there is a delay we wipe away the current search string and
4235 * restart with just that char.
4236 * - If the user keeps pressing the same character, whether slowly or
4237 * fast, so that the search string is entirely composed of this
4238 * character ('aaaaa' for instance), then we search for first item
4239 * that starting with that character.
4240 * - If the user types the above character in quick succession, then
4241 * we must also search for the corresponding string ('aaaaa'), and
4242 * go to that string if there is a match.
4244 * RETURNS
4246 * Zero.
4248 * BUGS
4250 * - The current implementation has a list of characters it will
4251 * accept and it ignores averything else. In particular it will
4252 * ignore accentuated characters which seems to match what
4253 * Windows does. But I'm not sure it makes sense to follow
4254 * Windows there.
4255 * - We don't sound a beep when the search fails.
4256 * - The search should start from the focused item, not from the selected
4257 * item. One reason for this is to allow for multiple selections in trees.
4258 * But currently infoPtr->focusedItem does not seem very usable.
4260 * SEE ALSO
4262 * TREEVIEW_ProcessLetterKeys
4264 static INT TREEVIEW_ProcessLetterKeys(
4265 HWND hwnd, /* handle to the window */
4266 WPARAM charCode, /* the character code, the actual character */
4267 LPARAM keyData /* key data */
4270 TREEVIEW_INFO *infoPtr;
4271 HTREEITEM nItem;
4272 HTREEITEM endidx,idx;
4273 TVITEMEXA item;
4274 CHAR buffer[MAX_PATH];
4275 DWORD timestamp,elapsed;
4277 /* simple parameter checking */
4278 if (!hwnd || !charCode || !keyData)
4279 return 0;
4281 infoPtr=(TREEVIEW_INFO*)GetWindowLongA(hwnd, 0);
4282 if (!infoPtr)
4283 return 0;
4285 /* only allow the valid WM_CHARs through */
4286 if (!isalnum(charCode) &&
4287 charCode != '.' && charCode != '`' && charCode != '!' &&
4288 charCode != '@' && charCode != '#' && charCode != '$' &&
4289 charCode != '%' && charCode != '^' && charCode != '&' &&
4290 charCode != '*' && charCode != '(' && charCode != ')' &&
4291 charCode != '-' && charCode != '_' && charCode != '+' &&
4292 charCode != '=' && charCode != '\\'&& charCode != ']' &&
4293 charCode != '}' && charCode != '[' && charCode != '{' &&
4294 charCode != '/' && charCode != '?' && charCode != '>' &&
4295 charCode != '<' && charCode != ',' && charCode != '~')
4296 return 0;
4298 /* compute how much time elapsed since last keypress */
4299 timestamp = GetTickCount();
4300 if (timestamp > infoPtr->lastKeyPressTimestamp) {
4301 elapsed=timestamp-infoPtr->lastKeyPressTimestamp;
4302 } else {
4303 elapsed=infoPtr->lastKeyPressTimestamp-timestamp;
4306 /* update the search parameters */
4307 infoPtr->lastKeyPressTimestamp=timestamp;
4308 if (elapsed < KEY_DELAY) {
4309 if (infoPtr->nSearchParamLength < sizeof(infoPtr->szSearchParam)) {
4310 infoPtr->szSearchParam[infoPtr->nSearchParamLength++]=charCode;
4312 if (infoPtr->charCode != charCode) {
4313 infoPtr->charCode=charCode=0;
4315 } else {
4316 infoPtr->charCode=charCode;
4317 infoPtr->szSearchParam[0]=charCode;
4318 infoPtr->nSearchParamLength=1;
4319 /* Redundant with the 1 char string */
4320 charCode=0;
4323 /* and search from the current position */
4324 nItem=NULL;
4325 if (infoPtr->selectedItem != NULL) {
4326 endidx=infoPtr->selectedItem;
4327 /* if looking for single character match,
4328 * then we must always move forward
4330 if (infoPtr->nSearchParamLength == 1)
4331 idx=TREEVIEW_GetNextListItem(infoPtr,endidx);
4332 else
4333 idx=endidx;
4334 } else {
4335 endidx=NULL;
4336 idx=infoPtr->root->firstChild;
4338 do {
4339 if (idx == NULL) {
4340 if (endidx == NULL)
4341 break;
4342 idx=infoPtr->root->firstChild;
4345 /* get item */
4346 ZeroMemory(&item, sizeof(item));
4347 item.mask = TVIF_TEXT;
4348 item.hItem = idx;
4349 item.pszText = buffer;
4350 item.cchTextMax = sizeof(buffer);
4351 TREEVIEW_GetItemA( infoPtr, &item );
4353 /* check for a match */
4354 if (strncasecmp(item.pszText,infoPtr->szSearchParam,infoPtr->nSearchParamLength) == 0) {
4355 nItem=idx;
4356 break;
4357 } else if ( (charCode != 0) && (nItem == NULL) &&
4358 (nItem != infoPtr->selectedItem) &&
4359 (strncasecmp(item.pszText,infoPtr->szSearchParam,1) == 0) ) {
4360 /* This would work but we must keep looking for a longer match */
4361 nItem=idx;
4363 idx=TREEVIEW_GetNextListItem(infoPtr,idx);
4364 } while (idx != endidx);
4366 if (nItem != NULL) {
4367 if (TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, nItem, TVC_BYKEYBOARD)) {
4368 TREEVIEW_EnsureVisible(infoPtr, nItem, FALSE);
4372 return 0;
4375 /* Scrolling ************************************************************/
4377 static LRESULT
4378 TREEVIEW_EnsureVisible(TREEVIEW_INFO *infoPtr, HTREEITEM item, BOOL bHScroll)
4380 HTREEITEM newFirstVisible = NULL;
4381 int visible_pos;
4383 if (!TREEVIEW_ValidItem(infoPtr, item))
4384 return FALSE;
4386 if (!ISVISIBLE(item))
4388 /* Expand parents as necessary. */
4389 HTREEITEM parent;
4391 /* see if we are trying to ensure that root is vislble */
4392 if((item != infoPtr->root) && TREEVIEW_ValidItem(infoPtr, item))
4393 parent = item->parent;
4394 else
4395 parent = item; /* this item is the topmost item */
4397 while (parent != infoPtr->root)
4399 if (!(parent->state & TVIS_EXPANDED))
4400 TREEVIEW_Expand(infoPtr, parent, FALSE, FALSE);
4402 parent = parent->parent;
4406 TRACE("%p (%s) %ld - %ld\n", item, TREEVIEW_ItemName(item), item->visibleOrder,
4407 infoPtr->firstVisible->visibleOrder);
4409 visible_pos = item->visibleOrder - infoPtr->firstVisible->visibleOrder;
4411 if (visible_pos < 0)
4413 /* item is before the start of the list: put it at the top. */
4414 newFirstVisible = item;
4416 else if (visible_pos >= TREEVIEW_GetVisibleCount(infoPtr)
4417 /* Sometimes, before we are displayed, GVC is 0, causing us to
4418 * spuriously scroll up. */
4419 && visible_pos > 0)
4421 /* item is past the end of the list. */
4422 int scroll = visible_pos - TREEVIEW_GetVisibleCount(infoPtr);
4424 newFirstVisible = TREEVIEW_GetListItem(infoPtr, infoPtr->firstVisible,
4425 scroll + 1);
4428 if (bHScroll)
4430 /* Scroll window so item's text is visible as much as possible */
4431 /* Calculation of amount of extra space is taken from EditLabel code */
4432 INT pos, x;
4433 TEXTMETRICA textMetric;
4434 HDC hdc = GetWindowDC(infoPtr->hwnd);
4436 x = item->textWidth;
4438 GetTextMetricsA(hdc, &textMetric);
4439 ReleaseDC(infoPtr->hwnd, hdc);
4441 x += (textMetric.tmMaxCharWidth * 2);
4442 x = max(x, textMetric.tmMaxCharWidth * 3);
4444 if (item->textOffset < 0)
4445 pos = item->textOffset;
4446 else if (item->textOffset + x > infoPtr->clientWidth)
4448 if (x > infoPtr->clientWidth)
4449 pos = item->textOffset;
4450 else
4451 pos = item->textOffset + x - infoPtr->clientWidth;
4453 else
4454 pos = 0;
4456 TREEVIEW_HScroll(infoPtr, MAKEWPARAM(SB_THUMBPOSITION, infoPtr->scrollX + pos));
4459 if (newFirstVisible != NULL && newFirstVisible != infoPtr->firstVisible)
4461 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible, TRUE);
4463 return TRUE;
4466 return FALSE;
4469 static VOID
4470 TREEVIEW_SetFirstVisible(TREEVIEW_INFO *infoPtr,
4471 TREEVIEW_ITEM *newFirstVisible,
4472 BOOL bUpdateScrollPos)
4474 int gap_size;
4476 TRACE("%p: %s\n", newFirstVisible, TREEVIEW_ItemName(newFirstVisible));
4478 if (newFirstVisible != NULL)
4480 /* Prevent an empty gap from appearing at the bottom... */
4481 gap_size = TREEVIEW_GetVisibleCount(infoPtr)
4482 - infoPtr->maxVisibleOrder + newFirstVisible->visibleOrder;
4484 if (gap_size > 0)
4486 newFirstVisible = TREEVIEW_GetListItem(infoPtr, newFirstVisible,
4487 -gap_size);
4489 /* ... unless we just don't have enough items. */
4490 if (newFirstVisible == NULL)
4491 newFirstVisible = infoPtr->root->firstChild;
4495 if (infoPtr->firstVisible != newFirstVisible)
4497 if (infoPtr->firstVisible == NULL || newFirstVisible == NULL)
4499 infoPtr->firstVisible = newFirstVisible;
4500 TREEVIEW_Invalidate(infoPtr, NULL);
4502 else
4504 TREEVIEW_ITEM *item;
4505 int scroll = infoPtr->uItemHeight *
4506 (infoPtr->firstVisible->visibleOrder
4507 - newFirstVisible->visibleOrder);
4509 infoPtr->firstVisible = newFirstVisible;
4511 for (item = infoPtr->root->firstChild; item != NULL;
4512 item = TREEVIEW_GetNextListItem(infoPtr, item))
4514 item->rect.top += scroll;
4515 item->rect.bottom += scroll;
4518 if (bUpdateScrollPos)
4519 SetScrollPos(infoPtr->hwnd, SB_VERT,
4520 newFirstVisible->visibleOrder, TRUE);
4522 ScrollWindow(infoPtr->hwnd, 0, scroll, NULL, NULL);
4523 UpdateWindow(infoPtr->hwnd);
4528 /************************************************************************
4529 * VScroll is always in units of visible items. i.e. we always have a
4530 * visible item aligned to the top of the control. (Unless we have no
4531 * items at all.)
4533 static LRESULT
4534 TREEVIEW_VScroll(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4536 TREEVIEW_ITEM *oldFirstVisible = infoPtr->firstVisible;
4537 TREEVIEW_ITEM *newFirstVisible = NULL;
4539 int nScrollCode = LOWORD(wParam);
4541 TRACE("wp %x\n", wParam);
4543 if (!(infoPtr->uInternalStatus & TV_VSCROLL))
4544 return 0;
4546 if (infoPtr->hwndEdit)
4547 SetFocus(infoPtr->hwnd);
4549 if (!oldFirstVisible)
4551 assert(infoPtr->root->firstChild == NULL);
4552 return 0;
4555 switch (nScrollCode)
4557 case SB_TOP:
4558 newFirstVisible = infoPtr->root->firstChild;
4559 break;
4561 case SB_BOTTOM:
4562 newFirstVisible = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
4563 break;
4565 case SB_LINEUP:
4566 newFirstVisible = TREEVIEW_GetPrevListItem(infoPtr, oldFirstVisible);
4567 break;
4569 case SB_LINEDOWN:
4570 newFirstVisible = TREEVIEW_GetNextListItem(infoPtr, oldFirstVisible);
4571 break;
4573 case SB_PAGEUP:
4574 newFirstVisible = TREEVIEW_GetListItem(infoPtr, oldFirstVisible,
4575 -max(1, TREEVIEW_GetVisibleCount(infoPtr)));
4576 break;
4578 case SB_PAGEDOWN:
4579 newFirstVisible = TREEVIEW_GetListItem(infoPtr, oldFirstVisible,
4580 max(1, TREEVIEW_GetVisibleCount(infoPtr)));
4581 break;
4583 case SB_THUMBTRACK:
4584 case SB_THUMBPOSITION:
4585 newFirstVisible = TREEVIEW_GetListItem(infoPtr,
4586 infoPtr->root->firstChild,
4587 (LONG)(SHORT)HIWORD(wParam));
4588 break;
4590 case SB_ENDSCROLL:
4591 return 0;
4594 if (newFirstVisible != NULL)
4596 if (newFirstVisible != oldFirstVisible)
4597 TREEVIEW_SetFirstVisible(infoPtr, newFirstVisible,
4598 nScrollCode != SB_THUMBTRACK);
4599 else if (nScrollCode == SB_THUMBPOSITION)
4600 SetScrollPos(infoPtr->hwnd, SB_VERT,
4601 newFirstVisible->visibleOrder, TRUE);
4604 return 0;
4607 static LRESULT
4608 TREEVIEW_HScroll(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4610 int maxWidth;
4611 int scrollX = infoPtr->scrollX;
4612 int nScrollCode = LOWORD(wParam);
4614 TRACE("wp %x\n", wParam);
4616 if (!(infoPtr->uInternalStatus & TV_HSCROLL))
4617 return FALSE;
4619 if (infoPtr->hwndEdit)
4620 SetFocus(infoPtr->hwnd);
4622 maxWidth = infoPtr->treeWidth - infoPtr->clientWidth;
4623 /* shall never occur */
4624 if (maxWidth <= 0)
4626 scrollX = 0;
4627 goto scroll;
4630 switch (nScrollCode)
4632 case SB_LINELEFT:
4633 scrollX -= infoPtr->uItemHeight;
4634 break;
4635 case SB_LINERIGHT:
4636 scrollX += infoPtr->uItemHeight;
4637 break;
4638 case SB_PAGELEFT:
4639 scrollX -= infoPtr->clientWidth;
4640 break;
4641 case SB_PAGERIGHT:
4642 scrollX += infoPtr->clientWidth;
4643 break;
4645 case SB_THUMBTRACK:
4646 case SB_THUMBPOSITION:
4647 scrollX = (int)(SHORT)HIWORD(wParam);
4648 break;
4650 case SB_ENDSCROLL:
4651 return 0;
4654 if (scrollX > maxWidth)
4655 scrollX = maxWidth;
4656 else if (scrollX < 0)
4657 scrollX = 0;
4659 scroll:
4660 if (scrollX != infoPtr->scrollX)
4662 TREEVIEW_ITEM *item;
4663 LONG scroll_pixels = infoPtr->scrollX - scrollX;
4665 for (item = infoPtr->root->firstChild; item != NULL;
4666 item = TREEVIEW_GetNextListItem(infoPtr, item))
4668 item->linesOffset += scroll_pixels;
4669 item->stateOffset += scroll_pixels;
4670 item->imageOffset += scroll_pixels;
4671 item->textOffset += scroll_pixels;
4674 ScrollWindow(infoPtr->hwnd, scroll_pixels, 0, NULL, NULL);
4675 infoPtr->scrollX = scrollX;
4676 UpdateWindow(infoPtr->hwnd);
4679 if (nScrollCode != SB_THUMBTRACK)
4680 SetScrollPos(infoPtr->hwnd, SB_HORZ, scrollX, TRUE);
4682 return 0;
4685 static LRESULT
4686 TREEVIEW_MouseWheel(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4688 short gcWheelDelta;
4689 UINT pulScrollLines = 3;
4691 if (infoPtr->firstVisible == NULL)
4692 return TRUE;
4694 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES, 0, &pulScrollLines, 0);
4696 gcWheelDelta = -(short)HIWORD(wParam);
4697 pulScrollLines *= (gcWheelDelta / WHEEL_DELTA);
4699 if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
4701 int newDy = infoPtr->firstVisible->visibleOrder + pulScrollLines;
4702 int maxDy = infoPtr->maxVisibleOrder;
4704 if (newDy > maxDy)
4705 newDy = maxDy;
4707 if (newDy < 0)
4708 newDy = 0;
4710 TREEVIEW_VScroll(infoPtr, MAKEWPARAM(SB_THUMBPOSITION, newDy));
4712 return TRUE;
4715 /* Create/Destroy *******************************************************/
4717 static LRESULT
4718 TREEVIEW_Create(HWND hwnd)
4720 RECT rcClient;
4721 TREEVIEW_INFO *infoPtr;
4723 TRACE("wnd %p, style %lx\n", hwnd, GetWindowLongA(hwnd, GWL_STYLE));
4725 infoPtr = (TREEVIEW_INFO *)COMCTL32_Alloc(sizeof(TREEVIEW_INFO));
4727 if (infoPtr == NULL)
4729 ERR("could not allocate info memory!\n");
4730 return 0;
4733 SetWindowLongA(hwnd, 0, (DWORD)infoPtr);
4735 infoPtr->hwnd = hwnd;
4736 infoPtr->dwStyle = GetWindowLongA(hwnd, GWL_STYLE);
4737 infoPtr->uInternalStatus = 0;
4738 infoPtr->Timer = 0;
4739 infoPtr->uNumItems = 0;
4740 infoPtr->cdmode = 0;
4741 infoPtr->uScrollTime = 300; /* milliseconds */
4742 infoPtr->bRedraw = TRUE;
4744 GetClientRect(hwnd, &rcClient);
4746 /* No scroll bars yet. */
4747 infoPtr->clientWidth = rcClient.right;
4748 infoPtr->clientHeight = rcClient.bottom;
4750 infoPtr->treeWidth = 0;
4751 infoPtr->treeHeight = 0;
4753 infoPtr->uIndent = 19;
4754 infoPtr->selectedItem = 0;
4755 infoPtr->focusedItem = 0;
4756 /* hotItem? */
4757 infoPtr->firstVisible = 0;
4758 infoPtr->maxVisibleOrder = 0;
4759 infoPtr->dropItem = 0;
4760 infoPtr->insertMarkItem = 0;
4761 infoPtr->insertBeforeorAfter = 0;
4762 /* dragList */
4764 infoPtr->scrollX = 0;
4766 infoPtr->clrBk = GetSysColor(COLOR_WINDOW);
4767 infoPtr->clrText = -1; /* use system color */
4768 infoPtr->clrLine = RGB(128, 128, 128);
4769 infoPtr->clrInsertMark = GetSysColor(COLOR_BTNTEXT);
4771 /* hwndToolTip */
4773 infoPtr->hwndEdit = 0;
4774 infoPtr->wpEditOrig = NULL;
4775 infoPtr->bIgnoreEditKillFocus = FALSE;
4776 infoPtr->bLabelChanged = FALSE;
4778 infoPtr->himlNormal = NULL;
4779 infoPtr->himlState = NULL;
4780 infoPtr->normalImageWidth = 0;
4781 infoPtr->normalImageHeight = 0;
4782 infoPtr->stateImageWidth = 0;
4783 infoPtr->stateImageHeight = 0;
4785 infoPtr->items = DPA_Create(16);
4787 infoPtr->hFont = GetStockObject(DEFAULT_GUI_FONT);
4788 infoPtr->hBoldFont = TREEVIEW_CreateBoldFont(infoPtr->hFont);
4790 infoPtr->uItemHeight = TREEVIEW_NaturalHeight(infoPtr);
4792 infoPtr->root = TREEVIEW_AllocateItem(infoPtr);
4793 infoPtr->root->state = TVIS_EXPANDED;
4794 infoPtr->root->iLevel = -1;
4795 infoPtr->root->visibleOrder = -1;
4797 infoPtr->hwndNotify = GetParent(hwnd);
4798 #if 0
4799 infoPtr->bTransparent = ( GetWindowLongA( hwnd, GWL_STYLE) & TBSTYLE_FLAT);
4800 #endif
4802 infoPtr->hwndToolTip = 0;
4804 infoPtr->bUnicode = IsWindowUnicode (hwnd);
4806 /* Determine what type of notify should be issued */
4807 /* sets infoPtr->bNtfUnicode */
4808 TREEVIEW_NotifyFormat(infoPtr, infoPtr->hwndNotify, NF_REQUERY);
4810 if (!(infoPtr->dwStyle & TVS_NOTOOLTIPS))
4811 infoPtr->hwndToolTip = COMCTL32_CreateToolTip(hwnd);
4813 if (infoPtr->dwStyle & TVS_CHECKBOXES)
4815 RECT rc;
4816 HBITMAP hbm, hbmOld;
4817 HDC hdc;
4818 int nIndex;
4820 infoPtr->himlState =
4821 ImageList_Create(16, 16, ILC_COLOR | ILC_MASK, 3, 0);
4823 hdc = CreateCompatibleDC(0);
4824 hbm = CreateCompatibleBitmap(hdc, 48, 16);
4825 hbmOld = SelectObject(hdc, hbm);
4827 rc.left = 0; rc.top = 0;
4828 rc.right = 48; rc.bottom = 16;
4829 FillRect(hdc, &rc, (HBRUSH)(COLOR_WINDOW+1));
4831 rc.left = 18; rc.top = 2;
4832 rc.right = 30; rc.bottom = 14;
4833 DrawFrameControl(hdc, &rc, DFC_BUTTON,
4834 DFCS_BUTTONCHECK|DFCS_FLAT);
4836 rc.left = 34; rc.right = 46;
4837 DrawFrameControl(hdc, &rc, DFC_BUTTON,
4838 DFCS_BUTTONCHECK|DFCS_FLAT|DFCS_CHECKED);
4840 nIndex = ImageList_AddMasked(infoPtr->himlState, hbm,
4841 GetSysColor(COLOR_WINDOW));
4842 TRACE("chckbox index %d\n", nIndex);
4843 SelectObject(hdc, hbmOld);
4844 DeleteObject(hbm);
4845 DeleteDC(hdc);
4847 infoPtr->stateImageWidth = 16;
4848 infoPtr->stateImageHeight = 16;
4850 return 0;
4854 static LRESULT
4855 TREEVIEW_Destroy(TREEVIEW_INFO *infoPtr)
4857 TRACE("\n");
4859 TREEVIEW_RemoveTree(infoPtr);
4861 /* tool tip is automatically destroyed: we are its owner */
4863 /* Restore original wndproc */
4864 if (infoPtr->hwndEdit)
4865 SetWindowLongA(infoPtr->hwndEdit, GWL_WNDPROC,
4866 (LONG)infoPtr->wpEditOrig);
4868 /* Deassociate treeview from the window before doing anything drastic. */
4869 SetWindowLongA(infoPtr->hwnd, 0, (LONG)NULL);
4871 DeleteObject(infoPtr->hBoldFont);
4872 COMCTL32_Free(infoPtr);
4874 return 0;
4877 /* Miscellaneous Messages ***********************************************/
4879 static LRESULT
4880 TREEVIEW_ScrollKeyDown(TREEVIEW_INFO *infoPtr, WPARAM key)
4882 static const struct
4884 unsigned char code;
4886 scroll[] =
4888 #define SCROLL_ENTRY(dir, code) { ((dir) << 7) | (code) }
4889 SCROLL_ENTRY(SB_VERT, SB_PAGEUP), /* VK_PRIOR */
4890 SCROLL_ENTRY(SB_VERT, SB_PAGEDOWN), /* VK_NEXT */
4891 SCROLL_ENTRY(SB_VERT, SB_BOTTOM), /* VK_END */
4892 SCROLL_ENTRY(SB_VERT, SB_TOP), /* VK_HOME */
4893 SCROLL_ENTRY(SB_HORZ, SB_LINEUP), /* VK_LEFT */
4894 SCROLL_ENTRY(SB_VERT, SB_LINEUP), /* VK_UP */
4895 SCROLL_ENTRY(SB_HORZ, SB_LINEDOWN), /* VK_RIGHT */
4896 SCROLL_ENTRY(SB_VERT, SB_LINEDOWN) /* VK_DOWN */
4897 #undef SCROLL_ENTRY
4900 if (key >= VK_PRIOR && key <= VK_DOWN)
4902 unsigned char code = scroll[key - VK_PRIOR].code;
4904 (((code & (1 << 7)) == (SB_HORZ << 7))
4905 ? TREEVIEW_HScroll
4906 : TREEVIEW_VScroll)(infoPtr, code & 0x7F);
4909 return 0;
4912 /************************************************************************
4913 * TREEVIEW_KeyDown
4915 * VK_UP Move selection to the previous non-hidden item.
4916 * VK_DOWN Move selection to the next non-hidden item.
4917 * VK_HOME Move selection to the first item.
4918 * VK_END Move selection to the last item.
4919 * VK_LEFT If expanded then collapse, otherwise move to parent.
4920 * VK_RIGHT If collapsed then expand, otherwise move to first child.
4921 * VK_ADD Expand.
4922 * VK_SUBTRACT Collapse.
4923 * VK_MULTIPLY Expand all.
4924 * VK_PRIOR Move up GetVisibleCount items.
4925 * VK_NEXT Move down GetVisibleCount items.
4926 * VK_BACK Move to parent.
4927 * CTRL-Left,Right,Up,Down,PgUp,PgDown,Home,End: Scroll without changing selection
4929 static LRESULT
4930 TREEVIEW_KeyDown(TREEVIEW_INFO *infoPtr, WPARAM wParam)
4932 /* If it is non-NULL and different, it will be selected and visible. */
4933 TREEVIEW_ITEM *newSelection = NULL;
4935 TREEVIEW_ITEM *prevItem = infoPtr->selectedItem;
4937 TRACE("%x\n", wParam);
4939 if (prevItem == NULL)
4940 return FALSE;
4942 if (GetAsyncKeyState(VK_CONTROL) & 0x8000)
4943 return TREEVIEW_ScrollKeyDown(infoPtr, wParam);
4945 switch (wParam)
4947 case VK_UP:
4948 newSelection = TREEVIEW_GetPrevListItem(infoPtr, prevItem);
4949 if (!newSelection)
4950 newSelection = infoPtr->root->firstChild;
4951 break;
4953 case VK_DOWN:
4954 newSelection = TREEVIEW_GetNextListItem(infoPtr, prevItem);
4955 break;
4957 case VK_HOME:
4958 newSelection = infoPtr->root->firstChild;
4959 break;
4961 case VK_END:
4962 newSelection = TREEVIEW_GetLastListItem(infoPtr, infoPtr->root);
4963 break;
4965 case VK_LEFT:
4966 if (prevItem->state & TVIS_EXPANDED)
4968 TREEVIEW_Collapse(infoPtr, prevItem, FALSE, TRUE);
4970 else if (prevItem->parent != infoPtr->root)
4972 newSelection = prevItem->parent;
4974 break;
4976 case VK_RIGHT:
4977 if (TREEVIEW_HasChildren(infoPtr, prevItem))
4979 if (!(prevItem->state & TVIS_EXPANDED))
4980 TREEVIEW_Expand(infoPtr, prevItem, FALSE, TRUE);
4981 else
4983 newSelection = prevItem->firstChild;
4987 break;
4989 case VK_MULTIPLY:
4990 TREEVIEW_ExpandAll(infoPtr, prevItem);
4991 break;
4993 case VK_ADD:
4994 if (!(prevItem->state & TVIS_EXPANDED))
4995 TREEVIEW_Expand(infoPtr, prevItem, FALSE, TRUE);
4996 break;
4998 case VK_SUBTRACT:
4999 if (prevItem->state & TVIS_EXPANDED)
5000 TREEVIEW_Collapse(infoPtr, prevItem, FALSE, TRUE);
5001 break;
5003 case VK_PRIOR:
5004 newSelection
5005 = TREEVIEW_GetListItem(infoPtr, prevItem,
5006 -TREEVIEW_GetVisibleCount(infoPtr));
5007 break;
5009 case VK_NEXT:
5010 newSelection
5011 = TREEVIEW_GetListItem(infoPtr, prevItem,
5012 TREEVIEW_GetVisibleCount(infoPtr));
5013 break;
5015 case VK_BACK:
5016 newSelection = prevItem->parent;
5017 if (newSelection == infoPtr->root)
5018 newSelection = NULL;
5019 break;
5021 case VK_SPACE:
5022 if (infoPtr->dwStyle & TVS_CHECKBOXES)
5023 TREEVIEW_ToggleItemState(infoPtr, prevItem);
5024 break;
5027 if (newSelection && newSelection != prevItem)
5029 if (TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, newSelection,
5030 TVC_BYKEYBOARD))
5032 TREEVIEW_EnsureVisible(infoPtr, newSelection, FALSE);
5036 return FALSE;
5039 static LRESULT
5040 TREEVIEW_Notify(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5042 LPNMHDR lpnmh = (LPNMHDR)lParam;
5044 if (lpnmh->code == PGN_CALCSIZE) {
5045 LPNMPGCALCSIZE lppgc = (LPNMPGCALCSIZE)lParam;
5047 if (lppgc->dwFlag == PGF_CALCWIDTH) {
5048 lppgc->iWidth = infoPtr->treeWidth;
5049 TRACE("got PGN_CALCSIZE, returning horz size = %ld, client=%ld\n",
5050 infoPtr->treeWidth, infoPtr->clientWidth);
5052 else {
5053 lppgc->iHeight = infoPtr->treeHeight;
5054 TRACE("got PGN_CALCSIZE, returning vert size = %ld, client=%ld\n",
5055 infoPtr->treeHeight, infoPtr->clientHeight);
5057 return 0;
5059 return DefWindowProcA(infoPtr->hwnd, WM_NOTIFY, wParam, lParam);
5062 static INT TREEVIEW_NotifyFormat (TREEVIEW_INFO *infoPtr, HWND hwndFrom, UINT nCommand)
5064 INT format;
5066 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom, nCommand);
5068 if (nCommand != NF_REQUERY) return 0;
5070 format = SendMessageW(hwndFrom, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwnd, NF_QUERY);
5071 TRACE("format=%d\n", format);
5073 if (format != NFR_ANSI && format != NFR_UNICODE) return 0;
5075 infoPtr->bNtfUnicode = (format == NFR_UNICODE);
5077 return format;
5080 static LRESULT
5081 TREEVIEW_Size(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5083 if (wParam == SIZE_RESTORED)
5085 infoPtr->clientWidth = SLOWORD(lParam);
5086 infoPtr->clientHeight = SHIWORD(lParam);
5088 TREEVIEW_RecalculateVisibleOrder(infoPtr, NULL);
5089 TREEVIEW_SetFirstVisible(infoPtr, infoPtr->firstVisible, TRUE);
5090 TREEVIEW_UpdateScrollBars(infoPtr);
5092 else
5094 FIXME("WM_SIZE flag %x %lx not handled\n", wParam, lParam);
5097 TREEVIEW_Invalidate(infoPtr, NULL);
5098 return 0;
5101 static LRESULT
5102 TREEVIEW_StyleChanged(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
5104 TRACE("(%x %lx)\n", wParam, lParam);
5106 if (wParam == GWL_STYLE)
5108 DWORD dwNewStyle = ((LPSTYLESTRUCT)lParam)->styleNew;
5110 /* we have to take special care about tooltips */
5111 if ((infoPtr->dwStyle ^ dwNewStyle) & TVS_NOTOOLTIPS)
5113 if (infoPtr->dwStyle & TVS_NOTOOLTIPS)
5115 infoPtr->hwndToolTip = COMCTL32_CreateToolTip(infoPtr->hwnd);
5116 TRACE("\n");
5118 else
5120 DestroyWindow(infoPtr->hwndToolTip);
5121 infoPtr->hwndToolTip = 0;
5125 infoPtr->dwStyle = dwNewStyle;
5128 TREEVIEW_UpdateSubTree(infoPtr, infoPtr->root);
5129 TREEVIEW_UpdateScrollBars(infoPtr);
5130 TREEVIEW_Invalidate(infoPtr, NULL);
5132 return 0;
5135 static LRESULT
5136 TREEVIEW_SetFocus(TREEVIEW_INFO *infoPtr)
5138 TRACE("\n");
5140 if (!infoPtr->selectedItem)
5142 TREEVIEW_DoSelectItem(infoPtr, TVGN_CARET, infoPtr->firstVisible,
5143 TVC_UNKNOWN);
5146 TREEVIEW_SendSimpleNotify(infoPtr, NM_SETFOCUS);
5147 TREEVIEW_Invalidate(infoPtr, infoPtr->selectedItem);
5148 return 0;
5151 static LRESULT
5152 TREEVIEW_KillFocus(TREEVIEW_INFO *infoPtr)
5154 TRACE("\n");
5156 TREEVIEW_SendSimpleNotify(infoPtr, NM_KILLFOCUS);
5157 TREEVIEW_Invalidate(infoPtr, infoPtr->selectedItem);
5158 return 0;
5162 static LRESULT WINAPI
5163 TREEVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
5165 TREEVIEW_INFO *infoPtr = TREEVIEW_GetInfoPtr(hwnd);
5166 if (infoPtr) TREEVIEW_VerifyTree(infoPtr);
5167 else
5169 if (uMsg == WM_CREATE)
5170 TREEVIEW_Create(hwnd);
5171 else
5172 goto def;
5175 switch (uMsg)
5177 case TVM_CREATEDRAGIMAGE:
5178 return TREEVIEW_CreateDragImage(infoPtr, wParam, lParam);
5180 case TVM_DELETEITEM:
5181 return TREEVIEW_DeleteItem(infoPtr, (HTREEITEM)lParam);
5183 case TVM_EDITLABELA:
5184 return (LRESULT)TREEVIEW_EditLabelA(infoPtr, (HTREEITEM)lParam);
5186 case TVM_EDITLABELW:
5187 FIXME("Unimplemented msg TVM_EDITLABELW\n");
5188 return 0;
5190 case TVM_ENDEDITLABELNOW:
5191 return TREEVIEW_EndEditLabelNow(infoPtr, (BOOL)wParam);
5193 case TVM_ENSUREVISIBLE:
5194 return TREEVIEW_EnsureVisible(infoPtr, (HTREEITEM)lParam, TRUE);
5196 case TVM_EXPAND:
5197 return TREEVIEW_ExpandMsg(infoPtr, (UINT)wParam, (HTREEITEM)lParam);
5199 case TVM_GETBKCOLOR:
5200 return TREEVIEW_GetBkColor(infoPtr);
5202 case TVM_GETCOUNT:
5203 return TREEVIEW_GetCount(infoPtr);
5205 case TVM_GETEDITCONTROL:
5206 return TREEVIEW_GetEditControl(infoPtr);
5208 case TVM_GETIMAGELIST:
5209 return TREEVIEW_GetImageList(infoPtr, wParam);
5211 case TVM_GETINDENT:
5212 return TREEVIEW_GetIndent(infoPtr);
5214 case TVM_GETINSERTMARKCOLOR:
5215 return TREEVIEW_GetInsertMarkColor(infoPtr);
5217 case TVM_GETISEARCHSTRINGA:
5218 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGA\n");
5219 return 0;
5221 case TVM_GETISEARCHSTRINGW:
5222 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGW\n");
5223 return 0;
5225 case TVM_GETITEMA:
5226 return TREEVIEW_GetItemA(infoPtr, (LPTVITEMEXA)lParam);
5228 case TVM_GETITEMW:
5229 return TREEVIEW_GetItemW(infoPtr, (LPTVITEMEXW)lParam);
5231 case TVM_GETITEMHEIGHT:
5232 return TREEVIEW_GetItemHeight(infoPtr);
5234 case TVM_GETITEMRECT:
5235 return TREEVIEW_GetItemRect(infoPtr, (BOOL)wParam, (LPRECT)lParam);
5237 case TVM_GETITEMSTATE:
5238 return TREEVIEW_GetItemState(infoPtr, (HTREEITEM)wParam, (UINT)lParam);
5240 case TVM_GETLINECOLOR:
5241 return TREEVIEW_GetLineColor(infoPtr);
5243 case TVM_GETNEXTITEM:
5244 return TREEVIEW_GetNextItem(infoPtr, (UINT)wParam, (HTREEITEM)lParam);
5246 case TVM_GETSCROLLTIME:
5247 return TREEVIEW_GetScrollTime(infoPtr);
5249 case TVM_GETTEXTCOLOR:
5250 return TREEVIEW_GetTextColor(infoPtr);
5252 case TVM_GETTOOLTIPS:
5253 return TREEVIEW_GetToolTips(infoPtr);
5255 case TVM_GETUNICODEFORMAT:
5256 FIXME("Unimplemented msg TVM_GETUNICODEFORMAT\n");
5257 return 0;
5259 case TVM_GETVISIBLECOUNT:
5260 return TREEVIEW_GetVisibleCount(infoPtr);
5262 case TVM_HITTEST:
5263 return TREEVIEW_HitTest(infoPtr, (LPTVHITTESTINFO)lParam);
5265 case TVM_INSERTITEMA:
5266 return TREEVIEW_InsertItemA(infoPtr, lParam);
5268 case TVM_INSERTITEMW:
5269 return TREEVIEW_InsertItemW(infoPtr, lParam);
5271 case TVM_SELECTITEM:
5272 return TREEVIEW_SelectItem(infoPtr, (INT)wParam, (HTREEITEM)lParam);
5274 case TVM_SETBKCOLOR:
5275 return TREEVIEW_SetBkColor(infoPtr, (COLORREF)lParam);
5277 case TVM_SETIMAGELIST:
5278 return TREEVIEW_SetImageList(infoPtr, wParam, (HIMAGELIST)lParam);
5280 case TVM_SETINDENT:
5281 return TREEVIEW_SetIndent(infoPtr, (UINT)wParam);
5283 case TVM_SETINSERTMARK:
5284 return TREEVIEW_SetInsertMark(infoPtr, (BOOL)wParam, (HTREEITEM)lParam);
5286 case TVM_SETINSERTMARKCOLOR:
5287 return TREEVIEW_SetInsertMarkColor(infoPtr, (COLORREF)lParam);
5289 case TVM_SETITEMA:
5290 return TREEVIEW_SetItemA(infoPtr, (LPTVITEMEXA)lParam);
5292 case TVM_SETITEMW:
5293 return TREEVIEW_SetItemW(infoPtr, (LPTVITEMEXW)lParam);
5294 return 0;
5296 case TVM_SETLINECOLOR:
5297 return TREEVIEW_SetLineColor(infoPtr, (COLORREF)lParam);
5299 case TVM_SETITEMHEIGHT:
5300 return TREEVIEW_SetItemHeight(infoPtr, (INT)(SHORT)wParam);
5302 case TVM_SETSCROLLTIME:
5303 return TREEVIEW_SetScrollTime(infoPtr, (UINT)wParam);
5305 case TVM_SETTEXTCOLOR:
5306 return TREEVIEW_SetTextColor(infoPtr, (COLORREF)lParam);
5308 case TVM_SETTOOLTIPS:
5309 return TREEVIEW_SetToolTips(infoPtr, (HWND)wParam);
5311 case TVM_SETUNICODEFORMAT:
5312 FIXME("Unimplemented msg TVM_SETUNICODEFORMAT\n");
5313 return 0;
5315 case TVM_SORTCHILDREN:
5316 return TREEVIEW_SortChildren(infoPtr, wParam, lParam);
5318 case TVM_SORTCHILDRENCB:
5319 return TREEVIEW_SortChildrenCB(infoPtr, wParam, (LPTVSORTCB)lParam);
5321 case WM_CHAR:
5322 return TREEVIEW_ProcessLetterKeys( hwnd, wParam, lParam );
5324 case WM_COMMAND:
5325 return TREEVIEW_Command(infoPtr, wParam, lParam);
5327 case WM_DESTROY:
5328 return TREEVIEW_Destroy(infoPtr);
5330 /* WM_ENABLE */
5332 case WM_ERASEBKGND:
5333 return TREEVIEW_EraseBackground(infoPtr, (HDC)wParam);
5335 case WM_GETDLGCODE:
5336 return DLGC_WANTARROWS | DLGC_WANTCHARS;
5338 case WM_GETFONT:
5339 return TREEVIEW_GetFont(infoPtr);
5341 case WM_HSCROLL:
5342 return TREEVIEW_HScroll(infoPtr, wParam);
5344 case WM_KEYDOWN:
5345 return TREEVIEW_KeyDown(infoPtr, wParam);
5347 case WM_KILLFOCUS:
5348 return TREEVIEW_KillFocus(infoPtr);
5350 case WM_LBUTTONDBLCLK:
5351 return TREEVIEW_LButtonDoubleClick(infoPtr, lParam);
5353 case WM_LBUTTONDOWN:
5354 return TREEVIEW_LButtonDown(infoPtr, lParam);
5356 /* WM_MBUTTONDOWN */
5358 /* WM_MOUSEMOVE */
5360 case WM_NOTIFY:
5361 return TREEVIEW_Notify(infoPtr, wParam, lParam);
5363 case WM_NOTIFYFORMAT:
5364 return TREEVIEW_NotifyFormat(infoPtr, (HWND)wParam, (UINT)lParam);
5366 case WM_PAINT:
5367 return TREEVIEW_Paint(infoPtr, wParam);
5369 /* WM_PRINTCLIENT */
5371 case WM_RBUTTONDOWN:
5372 return TREEVIEW_RButtonDown(infoPtr, lParam);
5374 case WM_SETFOCUS:
5375 return TREEVIEW_SetFocus(infoPtr);
5377 case WM_SETFONT:
5378 return TREEVIEW_SetFont(infoPtr, (HFONT)wParam, (BOOL)lParam);
5380 case WM_SETREDRAW:
5381 return TREEVIEW_SetRedraw(infoPtr, wParam, lParam);
5383 case WM_SIZE:
5384 return TREEVIEW_Size(infoPtr, wParam, lParam);
5386 case WM_STYLECHANGED:
5387 return TREEVIEW_StyleChanged(infoPtr, wParam, lParam);
5389 /* WM_SYSCOLORCHANGE */
5391 /* WM_SYSKEYDOWN */
5393 case WM_TIMER:
5394 return TREEVIEW_HandleTimer(infoPtr, wParam);
5396 case WM_VSCROLL:
5397 return TREEVIEW_VScroll(infoPtr, wParam);
5399 /* WM_WININICHANGE */
5401 case WM_MOUSEWHEEL:
5402 if (wParam & (MK_SHIFT | MK_CONTROL))
5403 goto def;
5404 return TREEVIEW_MouseWheel(infoPtr, wParam);
5406 case WM_DRAWITEM:
5407 TRACE("drawItem\n");
5408 goto def;
5410 default:
5411 /* This mostly catches MFC and Delphi messages. :( */
5412 if ((uMsg >= WM_USER) && (uMsg < WM_APP))
5413 TRACE("Unknown msg %04x wp=%08x lp=%08lx\n", uMsg, wParam, lParam);
5414 def:
5415 return DefWindowProcA(hwnd, uMsg, wParam, lParam);
5417 return 0;
5421 /* Class Registration ***************************************************/
5423 VOID
5424 TREEVIEW_Register(void)
5426 WNDCLASSA wndClass;
5428 TRACE("\n");
5430 ZeroMemory(&wndClass, sizeof(WNDCLASSA));
5431 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
5432 wndClass.lpfnWndProc = (WNDPROC)TREEVIEW_WindowProc;
5433 wndClass.cbClsExtra = 0;
5434 wndClass.cbWndExtra = sizeof(TREEVIEW_INFO *);
5436 wndClass.hCursor = LoadCursorA(0, IDC_ARROWA);
5437 wndClass.hbrBackground = 0;
5438 wndClass.lpszClassName = WC_TREEVIEWA;
5440 RegisterClassA(&wndClass);
5444 VOID
5445 TREEVIEW_Unregister(void)
5447 UnregisterClassA(WC_TREEVIEWA, NULL);
5451 /* Tree Verification ****************************************************/
5453 #ifdef NDEBUG
5454 static inline void
5455 TREEVIEW_VerifyChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item);
5457 static inline void TREEVIEW_VerifyItemCommon(TREEVIEW_INFO *infoPtr,
5458 TREEVIEW_ITEM *item)
5460 assert(infoPtr != NULL);
5461 assert(item != NULL);
5463 /* both NULL, or both non-null */
5464 assert((item->firstChild == NULL) == (item->lastChild == NULL));
5466 assert(item->firstChild != item);
5467 assert(item->lastChild != item);
5469 if (item->firstChild)
5471 assert(item->firstChild->parent == item);
5472 assert(item->firstChild->prevSibling == NULL);
5475 if (item->lastChild)
5477 assert(item->lastChild->parent == item);
5478 assert(item->lastChild->nextSibling == NULL);
5481 assert(item->nextSibling != item);
5482 if (item->nextSibling)
5484 assert(item->nextSibling->parent == item->parent);
5485 assert(item->nextSibling->prevSibling == item);
5488 assert(item->prevSibling != item);
5489 if (item->prevSibling)
5491 assert(item->prevSibling->parent == item->parent);
5492 assert(item->prevSibling->nextSibling == item);
5496 static inline void
5497 TREEVIEW_VerifyItem(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
5499 assert(item != NULL);
5501 assert(item->parent != NULL);
5502 assert(item->parent != item);
5503 assert(item->iLevel == item->parent->iLevel + 1);
5505 assert(DPA_GetPtrIndex(infoPtr->items, item) != -1);
5507 TREEVIEW_VerifyItemCommon(infoPtr, item);
5509 TREEVIEW_VerifyChildren(infoPtr, item);
5512 static inline void
5513 TREEVIEW_VerifyChildren(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item)
5515 TREEVIEW_ITEM *child;
5516 assert(item != NULL);
5518 for (child = item->firstChild; child != NULL; child = child->nextSibling)
5519 TREEVIEW_VerifyItem(infoPtr, child);
5522 static inline void
5523 TREEVIEW_VerifyRoot(TREEVIEW_INFO *infoPtr)
5525 TREEVIEW_ITEM *root = infoPtr->root;
5527 assert(root != NULL);
5528 assert(root->iLevel == -1);
5529 assert(root->parent == NULL);
5530 assert(root->prevSibling == NULL);
5532 TREEVIEW_VerifyItemCommon(infoPtr, root);
5534 TREEVIEW_VerifyChildren(infoPtr, root);
5537 static void
5538 TREEVIEW_VerifyTree(TREEVIEW_INFO *infoPtr)
5540 assert(infoPtr != NULL);
5542 TREEVIEW_VerifyRoot(infoPtr);
5544 #endif