3 * Copyright 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
4 * Copyright 1998,1999 Alex Priem <alexp@sci.kun.nl>
5 * Copyright 1999 Sylvain St-Germain
6 * Copyright 2002 CodeWeavers, Aric Stewart
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * Note that TREEVIEW_INFO * and HTREEITEM are the same thing.
26 * Note2: All items always! have valid (allocated) pszText field.
27 * If item's text == LPSTR_TEXTCALLBACKA we allocate buffer
28 * of size TEXT_CALLBACK_SIZE in DoSetItem.
29 * We use callbackMask to keep track of fields to be updated.
32 * missing notifications: NM_SETCURSOR, TVN_GETINFOTIP, TVN_KEYDOWN,
33 * TVN_SETDISPINFO, TVN_SINGLEEXPAND
35 * missing styles: TVS_FULLROWSELECT, TVS_INFOTIP, TVS_RTLREADING,
37 * missing item styles: TVIS_CUT, TVIS_EXPANDPARTIAL
39 * Make the insertion mark look right.
40 * Scroll (instead of repaint) as much as possible.
44 #include "wine/port.h"
53 #define NONAMELESSUNION
54 #define NONAMELESSSTRUCT
64 #include "wine/unicode.h"
65 #include "wine/debug.h"
67 /* internal structures */
69 typedef struct _TREEITEM
/* HTREEITEM is a _TREEINFO *. */
80 int iIntegral
; /* item height multiplier (1 is normal) */
81 int iLevel
; /* indentation level:0=root level */
82 HTREEITEM parent
; /* handle to parent or 0 if at root */
83 HTREEITEM firstChild
; /* handle to first child or 0 if no child */
85 HTREEITEM prevSibling
; /* handle to prev item in list, 0 if first */
86 HTREEITEM nextSibling
; /* handle to next item in list, 0 if last */
92 LONG textWidth
; /* horizontal text extent for pszText */
93 LONG visibleOrder
; /* visible ordering, 0 is first visible item */
97 typedef struct tagTREEVIEW_INFO
100 HWND hwndNotify
; /* Owner window to send notifications to */
103 UINT uInternalStatus
;
105 UINT uNumItems
; /* number of valid TREEVIEW_ITEMs */
106 INT cdmode
; /* last custom draw setting */
107 UINT uScrollTime
; /* max. time for scrolling in milliseconds */
108 BOOL bRedraw
; /* if FALSE we validate but don't redraw in TREEVIEW_Paint() */
110 UINT uItemHeight
; /* item height */
113 LONG clientWidth
; /* width of control window */
114 LONG clientHeight
; /* height of control window */
116 LONG treeWidth
; /* width of visible tree items */
117 LONG treeHeight
; /* height of visible tree items */
119 UINT uIndent
; /* indentation in pixels */
120 HTREEITEM selectedItem
; /* handle to selected item or 0 if none */
121 HTREEITEM hotItem
; /* handle currently under cursor, 0 if none */
122 HTREEITEM focusedItem
; /* item that was under the cursor when WM_LBUTTONDOWN was received */
124 HTREEITEM firstVisible
; /* handle to first visible item */
125 LONG maxVisibleOrder
;
126 HTREEITEM dropItem
; /* handle to item selected by drag cursor */
127 HTREEITEM insertMarkItem
; /* item after which insertion mark is placed */
128 BOOL insertBeforeorAfter
; /* flag used by TVM_SETINSERTMARK */
129 HIMAGELIST dragList
; /* Bitmap of dragged item */
134 COLORREF clrInsertMark
;
138 HFONT hUnderlineFont
;
143 WNDPROC wpEditOrig
; /* orig window proc for subclassing edit */
144 BOOL bIgnoreEditKillFocus
;
147 BOOL bNtfUnicode
; /* TRUE if should send NOTIFY with W */
148 HIMAGELIST himlNormal
;
149 int normalImageHeight
;
150 int normalImageWidth
;
151 HIMAGELIST himlState
;
152 int stateImageHeight
;
156 DWORD lastKeyPressTimestamp
; /* Added */
157 WPARAM charCode
; /* Added */
158 INT nSearchParamLength
; /* Added */
159 WCHAR szSearchParam
[ MAX_PATH
]; /* Added */
163 /******** Defines that TREEVIEW_ProcessLetterKeys uses ****************/
164 #define KEY_DELAY 450
166 /* bitflags for infoPtr->uInternalStatus */
168 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */
169 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */
170 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */
171 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */
172 #define TV_RDRAG 0x10 /* dito Rbutton */
173 #define TV_RDRAGGING 0x20
175 /* bitflags for infoPtr->timer */
177 #define TV_EDIT_TIMER 2
178 #define TV_EDIT_TIMER_SET 2
181 VOID
TREEVIEW_Register (VOID
);
182 VOID
TREEVIEW_Unregister (VOID
);
185 WINE_DEFAULT_DEBUG_CHANNEL(treeview
);
188 #define TEXT_CALLBACK_SIZE 260
190 #define TREEVIEW_LEFT_MARGIN 8
192 #define MINIMUM_INDENT 19
194 #define CALLBACK_MASK_ALL (TVIF_TEXT|TVIF_CHILDREN|TVIF_IMAGE|TVIF_SELECTEDIMAGE)
196 #define STATEIMAGEINDEX(x) (((x) >> 12) & 0x0f)
197 #define OVERLAYIMAGEINDEX(x) (((x) >> 8) & 0x0f)
198 #define ISVISIBLE(x) ((x)->visibleOrder >= 0)
201 static const WCHAR themeClass
[] = { 'T','r','e','e','v','i','e','w',0 };
204 typedef VOID (*TREEVIEW_ItemEnumFunc
)(TREEVIEW_INFO
*, TREEVIEW_ITEM
*,LPVOID
);
207 static VOID
TREEVIEW_Invalidate(TREEVIEW_INFO
*, TREEVIEW_ITEM
*);
209 static LRESULT
TREEVIEW_DoSelectItem(TREEVIEW_INFO
*, INT
, HTREEITEM
, INT
);
210 static VOID
TREEVIEW_SetFirstVisible(TREEVIEW_INFO
*, TREEVIEW_ITEM
*, BOOL
);
211 static LRESULT
TREEVIEW_EnsureVisible(TREEVIEW_INFO
*, HTREEITEM
, BOOL
);
212 static LRESULT
TREEVIEW_RButtonUp(TREEVIEW_INFO
*, LPPOINT
);
213 static LRESULT
TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
);
214 static VOID
TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
);
215 static LRESULT
TREEVIEW_HScroll(TREEVIEW_INFO
*, WPARAM
);
216 static INT
TREEVIEW_NotifyFormat (TREEVIEW_INFO
*infoPtr
, HWND wParam
, UINT lParam
);
219 /* Random Utilities *****************************************************/
223 TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
)
228 /* The definition is at the end of the file. */
229 static void TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
);
232 /* Returns the treeview private data if hwnd is a treeview.
233 * Otherwise returns an undefined value. */
234 static TREEVIEW_INFO
*
235 TREEVIEW_GetInfoPtr(HWND hwnd
)
237 return (TREEVIEW_INFO
*)GetWindowLongPtrW(hwnd
, 0);
240 /* Don't call this. Nothing wants an item index. */
242 TREEVIEW_GetItemIndex(TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
244 assert(infoPtr
!= NULL
);
246 return DPA_GetPtrIndex(infoPtr
->items
, handle
);
249 /* Checks if item has changed and needs to be redrawn */
250 static inline BOOL
item_changed (TREEVIEW_ITEM
*tiOld
, TREEVIEW_ITEM
*tiNew
, LPTVITEMEXW tvChange
)
252 /* Number of children has changed */
253 if ((tvChange
->mask
& TVIF_CHILDREN
) && (tiOld
->cChildren
!= tiNew
->cChildren
))
256 /* Image has changed and it's not a callback */
257 if ((tvChange
->mask
& TVIF_IMAGE
) && (tiOld
->iImage
!= tiNew
->iImage
) &&
258 tiNew
->iImage
!= I_IMAGECALLBACK
)
261 /* Selected image has changed and it's not a callback */
262 if ((tvChange
->mask
& TVIF_SELECTEDIMAGE
) && (tiOld
->iSelectedImage
!= tiNew
->iSelectedImage
) &&
263 tiNew
->iSelectedImage
!= I_IMAGECALLBACK
)
266 /* Text has changed and it's not a callback */
267 if ((tvChange
->mask
& TVIF_TEXT
) && (tiOld
->pszText
!= tiNew
->pszText
) &&
268 tiNew
->pszText
!= LPSTR_TEXTCALLBACKW
)
271 /* Indent has changed */
272 if ((tvChange
->mask
& TVIF_INTEGRAL
) && (tiOld
->iIntegral
!= tiNew
->iIntegral
))
275 /* Item state has changed */
276 if ((tvChange
->mask
& TVIF_STATE
) && ((tiOld
->state
^ tiNew
->state
) & tvChange
->stateMask
))
282 /***************************************************************************
283 * This method checks that handle is an item for this tree.
286 TREEVIEW_ValidItem(TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
288 if (TREEVIEW_GetItemIndex(infoPtr
, handle
) == -1)
290 TRACE("invalid item %p\n", handle
);
298 TREEVIEW_CreateBoldFont(HFONT hOrigFont
)
302 GetObjectW(hOrigFont
, sizeof(font
), &font
);
303 font
.lfWeight
= FW_BOLD
;
304 return CreateFontIndirectW(&font
);
308 TREEVIEW_CreateUnderlineFont(HFONT hOrigFont
)
312 GetObjectW(hOrigFont
, sizeof(font
), &font
);
313 font
.lfUnderline
= TRUE
;
314 return CreateFontIndirectW(&font
);
318 TREEVIEW_FontForItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
320 if ((infoPtr
->dwStyle
& TVS_TRACKSELECT
) && (item
== infoPtr
->hotItem
))
321 return infoPtr
->hUnderlineFont
;
322 if (item
->state
& TVIS_BOLD
)
323 return infoPtr
->hBoldFont
;
324 return infoPtr
->hFont
;
327 /* for trace/debugging purposes only */
329 TREEVIEW_ItemName(TREEVIEW_ITEM
*item
)
331 if (item
== NULL
) return "<null item>";
332 if (item
->pszText
== LPSTR_TEXTCALLBACKW
) return "<callback>";
333 if (item
->pszText
== NULL
) return "<null>";
334 return debugstr_w(item
->pszText
);
337 /* An item is not a child of itself. */
339 TREEVIEW_IsChildOf(TREEVIEW_ITEM
*parent
, TREEVIEW_ITEM
*child
)
343 child
= child
->parent
;
344 if (child
== parent
) return TRUE
;
345 } while (child
!= NULL
);
351 /* Tree Traversal *******************************************************/
353 /***************************************************************************
354 * This method returns the last expanded sibling or child child item
357 static TREEVIEW_ITEM
*
358 TREEVIEW_GetLastListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
363 while (wineItem
->lastChild
)
365 if (wineItem
->state
& TVIS_EXPANDED
)
366 wineItem
= wineItem
->lastChild
;
371 if (wineItem
== infoPtr
->root
)
377 /***************************************************************************
378 * This method returns the previous non-hidden item in the list not
379 * considering the tree hierarchy.
381 static TREEVIEW_ITEM
*
382 TREEVIEW_GetPrevListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*tvItem
)
384 if (tvItem
->prevSibling
)
386 /* This item has a prevSibling, get the last item in the sibling's tree. */
387 TREEVIEW_ITEM
*upItem
= tvItem
->prevSibling
;
389 if ((upItem
->state
& TVIS_EXPANDED
) && upItem
->lastChild
!= NULL
)
390 return TREEVIEW_GetLastListItem(infoPtr
, upItem
->lastChild
);
396 /* this item does not have a prevSibling, get the parent */
397 return (tvItem
->parent
!= infoPtr
->root
) ? tvItem
->parent
: NULL
;
402 /***************************************************************************
403 * This method returns the next physical item in the treeview not
404 * considering the tree hierarchy.
406 static TREEVIEW_ITEM
*
407 TREEVIEW_GetNextListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*tvItem
)
409 assert(tvItem
!= NULL
);
412 * If this item has children and is expanded, return the first child
414 if ((tvItem
->state
& TVIS_EXPANDED
) && tvItem
->firstChild
!= NULL
)
416 return tvItem
->firstChild
;
421 * try to get the sibling
423 if (tvItem
->nextSibling
)
424 return tvItem
->nextSibling
;
427 * Otherwise, get the parent's sibling.
429 while (tvItem
->parent
)
431 tvItem
= tvItem
->parent
;
433 if (tvItem
->nextSibling
)
434 return tvItem
->nextSibling
;
440 /***************************************************************************
441 * This method returns the nth item starting at the given item. It returns
442 * the last item (or first) we we run out of items.
444 * Will scroll backward if count is <0.
445 * forward if count is >0.
447 static TREEVIEW_ITEM
*
448 TREEVIEW_GetListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
451 TREEVIEW_ITEM
*(*next_item
)(TREEVIEW_INFO
*, TREEVIEW_ITEM
*);
452 TREEVIEW_ITEM
*previousItem
;
454 assert(wineItem
!= NULL
);
458 next_item
= TREEVIEW_GetNextListItem
;
463 next_item
= TREEVIEW_GetPrevListItem
;
470 previousItem
= wineItem
;
471 wineItem
= next_item(infoPtr
, wineItem
);
473 } while (--count
&& wineItem
!= NULL
);
476 return wineItem
? wineItem
: previousItem
;
479 /* Notifications ************************************************************/
481 static INT
get_notifycode(TREEVIEW_INFO
*infoPtr
, INT code
)
483 if (!infoPtr
->bNtfUnicode
) {
485 case TVN_SELCHANGINGW
: return TVN_SELCHANGINGA
;
486 case TVN_SELCHANGEDW
: return TVN_SELCHANGEDA
;
487 case TVN_GETDISPINFOW
: return TVN_GETDISPINFOA
;
488 case TVN_SETDISPINFOW
: return TVN_SETDISPINFOA
;
489 case TVN_ITEMEXPANDINGW
: return TVN_ITEMEXPANDINGA
;
490 case TVN_ITEMEXPANDEDW
: return TVN_ITEMEXPANDEDA
;
491 case TVN_BEGINDRAGW
: return TVN_BEGINDRAGA
;
492 case TVN_BEGINRDRAGW
: return TVN_BEGINRDRAGA
;
493 case TVN_DELETEITEMW
: return TVN_DELETEITEMA
;
494 case TVN_BEGINLABELEDITW
: return TVN_BEGINLABELEDITA
;
495 case TVN_ENDLABELEDITW
: return TVN_ENDLABELEDITA
;
496 case TVN_GETINFOTIPW
: return TVN_GETINFOTIPA
;
503 TREEVIEW_SendRealNotify(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
505 TRACE("wParam=%d, lParam=%ld\n", wParam
, lParam
);
506 return SendMessageW(infoPtr
->hwndNotify
, WM_NOTIFY
, wParam
, lParam
);
510 TREEVIEW_SendSimpleNotify(TREEVIEW_INFO
*infoPtr
, UINT code
)
513 HWND hwnd
= infoPtr
->hwnd
;
516 nmhdr
.hwndFrom
= hwnd
;
517 nmhdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
518 nmhdr
.code
= get_notifycode(infoPtr
, code
);
520 return (BOOL
)TREEVIEW_SendRealNotify(infoPtr
,
521 (WPARAM
)nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
525 TREEVIEW_TVItemFromItem(TREEVIEW_INFO
*infoPtr
, UINT mask
, TVITEMW
*tvItem
, TREEVIEW_ITEM
*item
)
528 tvItem
->hItem
= item
;
529 tvItem
->state
= item
->state
;
530 tvItem
->stateMask
= 0;
531 tvItem
->iImage
= item
->iImage
;
532 tvItem
->iSelectedImage
= item
->iSelectedImage
;
533 tvItem
->cChildren
= item
->cChildren
;
534 tvItem
->lParam
= item
->lParam
;
538 if (!infoPtr
->bNtfUnicode
)
540 tvItem
->cchTextMax
= WideCharToMultiByte( CP_ACP
, 0, item
->pszText
, -1, NULL
, 0, NULL
, NULL
);
541 tvItem
->pszText
= Alloc (tvItem
->cchTextMax
);
542 WideCharToMultiByte( CP_ACP
, 0, item
->pszText
, -1, (LPSTR
)tvItem
->pszText
, tvItem
->cchTextMax
, 0, 0 );
546 tvItem
->cchTextMax
= item
->cchTextMax
;
547 tvItem
->pszText
= item
->pszText
;
552 tvItem
->cchTextMax
= 0;
553 tvItem
->pszText
= NULL
;
558 TREEVIEW_SendTreeviewNotify(TREEVIEW_INFO
*infoPtr
, UINT code
, UINT action
,
559 UINT mask
, HTREEITEM oldItem
, HTREEITEM newItem
)
561 HWND hwnd
= infoPtr
->hwnd
;
565 TRACE("code:%d action:%x olditem:%p newitem:%p\n",
566 code
, action
, oldItem
, newItem
);
568 ZeroMemory(&nmhdr
, sizeof(NMTREEVIEWW
));
570 nmhdr
.hdr
.hwndFrom
= hwnd
;
571 nmhdr
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
572 nmhdr
.hdr
.code
= get_notifycode(infoPtr
, code
);
573 nmhdr
.action
= action
;
576 TREEVIEW_TVItemFromItem(infoPtr
, mask
, &nmhdr
.itemOld
, oldItem
);
579 TREEVIEW_TVItemFromItem(infoPtr
, mask
, &nmhdr
.itemNew
, newItem
);
584 ret
= (BOOL
)TREEVIEW_SendRealNotify(infoPtr
,
585 (WPARAM
)nmhdr
.hdr
.idFrom
,
587 if (!infoPtr
->bNtfUnicode
)
589 Free(nmhdr
.itemOld
.pszText
);
590 Free(nmhdr
.itemNew
.pszText
);
596 TREEVIEW_SendTreeviewDnDNotify(TREEVIEW_INFO
*infoPtr
, UINT code
,
597 HTREEITEM dragItem
, POINT pt
)
599 HWND hwnd
= infoPtr
->hwnd
;
602 TRACE("code:%d dragitem:%p\n", code
, dragItem
);
604 nmhdr
.hdr
.hwndFrom
= hwnd
;
605 nmhdr
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
606 nmhdr
.hdr
.code
= get_notifycode(infoPtr
, code
);
608 nmhdr
.itemNew
.mask
= TVIF_STATE
| TVIF_PARAM
| TVIF_HANDLE
;
609 nmhdr
.itemNew
.hItem
= dragItem
;
610 nmhdr
.itemNew
.state
= dragItem
->state
;
611 nmhdr
.itemNew
.lParam
= dragItem
->lParam
;
613 nmhdr
.ptDrag
.x
= pt
.x
;
614 nmhdr
.ptDrag
.y
= pt
.y
;
616 return (BOOL
)TREEVIEW_SendRealNotify(infoPtr
,
617 (WPARAM
)nmhdr
.hdr
.idFrom
,
623 TREEVIEW_SendCustomDrawNotify(TREEVIEW_INFO
*infoPtr
, DWORD dwDrawStage
,
626 HWND hwnd
= infoPtr
->hwnd
;
627 NMTVCUSTOMDRAW nmcdhdr
;
630 TRACE("drawstage:%lx hdc:%p\n", dwDrawStage
, hdc
);
632 nmcd
= &nmcdhdr
.nmcd
;
633 nmcd
->hdr
.hwndFrom
= hwnd
;
634 nmcd
->hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
635 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
636 nmcd
->dwDrawStage
= dwDrawStage
;
639 nmcd
->dwItemSpec
= 0;
640 nmcd
->uItemState
= 0;
641 nmcd
->lItemlParam
= 0;
642 nmcdhdr
.clrText
= infoPtr
->clrText
;
643 nmcdhdr
.clrTextBk
= infoPtr
->clrBk
;
646 return (BOOL
)TREEVIEW_SendRealNotify(infoPtr
,
647 (WPARAM
)nmcd
->hdr
.idFrom
,
653 /* FIXME: need to find out when the flags in uItemState need to be set */
656 TREEVIEW_SendCustomDrawItemNotify(TREEVIEW_INFO
*infoPtr
, HDC hdc
,
657 TREEVIEW_ITEM
*wineItem
, UINT uItemDrawState
,
658 NMTVCUSTOMDRAW
*nmcdhdr
)
660 HWND hwnd
= infoPtr
->hwnd
;
663 DWORD_PTR dwItemSpec
;
667 dwDrawStage
= CDDS_ITEM
| uItemDrawState
;
668 dwItemSpec
= (DWORD_PTR
)wineItem
;
670 if (wineItem
->state
& TVIS_SELECTED
)
671 uItemState
|= CDIS_SELECTED
;
672 if (wineItem
== infoPtr
->selectedItem
)
673 uItemState
|= CDIS_FOCUS
;
674 if (wineItem
== infoPtr
->hotItem
)
675 uItemState
|= CDIS_HOT
;
677 nmcd
= &nmcdhdr
->nmcd
;
678 nmcd
->hdr
.hwndFrom
= hwnd
;
679 nmcd
->hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
680 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
681 nmcd
->dwDrawStage
= dwDrawStage
;
683 nmcd
->rc
= wineItem
->rect
;
684 nmcd
->dwItemSpec
= dwItemSpec
;
685 nmcd
->uItemState
= uItemState
;
686 nmcd
->lItemlParam
= wineItem
->lParam
;
687 nmcdhdr
->iLevel
= wineItem
->iLevel
;
689 TRACE("drawstage:%lx hdc:%p item:%lx, itemstate:%x, lItemlParam:%lx\n",
690 nmcd
->dwDrawStage
, nmcd
->hdc
, nmcd
->dwItemSpec
,
691 nmcd
->uItemState
, nmcd
->lItemlParam
);
693 retval
= TREEVIEW_SendRealNotify(infoPtr
,
694 (WPARAM
)nmcd
->hdr
.idFrom
,
701 TREEVIEW_BeginLabelEditNotify(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*editItem
)
703 HWND hwnd
= infoPtr
->hwnd
;
707 tvdi
.hdr
.hwndFrom
= hwnd
;
708 tvdi
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
709 tvdi
.hdr
.code
= get_notifycode(infoPtr
, TVN_BEGINLABELEDITW
);
711 TREEVIEW_TVItemFromItem(infoPtr
, TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
| TVIF_TEXT
,
712 &tvdi
.item
, editItem
);
714 ret
= (BOOL
)TREEVIEW_SendRealNotify(infoPtr
, tvdi
.hdr
.idFrom
, (LPARAM
)&tvdi
);
716 if (!infoPtr
->bNtfUnicode
)
717 Free(tvdi
.item
.pszText
);
723 TREEVIEW_UpdateDispInfo(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
726 NMTVDISPINFOW callback
;
727 HWND hwnd
= infoPtr
->hwnd
;
729 TRACE("mask %x callbackMask %x\n", mask
, wineItem
->callbackMask
);
730 mask
&= wineItem
->callbackMask
;
732 if (mask
== 0) return;
734 callback
.hdr
.hwndFrom
= hwnd
;
735 callback
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
736 callback
.hdr
.code
= get_notifycode(infoPtr
, TVN_GETDISPINFOW
);
738 /* 'state' always contains valid value, as well as 'lParam'.
739 * All other parameters are uninitialized.
741 callback
.item
.pszText
= wineItem
->pszText
;
742 callback
.item
.cchTextMax
= wineItem
->cchTextMax
;
743 callback
.item
.mask
= mask
;
744 callback
.item
.hItem
= wineItem
;
745 callback
.item
.state
= wineItem
->state
;
746 callback
.item
.lParam
= wineItem
->lParam
;
748 /* If text is changed we need to recalculate textWidth */
749 if (mask
& TVIF_TEXT
)
750 wineItem
->textWidth
= 0;
752 TREEVIEW_SendRealNotify(infoPtr
,
753 (WPARAM
)callback
.hdr
.idFrom
, (LPARAM
)&callback
);
755 /* It may have changed due to a call to SetItem. */
756 mask
&= wineItem
->callbackMask
;
758 if ((mask
& TVIF_TEXT
) && callback
.item
.pszText
!= wineItem
->pszText
)
760 /* Instead of copying text into our buffer user specified its own */
761 if (!infoPtr
->bNtfUnicode
) {
764 int len
= MultiByteToWideChar( CP_ACP
, 0,
765 (LPSTR
)callback
.item
.pszText
, -1,
767 buflen
= max((len
)*sizeof(WCHAR
), TEXT_CALLBACK_SIZE
);
768 newText
= (LPWSTR
)ReAlloc(wineItem
->pszText
, buflen
);
770 TRACE("returned str %s, len=%d, buflen=%d\n",
771 debugstr_a((LPSTR
)callback
.item
.pszText
), len
, buflen
);
775 wineItem
->pszText
= newText
;
776 MultiByteToWideChar( CP_ACP
, 0,
777 (LPSTR
)callback
.item
.pszText
, -1,
778 wineItem
->pszText
, buflen
/sizeof(WCHAR
));
779 wineItem
->cchTextMax
= buflen
/sizeof(WCHAR
);
781 /* If ReAlloc fails we have nothing to do, but keep original text */
784 int len
= max(lstrlenW(callback
.item
.pszText
) + 1,
786 LPWSTR newText
= ReAlloc(wineItem
->pszText
, len
);
788 TRACE("returned wstr %s, len=%d\n",
789 debugstr_w(callback
.item
.pszText
), len
);
793 wineItem
->pszText
= newText
;
794 strcpyW(wineItem
->pszText
, callback
.item
.pszText
);
795 wineItem
->cchTextMax
= len
;
797 /* If ReAlloc fails we have nothing to do, but keep original text */
800 else if (mask
& TVIF_TEXT
) {
801 /* User put text into our buffer, that is ok unless A string */
802 if (!infoPtr
->bNtfUnicode
) {
804 LPWSTR oldText
= NULL
;
806 int len
= MultiByteToWideChar( CP_ACP
, 0,
807 (LPSTR
)callback
.item
.pszText
, -1,
809 buflen
= max((len
)*sizeof(WCHAR
), TEXT_CALLBACK_SIZE
);
810 newText
= (LPWSTR
)Alloc(buflen
);
812 TRACE("same buffer str %s, len=%d, buflen=%d\n",
813 debugstr_a((LPSTR
)callback
.item
.pszText
), len
, buflen
);
817 oldText
= wineItem
->pszText
;
818 wineItem
->pszText
= newText
;
819 MultiByteToWideChar( CP_ACP
, 0,
820 (LPSTR
)callback
.item
.pszText
, -1,
821 wineItem
->pszText
, buflen
/sizeof(WCHAR
));
822 wineItem
->cchTextMax
= buflen
/sizeof(WCHAR
);
829 if (mask
& TVIF_IMAGE
)
830 wineItem
->iImage
= callback
.item
.iImage
;
832 if (mask
& TVIF_SELECTEDIMAGE
)
833 wineItem
->iSelectedImage
= callback
.item
.iSelectedImage
;
835 if (mask
& TVIF_CHILDREN
)
836 wineItem
->cChildren
= callback
.item
.cChildren
;
838 /* These members are now permanently set. */
839 if (callback
.item
.mask
& TVIF_DI_SETITEM
)
840 wineItem
->callbackMask
&= ~callback
.item
.mask
;
843 /***************************************************************************
844 * This function uses cChildren field to decide whether the item has
846 * Note: if this returns TRUE, the child items may not actually exist,
847 * they could be virtual.
849 * Just use wineItem->firstChild to check for physical children.
852 TREEVIEW_HasChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
854 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_CHILDREN
);
856 return wineItem
->cChildren
> 0;
860 /* Item Position ********************************************************/
862 /* Compute linesOffset, stateOffset, imageOffset, textOffset of an item. */
864 TREEVIEW_ComputeItemInternalMetrics(TREEVIEW_INFO
*infoPtr
,
867 /* Same effect, different optimisation. */
869 BOOL lar
= ((infoPtr
->dwStyle
& TVS_LINESATROOT
)
870 && (infoPtr
->dwStyle
& (TVS_HASLINES
|TVS_HASBUTTONS
)));
872 BOOL lar
= ((infoPtr
->dwStyle
873 & (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
877 item
->linesOffset
= infoPtr
->uIndent
* (item
->iLevel
+ lar
- 1)
879 item
->stateOffset
= item
->linesOffset
+ infoPtr
->uIndent
;
880 item
->imageOffset
= item
->stateOffset
881 + (STATEIMAGEINDEX(item
->state
) ? infoPtr
->stateImageWidth
: 0);
882 item
->textOffset
= item
->imageOffset
+ infoPtr
->normalImageWidth
;
886 TREEVIEW_ComputeTextWidth(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
, HDC hDC
)
892 /* DRAW's OM docker creates items like this */
893 if (item
->pszText
== NULL
)
905 hdc
= GetDC(infoPtr
->hwnd
);
906 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, item
));
909 GetTextExtentPoint32W(hdc
, item
->pszText
, strlenW(item
->pszText
), &sz
);
910 item
->textWidth
= sz
.cx
;
914 SelectObject(hdc
, hOldFont
);
920 TREEVIEW_ComputeItemRect(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
922 item
->rect
.top
= infoPtr
->uItemHeight
*
923 (item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
);
925 item
->rect
.bottom
= item
->rect
.top
926 + infoPtr
->uItemHeight
* item
->iIntegral
- 1;
929 item
->rect
.right
= infoPtr
->clientWidth
;
932 /* We know that only items after start need their order updated. */
934 TREEVIEW_RecalculateVisibleOrder(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*start
)
941 start
= infoPtr
->root
->firstChild
;
945 order
= start
->visibleOrder
;
947 for (item
= start
; item
!= NULL
;
948 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
950 item
->visibleOrder
= order
;
951 order
+= item
->iIntegral
;
954 infoPtr
->maxVisibleOrder
= order
;
956 for (item
= start
; item
!= NULL
;
957 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
959 TREEVIEW_ComputeItemRect(infoPtr
, item
);
964 /* Update metrics of all items in selected subtree.
965 * root must be expanded
968 TREEVIEW_UpdateSubTree(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*root
)
970 TREEVIEW_ITEM
*sibling
;
974 if (!root
->firstChild
|| !(root
->state
& TVIS_EXPANDED
))
977 root
->state
&= ~TVIS_EXPANDED
;
978 sibling
= TREEVIEW_GetNextListItem(infoPtr
, root
);
979 root
->state
|= TVIS_EXPANDED
;
981 hdc
= GetDC(infoPtr
->hwnd
);
982 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
984 for (; root
!= sibling
;
985 root
= TREEVIEW_GetNextListItem(infoPtr
, root
))
987 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, root
);
989 if (root
->callbackMask
& TVIF_TEXT
)
990 TREEVIEW_UpdateDispInfo(infoPtr
, root
, TVIF_TEXT
);
992 if (root
->textWidth
== 0)
994 SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, root
));
995 TREEVIEW_ComputeTextWidth(infoPtr
, root
, hdc
);
999 SelectObject(hdc
, hOldFont
);
1000 ReleaseDC(infoPtr
->hwnd
, hdc
);
1003 /* Item Allocation **********************************************************/
1005 static TREEVIEW_ITEM
*
1006 TREEVIEW_AllocateItem(TREEVIEW_INFO
*infoPtr
)
1008 TREEVIEW_ITEM
*newItem
= Alloc(sizeof(TREEVIEW_ITEM
));
1013 newItem
->iImage
= -1;
1014 newItem
->iSelectedImage
= -1;
1016 if (DPA_InsertPtr(infoPtr
->items
, INT_MAX
, newItem
) == -1)
1025 /* Exact opposite of TREEVIEW_AllocateItem. In particular, it does not
1026 * free item->pszText. */
1028 TREEVIEW_FreeItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
1030 DPA_DeletePtr(infoPtr
->items
, DPA_GetPtrIndex(infoPtr
->items
, item
));
1032 if (infoPtr
->selectedItem
== item
)
1033 infoPtr
->selectedItem
= NULL
;
1034 if (infoPtr
->hotItem
== item
)
1035 infoPtr
->hotItem
= NULL
;
1036 if (infoPtr
->focusedItem
== item
)
1037 infoPtr
->focusedItem
= NULL
;
1038 if (infoPtr
->firstVisible
== item
)
1039 infoPtr
->firstVisible
= NULL
;
1040 if (infoPtr
->dropItem
== item
)
1041 infoPtr
->dropItem
= NULL
;
1042 if (infoPtr
->insertMarkItem
== item
)
1043 infoPtr
->insertMarkItem
= NULL
;
1047 /* Item Insertion *******************************************************/
1049 /***************************************************************************
1050 * This method inserts newItem before sibling as a child of parent.
1051 * sibling can be NULL, but only if parent has no children.
1054 TREEVIEW_InsertBefore(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
1055 TREEVIEW_ITEM
*parent
)
1057 assert(newItem
!= NULL
);
1058 assert(parent
!= NULL
);
1060 if (sibling
!= NULL
)
1062 assert(sibling
->parent
== parent
);
1064 if (sibling
->prevSibling
!= NULL
)
1065 sibling
->prevSibling
->nextSibling
= newItem
;
1067 newItem
->prevSibling
= sibling
->prevSibling
;
1068 sibling
->prevSibling
= newItem
;
1071 newItem
->prevSibling
= NULL
;
1073 newItem
->nextSibling
= sibling
;
1075 if (parent
->firstChild
== sibling
)
1076 parent
->firstChild
= newItem
;
1078 if (parent
->lastChild
== NULL
)
1079 parent
->lastChild
= newItem
;
1082 /***************************************************************************
1083 * This method inserts newItem after sibling as a child of parent.
1084 * sibling can be NULL, but only if parent has no children.
1087 TREEVIEW_InsertAfter(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
1088 TREEVIEW_ITEM
*parent
)
1090 assert(newItem
!= NULL
);
1091 assert(parent
!= NULL
);
1093 if (sibling
!= NULL
)
1095 assert(sibling
->parent
== parent
);
1097 if (sibling
->nextSibling
!= NULL
)
1098 sibling
->nextSibling
->prevSibling
= newItem
;
1100 newItem
->nextSibling
= sibling
->nextSibling
;
1101 sibling
->nextSibling
= newItem
;
1104 newItem
->nextSibling
= NULL
;
1106 newItem
->prevSibling
= sibling
;
1108 if (parent
->lastChild
== sibling
)
1109 parent
->lastChild
= newItem
;
1111 if (parent
->firstChild
== NULL
)
1112 parent
->firstChild
= newItem
;
1116 TREEVIEW_DoSetItemT(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
1117 const TVITEMEXW
*tvItem
, BOOL isW
)
1119 UINT callbackClear
= 0;
1120 UINT callbackSet
= 0;
1122 TRACE("item %p\n", wineItem
);
1123 /* Do this first in case it fails. */
1124 if (tvItem
->mask
& TVIF_TEXT
)
1126 wineItem
->textWidth
= 0; /* force width recalculation */
1127 if (tvItem
->pszText
!= LPSTR_TEXTCALLBACKW
) /* covers != TEXTCALLBACKA too */
1132 len
= lstrlenW(tvItem
->pszText
) + 1;
1134 len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)tvItem
->pszText
, -1, NULL
, 0);
1136 newText
= ReAlloc(wineItem
->pszText
, len
* sizeof(WCHAR
));
1138 if (newText
== NULL
) return FALSE
;
1140 callbackClear
|= TVIF_TEXT
;
1142 wineItem
->pszText
= newText
;
1143 wineItem
->cchTextMax
= len
;
1145 lstrcpynW(wineItem
->pszText
, tvItem
->pszText
, len
);
1147 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)tvItem
->pszText
, -1,
1148 wineItem
->pszText
, len
);
1150 TRACE("setting text %s, item %p\n", debugstr_w(wineItem
->pszText
), wineItem
);
1154 callbackSet
|= TVIF_TEXT
;
1156 wineItem
->pszText
= ReAlloc(wineItem
->pszText
,
1157 TEXT_CALLBACK_SIZE
* sizeof(WCHAR
));
1158 wineItem
->cchTextMax
= TEXT_CALLBACK_SIZE
;
1159 TRACE("setting callback, item %p\n", wineItem
);
1163 if (tvItem
->mask
& TVIF_CHILDREN
)
1165 wineItem
->cChildren
= tvItem
->cChildren
;
1167 if (wineItem
->cChildren
== I_CHILDRENCALLBACK
)
1168 callbackSet
|= TVIF_CHILDREN
;
1170 callbackClear
|= TVIF_CHILDREN
;
1173 if (tvItem
->mask
& TVIF_IMAGE
)
1175 wineItem
->iImage
= tvItem
->iImage
;
1177 if (wineItem
->iImage
== I_IMAGECALLBACK
)
1178 callbackSet
|= TVIF_IMAGE
;
1180 callbackClear
|= TVIF_IMAGE
;
1183 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
1185 wineItem
->iSelectedImage
= tvItem
->iSelectedImage
;
1187 if (wineItem
->iSelectedImage
== I_IMAGECALLBACK
)
1188 callbackSet
|= TVIF_SELECTEDIMAGE
;
1190 callbackClear
|= TVIF_SELECTEDIMAGE
;
1193 if (tvItem
->mask
& TVIF_PARAM
)
1194 wineItem
->lParam
= tvItem
->lParam
;
1196 /* If the application sets TVIF_INTEGRAL without
1197 * supplying a TVITEMEX structure, it's toast. */
1198 if (tvItem
->mask
& TVIF_INTEGRAL
)
1199 wineItem
->iIntegral
= tvItem
->iIntegral
;
1201 if (tvItem
->mask
& TVIF_STATE
)
1203 TRACE("prevstate,state,mask:%x,%x,%x\n", wineItem
->state
, tvItem
->state
,
1205 wineItem
->state
&= ~tvItem
->stateMask
;
1206 wineItem
->state
|= (tvItem
->state
& tvItem
->stateMask
);
1209 wineItem
->callbackMask
|= callbackSet
;
1210 wineItem
->callbackMask
&= ~callbackClear
;
1215 /* Note that the new item is pre-zeroed. */
1217 TREEVIEW_InsertItemT(TREEVIEW_INFO
*infoPtr
, const TVINSERTSTRUCTW
*ptdi
, BOOL isW
)
1219 const TVITEMEXW
*tvItem
= &ptdi
->u
.itemex
;
1220 HTREEITEM insertAfter
;
1221 TREEVIEW_ITEM
*newItem
, *parentItem
;
1222 BOOL bTextUpdated
= FALSE
;
1224 if (ptdi
->hParent
== TVI_ROOT
|| ptdi
->hParent
== 0)
1226 parentItem
= infoPtr
->root
;
1230 parentItem
= ptdi
->hParent
;
1232 if (!TREEVIEW_ValidItem(infoPtr
, parentItem
))
1234 WARN("invalid parent %p\n", parentItem
);
1235 return (LRESULT
)(HTREEITEM
)NULL
;
1239 insertAfter
= ptdi
->hInsertAfter
;
1241 /* Validate this now for convenience. */
1242 switch ((DWORD_PTR
)insertAfter
)
1244 case (DWORD_PTR
)TVI_FIRST
:
1245 case (DWORD_PTR
)TVI_LAST
:
1246 case (DWORD_PTR
)TVI_SORT
:
1250 if (!TREEVIEW_ValidItem(infoPtr
, insertAfter
) ||
1251 insertAfter
->parent
!= parentItem
)
1253 WARN("invalid insert after %p\n", insertAfter
);
1254 insertAfter
= TVI_LAST
;
1258 TRACE("parent %p position %p: %s\n", parentItem
, insertAfter
,
1259 (tvItem
->mask
& TVIF_TEXT
)
1260 ? ((tvItem
->pszText
== LPSTR_TEXTCALLBACKW
) ? "<callback>"
1261 : (isW
? debugstr_w(tvItem
->pszText
) : debugstr_a((LPSTR
)tvItem
->pszText
)))
1264 newItem
= TREEVIEW_AllocateItem(infoPtr
);
1265 if (newItem
== NULL
)
1266 return (LRESULT
)(HTREEITEM
)NULL
;
1268 newItem
->parent
= parentItem
;
1269 newItem
->iIntegral
= 1;
1271 if (!TREEVIEW_DoSetItemT(infoPtr
, newItem
, tvItem
, isW
))
1272 return (LRESULT
)(HTREEITEM
)NULL
;
1274 /* After this point, nothing can fail. (Except for TVI_SORT.) */
1276 infoPtr
->uNumItems
++;
1278 switch ((DWORD_PTR
)insertAfter
)
1280 case (DWORD_PTR
)TVI_FIRST
:
1282 TREEVIEW_ITEM
*originalFirst
= parentItem
->firstChild
;
1283 TREEVIEW_InsertBefore(newItem
, parentItem
->firstChild
, parentItem
);
1284 if (infoPtr
->firstVisible
== originalFirst
)
1285 TREEVIEW_SetFirstVisible(infoPtr
, newItem
, TRUE
);
1289 case (DWORD_PTR
)TVI_LAST
:
1290 TREEVIEW_InsertAfter(newItem
, parentItem
->lastChild
, parentItem
);
1293 /* hInsertAfter names a specific item we want to insert after */
1295 TREEVIEW_InsertAfter(newItem
, insertAfter
, insertAfter
->parent
);
1298 case (DWORD_PTR
)TVI_SORT
:
1300 TREEVIEW_ITEM
*aChild
;
1301 TREEVIEW_ITEM
*previousChild
= NULL
;
1302 TREEVIEW_ITEM
*originalFirst
= parentItem
->firstChild
;
1303 BOOL bItemInserted
= FALSE
;
1305 aChild
= parentItem
->firstChild
;
1307 bTextUpdated
= TRUE
;
1308 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1310 /* Iterate the parent children to see where we fit in */
1311 while (aChild
!= NULL
)
1315 TREEVIEW_UpdateDispInfo(infoPtr
, aChild
, TVIF_TEXT
);
1316 comp
= lstrcmpW(newItem
->pszText
, aChild
->pszText
);
1318 if (comp
< 0) /* we are smaller than the current one */
1320 TREEVIEW_InsertBefore(newItem
, aChild
, parentItem
);
1321 if (infoPtr
->firstVisible
== originalFirst
&&
1322 aChild
== originalFirst
)
1323 TREEVIEW_SetFirstVisible(infoPtr
, newItem
, TRUE
);
1324 bItemInserted
= TRUE
;
1327 else if (comp
> 0) /* we are bigger than the current one */
1329 previousChild
= aChild
;
1331 /* This will help us to exit if there is no more sibling */
1332 aChild
= (aChild
->nextSibling
== 0)
1334 : aChild
->nextSibling
;
1336 /* Look at the next item */
1342 * An item with this name is already existing, therefore,
1343 * we add after the one we found
1345 TREEVIEW_InsertAfter(newItem
, aChild
, parentItem
);
1346 bItemInserted
= TRUE
;
1352 * we reach the end of the child list and the item has not
1353 * yet been inserted, therefore, insert it after the last child.
1355 if ((!bItemInserted
) && (aChild
== NULL
))
1356 TREEVIEW_InsertAfter(newItem
, previousChild
, parentItem
);
1363 TRACE("new item %p; parent %p, mask %x\n", newItem
,
1364 newItem
->parent
, tvItem
->mask
);
1366 newItem
->iLevel
= newItem
->parent
->iLevel
+ 1;
1368 if (newItem
->parent
->cChildren
== 0)
1369 newItem
->parent
->cChildren
= 1;
1371 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
1373 if (STATEIMAGEINDEX(newItem
->state
) == 0)
1374 newItem
->state
|= INDEXTOSTATEIMAGEMASK(1);
1377 if (infoPtr
->firstVisible
== NULL
)
1378 infoPtr
->firstVisible
= newItem
;
1380 TREEVIEW_VerifyTree(infoPtr
);
1382 if (parentItem
== infoPtr
->root
||
1383 (ISVISIBLE(parentItem
) && parentItem
->state
& TVIS_EXPANDED
))
1385 TREEVIEW_ITEM
*item
;
1386 TREEVIEW_ITEM
*prev
= TREEVIEW_GetPrevListItem(infoPtr
, newItem
);
1388 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1389 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, newItem
);
1392 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1394 TREEVIEW_ComputeTextWidth(infoPtr
, newItem
, 0);
1395 TREEVIEW_UpdateScrollBars(infoPtr
);
1397 * if the item was inserted in a visible part of the tree,
1398 * invalidate it, as well as those after it
1400 for (item
= newItem
;
1402 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
1403 TREEVIEW_Invalidate(infoPtr
, item
);
1407 newItem
->visibleOrder
= -1;
1409 /* refresh treeview if newItem is the first item inserted under parentItem */
1410 if (ISVISIBLE(parentItem
) && newItem
->prevSibling
== newItem
->nextSibling
)
1412 /* parent got '+' - update it */
1413 TREEVIEW_Invalidate(infoPtr
, parentItem
);
1417 return (LRESULT
)newItem
;
1420 /* Item Deletion ************************************************************/
1422 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
);
1425 TREEVIEW_RemoveAllChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*parentItem
)
1427 TREEVIEW_ITEM
*kill
= parentItem
->firstChild
;
1429 while (kill
!= NULL
)
1431 TREEVIEW_ITEM
*next
= kill
->nextSibling
;
1433 TREEVIEW_RemoveItem(infoPtr
, kill
);
1438 assert(parentItem
->cChildren
<= 0); /* I_CHILDRENCALLBACK or 0 */
1439 assert(parentItem
->firstChild
== NULL
);
1440 assert(parentItem
->lastChild
== NULL
);
1444 TREEVIEW_UnlinkItem(TREEVIEW_ITEM
*item
)
1446 TREEVIEW_ITEM
*parentItem
= item
->parent
;
1448 assert(item
!= NULL
);
1449 assert(item
->parent
!= NULL
); /* i.e. it must not be the root */
1451 if (parentItem
->firstChild
== item
)
1452 parentItem
->firstChild
= item
->nextSibling
;
1454 if (parentItem
->lastChild
== item
)
1455 parentItem
->lastChild
= item
->prevSibling
;
1457 if (parentItem
->firstChild
== NULL
&& parentItem
->lastChild
== NULL
1458 && parentItem
->cChildren
> 0)
1459 parentItem
->cChildren
= 0;
1461 if (item
->prevSibling
)
1462 item
->prevSibling
->nextSibling
= item
->nextSibling
;
1464 if (item
->nextSibling
)
1465 item
->nextSibling
->prevSibling
= item
->prevSibling
;
1469 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
1471 TRACE("%p, (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1473 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_DELETEITEMW
, TVC_UNKNOWN
,
1474 TVIF_HANDLE
| TVIF_PARAM
, wineItem
, 0);
1476 if (wineItem
->firstChild
)
1477 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
1479 TREEVIEW_UnlinkItem(wineItem
);
1481 infoPtr
->uNumItems
--;
1483 if (wineItem
->pszText
&& wineItem
->pszText
!= LPSTR_TEXTCALLBACKW
)
1484 Free(wineItem
->pszText
);
1486 TREEVIEW_FreeItem(infoPtr
, wineItem
);
1490 /* Empty out the tree. */
1492 TREEVIEW_RemoveTree(TREEVIEW_INFO
*infoPtr
)
1494 TREEVIEW_RemoveAllChildren(infoPtr
, infoPtr
->root
);
1496 assert(infoPtr
->uNumItems
== 0); /* root isn't counted in uNumItems */
1500 TREEVIEW_DeleteItem(TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
)
1502 TREEVIEW_ITEM
*newSelection
= NULL
;
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
;
1513 TREEVIEW_RemoveTree(infoPtr
);
1517 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
1520 TRACE("%p (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1521 parent
= wineItem
->parent
;
1523 if (ISVISIBLE(wineItem
))
1525 prev
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
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
;
1538 newSelection
= wineItem
->prevSibling
;
1539 TRACE("newSelection = %p\n", newSelection
);
1542 if (infoPtr
->firstVisible
== wineItem
)
1544 if (wineItem
->nextSibling
)
1545 newFirstVisible
= wineItem
->nextSibling
;
1546 else if (wineItem
->prevSibling
)
1547 newFirstVisible
= wineItem
->prevSibling
;
1548 else if (wineItem
->parent
!= infoPtr
->root
)
1549 newFirstVisible
= wineItem
->parent
;
1550 TREEVIEW_SetFirstVisible(infoPtr
, NULL
, TRUE
);
1553 newFirstVisible
= infoPtr
->firstVisible
;
1555 TREEVIEW_RemoveItem(infoPtr
, wineItem
);
1558 /* Don't change if somebody else already has (infoPtr->selectedItem is cleared by FreeItem). */
1559 if (!infoPtr
->selectedItem
&& newSelection
)
1561 if (TREEVIEW_ValidItem(infoPtr
, newSelection
))
1562 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
, TVC_UNKNOWN
);
1565 /* Validate insertMark dropItem.
1566 * hotItem ??? - used for comparison only.
1568 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->insertMarkItem
))
1569 infoPtr
->insertMarkItem
= 0;
1571 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->dropItem
))
1572 infoPtr
->dropItem
= 0;
1574 if (!TREEVIEW_ValidItem(infoPtr
, newFirstVisible
))
1575 newFirstVisible
= infoPtr
->root
->firstChild
;
1577 TREEVIEW_VerifyTree(infoPtr
);
1582 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
1583 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1584 TREEVIEW_UpdateScrollBars(infoPtr
);
1585 TREEVIEW_Invalidate(infoPtr
, NULL
);
1587 else if (ISVISIBLE(parent
) && !TREEVIEW_HasChildren(infoPtr
, parent
))
1589 /* parent lost '+/-' - update it */
1590 TREEVIEW_Invalidate(infoPtr
, parent
);
1597 /* Get/Set Messages *********************************************************/
1599 TREEVIEW_SetRedraw(TREEVIEW_INFO
* infoPtr
, WPARAM wParam
, LPARAM lParam
)
1602 infoPtr
->bRedraw
= TRUE
;
1604 infoPtr
->bRedraw
= FALSE
;
1610 TREEVIEW_GetIndent(TREEVIEW_INFO
*infoPtr
)
1613 return infoPtr
->uIndent
;
1617 TREEVIEW_SetIndent(TREEVIEW_INFO
*infoPtr
, UINT newIndent
)
1621 if (newIndent
< MINIMUM_INDENT
)
1622 newIndent
= MINIMUM_INDENT
;
1624 if (infoPtr
->uIndent
!= newIndent
)
1626 infoPtr
->uIndent
= newIndent
;
1627 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1628 TREEVIEW_UpdateScrollBars(infoPtr
);
1629 TREEVIEW_Invalidate(infoPtr
, NULL
);
1637 TREEVIEW_GetToolTips(TREEVIEW_INFO
*infoPtr
)
1640 return (LRESULT
)infoPtr
->hwndToolTip
;
1644 TREEVIEW_SetToolTips(TREEVIEW_INFO
*infoPtr
, HWND hwndTT
)
1649 prevToolTip
= infoPtr
->hwndToolTip
;
1650 infoPtr
->hwndToolTip
= hwndTT
;
1652 return (LRESULT
)prevToolTip
;
1656 TREEVIEW_SetUnicodeFormat(TREEVIEW_INFO
*infoPtr
, BOOL fUnicode
)
1658 BOOL rc
= infoPtr
->bNtfUnicode
;
1659 infoPtr
->bNtfUnicode
= fUnicode
;
1664 TREEVIEW_GetUnicodeFormat(TREEVIEW_INFO
*infoPtr
)
1666 return infoPtr
->bNtfUnicode
;
1670 TREEVIEW_GetScrollTime(TREEVIEW_INFO
*infoPtr
)
1672 return infoPtr
->uScrollTime
;
1676 TREEVIEW_SetScrollTime(TREEVIEW_INFO
*infoPtr
, UINT uScrollTime
)
1678 UINT uOldScrollTime
= infoPtr
->uScrollTime
;
1680 infoPtr
->uScrollTime
= min(uScrollTime
, 100);
1682 return uOldScrollTime
;
1687 TREEVIEW_GetImageList(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
1693 case (WPARAM
)TVSIL_NORMAL
:
1694 return (LRESULT
)infoPtr
->himlNormal
;
1696 case (WPARAM
)TVSIL_STATE
:
1697 return (LRESULT
)infoPtr
->himlState
;
1704 #define TVHEIGHT_MIN 16
1705 #define TVHEIGHT_FONT_ADJUST 3 /* 2 for focus border + 1 for margin some apps assume */
1707 /* Compute the natural height for items. */
1709 TREEVIEW_NaturalHeight(TREEVIEW_INFO
*infoPtr
)
1713 HFONT hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
1716 /* Height is the maximum of:
1717 * 16 (a hack because our fonts are tiny), and
1718 * The text height + border & margin, and
1719 * The size of the normal image list
1721 GetTextMetricsW(hdc
, &tm
);
1722 SelectObject(hdc
, hOldFont
);
1725 height
= TVHEIGHT_MIN
;
1726 if (height
< tm
.tmHeight
+ tm
.tmExternalLeading
+ TVHEIGHT_FONT_ADJUST
)
1727 height
= tm
.tmHeight
+ tm
.tmExternalLeading
+ TVHEIGHT_FONT_ADJUST
;
1728 if (height
< infoPtr
->normalImageHeight
)
1729 height
= infoPtr
->normalImageHeight
;
1734 TREEVIEW_SetImageList(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, HIMAGELIST himlNew
)
1736 HIMAGELIST himlOld
= 0;
1737 int oldWidth
= infoPtr
->normalImageWidth
;
1738 int oldHeight
= infoPtr
->normalImageHeight
;
1741 TRACE("%x,%p\n", wParam
, himlNew
);
1745 case (WPARAM
)TVSIL_NORMAL
:
1746 himlOld
= infoPtr
->himlNormal
;
1747 infoPtr
->himlNormal
= himlNew
;
1749 if (himlNew
!= NULL
)
1750 ImageList_GetIconSize(himlNew
, &infoPtr
->normalImageWidth
,
1751 &infoPtr
->normalImageHeight
);
1754 infoPtr
->normalImageWidth
= 0;
1755 infoPtr
->normalImageHeight
= 0;
1760 case (WPARAM
)TVSIL_STATE
:
1761 himlOld
= infoPtr
->himlState
;
1762 infoPtr
->himlState
= himlNew
;
1764 if (himlNew
!= NULL
)
1765 ImageList_GetIconSize(himlNew
, &infoPtr
->stateImageWidth
,
1766 &infoPtr
->stateImageHeight
);
1769 infoPtr
->stateImageWidth
= 0;
1770 infoPtr
->stateImageHeight
= 0;
1776 if (oldWidth
!= infoPtr
->normalImageWidth
||
1777 oldHeight
!= infoPtr
->normalImageHeight
)
1779 BOOL bRecalcVisible
= FALSE
;
1781 if (oldHeight
!= infoPtr
->normalImageHeight
&&
1782 !infoPtr
->bHeightSet
)
1784 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1785 bRecalcVisible
= TRUE
;
1788 if (infoPtr
->normalImageWidth
> MINIMUM_INDENT
&&
1789 infoPtr
->normalImageWidth
!= infoPtr
->uIndent
)
1791 infoPtr
->uIndent
= infoPtr
->normalImageWidth
;
1792 bRecalcVisible
= TRUE
;
1796 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1798 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1799 TREEVIEW_UpdateScrollBars(infoPtr
);
1802 TREEVIEW_Invalidate(infoPtr
, NULL
);
1804 return (LRESULT
)himlOld
;
1808 TREEVIEW_SetItemHeight(TREEVIEW_INFO
*infoPtr
, INT newHeight
)
1810 INT prevHeight
= infoPtr
->uItemHeight
;
1812 TRACE("%d\n", newHeight
);
1813 if (newHeight
== -1)
1815 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1816 infoPtr
->bHeightSet
= FALSE
;
1820 infoPtr
->uItemHeight
= newHeight
;
1821 infoPtr
->bHeightSet
= TRUE
;
1824 /* Round down, unless we support odd ("non even") heights. */
1825 if (!(infoPtr
->dwStyle
) & TVS_NONEVENHEIGHT
)
1826 infoPtr
->uItemHeight
&= ~1;
1828 if (infoPtr
->uItemHeight
!= prevHeight
)
1830 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1831 TREEVIEW_UpdateScrollBars(infoPtr
);
1832 TREEVIEW_Invalidate(infoPtr
, NULL
);
1839 TREEVIEW_GetItemHeight(TREEVIEW_INFO
*infoPtr
)
1842 return infoPtr
->uItemHeight
;
1847 TREEVIEW_GetFont(TREEVIEW_INFO
*infoPtr
)
1849 TRACE("%p\n", infoPtr
->hFont
);
1850 return (LRESULT
)infoPtr
->hFont
;
1855 TREEVIEW_ResetTextWidth(LPVOID pItem
, LPVOID unused
)
1859 ((TREEVIEW_ITEM
*)pItem
)->textWidth
= 0;
1865 TREEVIEW_SetFont(TREEVIEW_INFO
*infoPtr
, HFONT hFont
, BOOL bRedraw
)
1867 UINT uHeight
= infoPtr
->uItemHeight
;
1869 TRACE("%p %i\n", hFont
, bRedraw
);
1871 infoPtr
->hFont
= hFont
? hFont
: infoPtr
->hDefaultFont
;
1873 DeleteObject(infoPtr
->hBoldFont
);
1874 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
1875 infoPtr
->hUnderlineFont
= TREEVIEW_CreateUnderlineFont(infoPtr
->hFont
);
1877 if (!infoPtr
->bHeightSet
)
1878 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1880 if (uHeight
!= infoPtr
->uItemHeight
)
1881 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1883 DPA_EnumCallback(infoPtr
->items
, TREEVIEW_ResetTextWidth
, 0);
1885 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1886 TREEVIEW_UpdateScrollBars(infoPtr
);
1889 TREEVIEW_Invalidate(infoPtr
, NULL
);
1896 TREEVIEW_GetLineColor(TREEVIEW_INFO
*infoPtr
)
1899 return (LRESULT
)infoPtr
->clrLine
;
1903 TREEVIEW_SetLineColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1905 COLORREF prevColor
= infoPtr
->clrLine
;
1908 infoPtr
->clrLine
= color
;
1909 return (LRESULT
)prevColor
;
1914 TREEVIEW_GetTextColor(TREEVIEW_INFO
*infoPtr
)
1917 return (LRESULT
)infoPtr
->clrText
;
1921 TREEVIEW_SetTextColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1923 COLORREF prevColor
= infoPtr
->clrText
;
1926 infoPtr
->clrText
= color
;
1928 if (infoPtr
->clrText
!= prevColor
)
1929 TREEVIEW_Invalidate(infoPtr
, NULL
);
1931 return (LRESULT
)prevColor
;
1936 TREEVIEW_GetBkColor(TREEVIEW_INFO
*infoPtr
)
1939 return (LRESULT
)infoPtr
->clrBk
;
1943 TREEVIEW_SetBkColor(TREEVIEW_INFO
*infoPtr
, COLORREF newColor
)
1945 COLORREF prevColor
= infoPtr
->clrBk
;
1948 infoPtr
->clrBk
= newColor
;
1950 if (newColor
!= prevColor
)
1951 TREEVIEW_Invalidate(infoPtr
, NULL
);
1953 return (LRESULT
)prevColor
;
1958 TREEVIEW_GetInsertMarkColor(TREEVIEW_INFO
*infoPtr
)
1961 return (LRESULT
)infoPtr
->clrInsertMark
;
1965 TREEVIEW_SetInsertMarkColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1967 COLORREF prevColor
= infoPtr
->clrInsertMark
;
1969 TRACE("%lx\n", color
);
1970 infoPtr
->clrInsertMark
= color
;
1972 return (LRESULT
)prevColor
;
1977 TREEVIEW_SetInsertMark(TREEVIEW_INFO
*infoPtr
, BOOL wParam
, HTREEITEM item
)
1979 TRACE("%d %p\n", wParam
, item
);
1981 if (!TREEVIEW_ValidItem(infoPtr
, item
))
1984 infoPtr
->insertBeforeorAfter
= wParam
;
1985 infoPtr
->insertMarkItem
= item
;
1987 TREEVIEW_Invalidate(infoPtr
, NULL
);
1993 /************************************************************************
1994 * Some serious braindamage here. lParam is a pointer to both the
1995 * input HTREEITEM and the output RECT.
1998 TREEVIEW_GetItemRect(TREEVIEW_INFO
*infoPtr
, BOOL fTextRect
, LPRECT lpRect
)
2000 TREEVIEW_ITEM
*wineItem
;
2001 const HTREEITEM
*pItem
= (HTREEITEM
*)lpRect
;
2005 * validate parameters
2011 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
) || !ISVISIBLE(wineItem
))
2015 * If wParam is TRUE return the text size otherwise return
2016 * the whole item size
2020 /* Windows does not send TVN_GETDISPINFO here. */
2022 lpRect
->top
= wineItem
->rect
.top
;
2023 lpRect
->bottom
= wineItem
->rect
.bottom
;
2025 lpRect
->left
= wineItem
->textOffset
;
2026 lpRect
->right
= wineItem
->textOffset
+ wineItem
->textWidth
;
2030 *lpRect
= wineItem
->rect
;
2033 TRACE("%s [L:%ld R:%ld T:%ld B:%ld]\n", fTextRect
? "text" : "item",
2034 lpRect
->left
, lpRect
->right
, lpRect
->top
, lpRect
->bottom
);
2039 static inline LRESULT
2040 TREEVIEW_GetVisibleCount(TREEVIEW_INFO
*infoPtr
)
2042 /* Suprise! This does not take integral height into account. */
2043 return infoPtr
->clientHeight
/ infoPtr
->uItemHeight
;
2048 TREEVIEW_GetItemT(TREEVIEW_INFO
*infoPtr
, LPTVITEMEXW tvItem
, BOOL isW
)
2050 TREEVIEW_ITEM
*wineItem
;
2052 wineItem
= tvItem
->hItem
;
2053 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2056 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, tvItem
->mask
);
2058 if (tvItem
->mask
& TVIF_CHILDREN
)
2060 if (wineItem
->cChildren
==I_CHILDRENCALLBACK
)
2061 FIXME("I_CHILDRENCALLBACK not supported\n");
2062 tvItem
->cChildren
= wineItem
->cChildren
;
2065 if (tvItem
->mask
& TVIF_HANDLE
)
2066 tvItem
->hItem
= wineItem
;
2068 if (tvItem
->mask
& TVIF_IMAGE
)
2069 tvItem
->iImage
= wineItem
->iImage
;
2071 if (tvItem
->mask
& TVIF_INTEGRAL
)
2072 tvItem
->iIntegral
= wineItem
->iIntegral
;
2074 /* undocumented: windows ignores TVIF_PARAM and
2075 * * always sets lParam
2077 tvItem
->lParam
= wineItem
->lParam
;
2079 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
2080 tvItem
->iSelectedImage
= wineItem
->iSelectedImage
;
2082 if (tvItem
->mask
& TVIF_STATE
)
2083 /* Careful here - Windows ignores the stateMask when you get the state
2084 That contradicts the documentation, but makes more common sense, masking
2085 retrieval in this way seems overkill */
2086 tvItem
->state
= wineItem
->state
;
2088 if (tvItem
->mask
& TVIF_TEXT
)
2092 if (wineItem
->pszText
== LPSTR_TEXTCALLBACKW
)
2094 tvItem
->pszText
= LPSTR_TEXTCALLBACKW
;
2095 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2099 lstrcpynW(tvItem
->pszText
, wineItem
->pszText
, tvItem
->cchTextMax
);
2104 if (wineItem
->pszText
== LPSTR_TEXTCALLBACKW
)
2106 tvItem
->pszText
= (LPWSTR
)LPSTR_TEXTCALLBACKA
;
2107 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2111 WideCharToMultiByte(CP_ACP
, 0, wineItem
->pszText
, -1,
2112 (LPSTR
)tvItem
->pszText
, tvItem
->cchTextMax
, NULL
, NULL
);
2116 TRACE("item <%p>, txt %p, img %p, mask %x\n",
2117 wineItem
, tvItem
->pszText
, &tvItem
->iImage
, tvItem
->mask
);
2122 /* Beware MSDN Library Visual Studio 6.0. It says -1 on failure, 0 on success,
2123 * which is wrong. */
2125 TREEVIEW_SetItemT(TREEVIEW_INFO
*infoPtr
, LPTVITEMEXW tvItem
, BOOL isW
)
2127 TREEVIEW_ITEM
*wineItem
;
2128 TREEVIEW_ITEM originalItem
;
2130 wineItem
= tvItem
->hItem
;
2132 TRACE("item %d,mask %x\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
2135 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2138 /* store the orignal item values */
2139 originalItem
= *wineItem
;
2141 if (!TREEVIEW_DoSetItemT(infoPtr
, wineItem
, tvItem
, isW
))
2144 /* If the text or TVIS_BOLD was changed, and it is visible, recalculate. */
2145 if ((tvItem
->mask
& TVIF_TEXT
2146 || (tvItem
->mask
& TVIF_STATE
&& tvItem
->stateMask
& TVIS_BOLD
))
2147 && ISVISIBLE(wineItem
))
2149 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_TEXT
);
2150 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, 0);
2153 if (tvItem
->mask
!= 0 && ISVISIBLE(wineItem
))
2155 /* The refresh updates everything, but we can't wait until then. */
2156 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, wineItem
);
2158 /* if any of the item's values changed and it's not a callback, redraw the item */
2159 if (item_changed(&originalItem
, wineItem
, tvItem
))
2161 if (tvItem
->mask
& TVIF_INTEGRAL
)
2163 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
2164 TREEVIEW_UpdateScrollBars(infoPtr
);
2166 TREEVIEW_Invalidate(infoPtr
, NULL
);
2170 TREEVIEW_UpdateScrollBars(infoPtr
);
2171 TREEVIEW_Invalidate(infoPtr
, wineItem
);
2180 TREEVIEW_GetItemState(TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
, UINT mask
)
2184 if (!wineItem
|| !TREEVIEW_ValidItem(infoPtr
, wineItem
))
2187 return (wineItem
->state
& mask
);
2191 TREEVIEW_GetNextItem(TREEVIEW_INFO
*infoPtr
, UINT which
, HTREEITEM wineItem
)
2193 TREEVIEW_ITEM
*retval
;
2197 /* handle all the global data here */
2200 case TVGN_CHILD
: /* Special case: child of 0 is root */
2205 retval
= infoPtr
->root
->firstChild
;
2209 retval
= infoPtr
->selectedItem
;
2212 case TVGN_FIRSTVISIBLE
:
2213 retval
= infoPtr
->firstVisible
;
2216 case TVGN_DROPHILITE
:
2217 retval
= infoPtr
->dropItem
;
2220 case TVGN_LASTVISIBLE
:
2221 retval
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
2227 TRACE("flags:%x, returns %p\n", which
, retval
);
2228 return (LRESULT
)retval
;
2231 if (wineItem
== TVI_ROOT
) wineItem
= infoPtr
->root
;
2233 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2239 retval
= wineItem
->nextSibling
;
2242 retval
= wineItem
->prevSibling
;
2245 retval
= (wineItem
->parent
!= infoPtr
->root
) ? wineItem
->parent
: NULL
;
2248 retval
= wineItem
->firstChild
;
2250 case TVGN_NEXTVISIBLE
:
2251 retval
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2253 case TVGN_PREVIOUSVISIBLE
:
2254 retval
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
2257 TRACE("Unknown msg %x,item %p\n", which
, wineItem
);
2261 TRACE("flags:%x, item %p;returns %p\n", which
, wineItem
, retval
);
2262 return (LRESULT
)retval
;
2267 TREEVIEW_GetCount(TREEVIEW_INFO
*infoPtr
)
2269 TRACE(" %d\n", infoPtr
->uNumItems
);
2270 return (LRESULT
)infoPtr
->uNumItems
;
2274 TREEVIEW_ToggleItemState(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2276 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
2278 static const unsigned int state_table
[] = { 0, 2, 1 };
2282 state
= STATEIMAGEINDEX(item
->state
);
2283 TRACE("state:%x\n", state
);
2284 item
->state
&= ~TVIS_STATEIMAGEMASK
;
2287 state
= state_table
[state
];
2289 item
->state
|= INDEXTOSTATEIMAGEMASK(state
);
2291 TRACE("state:%x\n", state
);
2292 TREEVIEW_Invalidate(infoPtr
, item
);
2297 /* Painting *************************************************************/
2299 /* Draw the lines and expand button for an item. Also draws one section
2300 * of the line from item's parent to item's parent's next sibling. */
2302 TREEVIEW_DrawItemLines(TREEVIEW_INFO
*infoPtr
, HDC hdc
, TREEVIEW_ITEM
*item
)
2304 LONG centerx
, centery
;
2305 BOOL lar
= ((infoPtr
->dwStyle
2306 & (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
2310 if (!lar
&& item
->iLevel
== 0)
2313 hbr
= CreateSolidBrush(infoPtr
->clrBk
);
2314 hbrOld
= SelectObject(hdc
, hbr
);
2316 centerx
= (item
->linesOffset
+ item
->stateOffset
) / 2;
2317 centery
= (item
->rect
.top
+ item
->rect
.bottom
) / 2;
2319 if (infoPtr
->dwStyle
& TVS_HASLINES
)
2321 HPEN hOldPen
, hNewPen
;
2326 * Get a dotted grey pen
2328 lb
.lbStyle
= BS_SOLID
;
2329 lb
.lbColor
= infoPtr
->clrLine
;
2330 hNewPen
= ExtCreatePen(PS_COSMETIC
|PS_ALTERNATE
, 1, &lb
, 0, NULL
);
2331 hOldPen
= SelectObject(hdc
, hNewPen
);
2333 MoveToEx(hdc
, item
->stateOffset
, centery
, NULL
);
2334 LineTo(hdc
, centerx
- 1, centery
);
2336 if (item
->prevSibling
|| item
->parent
!= infoPtr
->root
)
2338 MoveToEx(hdc
, centerx
, item
->rect
.top
, NULL
);
2339 LineTo(hdc
, centerx
, centery
);
2342 if (item
->nextSibling
)
2344 MoveToEx(hdc
, centerx
, centery
, NULL
);
2345 LineTo(hdc
, centerx
, item
->rect
.bottom
+ 1);
2348 /* Draw the line from our parent to its next sibling. */
2349 parent
= item
->parent
;
2350 while (parent
!= infoPtr
->root
)
2352 int pcenterx
= (parent
->linesOffset
+ parent
->stateOffset
) / 2;
2354 if (parent
->nextSibling
2355 /* skip top-levels unless TVS_LINESATROOT */
2356 && parent
->stateOffset
> parent
->linesOffset
)
2358 MoveToEx(hdc
, pcenterx
, item
->rect
.top
, NULL
);
2359 LineTo(hdc
, pcenterx
, item
->rect
.bottom
+ 1);
2362 parent
= parent
->parent
;
2365 SelectObject(hdc
, hOldPen
);
2366 DeleteObject(hNewPen
);
2370 * Display the (+/-) signs
2373 if (infoPtr
->dwStyle
& TVS_HASBUTTONS
)
2375 if (item
->cChildren
)
2377 HTHEME theme
= GetWindowTheme(infoPtr
->hwnd
);
2380 RECT glyphRect
= item
->rect
;
2381 glyphRect
.left
= item
->linesOffset
;
2382 glyphRect
.right
= item
->stateOffset
;
2383 DrawThemeBackground (theme
, hdc
, TVP_GLYPH
,
2384 (item
->state
& TVIS_EXPANDED
) ? GLPS_OPENED
: GLPS_CLOSED
,
2389 LONG height
= item
->rect
.bottom
- item
->rect
.top
;
2390 LONG width
= item
->stateOffset
- item
->linesOffset
;
2391 LONG rectsize
= min(height
, width
) / 4;
2392 /* plussize = ceil(rectsize * 3/4) */
2393 LONG plussize
= (rectsize
+ 1) * 3 / 4;
2395 HPEN hNewPen
= CreatePen(PS_SOLID
, 0, infoPtr
->clrLine
);
2396 HPEN hOldPen
= SelectObject(hdc
, hNewPen
);
2398 Rectangle(hdc
, centerx
- rectsize
- 1, centery
- rectsize
- 1,
2399 centerx
+ rectsize
+ 2, centery
+ rectsize
+ 2);
2401 SelectObject(hdc
, hOldPen
);
2402 DeleteObject(hNewPen
);
2404 if (height
< 18 || width
< 18)
2406 MoveToEx(hdc
, centerx
- plussize
+ 1, centery
, NULL
);
2407 LineTo(hdc
, centerx
+ plussize
, centery
);
2409 if (!(item
->state
& TVIS_EXPANDED
))
2411 MoveToEx(hdc
, centerx
, centery
- plussize
+ 1, NULL
);
2412 LineTo(hdc
, centerx
, centery
+ plussize
);
2417 Rectangle(hdc
, centerx
- plussize
+ 1, centery
- 1,
2418 centerx
+ plussize
, centery
+ 2);
2420 if (!(item
->state
& TVIS_EXPANDED
))
2422 Rectangle(hdc
, centerx
- 1, centery
- plussize
+ 1,
2423 centerx
+ 2, centery
+ plussize
);
2424 SetPixel(hdc
, centerx
- 1, centery
, infoPtr
->clrBk
);
2425 SetPixel(hdc
, centerx
+ 1, centery
, infoPtr
->clrBk
);
2431 SelectObject(hdc
, hbrOld
);
2436 TREEVIEW_DrawItem(TREEVIEW_INFO
*infoPtr
, HDC hdc
, TREEVIEW_ITEM
*wineItem
)
2440 COLORREF oldTextColor
, oldTextBkColor
;
2442 BOOL inFocus
= (GetFocus() == infoPtr
->hwnd
);
2443 NMTVCUSTOMDRAW nmcdhdr
;
2445 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, CALLBACK_MASK_ALL
);
2447 /* - If item is drop target or it is selected and window is in focus -
2448 * use blue background (COLOR_HIGHLIGHT).
2449 * - If item is selected, window is not in focus, but it has style
2450 * TVS_SHOWSELALWAYS - use grey background (COLOR_BTNFACE)
2451 * - Otherwise - use background color
2453 if ((wineItem
->state
& TVIS_DROPHILITED
) || ((wineItem
== infoPtr
->focusedItem
) && !(wineItem
->state
& TVIS_SELECTED
)) ||
2454 ((wineItem
->state
& TVIS_SELECTED
) && (!infoPtr
->focusedItem
) &&
2455 (inFocus
|| (infoPtr
->dwStyle
& TVS_SHOWSELALWAYS
))))
2457 if ((wineItem
->state
& TVIS_DROPHILITED
) || inFocus
)
2459 nmcdhdr
.clrTextBk
= GetSysColor(COLOR_HIGHLIGHT
);
2460 nmcdhdr
.clrText
= GetSysColor(COLOR_HIGHLIGHTTEXT
);
2464 nmcdhdr
.clrTextBk
= GetSysColor(COLOR_BTNFACE
);
2465 if (infoPtr
->clrText
== -1)
2466 nmcdhdr
.clrText
= GetSysColor(COLOR_WINDOWTEXT
);
2468 nmcdhdr
.clrText
= infoPtr
->clrText
;
2473 nmcdhdr
.clrTextBk
= infoPtr
->clrBk
;
2474 if ((infoPtr
->dwStyle
& TVS_TRACKSELECT
) && (wineItem
== infoPtr
->hotItem
))
2475 nmcdhdr
.clrText
= comctl32_color
.clrHighlight
;
2476 else if (infoPtr
->clrText
== -1)
2477 nmcdhdr
.clrText
= GetSysColor(COLOR_WINDOWTEXT
);
2479 nmcdhdr
.clrText
= infoPtr
->clrText
;
2482 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, wineItem
));
2484 /* The custom draw handler can query the text rectangle,
2486 /* should already be known, set to 0 when changed */
2487 if (!wineItem
->textWidth
)
2488 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2492 if (infoPtr
->cdmode
& CDRF_NOTIFYITEMDRAW
)
2494 cditem
= TREEVIEW_SendCustomDrawItemNotify
2495 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPREPAINT
, &nmcdhdr
);
2496 TRACE("prepaint:cditem-app returns 0x%x\n", cditem
);
2498 if (cditem
& CDRF_SKIPDEFAULT
)
2500 SelectObject(hdc
, hOldFont
);
2505 if (cditem
& CDRF_NEWFONT
)
2506 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2508 TREEVIEW_DrawItemLines(infoPtr
, hdc
, wineItem
);
2510 /* Set colors. Custom draw handler can change these so we do this after it. */
2511 oldTextColor
= SetTextColor(hdc
, nmcdhdr
.clrText
);
2512 oldTextBkColor
= SetBkColor(hdc
, nmcdhdr
.clrTextBk
);
2514 centery
= (wineItem
->rect
.top
+ wineItem
->rect
.bottom
) / 2;
2517 * Display the images associated with this item
2522 /* State images are displayed to the left of the Normal image
2523 * image number is in state; zero should be `display no image'.
2525 imageIndex
= STATEIMAGEINDEX(wineItem
->state
);
2527 if (infoPtr
->himlState
&& imageIndex
)
2529 ImageList_Draw(infoPtr
->himlState
, imageIndex
, hdc
,
2530 wineItem
->stateOffset
,
2531 centery
- infoPtr
->stateImageHeight
/ 2,
2535 /* Now, draw the normal image; can be either selected or
2536 * non-selected image.
2539 if ((wineItem
->state
& TVIS_SELECTED
) && (wineItem
->iSelectedImage
>= 0))
2541 /* The item is currently selected */
2542 imageIndex
= wineItem
->iSelectedImage
;
2546 /* The item is not selected */
2547 imageIndex
= wineItem
->iImage
;
2550 if (infoPtr
->himlNormal
)
2552 int ovlIdx
= wineItem
->state
& TVIS_OVERLAYMASK
;
2554 ImageList_Draw(infoPtr
->himlNormal
, imageIndex
, hdc
,
2555 wineItem
->imageOffset
,
2556 centery
- infoPtr
->normalImageHeight
/ 2,
2557 ILD_NORMAL
| ovlIdx
);
2563 * Display the text associated with this item
2566 /* Don't paint item's text if it's being edited */
2567 if (!infoPtr
->hwndEdit
|| (infoPtr
->selectedItem
!= wineItem
))
2569 if (wineItem
->pszText
)
2573 rcText
.top
= wineItem
->rect
.top
;
2574 rcText
.bottom
= wineItem
->rect
.bottom
;
2575 rcText
.left
= wineItem
->textOffset
;
2576 rcText
.right
= rcText
.left
+ wineItem
->textWidth
+ 4;
2578 TRACE("drawing text %s at (%ld,%ld)-(%ld,%ld)\n",
2579 debugstr_w(wineItem
->pszText
),
2580 rcText
.left
, rcText
.top
, rcText
.right
, rcText
.bottom
);
2583 ExtTextOutW(hdc
, rcText
.left
+ 2, rcText
.top
+ 1,
2584 ETO_CLIPPED
| ETO_OPAQUE
,
2587 lstrlenW(wineItem
->pszText
),
2590 /* Draw the box around the selected item */
2591 if ((wineItem
== infoPtr
->selectedItem
) && inFocus
)
2593 DrawFocusRect(hdc
,&rcText
);
2599 /* Draw insertion mark if necessary */
2601 if (infoPtr
->insertMarkItem
)
2602 TRACE("item:%d,mark:%p\n",
2603 TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
2604 infoPtr
->insertMarkItem
);
2606 if (wineItem
== infoPtr
->insertMarkItem
)
2608 HPEN hNewPen
, hOldPen
;
2612 hNewPen
= CreatePen(PS_SOLID
, 2, infoPtr
->clrInsertMark
);
2613 hOldPen
= SelectObject(hdc
, hNewPen
);
2615 if (infoPtr
->insertBeforeorAfter
)
2616 offset
= wineItem
->rect
.bottom
- 1;
2618 offset
= wineItem
->rect
.top
+ 1;
2620 left
= wineItem
->textOffset
- 2;
2621 right
= wineItem
->textOffset
+ wineItem
->textWidth
+ 2;
2623 MoveToEx(hdc
, left
, offset
- 3, NULL
);
2624 LineTo(hdc
, left
, offset
+ 4);
2626 MoveToEx(hdc
, left
, offset
, NULL
);
2627 LineTo(hdc
, right
+ 1, offset
);
2629 MoveToEx(hdc
, right
, offset
+ 3, NULL
);
2630 LineTo(hdc
, right
, offset
- 4);
2632 SelectObject(hdc
, hOldPen
);
2633 DeleteObject(hNewPen
);
2636 if (cditem
& CDRF_NOTIFYPOSTPAINT
)
2638 cditem
= TREEVIEW_SendCustomDrawItemNotify
2639 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPOSTPAINT
, &nmcdhdr
);
2640 TRACE("postpaint:cditem-app returns 0x%x\n", cditem
);
2643 /* Restore the hdc state */
2644 SetTextColor(hdc
, oldTextColor
);
2645 SetBkColor(hdc
, oldTextBkColor
);
2646 SelectObject(hdc
, hOldFont
);
2649 /* Computes treeHeight and treeWidth and updates the scroll bars.
2652 TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
)
2654 TREEVIEW_ITEM
*wineItem
;
2655 HWND hwnd
= infoPtr
->hwnd
;
2659 LONG scrollX
= infoPtr
->scrollX
;
2661 infoPtr
->treeWidth
= 0;
2662 infoPtr
->treeHeight
= 0;
2664 /* We iterate through all visible items in order to get the tree height
2666 wineItem
= infoPtr
->root
->firstChild
;
2668 while (wineItem
!= NULL
)
2670 if (ISVISIBLE(wineItem
))
2672 /* actually we draw text at textOffset + 2 */
2673 if (2+wineItem
->textOffset
+wineItem
->textWidth
> infoPtr
->treeWidth
)
2674 infoPtr
->treeWidth
= wineItem
->textOffset
+wineItem
->textWidth
+2;
2676 /* This is scroll-adjusted, but we fix this below. */
2677 infoPtr
->treeHeight
= wineItem
->rect
.bottom
;
2680 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2683 /* Fix the scroll adjusted treeHeight and treeWidth. */
2684 if (infoPtr
->root
->firstChild
)
2685 infoPtr
->treeHeight
-= infoPtr
->root
->firstChild
->rect
.top
;
2687 infoPtr
->treeWidth
+= infoPtr
->scrollX
;
2689 if (infoPtr
->dwStyle
& TVS_NOSCROLL
) return;
2691 /* Adding one scroll bar may take up enough space that it forces us
2692 * to add the other as well. */
2693 if (infoPtr
->treeHeight
> infoPtr
->clientHeight
)
2697 if (infoPtr
->treeWidth
2698 > infoPtr
->clientWidth
- GetSystemMetrics(SM_CXVSCROLL
))
2701 else if (infoPtr
->treeWidth
> infoPtr
->clientWidth
)
2704 if (!vert
&& horz
&& infoPtr
->treeHeight
2705 > infoPtr
->clientHeight
- GetSystemMetrics(SM_CYVSCROLL
))
2708 if (horz
&& (infoPtr
->dwStyle
& TVS_NOHSCROLL
)) horz
= FALSE
;
2710 si
.cbSize
= sizeof(SCROLLINFO
);
2711 si
.fMask
= SIF_POS
|SIF_RANGE
|SIF_PAGE
;
2716 si
.nPage
= TREEVIEW_GetVisibleCount(infoPtr
);
2717 if ( si
.nPage
&& NULL
!= infoPtr
->firstVisible
)
2719 si
.nPos
= infoPtr
->firstVisible
->visibleOrder
;
2720 si
.nMax
= infoPtr
->maxVisibleOrder
- 1;
2722 SetScrollInfo(hwnd
, SB_VERT
, &si
, TRUE
);
2724 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
2725 ShowScrollBar(hwnd
, SB_VERT
, TRUE
);
2726 infoPtr
->uInternalStatus
|= TV_VSCROLL
;
2730 if (infoPtr
->uInternalStatus
& TV_VSCROLL
)
2731 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
2732 infoPtr
->uInternalStatus
&= ~TV_VSCROLL
;
2737 if (infoPtr
->uInternalStatus
& TV_VSCROLL
)
2738 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
2739 infoPtr
->uInternalStatus
&= ~TV_VSCROLL
;
2744 si
.nPage
= infoPtr
->clientWidth
;
2745 si
.nPos
= infoPtr
->scrollX
;
2746 si
.nMax
= infoPtr
->treeWidth
- 1;
2748 if (si
.nPos
> si
.nMax
- max( si
.nPage
-1, 0 ))
2750 si
.nPos
= si
.nMax
- max( si
.nPage
-1, 0 );
2754 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
2755 ShowScrollBar(hwnd
, SB_HORZ
, TRUE
);
2756 infoPtr
->uInternalStatus
|= TV_HSCROLL
;
2758 SetScrollInfo(hwnd
, SB_HORZ
, &si
, TRUE
);
2762 if (infoPtr
->uInternalStatus
& TV_HSCROLL
)
2763 ShowScrollBar(hwnd
, SB_HORZ
, FALSE
);
2764 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2769 if (infoPtr
->scrollX
!= scrollX
)
2771 TREEVIEW_HScroll(infoPtr
,
2772 MAKEWPARAM(SB_THUMBPOSITION
, scrollX
));
2776 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2779 /* CtrlSpy doesn't mention this, but CorelDRAW's object manager needs it. */
2781 TREEVIEW_EraseBackground(TREEVIEW_INFO
*infoPtr
, HDC hDC
)
2783 HBRUSH hBrush
= CreateSolidBrush(infoPtr
->clrBk
);
2786 GetClientRect(infoPtr
->hwnd
, &rect
);
2787 FillRect(hDC
, &rect
, hBrush
);
2788 DeleteObject(hBrush
);
2794 TREEVIEW_Refresh(TREEVIEW_INFO
*infoPtr
, HDC hdc
, RECT
*rc
)
2796 HWND hwnd
= infoPtr
->hwnd
;
2798 TREEVIEW_ITEM
*wineItem
;
2800 if (infoPtr
->clientHeight
== 0 || infoPtr
->clientWidth
== 0)
2802 TRACE("empty window\n");
2806 infoPtr
->cdmode
= TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_PREPAINT
,
2809 if (infoPtr
->cdmode
== CDRF_SKIPDEFAULT
)
2811 ReleaseDC(hwnd
, hdc
);
2815 for (wineItem
= infoPtr
->root
->firstChild
;
2817 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
2819 if (ISVISIBLE(wineItem
))
2821 /* Avoid unneeded calculations */
2822 if (wineItem
->rect
.top
> rect
.bottom
)
2824 if (wineItem
->rect
.bottom
< rect
.top
)
2827 TREEVIEW_DrawItem(infoPtr
, hdc
, wineItem
);
2831 TREEVIEW_UpdateScrollBars(infoPtr
);
2833 if (infoPtr
->cdmode
& CDRF_NOTIFYPOSTPAINT
)
2835 TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_POSTPAINT
, hdc
, rect
);
2839 TREEVIEW_Invalidate(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2842 InvalidateRect(infoPtr
->hwnd
, &item
->rect
, TRUE
);
2844 InvalidateRect(infoPtr
->hwnd
, NULL
, TRUE
);
2848 TREEVIEW_Paint(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
2859 GetClientRect(infoPtr
->hwnd
, &rc
);
2860 TREEVIEW_EraseBackground(infoPtr
, hdc
);
2864 hdc
= BeginPaint(infoPtr
->hwnd
, &ps
);
2868 if(infoPtr
->bRedraw
) /* WM_SETREDRAW sets bRedraw */
2869 TREEVIEW_Refresh(infoPtr
, hdc
, &rc
);
2872 EndPaint(infoPtr
->hwnd
, &ps
);
2878 /* Sorting **************************************************************/
2880 /***************************************************************************
2881 * Forward the DPA local callback to the treeview owner callback
2884 TREEVIEW_CallBackCompare(TREEVIEW_ITEM
*first
, TREEVIEW_ITEM
*second
, LPTVSORTCB pCallBackSort
)
2886 /* Forward the call to the client-defined callback */
2887 return pCallBackSort
->lpfnCompare(first
->lParam
,
2889 pCallBackSort
->lParam
);
2892 /***************************************************************************
2893 * Treeview native sort routine: sort on item text.
2896 TREEVIEW_SortOnName(TREEVIEW_ITEM
*first
, TREEVIEW_ITEM
*second
,
2897 TREEVIEW_INFO
*infoPtr
)
2899 TREEVIEW_UpdateDispInfo(infoPtr
, first
, TVIF_TEXT
);
2900 TREEVIEW_UpdateDispInfo(infoPtr
, second
, TVIF_TEXT
);
2902 if(first
->pszText
&& second
->pszText
)
2903 return lstrcmpiW(first
->pszText
, second
->pszText
);
2904 else if(first
->pszText
)
2906 else if(second
->pszText
)
2912 /* Returns the number of physical children belonging to item. */
2914 TREEVIEW_CountChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2919 for (hti
= item
->firstChild
; hti
!= NULL
; hti
= hti
->nextSibling
)
2925 /* Returns a DPA containing a pointer to each physical child of item in
2926 * sibling order. If item has no children, an empty DPA is returned. */
2928 TREEVIEW_BuildChildDPA(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2930 HTREEITEM child
= item
->firstChild
;
2932 HDPA list
= DPA_Create(8);
2933 if (list
== 0) return NULL
;
2935 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
2937 if (DPA_InsertPtr(list
, INT_MAX
, child
) == -1)
2947 /***************************************************************************
2948 * Setup the treeview structure with regards of the sort method
2949 * and sort the children of the TV item specified in lParam
2950 * fRecurse: currently unused. Should be zero.
2951 * parent: if pSort!=NULL, should equal pSort->hParent.
2952 * otherwise, item which child items are to be sorted.
2953 * pSort: sort method info. if NULL, sort on item text.
2954 * if non-NULL, sort on item's lParam content, and let the
2955 * application decide what that means. See also TVM_SORTCHILDRENCB.
2959 TREEVIEW_Sort(TREEVIEW_INFO
*infoPtr
, BOOL fRecurse
, HTREEITEM parent
,
2963 PFNDPACOMPARE pfnCompare
;
2966 /* undocumented feature: TVI_ROOT or NULL means `sort the whole tree' */
2967 if (parent
== TVI_ROOT
|| parent
== NULL
)
2968 parent
= infoPtr
->root
;
2970 /* Check for a valid handle to the parent item */
2971 if (!TREEVIEW_ValidItem(infoPtr
, parent
))
2973 ERR("invalid item hParent=%p\n", parent
);
2979 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_CallBackCompare
;
2980 lpCompare
= (LPARAM
)pSort
;
2984 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_SortOnName
;
2985 lpCompare
= (LPARAM
)infoPtr
;
2988 cChildren
= TREEVIEW_CountChildren(infoPtr
, parent
);
2990 /* Make sure there is something to sort */
2993 /* TREEVIEW_ITEM rechaining */
2996 HTREEITEM nextItem
= 0;
2997 HTREEITEM prevItem
= 0;
2999 HDPA sortList
= TREEVIEW_BuildChildDPA(infoPtr
, parent
);
3001 if (sortList
== NULL
)
3004 /* let DPA sort the list */
3005 DPA_Sort(sortList
, pfnCompare
, lpCompare
);
3007 /* The order of DPA entries has been changed, so fixup the
3008 * nextSibling and prevSibling pointers. */
3010 item
= (HTREEITEM
)DPA_GetPtr(sortList
, count
++);
3011 while ((nextItem
= (HTREEITEM
)DPA_GetPtr(sortList
, count
++)) != NULL
)
3013 /* link the two current item toghether */
3014 item
->nextSibling
= nextItem
;
3015 nextItem
->prevSibling
= item
;
3017 if (prevItem
== NULL
)
3019 /* this is the first item, update the parent */
3020 parent
->firstChild
= item
;
3021 item
->prevSibling
= NULL
;
3025 /* fix the back chaining */
3026 item
->prevSibling
= prevItem
;
3029 /* get ready for the next one */
3034 /* the last item is pointed to by item and never has a sibling */
3035 item
->nextSibling
= NULL
;
3036 parent
->lastChild
= item
;
3038 DPA_Destroy(sortList
);
3040 TREEVIEW_VerifyTree(infoPtr
);
3042 if (parent
->state
& TVIS_EXPANDED
)
3044 int visOrder
= infoPtr
->firstVisible
->visibleOrder
;
3046 if (parent
== infoPtr
->root
)
3047 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
3049 TREEVIEW_RecalculateVisibleOrder(infoPtr
, parent
);
3051 if (TREEVIEW_IsChildOf(parent
, infoPtr
->firstVisible
))
3053 TREEVIEW_ITEM
*item
;
3055 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
3056 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
3058 if (item
->visibleOrder
== visOrder
)
3062 if (!item
) item
= parent
->firstChild
;
3063 TREEVIEW_SetFirstVisible(infoPtr
, item
, FALSE
);
3066 TREEVIEW_Invalidate(infoPtr
, NULL
);
3075 /***************************************************************************
3076 * Setup the treeview structure with regards of the sort method
3077 * and sort the children of the TV item specified in lParam
3080 TREEVIEW_SortChildrenCB(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPTVSORTCB pSort
)
3082 return TREEVIEW_Sort(infoPtr
, wParam
, pSort
->hParent
, pSort
);
3086 /***************************************************************************
3087 * Sort the children of the TV item specified in lParam.
3090 TREEVIEW_SortChildren(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3092 return TREEVIEW_Sort(infoPtr
, (BOOL
)wParam
, (HTREEITEM
)lParam
, NULL
);
3096 /* Expansion/Collapse ***************************************************/
3099 TREEVIEW_SendExpanding(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3102 return !TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDINGW
, action
,
3103 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
3104 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
3109 TREEVIEW_SendExpanded(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3112 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDEDW
, action
,
3113 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
3114 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
3119 /* This corresponds to TVM_EXPAND with TVE_COLLAPSE.
3120 * bRemoveChildren corresponds to TVE_COLLAPSERESET. */
3122 TREEVIEW_Collapse(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3123 BOOL bRemoveChildren
, BOOL bUser
)
3125 UINT action
= TVE_COLLAPSE
| (bRemoveChildren
? TVE_COLLAPSERESET
: 0);
3126 BOOL bSetSelection
, bSetFirstVisible
;
3128 LONG scrollDist
= 0;
3129 TREEVIEW_ITEM
*nextItem
= NULL
, *tmpItem
;
3131 TRACE("TVE_COLLAPSE %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
3133 if (!(wineItem
->state
& TVIS_EXPANDED
))
3136 if (bUser
|| !(wineItem
->state
& TVIS_EXPANDEDONCE
))
3137 TREEVIEW_SendExpanding(infoPtr
, wineItem
, action
);
3139 if (wineItem
->firstChild
== NULL
)
3142 wineItem
->state
&= ~TVIS_EXPANDED
;
3144 if (bUser
|| !(wineItem
->state
& TVIS_EXPANDEDONCE
))
3145 TREEVIEW_SendExpanded(infoPtr
, wineItem
, action
);
3147 bSetSelection
= (infoPtr
->selectedItem
!= NULL
3148 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->selectedItem
));
3150 bSetFirstVisible
= (infoPtr
->firstVisible
!= NULL
3151 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->firstVisible
));
3156 if (tmpItem
->nextSibling
)
3158 nextItem
= tmpItem
->nextSibling
;
3161 tmpItem
= tmpItem
->parent
;
3165 scrollDist
= nextItem
->rect
.top
;
3167 if (bRemoveChildren
)
3169 INT old_cChildren
= wineItem
->cChildren
;
3170 TRACE("TVE_COLLAPSERESET\n");
3171 wineItem
->state
&= ~TVIS_EXPANDEDONCE
;
3172 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
3173 wineItem
->cChildren
= old_cChildren
;
3176 if (wineItem
->firstChild
)
3178 TREEVIEW_ITEM
*item
, *sibling
;
3180 sibling
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
3182 for (item
= wineItem
->firstChild
; item
!= sibling
;
3183 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
3185 item
->visibleOrder
= -1;
3189 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
3192 scrollDist
= -(scrollDist
- nextItem
->rect
.top
);
3196 /* Don't call DoSelectItem, it sends notifications. */
3197 if (TREEVIEW_ValidItem(infoPtr
, infoPtr
->selectedItem
))
3198 infoPtr
->selectedItem
->state
&= ~TVIS_SELECTED
;
3199 wineItem
->state
|= TVIS_SELECTED
;
3200 infoPtr
->selectedItem
= wineItem
;
3203 TREEVIEW_UpdateScrollBars(infoPtr
);
3205 scrollRect
.left
= 0;
3206 scrollRect
.right
= infoPtr
->clientWidth
;
3207 scrollRect
.bottom
= infoPtr
->clientHeight
;
3211 scrollRect
.top
= nextItem
->rect
.top
;
3213 ScrollWindowEx (infoPtr
->hwnd
, 0, scrollDist
, &scrollRect
, NULL
,
3214 NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
3215 TREEVIEW_Invalidate(infoPtr
, wineItem
);
3217 scrollRect
.top
= wineItem
->rect
.top
;
3218 InvalidateRect(infoPtr
->hwnd
, &scrollRect
, TRUE
);
3221 TREEVIEW_SetFirstVisible(infoPtr
,
3222 bSetFirstVisible
? wineItem
: infoPtr
->firstVisible
,
3229 TREEVIEW_Expand(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3230 BOOL bExpandPartial
, BOOL bUser
)
3233 LONG orgNextTop
= 0;
3235 TREEVIEW_ITEM
*nextItem
, *tmpItem
;
3239 if (wineItem
->state
& TVIS_EXPANDED
)
3242 tmpItem
= wineItem
; nextItem
= NULL
;
3245 if (tmpItem
->nextSibling
)
3247 nextItem
= tmpItem
->nextSibling
;
3250 tmpItem
= tmpItem
->parent
;
3254 orgNextTop
= nextItem
->rect
.top
;
3256 TRACE("TVE_EXPAND %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
3258 if (bUser
|| ((wineItem
->cChildren
!= 0) &&
3259 !(wineItem
->state
& TVIS_EXPANDEDONCE
)))
3261 if (!TREEVIEW_SendExpanding(infoPtr
, wineItem
, TVE_EXPAND
))
3263 TRACE(" TVN_ITEMEXPANDING returned TRUE, exiting...\n");
3267 if (!wineItem
->firstChild
)
3270 wineItem
->state
|= TVIS_EXPANDED
;
3271 TREEVIEW_SendExpanded(infoPtr
, wineItem
, TVE_EXPAND
);
3272 wineItem
->state
|= TVIS_EXPANDEDONCE
;
3276 if (!wineItem
->firstChild
)
3279 /* this item has already been expanded */
3280 wineItem
->state
|= TVIS_EXPANDED
;
3284 FIXME("TVE_EXPANDPARTIAL not implemented\n");
3286 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
3287 TREEVIEW_UpdateSubTree(infoPtr
, wineItem
);
3288 TREEVIEW_UpdateScrollBars(infoPtr
);
3290 scrollRect
.left
= 0;
3291 scrollRect
.bottom
= infoPtr
->treeHeight
;
3292 scrollRect
.right
= infoPtr
->clientWidth
;
3295 scrollDist
= nextItem
->rect
.top
- orgNextTop
;
3296 scrollRect
.top
= orgNextTop
;
3298 ScrollWindowEx (infoPtr
->hwnd
, 0, scrollDist
, &scrollRect
, NULL
,
3299 NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
3300 TREEVIEW_Invalidate (infoPtr
, wineItem
);
3302 scrollRect
.top
= wineItem
->rect
.top
;
3303 InvalidateRect(infoPtr
->hwnd
, &scrollRect
, FALSE
);
3306 /* Scroll up so that as many children as possible are visible.
3307 * This fails when expanding causes an HScroll bar to appear, but we
3308 * don't know that yet, so the last item is obscured. */
3309 if (wineItem
->firstChild
!= NULL
)
3311 int nChildren
= wineItem
->lastChild
->visibleOrder
3312 - wineItem
->firstChild
->visibleOrder
+ 1;
3314 int visible_pos
= wineItem
->visibleOrder
3315 - infoPtr
->firstVisible
->visibleOrder
;
3317 int rows_below
= TREEVIEW_GetVisibleCount(infoPtr
) - visible_pos
- 1;
3319 if (visible_pos
> 0 && nChildren
> rows_below
)
3321 int scroll
= nChildren
- rows_below
;
3323 if (scroll
> visible_pos
)
3324 scroll
= visible_pos
;
3328 TREEVIEW_ITEM
*newFirstVisible
3329 = TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
3333 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
3342 TREEVIEW_Toggle(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
, BOOL bUser
)
3346 if (wineItem
->state
& TVIS_EXPANDED
)
3347 return TREEVIEW_Collapse(infoPtr
, wineItem
, FALSE
, bUser
);
3349 return TREEVIEW_Expand(infoPtr
, wineItem
, FALSE
, bUser
);
3353 TREEVIEW_ExpandAll(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
3355 TREEVIEW_Expand(infoPtr
, item
, FALSE
, TRUE
);
3357 for (item
= item
->firstChild
; item
!= NULL
; item
= item
->nextSibling
)
3359 if (TREEVIEW_HasChildren(infoPtr
, item
))
3360 TREEVIEW_ExpandAll(infoPtr
, item
);
3364 /* Note:If the specified item is the child of a collapsed parent item,
3365 the parent's list of child items is (recursively) expanded to reveal the
3366 specified item. This is mentioned for TREEVIEW_SelectItem; don't
3367 know if it also applies here.
3371 TREEVIEW_ExpandMsg(TREEVIEW_INFO
*infoPtr
, UINT flag
, HTREEITEM wineItem
)
3373 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
3376 TRACE("For (%s) item:%d, flags %x, state:%d\n",
3377 TREEVIEW_ItemName(wineItem
), flag
,
3378 TREEVIEW_GetItemIndex(infoPtr
, wineItem
), wineItem
->state
);
3380 switch (flag
& TVE_TOGGLE
)
3383 return TREEVIEW_Collapse(infoPtr
, wineItem
, flag
& TVE_COLLAPSERESET
,
3387 return TREEVIEW_Expand(infoPtr
, wineItem
, flag
& TVE_EXPANDPARTIAL
,
3391 return TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3398 TRACE("Exiting, Item %p state is now %d...\n", wineItem
, wineItem
->state
);
3402 /* Hit-Testing **********************************************************/
3404 static TREEVIEW_ITEM
*
3405 TREEVIEW_HitTestPoint(TREEVIEW_INFO
*infoPtr
, POINT pt
)
3407 TREEVIEW_ITEM
*wineItem
;
3410 if (!infoPtr
->firstVisible
)
3413 row
= pt
.y
/ infoPtr
->uItemHeight
+ infoPtr
->firstVisible
->visibleOrder
;
3415 for (wineItem
= infoPtr
->firstVisible
; wineItem
!= NULL
;
3416 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
3418 if (row
>= wineItem
->visibleOrder
3419 && row
< wineItem
->visibleOrder
+ wineItem
->iIntegral
)
3427 TREEVIEW_HitTest(TREEVIEW_INFO
*infoPtr
, LPTVHITTESTINFO lpht
)
3429 TREEVIEW_ITEM
*wineItem
;
3435 GetClientRect(infoPtr
->hwnd
, &rect
);
3442 status
|= TVHT_TOLEFT
;
3444 else if (x
> rect
.right
)
3446 status
|= TVHT_TORIGHT
;
3451 status
|= TVHT_ABOVE
;
3453 else if (y
> rect
.bottom
)
3455 status
|= TVHT_BELOW
;
3460 lpht
->flags
= status
;
3461 return (LRESULT
)(HTREEITEM
)NULL
;
3464 wineItem
= TREEVIEW_HitTestPoint(infoPtr
, lpht
->pt
);
3467 lpht
->flags
= TVHT_NOWHERE
;
3468 return (LRESULT
)(HTREEITEM
)NULL
;
3471 if (x
>= wineItem
->textOffset
+ wineItem
->textWidth
)
3473 lpht
->flags
= TVHT_ONITEMRIGHT
;
3475 else if (x
>= wineItem
->textOffset
)
3477 lpht
->flags
= TVHT_ONITEMLABEL
;
3479 else if (x
>= wineItem
->imageOffset
)
3481 lpht
->flags
= TVHT_ONITEMICON
;
3483 else if (x
>= wineItem
->stateOffset
)
3485 lpht
->flags
= TVHT_ONITEMSTATEICON
;
3487 else if (x
>= wineItem
->linesOffset
&& infoPtr
->dwStyle
& TVS_HASBUTTONS
)
3489 lpht
->flags
= TVHT_ONITEMBUTTON
;
3493 lpht
->flags
= TVHT_ONITEMINDENT
;
3496 lpht
->hItem
= wineItem
;
3497 TRACE("(%ld,%ld):result %x\n", lpht
->pt
.x
, lpht
->pt
.y
, lpht
->flags
);
3499 return (LRESULT
)wineItem
;
3502 /* Item Label Editing ***************************************************/
3505 TREEVIEW_GetEditControl(TREEVIEW_INFO
*infoPtr
)
3507 return (LRESULT
)infoPtr
->hwndEdit
;
3510 static LRESULT CALLBACK
3511 TREEVIEW_Edit_SubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3513 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3514 BOOL bCancel
= FALSE
;
3520 TRACE("WM_PAINT start\n");
3521 rc
= CallWindowProcW(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
,
3523 TRACE("WM_PAINT done\n");
3527 if (infoPtr
->bIgnoreEditKillFocus
)
3532 return DLGC_WANTARROWS
| DLGC_WANTALLKEYS
;
3535 if (wParam
== (WPARAM
)VK_ESCAPE
)
3540 else if (wParam
== (WPARAM
)VK_RETURN
)
3547 return CallWindowProcW(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
, lParam
);
3550 /* Processing TVN_ENDLABELEDIT message could kill the focus */
3551 /* eg. Using a messagebox */
3553 infoPtr
->bIgnoreEditKillFocus
= TRUE
;
3554 TREEVIEW_EndEditLabelNow(infoPtr
, bCancel
|| !infoPtr
->bLabelChanged
);
3555 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
3561 /* should handle edit control messages here */
3564 TREEVIEW_Command(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3566 TRACE("%x %ld\n", wParam
, lParam
);
3568 switch (HIWORD(wParam
))
3573 * Adjust the edit window size
3576 TREEVIEW_ITEM
*editItem
= infoPtr
->selectedItem
;
3577 HDC hdc
= GetDC(infoPtr
->hwndEdit
);
3580 HFONT hFont
, hOldFont
= 0;
3582 infoPtr
->bLabelChanged
= TRUE
;
3584 len
= GetWindowTextW(infoPtr
->hwndEdit
, buffer
, sizeof(buffer
));
3586 /* Select font to get the right dimension of the string */
3587 hFont
= (HFONT
)SendMessageW(infoPtr
->hwndEdit
, WM_GETFONT
, 0, 0);
3591 hOldFont
= SelectObject(hdc
, hFont
);
3594 if (GetTextExtentPoint32W(hdc
, buffer
, strlenW(buffer
), &sz
))
3596 TEXTMETRICW textMetric
;
3598 /* Add Extra spacing for the next character */
3599 GetTextMetricsW(hdc
, &textMetric
);
3600 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3602 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3604 infoPtr
->clientWidth
- editItem
->textOffset
+ 2);
3606 SetWindowPos(infoPtr
->hwndEdit
,
3611 editItem
->rect
.bottom
- editItem
->rect
.top
+ 3,
3612 SWP_NOMOVE
| SWP_DRAWFRAME
);
3617 SelectObject(hdc
, hOldFont
);
3620 ReleaseDC(infoPtr
->hwnd
, hdc
);
3625 return SendMessageW(infoPtr
->hwndNotify
, WM_COMMAND
, wParam
, lParam
);
3632 TREEVIEW_EditLabel(TREEVIEW_INFO
*infoPtr
, HTREEITEM hItem
)
3634 HWND hwnd
= infoPtr
->hwnd
;
3637 TREEVIEW_ITEM
*editItem
= hItem
;
3638 HINSTANCE hinst
= (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
);
3641 TEXTMETRICW textMetric
;
3642 static const WCHAR EditW
[] = {'E','d','i','t',0};
3644 TRACE("%p %p\n", hwnd
, hItem
);
3645 if (!TREEVIEW_ValidItem(infoPtr
, editItem
))
3648 if (infoPtr
->hwndEdit
)
3649 return infoPtr
->hwndEdit
;
3651 infoPtr
->bLabelChanged
= FALSE
;
3653 /* Make sure that edit item is selected */
3654 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, hItem
, TVC_UNKNOWN
);
3655 TREEVIEW_EnsureVisible(infoPtr
, hItem
, TRUE
);
3657 TREEVIEW_UpdateDispInfo(infoPtr
, editItem
, TVIF_TEXT
);
3660 /* Select the font to get appropriate metric dimensions */
3661 if (infoPtr
->hFont
!= 0)
3663 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
3666 /* Get string length in pixels */
3667 GetTextExtentPoint32W(hdc
, editItem
->pszText
, strlenW(editItem
->pszText
),
3670 /* Add Extra spacing for the next character */
3671 GetTextMetricsW(hdc
, &textMetric
);
3672 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3674 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3675 sz
.cx
= min(sz
.cx
, infoPtr
->clientWidth
- editItem
->textOffset
+ 2);
3677 if (infoPtr
->hFont
!= 0)
3679 SelectObject(hdc
, hOldFont
);
3682 ReleaseDC(hwnd
, hdc
);
3683 hwndEdit
= CreateWindowExW(WS_EX_LEFT
,
3686 WS_CHILD
| WS_BORDER
| ES_AUTOHSCROLL
|
3687 WS_CLIPSIBLINGS
| ES_WANTRETURN
|
3688 ES_LEFT
, editItem
->textOffset
- 2,
3689 editItem
->rect
.top
- 1, sz
.cx
+ 3,
3690 editItem
->rect
.bottom
-
3691 editItem
->rect
.top
+ 3, hwnd
, 0, hinst
, 0);
3692 /* FIXME: (HMENU)IDTVEDIT,pcs->hInstance,0); */
3694 infoPtr
->hwndEdit
= hwndEdit
;
3696 /* Get a 2D border. */
3697 SetWindowLongW(hwndEdit
, GWL_EXSTYLE
,
3698 GetWindowLongW(hwndEdit
, GWL_EXSTYLE
) & ~WS_EX_CLIENTEDGE
);
3699 SetWindowLongW(hwndEdit
, GWL_STYLE
,
3700 GetWindowLongW(hwndEdit
, GWL_STYLE
) | WS_BORDER
);
3702 SendMessageW(hwndEdit
, WM_SETFONT
,
3703 (WPARAM
)TREEVIEW_FontForItem(infoPtr
, editItem
), FALSE
);
3705 infoPtr
->wpEditOrig
= (WNDPROC
)SetWindowLongPtrW(hwndEdit
, GWLP_WNDPROC
,
3707 TREEVIEW_Edit_SubclassProc
);
3709 if (TREEVIEW_BeginLabelEditNotify(infoPtr
, editItem
))
3711 DestroyWindow(hwndEdit
);
3712 infoPtr
->hwndEdit
= 0;
3716 infoPtr
->selectedItem
= hItem
;
3717 SetWindowTextW(hwndEdit
, editItem
->pszText
);
3719 SendMessageW(hwndEdit
, EM_SETSEL
, 0, -1);
3720 ShowWindow(hwndEdit
, SW_SHOW
);
3727 TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
)
3729 HWND hwnd
= infoPtr
->hwnd
;
3730 TREEVIEW_ITEM
*editedItem
= infoPtr
->selectedItem
;
3733 WCHAR tmpText
[1024] = { '\0' };
3734 WCHAR
*newText
= tmpText
;
3737 if (!infoPtr
->hwndEdit
)
3740 tvdi
.hdr
.hwndFrom
= hwnd
;
3741 tvdi
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
3742 tvdi
.hdr
.code
= get_notifycode(infoPtr
, TVN_ENDLABELEDITW
);
3744 tvdi
.item
.hItem
= editedItem
;
3745 tvdi
.item
.state
= editedItem
->state
;
3746 tvdi
.item
.lParam
= editedItem
->lParam
;
3750 if (!infoPtr
->bNtfUnicode
)
3751 iLength
= GetWindowTextA(infoPtr
->hwndEdit
, (LPSTR
)tmpText
, 1023);
3753 iLength
= GetWindowTextW(infoPtr
->hwndEdit
, tmpText
, 1023);
3755 if (iLength
>= 1023)
3757 ERR("Insufficient space to retrieve new item label\n");
3760 tvdi
.item
.mask
= TVIF_TEXT
;
3761 tvdi
.item
.pszText
= tmpText
;
3762 tvdi
.item
.cchTextMax
= iLength
+ 1;
3766 tvdi
.item
.pszText
= NULL
;
3767 tvdi
.item
.cchTextMax
= 0;
3770 bCommit
= (BOOL
)TREEVIEW_SendRealNotify(infoPtr
,
3771 (WPARAM
)tvdi
.hdr
.idFrom
, (LPARAM
)&tvdi
);
3773 if (!bCancel
&& bCommit
) /* Apply the changes */
3775 if (!infoPtr
->bNtfUnicode
)
3777 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)tmpText
, -1, NULL
, 0 );
3778 newText
= Alloc(len
* sizeof(WCHAR
));
3779 MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)tmpText
, -1, newText
, len
);
3783 if (strcmpW(newText
, editedItem
->pszText
) != 0)
3785 if (NULL
== ReAlloc(editedItem
->pszText
, iLength
+ 1))
3787 ERR("OutOfMemory, cannot allocate space for label\n");
3788 DestroyWindow(infoPtr
->hwndEdit
);
3789 infoPtr
->hwndEdit
= 0;
3794 editedItem
->cchTextMax
= iLength
+ 1;
3795 strcpyW(editedItem
->pszText
, newText
);
3798 if(newText
!= tmpText
) Free(newText
);
3801 ShowWindow(infoPtr
->hwndEdit
, SW_HIDE
);
3802 DestroyWindow(infoPtr
->hwndEdit
);
3803 infoPtr
->hwndEdit
= 0;
3808 TREEVIEW_HandleTimer(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
3810 if (wParam
!= TV_EDIT_TIMER
)
3812 ERR("got unknown timer\n");
3816 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
3817 infoPtr
->Timer
&= ~TV_EDIT_TIMER_SET
;
3819 TREEVIEW_EditLabel(infoPtr
, infoPtr
->selectedItem
);
3825 /* Mouse Tracking/Drag **************************************************/
3827 /***************************************************************************
3828 * This is quite unusual piece of code, but that's how it's implemented in
3832 TREEVIEW_TrackMouse(TREEVIEW_INFO
*infoPtr
, POINT pt
)
3834 INT cxDrag
= GetSystemMetrics(SM_CXDRAG
);
3835 INT cyDrag
= GetSystemMetrics(SM_CYDRAG
);
3839 r
.top
= pt
.y
- cyDrag
;
3840 r
.left
= pt
.x
- cxDrag
;
3841 r
.bottom
= pt
.y
+ cyDrag
;
3842 r
.right
= pt
.x
+ cxDrag
;
3844 SetCapture(infoPtr
->hwnd
);
3848 if (PeekMessageW(&msg
, 0, 0, 0, PM_REMOVE
| PM_NOYIELD
))
3850 if (msg
.message
== WM_MOUSEMOVE
)
3852 pt
.x
= (short)LOWORD(msg
.lParam
);
3853 pt
.y
= (short)HIWORD(msg
.lParam
);
3854 if (PtInRect(&r
, pt
))
3862 else if (msg
.message
>= WM_LBUTTONDOWN
&&
3863 msg
.message
<= WM_RBUTTONDBLCLK
)
3865 if (msg
.message
== WM_RBUTTONUP
)
3866 TREEVIEW_RButtonUp(infoPtr
, &pt
);
3870 DispatchMessageW(&msg
);
3873 if (GetCapture() != infoPtr
->hwnd
)
3883 TREEVIEW_LButtonDoubleClick(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3885 TREEVIEW_ITEM
*wineItem
;
3889 SetFocus(infoPtr
->hwnd
);
3891 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
3893 /* If there is pending 'edit label' event - kill it now */
3894 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
3897 hit
.pt
.x
= (short)LOWORD(lParam
);
3898 hit
.pt
.y
= (short)HIWORD(lParam
);
3900 wineItem
= (TREEVIEW_ITEM
*)TREEVIEW_HitTest(infoPtr
, &hit
);
3903 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
));
3905 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_DBLCLK
) == FALSE
)
3909 case TVHT_ONITEMRIGHT
:
3910 /* FIXME: we should not have sent NM_DBLCLK in this case. */
3913 case TVHT_ONITEMINDENT
:
3914 if (!(infoPtr
->dwStyle
& TVS_HASLINES
))
3920 int level
= hit
.pt
.x
/ infoPtr
->uIndent
;
3921 if (!(infoPtr
->dwStyle
& TVS_LINESATROOT
)) level
++;
3923 while (wineItem
->iLevel
> level
)
3925 wineItem
= wineItem
->parent
;
3931 case TVHT_ONITEMLABEL
:
3932 case TVHT_ONITEMICON
:
3933 case TVHT_ONITEMBUTTON
:
3934 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3937 case TVHT_ONITEMSTATEICON
:
3938 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
3939 TREEVIEW_ToggleItemState(infoPtr
, wineItem
);
3941 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3950 TREEVIEW_LButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3952 HWND hwnd
= infoPtr
->hwnd
;
3954 BOOL bTrack
, bDoLabelEdit
;
3957 /* If Edit control is active - kill it and return.
3958 * The best way to do it is to set focus to itself.
3959 * Edit control subclassed procedure will automatically call
3962 if (infoPtr
->hwndEdit
)
3968 ht
.pt
.x
= (short)LOWORD(lParam
);
3969 ht
.pt
.y
= (short)HIWORD(lParam
);
3971 TREEVIEW_HitTest(infoPtr
, &ht
);
3972 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, ht
.hItem
));
3974 /* update focusedItem and redraw both items */
3975 if(ht
.hItem
&& (ht
.flags
& TVHT_ONITEM
))
3977 infoPtr
->focusedItem
= ht
.hItem
;
3978 InvalidateRect(hwnd
, &(((HTREEITEM
)(ht
.hItem
))->rect
), TRUE
);
3980 if(infoPtr
->selectedItem
)
3981 InvalidateRect(hwnd
, &(infoPtr
->selectedItem
->rect
), TRUE
);
3984 bTrack
= (ht
.flags
& TVHT_ONITEM
)
3985 && !(infoPtr
->dwStyle
& TVS_DISABLEDRAGDROP
);
3988 * If the style allows editing and the node is already selected
3989 * and the click occurred on the item label...
3991 bDoLabelEdit
= (infoPtr
->dwStyle
& TVS_EDITLABELS
) &&
3992 (ht
.flags
& TVHT_ONITEMLABEL
) && (infoPtr
->selectedItem
== ht
.hItem
);
3994 /* Send NM_CLICK right away */
3996 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
3999 if (ht
.flags
& TVHT_ONITEMBUTTON
)
4001 TREEVIEW_Toggle(infoPtr
, ht
.hItem
, TRUE
);
4005 { /* if TREEVIEW_TrackMouse == 1 dragging occurred and the cursor left the dragged item's rectangle */
4006 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
4008 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINDRAGW
, ht
.hItem
, ht
.pt
);
4009 infoPtr
->dropItem
= ht
.hItem
;
4011 /* clean up focusedItem as we dragged and won't select this item */
4012 if(infoPtr
->focusedItem
)
4014 /* refresh the item that was focused */
4015 tempItem
= infoPtr
->focusedItem
;
4016 infoPtr
->focusedItem
= 0;
4017 InvalidateRect(infoPtr
->hwnd
, &tempItem
->rect
, TRUE
);
4019 /* refresh the selected item to return the filled background */
4020 InvalidateRect(infoPtr
->hwnd
, &(infoPtr
->selectedItem
->rect
), TRUE
);
4027 if (bTrack
&& TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
4032 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
4033 KillTimer(hwnd
, TV_EDIT_TIMER
);
4035 SetTimer(hwnd
, TV_EDIT_TIMER
, GetDoubleClickTime(), 0);
4036 infoPtr
->Timer
|= TV_EDIT_TIMER_SET
;
4038 else if (ht
.flags
& (TVHT_ONITEMICON
|TVHT_ONITEMLABEL
)) /* select the item if the hit was inside of the icon or text */
4041 * if we are TVS_SINGLEEXPAND then we want this single click to
4042 * do a bunch of things.
4044 if((infoPtr
->dwStyle
& TVS_SINGLEEXPAND
) &&
4045 (infoPtr
->hwndEdit
== 0))
4047 TREEVIEW_ITEM
*SelItem
;
4050 * Send the notification
4052 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_SINGLEEXPAND
, TVC_UNKNOWN
, TVIF_HANDLE
| TVIF_PARAM
, ht
.hItem
, 0);
4055 * Close the previous selection all the way to the root
4056 * as long as the new selection is not a child
4058 if((infoPtr
->selectedItem
)
4059 && (infoPtr
->selectedItem
!= ht
.hItem
))
4061 BOOL closeit
= TRUE
;
4064 /* determine if the hitItem is a child of the currently selected item */
4065 while(closeit
&& SelItem
&& TREEVIEW_ValidItem(infoPtr
, SelItem
) && (SelItem
!= infoPtr
->root
))
4067 closeit
= (SelItem
!= infoPtr
->selectedItem
);
4068 SelItem
= SelItem
->parent
;
4073 if(TREEVIEW_ValidItem(infoPtr
, infoPtr
->selectedItem
))
4074 SelItem
= infoPtr
->selectedItem
;
4076 while(SelItem
&& (SelItem
!= ht
.hItem
) && TREEVIEW_ValidItem(infoPtr
, SelItem
) && (SelItem
!= infoPtr
->root
))
4078 TREEVIEW_Collapse(infoPtr
, SelItem
, FALSE
, FALSE
);
4079 SelItem
= SelItem
->parent
;
4085 * Expand the current item
4087 TREEVIEW_Expand(infoPtr
, ht
.hItem
, TVE_TOGGLE
, FALSE
);
4090 /* Select the current item */
4091 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, ht
.hItem
, TVC_BYMOUSE
);
4093 else if (ht
.flags
& TVHT_ONITEMSTATEICON
)
4095 /* TVS_CHECKBOXES requires us to toggle the current state */
4096 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4097 TREEVIEW_ToggleItemState(infoPtr
, ht
.hItem
);
4107 TREEVIEW_RButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
4111 if (infoPtr
->hwndEdit
)
4113 SetFocus(infoPtr
->hwnd
);
4117 ht
.pt
.x
= (short)LOWORD(lParam
);
4118 ht
.pt
.y
= (short)HIWORD(lParam
);
4120 TREEVIEW_HitTest(infoPtr
, &ht
);
4122 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
4126 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINRDRAGW
, ht
.hItem
, ht
.pt
);
4127 infoPtr
->dropItem
= ht
.hItem
;
4132 SetFocus(infoPtr
->hwnd
);
4133 TREEVIEW_SendSimpleNotify(infoPtr
, NM_RCLICK
);
4140 TREEVIEW_RButtonUp(TREEVIEW_INFO
*infoPtr
, LPPOINT pPt
)
4147 TREEVIEW_CreateDragImage(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
4149 TREEVIEW_ITEM
*dragItem
= (HTREEITEM
)lParam
;
4153 HBITMAP hbmp
, hOldbmp
;
4160 if (!(infoPtr
->himlNormal
))
4163 if (!dragItem
|| !TREEVIEW_ValidItem(infoPtr
, dragItem
))
4166 TREEVIEW_UpdateDispInfo(infoPtr
, dragItem
, TVIF_TEXT
);
4168 hwtop
= GetDesktopWindow();
4169 htopdc
= GetDC(hwtop
);
4170 hdc
= CreateCompatibleDC(htopdc
);
4172 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
4173 GetTextExtentPoint32W(hdc
, dragItem
->pszText
, strlenW(dragItem
->pszText
),
4175 TRACE("%ld %ld %s %d\n", size
.cx
, size
.cy
, debugstr_w(dragItem
->pszText
),
4176 strlenW(dragItem
->pszText
));
4177 hbmp
= CreateCompatibleBitmap(htopdc
, size
.cx
, size
.cy
);
4178 hOldbmp
= SelectObject(hdc
, hbmp
);
4180 ImageList_GetIconSize(infoPtr
->himlNormal
, &cx
, &cy
);
4185 infoPtr
->dragList
= ImageList_Create(size
.cx
, size
.cy
, ILC_COLOR
, 10, 10);
4186 ImageList_Draw(infoPtr
->himlNormal
, dragItem
->iImage
, hdc
, 0, 0,
4190 ImageList_GetImageInfo (infoPtr->himlNormal, dragItem->hItem, &iminfo);
4191 ImageList_AddMasked (infoPtr->dragList, iminfo.hbmImage, CLR_DEFAULT);
4194 /* draw item text */
4196 SetRect(&rc
, cx
, 0, size
.cx
, size
.cy
);
4197 DrawTextW(hdc
, dragItem
->pszText
, strlenW(dragItem
->pszText
), &rc
,
4199 SelectObject(hdc
, hOldFont
);
4200 SelectObject(hdc
, hOldbmp
);
4202 ImageList_Add(infoPtr
->dragList
, hbmp
, 0);
4206 ReleaseDC(hwtop
, htopdc
);
4208 return (LRESULT
)infoPtr
->dragList
;
4211 /* Selection ************************************************************/
4214 TREEVIEW_DoSelectItem(TREEVIEW_INFO
*infoPtr
, INT action
, HTREEITEM newSelect
,
4217 TREEVIEW_ITEM
*prevSelect
;
4220 assert(newSelect
== NULL
|| TREEVIEW_ValidItem(infoPtr
, newSelect
));
4222 TRACE("Entering item %p (%s), flag %x, cause %x, state %d\n",
4223 newSelect
, TREEVIEW_ItemName(newSelect
), action
, cause
,
4224 newSelect
? newSelect
->state
: 0);
4226 /* reset and redraw focusedItem if focusedItem was set so we don't */
4227 /* have to worry about the previously focused item when we set a new one */
4228 if(infoPtr
->focusedItem
)
4230 rcFocused
= (infoPtr
->focusedItem
)->rect
;
4231 infoPtr
->focusedItem
= 0;
4232 InvalidateRect(infoPtr
->hwnd
, &rcFocused
, TRUE
);
4238 prevSelect
= infoPtr
->selectedItem
;
4240 if (prevSelect
== newSelect
) {
4241 TREEVIEW_EnsureVisible(infoPtr
, infoPtr
->selectedItem
, FALSE
);
4245 if (TREEVIEW_SendTreeviewNotify(infoPtr
,
4248 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
4254 prevSelect
->state
&= ~TVIS_SELECTED
;
4256 newSelect
->state
|= TVIS_SELECTED
;
4258 infoPtr
->selectedItem
= newSelect
;
4260 TREEVIEW_EnsureVisible(infoPtr
, infoPtr
->selectedItem
, FALSE
);
4263 TREEVIEW_Invalidate(infoPtr
, prevSelect
);
4265 TREEVIEW_Invalidate(infoPtr
, newSelect
);
4267 TREEVIEW_SendTreeviewNotify(infoPtr
,
4270 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
4275 case TVGN_DROPHILITE
:
4276 prevSelect
= infoPtr
->dropItem
;
4279 prevSelect
->state
&= ~TVIS_DROPHILITED
;
4281 infoPtr
->dropItem
= newSelect
;
4284 newSelect
->state
|= TVIS_DROPHILITED
;
4286 TREEVIEW_Invalidate(infoPtr
, prevSelect
);
4287 TREEVIEW_Invalidate(infoPtr
, newSelect
);
4290 case TVGN_FIRSTVISIBLE
:
4291 if (newSelect
!= NULL
)
4293 TREEVIEW_EnsureVisible(infoPtr
, newSelect
, FALSE
);
4294 TREEVIEW_SetFirstVisible(infoPtr
, newSelect
, TRUE
);
4295 TREEVIEW_Invalidate(infoPtr
, NULL
);
4300 TRACE("Leaving state %d\n", newSelect
? newSelect
->state
: 0);
4304 /* FIXME: handle NM_KILLFOCUS etc */
4306 TREEVIEW_SelectItem(TREEVIEW_INFO
*infoPtr
, INT wParam
, HTREEITEM item
)
4308 if (item
!= NULL
&& !TREEVIEW_ValidItem(infoPtr
, item
))
4311 TRACE("%p (%s) %d\n", item
, TREEVIEW_ItemName(item
), wParam
);
4313 if (!TREEVIEW_DoSelectItem(infoPtr
, wParam
, item
, TVC_UNKNOWN
))
4319 /*************************************************************************
4320 * TREEVIEW_ProcessLetterKeys
4322 * Processes keyboard messages generated by pressing the letter keys
4324 * What this does is perform a case insensitive search from the
4325 * current position with the following quirks:
4326 * - If two chars or more are pressed in quick succession we search
4327 * for the corresponding string (e.g. 'abc').
4328 * - If there is a delay we wipe away the current search string and
4329 * restart with just that char.
4330 * - If the user keeps pressing the same character, whether slowly or
4331 * fast, so that the search string is entirely composed of this
4332 * character ('aaaaa' for instance), then we search for first item
4333 * that starting with that character.
4334 * - If the user types the above character in quick succession, then
4335 * we must also search for the corresponding string ('aaaaa'), and
4336 * go to that string if there is a match.
4344 * - The current implementation has a list of characters it will
4345 * accept and it ignores averything else. In particular it will
4346 * ignore accentuated characters which seems to match what
4347 * Windows does. But I'm not sure it makes sense to follow
4349 * - We don't sound a beep when the search fails.
4350 * - The search should start from the focused item, not from the selected
4351 * item. One reason for this is to allow for multiple selections in trees.
4352 * But currently infoPtr->focusedItem does not seem very usable.
4356 * TREEVIEW_ProcessLetterKeys
4358 static INT
TREEVIEW_ProcessLetterKeys(
4359 HWND hwnd
, /* handle to the window */
4360 WPARAM charCode
, /* the character code, the actual character */
4361 LPARAM keyData
/* key data */
4364 TREEVIEW_INFO
*infoPtr
;
4366 HTREEITEM endidx
,idx
;
4368 WCHAR buffer
[MAX_PATH
];
4369 DWORD timestamp
,elapsed
;
4371 /* simple parameter checking */
4372 if (!hwnd
|| !charCode
|| !keyData
)
4375 infoPtr
=(TREEVIEW_INFO
*)GetWindowLongPtrW(hwnd
, 0);
4379 /* only allow the valid WM_CHARs through */
4380 if (!isalnum(charCode
) &&
4381 charCode
!= '.' && charCode
!= '`' && charCode
!= '!' &&
4382 charCode
!= '@' && charCode
!= '#' && charCode
!= '$' &&
4383 charCode
!= '%' && charCode
!= '^' && charCode
!= '&' &&
4384 charCode
!= '*' && charCode
!= '(' && charCode
!= ')' &&
4385 charCode
!= '-' && charCode
!= '_' && charCode
!= '+' &&
4386 charCode
!= '=' && charCode
!= '\\'&& charCode
!= ']' &&
4387 charCode
!= '}' && charCode
!= '[' && charCode
!= '{' &&
4388 charCode
!= '/' && charCode
!= '?' && charCode
!= '>' &&
4389 charCode
!= '<' && charCode
!= ',' && charCode
!= '~')
4392 /* compute how much time elapsed since last keypress */
4393 timestamp
= GetTickCount();
4394 if (timestamp
> infoPtr
->lastKeyPressTimestamp
) {
4395 elapsed
=timestamp
-infoPtr
->lastKeyPressTimestamp
;
4397 elapsed
=infoPtr
->lastKeyPressTimestamp
-timestamp
;
4400 /* update the search parameters */
4401 infoPtr
->lastKeyPressTimestamp
=timestamp
;
4402 if (elapsed
< KEY_DELAY
) {
4403 if (infoPtr
->nSearchParamLength
< sizeof(infoPtr
->szSearchParam
) / sizeof(WCHAR
)) {
4404 infoPtr
->szSearchParam
[infoPtr
->nSearchParamLength
++]=charCode
;
4406 if (infoPtr
->charCode
!= charCode
) {
4407 infoPtr
->charCode
=charCode
=0;
4410 infoPtr
->charCode
=charCode
;
4411 infoPtr
->szSearchParam
[0]=charCode
;
4412 infoPtr
->nSearchParamLength
=1;
4413 /* Redundant with the 1 char string */
4417 /* and search from the current position */
4419 if (infoPtr
->selectedItem
!= NULL
) {
4420 endidx
=infoPtr
->selectedItem
;
4421 /* if looking for single character match,
4422 * then we must always move forward
4424 if (infoPtr
->nSearchParamLength
== 1)
4425 idx
=TREEVIEW_GetNextListItem(infoPtr
,endidx
);
4430 idx
=infoPtr
->root
->firstChild
;
4433 /* At the end point, sort out wrapping */
4436 /* If endidx is null, stop at the last item (ie top to bottom) */
4440 /* Otherwise, start again at the very beginning */
4441 idx
=infoPtr
->root
->firstChild
;
4443 /* But if we are stopping on the first child, end now! */
4444 if (idx
== endidx
) break;
4448 ZeroMemory(&item
, sizeof(item
));
4449 item
.mask
= TVIF_TEXT
;
4451 item
.pszText
= buffer
;
4452 item
.cchTextMax
= sizeof(buffer
);
4453 TREEVIEW_GetItemT( infoPtr
, &item
, TRUE
);
4455 /* check for a match */
4456 if (strncmpiW(item
.pszText
,infoPtr
->szSearchParam
,infoPtr
->nSearchParamLength
) == 0) {
4459 } else if ( (charCode
!= 0) && (nItem
== NULL
) &&
4460 (nItem
!= infoPtr
->selectedItem
) &&
4461 (strncmpiW(item
.pszText
,infoPtr
->szSearchParam
,1) == 0) ) {
4462 /* This would work but we must keep looking for a longer match */
4465 idx
=TREEVIEW_GetNextListItem(infoPtr
,idx
);
4466 } while (idx
!= endidx
);
4468 if (nItem
!= NULL
) {
4469 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, nItem
, TVC_BYKEYBOARD
)) {
4470 TREEVIEW_EnsureVisible(infoPtr
, nItem
, FALSE
);
4477 /* Scrolling ************************************************************/
4480 TREEVIEW_EnsureVisible(TREEVIEW_INFO
*infoPtr
, HTREEITEM item
, BOOL bHScroll
)
4483 BOOL hasFirstVisible
= infoPtr
->firstVisible
!= NULL
;
4484 HTREEITEM newFirstVisible
= NULL
;
4485 int visible_pos
= -1;
4487 if (!TREEVIEW_ValidItem(infoPtr
, item
))
4490 if (!ISVISIBLE(item
))
4492 /* Expand parents as necessary. */
4495 /* see if we are trying to ensure that root is vislble */
4496 if((item
!= infoPtr
->root
) && TREEVIEW_ValidItem(infoPtr
, item
))
4497 parent
= item
->parent
;
4499 parent
= item
; /* this item is the topmost item */
4501 while (parent
!= infoPtr
->root
)
4503 if (!(parent
->state
& TVIS_EXPANDED
))
4504 TREEVIEW_Expand(infoPtr
, parent
, FALSE
, FALSE
);
4506 parent
= parent
->parent
;
4510 viscount
= TREEVIEW_GetVisibleCount(infoPtr
);
4512 TRACE("%p (%s) %ld - %ld viscount(%d)\n", item
, TREEVIEW_ItemName(item
), item
->visibleOrder
,
4513 hasFirstVisible
? infoPtr
->firstVisible
->visibleOrder
: -1, viscount
);
4515 if (hasFirstVisible
)
4516 visible_pos
= item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
;
4518 if (visible_pos
< 0)
4520 /* item is before the start of the list: put it at the top. */
4521 newFirstVisible
= item
;
4523 else if (visible_pos
>= viscount
4524 /* Sometimes, before we are displayed, GVC is 0, causing us to
4525 * spuriously scroll up. */
4526 && visible_pos
> 0 && !(infoPtr
->dwStyle
& TVS_NOSCROLL
) )
4528 /* item is past the end of the list. */
4529 int scroll
= visible_pos
- viscount
;
4531 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
4537 /* Scroll window so item's text is visible as much as possible */
4538 /* Calculation of amount of extra space is taken from EditLabel code */
4540 TEXTMETRICW textMetric
;
4541 HDC hdc
= GetWindowDC(infoPtr
->hwnd
);
4543 x
= item
->textWidth
;
4545 GetTextMetricsW(hdc
, &textMetric
);
4546 ReleaseDC(infoPtr
->hwnd
, hdc
);
4548 x
+= (textMetric
.tmMaxCharWidth
* 2);
4549 x
= max(x
, textMetric
.tmMaxCharWidth
* 3);
4551 if (item
->textOffset
< 0)
4552 pos
= item
->textOffset
;
4553 else if (item
->textOffset
+ x
> infoPtr
->clientWidth
)
4555 if (x
> infoPtr
->clientWidth
)
4556 pos
= item
->textOffset
;
4558 pos
= item
->textOffset
+ x
- infoPtr
->clientWidth
;
4563 TREEVIEW_HScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, infoPtr
->scrollX
+ pos
));
4566 if (newFirstVisible
!= NULL
&& newFirstVisible
!= infoPtr
->firstVisible
)
4568 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
4577 TREEVIEW_SetFirstVisible(TREEVIEW_INFO
*infoPtr
,
4578 TREEVIEW_ITEM
*newFirstVisible
,
4579 BOOL bUpdateScrollPos
)
4583 TRACE("%p: %s\n", newFirstVisible
, TREEVIEW_ItemName(newFirstVisible
));
4585 if (newFirstVisible
!= NULL
)
4587 /* Prevent an empty gap from appearing at the bottom... */
4588 gap_size
= TREEVIEW_GetVisibleCount(infoPtr
)
4589 - infoPtr
->maxVisibleOrder
+ newFirstVisible
->visibleOrder
;
4593 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, newFirstVisible
,
4596 /* ... unless we just don't have enough items. */
4597 if (newFirstVisible
== NULL
)
4598 newFirstVisible
= infoPtr
->root
->firstChild
;
4602 if (infoPtr
->firstVisible
!= newFirstVisible
)
4604 if (infoPtr
->firstVisible
== NULL
|| newFirstVisible
== NULL
)
4606 infoPtr
->firstVisible
= newFirstVisible
;
4607 TREEVIEW_Invalidate(infoPtr
, NULL
);
4611 TREEVIEW_ITEM
*item
;
4612 int scroll
= infoPtr
->uItemHeight
*
4613 (infoPtr
->firstVisible
->visibleOrder
4614 - newFirstVisible
->visibleOrder
);
4616 infoPtr
->firstVisible
= newFirstVisible
;
4618 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4619 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4621 item
->rect
.top
+= scroll
;
4622 item
->rect
.bottom
+= scroll
;
4625 if (bUpdateScrollPos
)
4626 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4627 newFirstVisible
->visibleOrder
, TRUE
);
4629 ScrollWindowEx(infoPtr
->hwnd
, 0, scroll
, NULL
, NULL
, NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
4634 /************************************************************************
4635 * VScroll is always in units of visible items. i.e. we always have a
4636 * visible item aligned to the top of the control. (Unless we have no
4640 TREEVIEW_VScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4642 TREEVIEW_ITEM
*oldFirstVisible
= infoPtr
->firstVisible
;
4643 TREEVIEW_ITEM
*newFirstVisible
= NULL
;
4645 int nScrollCode
= LOWORD(wParam
);
4647 TRACE("wp %x\n", wParam
);
4649 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
4652 if (infoPtr
->hwndEdit
)
4653 SetFocus(infoPtr
->hwnd
);
4655 if (!oldFirstVisible
)
4657 assert(infoPtr
->root
->firstChild
== NULL
);
4661 switch (nScrollCode
)
4664 newFirstVisible
= infoPtr
->root
->firstChild
;
4668 newFirstVisible
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
4672 newFirstVisible
= TREEVIEW_GetPrevListItem(infoPtr
, oldFirstVisible
);
4676 newFirstVisible
= TREEVIEW_GetNextListItem(infoPtr
, oldFirstVisible
);
4680 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4681 -max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4685 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4686 max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4690 case SB_THUMBPOSITION
:
4691 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
,
4692 infoPtr
->root
->firstChild
,
4693 (LONG
)(SHORT
)HIWORD(wParam
));
4700 if (newFirstVisible
!= NULL
)
4702 if (newFirstVisible
!= oldFirstVisible
)
4703 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
,
4704 nScrollCode
!= SB_THUMBTRACK
);
4705 else if (nScrollCode
== SB_THUMBPOSITION
)
4706 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4707 newFirstVisible
->visibleOrder
, TRUE
);
4714 TREEVIEW_HScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4717 int scrollX
= infoPtr
->scrollX
;
4718 int nScrollCode
= LOWORD(wParam
);
4720 TRACE("wp %x\n", wParam
);
4722 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
4725 if (infoPtr
->hwndEdit
)
4726 SetFocus(infoPtr
->hwnd
);
4728 maxWidth
= infoPtr
->treeWidth
- infoPtr
->clientWidth
;
4729 /* shall never occur */
4736 switch (nScrollCode
)
4739 scrollX
-= infoPtr
->uItemHeight
;
4742 scrollX
+= infoPtr
->uItemHeight
;
4745 scrollX
-= infoPtr
->clientWidth
;
4748 scrollX
+= infoPtr
->clientWidth
;
4752 case SB_THUMBPOSITION
:
4753 scrollX
= (int)(SHORT
)HIWORD(wParam
);
4760 if (scrollX
> maxWidth
)
4762 else if (scrollX
< 0)
4766 if (scrollX
!= infoPtr
->scrollX
)
4768 TREEVIEW_ITEM
*item
;
4769 LONG scroll_pixels
= infoPtr
->scrollX
- scrollX
;
4771 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4772 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4774 item
->linesOffset
+= scroll_pixels
;
4775 item
->stateOffset
+= scroll_pixels
;
4776 item
->imageOffset
+= scroll_pixels
;
4777 item
->textOffset
+= scroll_pixels
;
4780 ScrollWindow(infoPtr
->hwnd
, scroll_pixels
, 0, NULL
, NULL
);
4781 infoPtr
->scrollX
= scrollX
;
4782 UpdateWindow(infoPtr
->hwnd
);
4785 if (nScrollCode
!= SB_THUMBTRACK
)
4786 SetScrollPos(infoPtr
->hwnd
, SB_HORZ
, scrollX
, TRUE
);
4792 TREEVIEW_MouseWheel(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4795 UINT pulScrollLines
= 3;
4797 if (infoPtr
->firstVisible
== NULL
)
4800 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
, 0, &pulScrollLines
, 0);
4802 gcWheelDelta
= -(short)HIWORD(wParam
);
4803 pulScrollLines
*= (gcWheelDelta
/ WHEEL_DELTA
);
4805 if (abs(gcWheelDelta
) >= WHEEL_DELTA
&& pulScrollLines
)
4807 int newDy
= infoPtr
->firstVisible
->visibleOrder
+ pulScrollLines
;
4808 int maxDy
= infoPtr
->maxVisibleOrder
;
4816 TREEVIEW_VScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, newDy
));
4821 /* Create/Destroy *******************************************************/
4824 TREEVIEW_Create(HWND hwnd
, const CREATESTRUCTW
*lpcs
)
4826 static const WCHAR szDisplayW
[] = { 'D','I','S','P','L','A','Y','\0' };
4828 TREEVIEW_INFO
*infoPtr
;
4831 TRACE("wnd %p, style %lx\n", hwnd
, GetWindowLongW(hwnd
, GWL_STYLE
));
4833 infoPtr
= (TREEVIEW_INFO
*)Alloc(sizeof(TREEVIEW_INFO
));
4835 if (infoPtr
== NULL
)
4837 ERR("could not allocate info memory!\n");
4841 SetWindowLongPtrW(hwnd
, 0, (DWORD_PTR
)infoPtr
);
4843 infoPtr
->hwnd
= hwnd
;
4844 infoPtr
->dwStyle
= GetWindowLongW(hwnd
, GWL_STYLE
);
4846 infoPtr
->uNumItems
= 0;
4847 infoPtr
->cdmode
= 0;
4848 infoPtr
->uScrollTime
= 300; /* milliseconds */
4849 infoPtr
->bRedraw
= TRUE
;
4851 GetClientRect(hwnd
, &rcClient
);
4853 /* No scroll bars yet. */
4854 infoPtr
->clientWidth
= rcClient
.right
;
4855 infoPtr
->clientHeight
= rcClient
.bottom
;
4856 infoPtr
->uInternalStatus
= 0;
4858 infoPtr
->treeWidth
= 0;
4859 infoPtr
->treeHeight
= 0;
4861 infoPtr
->uIndent
= MINIMUM_INDENT
;
4862 infoPtr
->selectedItem
= 0;
4863 infoPtr
->focusedItem
= 0;
4864 infoPtr
->hotItem
= 0;
4865 infoPtr
->firstVisible
= 0;
4866 infoPtr
->maxVisibleOrder
= 0;
4867 infoPtr
->dropItem
= 0;
4868 infoPtr
->insertMarkItem
= 0;
4869 infoPtr
->insertBeforeorAfter
= 0;
4872 infoPtr
->scrollX
= 0;
4874 infoPtr
->clrBk
= GetSysColor(COLOR_WINDOW
);
4875 infoPtr
->clrText
= -1; /* use system color */
4876 infoPtr
->clrLine
= RGB(128, 128, 128);
4877 infoPtr
->clrInsertMark
= GetSysColor(COLOR_BTNTEXT
);
4881 infoPtr
->hwndEdit
= 0;
4882 infoPtr
->wpEditOrig
= NULL
;
4883 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
4884 infoPtr
->bLabelChanged
= FALSE
;
4886 infoPtr
->himlNormal
= NULL
;
4887 infoPtr
->himlState
= NULL
;
4888 infoPtr
->normalImageWidth
= 0;
4889 infoPtr
->normalImageHeight
= 0;
4890 infoPtr
->stateImageWidth
= 0;
4891 infoPtr
->stateImageHeight
= 0;
4893 infoPtr
->items
= DPA_Create(16);
4895 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, sizeof(lf
), &lf
, 0);
4896 infoPtr
->hFont
= infoPtr
->hDefaultFont
= CreateFontIndirectW(&lf
);
4897 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
4898 infoPtr
->hUnderlineFont
= TREEVIEW_CreateUnderlineFont(infoPtr
->hFont
);
4899 infoPtr
->hcurHand
= LoadCursorW(NULL
, (LPWSTR
)IDC_HAND
);
4901 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
4903 infoPtr
->root
= TREEVIEW_AllocateItem(infoPtr
);
4904 infoPtr
->root
->state
= TVIS_EXPANDED
;
4905 infoPtr
->root
->iLevel
= -1;
4906 infoPtr
->root
->visibleOrder
= -1;
4908 infoPtr
->hwndNotify
= lpcs
->hwndParent
;
4910 infoPtr
->bTransparent
= ( GetWindowLongW( hwnd
, GWL_STYLE
) & TBSTYLE_FLAT
);
4913 infoPtr
->hwndToolTip
= 0;
4915 infoPtr
->bNtfUnicode
= IsWindowUnicode (hwnd
);
4917 /* Determine what type of notify should be issued */
4918 /* sets infoPtr->bNtfUnicode */
4919 TREEVIEW_NotifyFormat(infoPtr
, infoPtr
->hwndNotify
, NF_REQUERY
);
4921 if (!(infoPtr
->dwStyle
& TVS_NOTOOLTIPS
))
4922 infoPtr
->hwndToolTip
= COMCTL32_CreateToolTip(hwnd
);
4924 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4927 HBITMAP hbm
, hbmOld
;
4931 infoPtr
->himlState
=
4932 ImageList_Create(16, 16, ILC_COLOR
| ILC_MASK
, 3, 0);
4934 hdcScreen
= CreateDCW(szDisplayW
, NULL
, NULL
, NULL
);
4936 /* Create a coloured bitmap compatible with the screen depth
4937 because checkboxes are not black&white */
4938 hdc
= CreateCompatibleDC(hdcScreen
);
4939 hbm
= CreateCompatibleBitmap(hdcScreen
, 48, 16);
4940 hbmOld
= SelectObject(hdc
, hbm
);
4942 rc
.left
= 0; rc
.top
= 0;
4943 rc
.right
= 48; rc
.bottom
= 16;
4944 FillRect(hdc
, &rc
, (HBRUSH
)(COLOR_WINDOW
+1));
4946 rc
.left
= 18; rc
.top
= 2;
4947 rc
.right
= 30; rc
.bottom
= 14;
4948 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4949 DFCS_BUTTONCHECK
|DFCS_FLAT
);
4951 rc
.left
= 34; rc
.right
= 46;
4952 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4953 DFCS_BUTTONCHECK
|DFCS_FLAT
|DFCS_CHECKED
);
4955 SelectObject(hdc
, hbmOld
);
4956 nIndex
= ImageList_AddMasked(infoPtr
->himlState
, hbm
,
4957 GetSysColor(COLOR_WINDOW
));
4958 TRACE("checkbox index %d\n", nIndex
);
4962 DeleteDC(hdcScreen
);
4964 infoPtr
->stateImageWidth
= 16;
4965 infoPtr
->stateImageHeight
= 16;
4968 /* Make sure actual scrollbar state is consistent with uInternalStatus */
4969 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
4970 ShowScrollBar(hwnd
, SB_HORZ
, FALSE
);
4972 OpenThemeData (hwnd
, themeClass
);
4979 TREEVIEW_Destroy(TREEVIEW_INFO
*infoPtr
)
4983 TREEVIEW_RemoveTree(infoPtr
);
4985 /* tool tip is automatically destroyed: we are its owner */
4987 /* Restore original wndproc */
4988 if (infoPtr
->hwndEdit
)
4989 SetWindowLongPtrW(infoPtr
->hwndEdit
, GWLP_WNDPROC
,
4990 (DWORD_PTR
)infoPtr
->wpEditOrig
);
4992 CloseThemeData (GetWindowTheme (infoPtr
->hwnd
));
4994 /* Deassociate treeview from the window before doing anything drastic. */
4995 SetWindowLongPtrW(infoPtr
->hwnd
, 0, (DWORD_PTR
)NULL
);
4998 DeleteObject(infoPtr
->hDefaultFont
);
4999 DeleteObject(infoPtr
->hBoldFont
);
5000 DeleteObject(infoPtr
->hUnderlineFont
);
5006 /* Miscellaneous Messages ***********************************************/
5009 TREEVIEW_ScrollKeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM key
)
5017 #define SCROLL_ENTRY(dir, code) { ((dir) << 7) | (code) }
5018 SCROLL_ENTRY(SB_VERT
, SB_PAGEUP
), /* VK_PRIOR */
5019 SCROLL_ENTRY(SB_VERT
, SB_PAGEDOWN
), /* VK_NEXT */
5020 SCROLL_ENTRY(SB_VERT
, SB_BOTTOM
), /* VK_END */
5021 SCROLL_ENTRY(SB_VERT
, SB_TOP
), /* VK_HOME */
5022 SCROLL_ENTRY(SB_HORZ
, SB_LINEUP
), /* VK_LEFT */
5023 SCROLL_ENTRY(SB_VERT
, SB_LINEUP
), /* VK_UP */
5024 SCROLL_ENTRY(SB_HORZ
, SB_LINEDOWN
), /* VK_RIGHT */
5025 SCROLL_ENTRY(SB_VERT
, SB_LINEDOWN
) /* VK_DOWN */
5029 if (key
>= VK_PRIOR
&& key
<= VK_DOWN
)
5031 unsigned char code
= scroll
[key
- VK_PRIOR
].code
;
5033 (((code
& (1 << 7)) == (SB_HORZ
<< 7))
5035 : TREEVIEW_VScroll
)(infoPtr
, code
& 0x7F);
5041 /************************************************************************
5044 * VK_UP Move selection to the previous non-hidden item.
5045 * VK_DOWN Move selection to the next non-hidden item.
5046 * VK_HOME Move selection to the first item.
5047 * VK_END Move selection to the last item.
5048 * VK_LEFT If expanded then collapse, otherwise move to parent.
5049 * VK_RIGHT If collapsed then expand, otherwise move to first child.
5051 * VK_SUBTRACT Collapse.
5052 * VK_MULTIPLY Expand all.
5053 * VK_PRIOR Move up GetVisibleCount items.
5054 * VK_NEXT Move down GetVisibleCount items.
5055 * VK_BACK Move to parent.
5056 * CTRL-Left,Right,Up,Down,PgUp,PgDown,Home,End: Scroll without changing selection
5059 TREEVIEW_KeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
5061 /* If it is non-NULL and different, it will be selected and visible. */
5062 TREEVIEW_ITEM
*newSelection
= NULL
;
5064 TREEVIEW_ITEM
*prevItem
= infoPtr
->selectedItem
;
5066 TRACE("%x\n", wParam
);
5068 if (prevItem
== NULL
)
5071 if (GetAsyncKeyState(VK_CONTROL
) & 0x8000)
5072 return TREEVIEW_ScrollKeyDown(infoPtr
, wParam
);
5077 newSelection
= TREEVIEW_GetPrevListItem(infoPtr
, prevItem
);
5079 newSelection
= infoPtr
->root
->firstChild
;
5083 newSelection
= TREEVIEW_GetNextListItem(infoPtr
, prevItem
);
5087 newSelection
= infoPtr
->root
->firstChild
;
5091 newSelection
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
5095 if (prevItem
->state
& TVIS_EXPANDED
)
5097 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
5099 else if (prevItem
->parent
!= infoPtr
->root
)
5101 newSelection
= prevItem
->parent
;
5106 if (TREEVIEW_HasChildren(infoPtr
, prevItem
))
5108 if (!(prevItem
->state
& TVIS_EXPANDED
))
5109 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
5112 newSelection
= prevItem
->firstChild
;
5119 TREEVIEW_ExpandAll(infoPtr
, prevItem
);
5123 if (!(prevItem
->state
& TVIS_EXPANDED
))
5124 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
5128 if (prevItem
->state
& TVIS_EXPANDED
)
5129 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
5134 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
5135 -TREEVIEW_GetVisibleCount(infoPtr
));
5140 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
5141 TREEVIEW_GetVisibleCount(infoPtr
));
5145 newSelection
= prevItem
->parent
;
5146 if (newSelection
== infoPtr
->root
)
5147 newSelection
= NULL
;
5151 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
5152 TREEVIEW_ToggleItemState(infoPtr
, prevItem
);
5156 if (newSelection
&& newSelection
!= prevItem
)
5158 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
,
5161 TREEVIEW_EnsureVisible(infoPtr
, newSelection
, FALSE
);
5169 TREEVIEW_MouseLeave (TREEVIEW_INFO
* infoPtr
)
5171 if (infoPtr
->hotItem
)
5173 /* remove hot effect from item */
5174 InvalidateRect(infoPtr
->hwnd
, &infoPtr
->hotItem
->rect
, TRUE
);
5175 infoPtr
->hotItem
= NULL
;
5181 TREEVIEW_MouseMove (TREEVIEW_INFO
* infoPtr
, WPARAM wParam
, LPARAM lParam
)
5184 TRACKMOUSEEVENT trackinfo
;
5185 TREEVIEW_ITEM
* item
;
5187 /* fill in the TRACKMOUSEEVENT struct */
5188 trackinfo
.cbSize
= sizeof(TRACKMOUSEEVENT
);
5189 trackinfo
.dwFlags
= TME_QUERY
;
5190 trackinfo
.hwndTrack
= infoPtr
->hwnd
;
5191 trackinfo
.dwHoverTime
= HOVER_DEFAULT
;
5193 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
5194 _TrackMouseEvent(&trackinfo
);
5196 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
5197 if(!(trackinfo
.dwFlags
& TME_LEAVE
))
5199 trackinfo
.dwFlags
= TME_LEAVE
; /* notify upon leaving */
5201 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
5202 /* and can properly deactivate the hot item */
5203 _TrackMouseEvent(&trackinfo
);
5206 pt
.x
= (INT
)LOWORD(lParam
);
5207 pt
.y
= (INT
)HIWORD(lParam
);
5209 item
= TREEVIEW_HitTestPoint(infoPtr
, pt
);
5211 if (item
!= infoPtr
->hotItem
)
5213 /* redraw old hot item */
5214 if (infoPtr
->hotItem
)
5215 InvalidateRect(infoPtr
->hwnd
, &infoPtr
->hotItem
->rect
, TRUE
);
5216 infoPtr
->hotItem
= item
;
5217 /* redraw new hot item */
5218 if (infoPtr
->hotItem
)
5219 InvalidateRect(infoPtr
->hwnd
, &infoPtr
->hotItem
->rect
, TRUE
);
5225 /* Draw themed border */
5226 static BOOL
nc_paint (TREEVIEW_INFO
*infoPtr
, HRGN region
)
5228 HTHEME theme
= GetWindowTheme (infoPtr
->hwnd
);
5232 int cxEdge
= GetSystemMetrics (SM_CXEDGE
),
5233 cyEdge
= GetSystemMetrics (SM_CYEDGE
);
5235 if (!theme
) return FALSE
;
5237 GetWindowRect(infoPtr
->hwnd
, &r
);
5239 cliprgn
= CreateRectRgn (r
.left
+ cxEdge
, r
.top
+ cyEdge
,
5240 r
.right
- cxEdge
, r
.bottom
- cyEdge
);
5241 if (region
!= (HRGN
)1)
5242 CombineRgn (cliprgn
, cliprgn
, region
, RGN_AND
);
5243 OffsetRect(&r
, -r
.left
, -r
.top
);
5245 dc
= GetDCEx(infoPtr
->hwnd
, region
, DCX_WINDOW
|DCX_INTERSECTRGN
);
5246 OffsetRect(&r
, -r
.left
, -r
.top
);
5248 if (IsThemeBackgroundPartiallyTransparent (theme
, 0, 0))
5249 DrawThemeParentBackground(infoPtr
->hwnd
, dc
, &r
);
5250 DrawThemeBackground (theme
, dc
, 0, 0, &r
, 0);
5251 ReleaseDC(infoPtr
->hwnd
, dc
);
5253 /* Call default proc to get the scrollbars etc. painted */
5254 DefWindowProcW (infoPtr
->hwnd
, WM_NCPAINT
, (WPARAM
)cliprgn
, 0);
5260 TREEVIEW_Notify(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5262 LPNMHDR lpnmh
= (LPNMHDR
)lParam
;
5264 if (lpnmh
->code
== PGN_CALCSIZE
) {
5265 LPNMPGCALCSIZE lppgc
= (LPNMPGCALCSIZE
)lParam
;
5267 if (lppgc
->dwFlag
== PGF_CALCWIDTH
) {
5268 lppgc
->iWidth
= infoPtr
->treeWidth
;
5269 TRACE("got PGN_CALCSIZE, returning horz size = %ld, client=%ld\n",
5270 infoPtr
->treeWidth
, infoPtr
->clientWidth
);
5273 lppgc
->iHeight
= infoPtr
->treeHeight
;
5274 TRACE("got PGN_CALCSIZE, returning vert size = %ld, client=%ld\n",
5275 infoPtr
->treeHeight
, infoPtr
->clientHeight
);
5279 return DefWindowProcW(infoPtr
->hwnd
, WM_NOTIFY
, wParam
, lParam
);
5282 static INT
TREEVIEW_NotifyFormat (TREEVIEW_INFO
*infoPtr
, HWND hwndFrom
, UINT nCommand
)
5286 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom
, nCommand
);
5288 if (nCommand
!= NF_REQUERY
) return 0;
5290 format
= SendMessageW(hwndFrom
, WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwnd
, NF_QUERY
);
5291 TRACE("format=%d\n", format
);
5293 if (format
!= NFR_ANSI
&& format
!= NFR_UNICODE
) return 0;
5295 infoPtr
->bNtfUnicode
= (format
== NFR_UNICODE
);
5301 TREEVIEW_Size(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5303 if (wParam
== SIZE_RESTORED
)
5305 infoPtr
->clientWidth
= (short)LOWORD(lParam
);
5306 infoPtr
->clientHeight
= (short)HIWORD(lParam
);
5308 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
5309 TREEVIEW_SetFirstVisible(infoPtr
, infoPtr
->firstVisible
, TRUE
);
5310 TREEVIEW_UpdateScrollBars(infoPtr
);
5314 FIXME("WM_SIZE flag %x %lx not handled\n", wParam
, lParam
);
5317 TREEVIEW_Invalidate(infoPtr
, NULL
);
5322 TREEVIEW_StyleChanged(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5324 TRACE("(%x %lx)\n", wParam
, lParam
);
5326 if (wParam
== GWL_STYLE
)
5328 DWORD dwNewStyle
= ((LPSTYLESTRUCT
)lParam
)->styleNew
;
5330 /* we have to take special care about tooltips */
5331 if ((infoPtr
->dwStyle
^ dwNewStyle
) & TVS_NOTOOLTIPS
)
5333 if (infoPtr
->dwStyle
& TVS_NOTOOLTIPS
)
5335 infoPtr
->hwndToolTip
= COMCTL32_CreateToolTip(infoPtr
->hwnd
);
5340 DestroyWindow(infoPtr
->hwndToolTip
);
5341 infoPtr
->hwndToolTip
= 0;
5345 infoPtr
->dwStyle
= dwNewStyle
;
5348 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
5349 TREEVIEW_UpdateScrollBars(infoPtr
);
5350 TREEVIEW_Invalidate(infoPtr
, NULL
);
5356 TREEVIEW_SetCursor(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5359 TREEVIEW_ITEM
* item
;
5362 ScreenToClient(infoPtr
->hwnd
, &pt
);
5364 item
= TREEVIEW_HitTestPoint(infoPtr
, pt
);
5366 /* FIXME: send NM_SETCURSOR */
5368 if (item
&& (infoPtr
->dwStyle
& TVS_TRACKSELECT
))
5370 SetCursor(infoPtr
->hcurHand
);
5374 return DefWindowProcW(infoPtr
->hwnd
, WM_SETCURSOR
, wParam
, lParam
);
5378 TREEVIEW_SetFocus(TREEVIEW_INFO
*infoPtr
)
5382 if (!infoPtr
->selectedItem
)
5384 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, infoPtr
->firstVisible
,
5388 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
5389 TREEVIEW_SendSimpleNotify(infoPtr
, NM_SETFOCUS
);
5394 TREEVIEW_KillFocus(TREEVIEW_INFO
*infoPtr
)
5398 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
5399 UpdateWindow(infoPtr
->hwnd
);
5400 TREEVIEW_SendSimpleNotify(infoPtr
, NM_KILLFOCUS
);
5404 /* update theme after a WM_THEMECHANGED message */
5405 static LRESULT
theme_changed (TREEVIEW_INFO
* infoPtr
)
5407 HTHEME theme
= GetWindowTheme (infoPtr
->hwnd
);
5408 CloseThemeData (theme
);
5409 OpenThemeData (infoPtr
->hwnd
, themeClass
);
5414 static LRESULT WINAPI
5415 TREEVIEW_WindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
5417 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(hwnd
);
5419 TRACE("hwnd %p msg %04x wp=%08x lp=%08lx\n", hwnd
, uMsg
, wParam
, lParam
);
5421 if (infoPtr
) TREEVIEW_VerifyTree(infoPtr
);
5424 if (uMsg
== WM_CREATE
)
5425 TREEVIEW_Create(hwnd
, (LPCREATESTRUCTW
)lParam
);
5432 case TVM_CREATEDRAGIMAGE
:
5433 return TREEVIEW_CreateDragImage(infoPtr
, wParam
, lParam
);
5435 case TVM_DELETEITEM
:
5436 return TREEVIEW_DeleteItem(infoPtr
, (HTREEITEM
)lParam
);
5438 case TVM_EDITLABELA
:
5439 return (LRESULT
)TREEVIEW_EditLabel(infoPtr
, (HTREEITEM
)lParam
);
5441 case TVM_EDITLABELW
:
5442 return (LRESULT
)TREEVIEW_EditLabel(infoPtr
, (HTREEITEM
)lParam
);
5444 case TVM_ENDEDITLABELNOW
:
5445 return TREEVIEW_EndEditLabelNow(infoPtr
, (BOOL
)wParam
);
5447 case TVM_ENSUREVISIBLE
:
5448 return TREEVIEW_EnsureVisible(infoPtr
, (HTREEITEM
)lParam
, TRUE
);
5451 return TREEVIEW_ExpandMsg(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
5453 case TVM_GETBKCOLOR
:
5454 return TREEVIEW_GetBkColor(infoPtr
);
5457 return TREEVIEW_GetCount(infoPtr
);
5459 case TVM_GETEDITCONTROL
:
5460 return TREEVIEW_GetEditControl(infoPtr
);
5462 case TVM_GETIMAGELIST
:
5463 return TREEVIEW_GetImageList(infoPtr
, wParam
);
5466 return TREEVIEW_GetIndent(infoPtr
);
5468 case TVM_GETINSERTMARKCOLOR
:
5469 return TREEVIEW_GetInsertMarkColor(infoPtr
);
5471 case TVM_GETISEARCHSTRINGA
:
5472 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGA\n");
5475 case TVM_GETISEARCHSTRINGW
:
5476 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGW\n");
5480 return TREEVIEW_GetItemT(infoPtr
, (LPTVITEMEXW
)lParam
, FALSE
);
5483 return TREEVIEW_GetItemT(infoPtr
, (LPTVITEMEXW
)lParam
, TRUE
);
5485 case TVM_GETITEMHEIGHT
:
5486 return TREEVIEW_GetItemHeight(infoPtr
);
5488 case TVM_GETITEMRECT
:
5489 return TREEVIEW_GetItemRect(infoPtr
, (BOOL
)wParam
, (LPRECT
)lParam
);
5491 case TVM_GETITEMSTATE
:
5492 return TREEVIEW_GetItemState(infoPtr
, (HTREEITEM
)wParam
, (UINT
)lParam
);
5494 case TVM_GETLINECOLOR
:
5495 return TREEVIEW_GetLineColor(infoPtr
);
5497 case TVM_GETNEXTITEM
:
5498 return TREEVIEW_GetNextItem(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
5500 case TVM_GETSCROLLTIME
:
5501 return TREEVIEW_GetScrollTime(infoPtr
);
5503 case TVM_GETTEXTCOLOR
:
5504 return TREEVIEW_GetTextColor(infoPtr
);
5506 case TVM_GETTOOLTIPS
:
5507 return TREEVIEW_GetToolTips(infoPtr
);
5509 case TVM_GETUNICODEFORMAT
:
5510 return TREEVIEW_GetUnicodeFormat(infoPtr
);
5512 case TVM_GETVISIBLECOUNT
:
5513 return TREEVIEW_GetVisibleCount(infoPtr
);
5516 return TREEVIEW_HitTest(infoPtr
, (LPTVHITTESTINFO
)lParam
);
5518 case TVM_INSERTITEMA
:
5519 return TREEVIEW_InsertItemT(infoPtr
, (LPTVINSERTSTRUCTW
)lParam
, FALSE
);
5521 case TVM_INSERTITEMW
:
5522 return TREEVIEW_InsertItemT(infoPtr
, (LPTVINSERTSTRUCTW
)lParam
, TRUE
);
5524 case TVM_SELECTITEM
:
5525 return TREEVIEW_SelectItem(infoPtr
, (INT
)wParam
, (HTREEITEM
)lParam
);
5527 case TVM_SETBKCOLOR
:
5528 return TREEVIEW_SetBkColor(infoPtr
, (COLORREF
)lParam
);
5530 case TVM_SETIMAGELIST
:
5531 return TREEVIEW_SetImageList(infoPtr
, wParam
, (HIMAGELIST
)lParam
);
5534 return TREEVIEW_SetIndent(infoPtr
, (UINT
)wParam
);
5536 case TVM_SETINSERTMARK
:
5537 return TREEVIEW_SetInsertMark(infoPtr
, (BOOL
)wParam
, (HTREEITEM
)lParam
);
5539 case TVM_SETINSERTMARKCOLOR
:
5540 return TREEVIEW_SetInsertMarkColor(infoPtr
, (COLORREF
)lParam
);
5543 return TREEVIEW_SetItemT(infoPtr
, (LPTVITEMEXW
)lParam
, FALSE
);
5546 return TREEVIEW_SetItemT(infoPtr
, (LPTVITEMEXW
)lParam
, TRUE
);
5548 case TVM_SETLINECOLOR
:
5549 return TREEVIEW_SetLineColor(infoPtr
, (COLORREF
)lParam
);
5551 case TVM_SETITEMHEIGHT
:
5552 return TREEVIEW_SetItemHeight(infoPtr
, (INT
)(SHORT
)wParam
);
5554 case TVM_SETSCROLLTIME
:
5555 return TREEVIEW_SetScrollTime(infoPtr
, (UINT
)wParam
);
5557 case TVM_SETTEXTCOLOR
:
5558 return TREEVIEW_SetTextColor(infoPtr
, (COLORREF
)lParam
);
5560 case TVM_SETTOOLTIPS
:
5561 return TREEVIEW_SetToolTips(infoPtr
, (HWND
)wParam
);
5563 case TVM_SETUNICODEFORMAT
:
5564 return TREEVIEW_SetUnicodeFormat(infoPtr
, (BOOL
)wParam
);
5566 case TVM_SORTCHILDREN
:
5567 return TREEVIEW_SortChildren(infoPtr
, wParam
, lParam
);
5569 case TVM_SORTCHILDRENCB
:
5570 return TREEVIEW_SortChildrenCB(infoPtr
, wParam
, (LPTVSORTCB
)lParam
);
5573 return TREEVIEW_ProcessLetterKeys( hwnd
, wParam
, lParam
);
5576 return TREEVIEW_Command(infoPtr
, wParam
, lParam
);
5579 return TREEVIEW_Destroy(infoPtr
);
5584 return TREEVIEW_EraseBackground(infoPtr
, (HDC
)wParam
);
5587 return DLGC_WANTARROWS
| DLGC_WANTCHARS
;
5590 return TREEVIEW_GetFont(infoPtr
);
5593 return TREEVIEW_HScroll(infoPtr
, wParam
);
5596 return TREEVIEW_KeyDown(infoPtr
, wParam
);
5599 return TREEVIEW_KillFocus(infoPtr
);
5601 case WM_LBUTTONDBLCLK
:
5602 return TREEVIEW_LButtonDoubleClick(infoPtr
, lParam
);
5604 case WM_LBUTTONDOWN
:
5605 return TREEVIEW_LButtonDown(infoPtr
, lParam
);
5607 /* WM_MBUTTONDOWN */
5610 return TREEVIEW_MouseLeave(infoPtr
);
5613 if (infoPtr
->dwStyle
& TVS_TRACKSELECT
)
5614 return TREEVIEW_MouseMove(infoPtr
, wParam
, lParam
);
5619 if (nc_paint (infoPtr
, (HRGN
)wParam
))
5624 return TREEVIEW_Notify(infoPtr
, wParam
, lParam
);
5626 case WM_NOTIFYFORMAT
:
5627 return TREEVIEW_NotifyFormat(infoPtr
, (HWND
)wParam
, (UINT
)lParam
);
5629 case WM_PRINTCLIENT
:
5631 return TREEVIEW_Paint(infoPtr
, wParam
);
5633 case WM_RBUTTONDOWN
:
5634 return TREEVIEW_RButtonDown(infoPtr
, lParam
);
5637 return TREEVIEW_SetCursor(infoPtr
, wParam
, lParam
);
5640 return TREEVIEW_SetFocus(infoPtr
);
5643 return TREEVIEW_SetFont(infoPtr
, (HFONT
)wParam
, (BOOL
)lParam
);
5646 return TREEVIEW_SetRedraw(infoPtr
, wParam
, lParam
);
5649 return TREEVIEW_Size(infoPtr
, wParam
, lParam
);
5651 case WM_STYLECHANGED
:
5652 return TREEVIEW_StyleChanged(infoPtr
, wParam
, lParam
);
5654 /* WM_SYSCOLORCHANGE */
5659 return TREEVIEW_HandleTimer(infoPtr
, wParam
);
5661 case WM_THEMECHANGED
:
5662 return theme_changed (infoPtr
);
5665 return TREEVIEW_VScroll(infoPtr
, wParam
);
5667 /* WM_WININICHANGE */
5670 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
5672 return TREEVIEW_MouseWheel(infoPtr
, wParam
);
5675 TRACE("drawItem\n");
5679 /* This mostly catches MFC and Delphi messages. :( */
5680 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
))
5681 TRACE("Unknown msg %04x wp=%08x lp=%08lx\n", uMsg
, wParam
, lParam
);
5683 return DefWindowProcW(hwnd
, uMsg
, wParam
, lParam
);
5688 /* Class Registration ***************************************************/
5691 TREEVIEW_Register(void)
5697 ZeroMemory(&wndClass
, sizeof(WNDCLASSW
));
5698 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
5699 wndClass
.lpfnWndProc
= TREEVIEW_WindowProc
;
5700 wndClass
.cbClsExtra
= 0;
5701 wndClass
.cbWndExtra
= sizeof(TREEVIEW_INFO
*);
5703 wndClass
.hCursor
= LoadCursorW(0, (LPWSTR
)IDC_ARROW
);
5704 wndClass
.hbrBackground
= 0;
5705 wndClass
.lpszClassName
= WC_TREEVIEWW
;
5707 RegisterClassW(&wndClass
);
5712 TREEVIEW_Unregister(void)
5714 UnregisterClassW(WC_TREEVIEWW
, NULL
);
5718 /* Tree Verification ****************************************************/
5722 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
);
5724 static inline void TREEVIEW_VerifyItemCommon(TREEVIEW_INFO
*infoPtr
,
5725 TREEVIEW_ITEM
*item
)
5727 assert(infoPtr
!= NULL
);
5728 assert(item
!= NULL
);
5730 /* both NULL, or both non-null */
5731 assert((item
->firstChild
== NULL
) == (item
->lastChild
== NULL
));
5733 assert(item
->firstChild
!= item
);
5734 assert(item
->lastChild
!= item
);
5736 if (item
->firstChild
)
5738 assert(item
->firstChild
->parent
== item
);
5739 assert(item
->firstChild
->prevSibling
== NULL
);
5742 if (item
->lastChild
)
5744 assert(item
->lastChild
->parent
== item
);
5745 assert(item
->lastChild
->nextSibling
== NULL
);
5748 assert(item
->nextSibling
!= item
);
5749 if (item
->nextSibling
)
5751 assert(item
->nextSibling
->parent
== item
->parent
);
5752 assert(item
->nextSibling
->prevSibling
== item
);
5755 assert(item
->prevSibling
!= item
);
5756 if (item
->prevSibling
)
5758 assert(item
->prevSibling
->parent
== item
->parent
);
5759 assert(item
->prevSibling
->nextSibling
== item
);
5764 TREEVIEW_VerifyItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
5766 assert(item
!= NULL
);
5768 assert(item
->parent
!= NULL
);
5769 assert(item
->parent
!= item
);
5770 assert(item
->iLevel
== item
->parent
->iLevel
+ 1);
5772 assert(DPA_GetPtrIndex(infoPtr
->items
, item
) != -1);
5774 TREEVIEW_VerifyItemCommon(infoPtr
, item
);
5776 TREEVIEW_VerifyChildren(infoPtr
, item
);
5780 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
5782 TREEVIEW_ITEM
*child
;
5783 assert(item
!= NULL
);
5785 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
5786 TREEVIEW_VerifyItem(infoPtr
, child
);
5790 TREEVIEW_VerifyRoot(TREEVIEW_INFO
*infoPtr
)
5792 TREEVIEW_ITEM
*root
= infoPtr
->root
;
5794 assert(root
!= NULL
);
5795 assert(root
->iLevel
== -1);
5796 assert(root
->parent
== NULL
);
5797 assert(root
->prevSibling
== NULL
);
5799 TREEVIEW_VerifyItemCommon(infoPtr
, root
);
5801 TREEVIEW_VerifyChildren(infoPtr
, root
);
5805 TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
)
5807 assert(infoPtr
!= NULL
);
5809 TREEVIEW_VerifyRoot(infoPtr
);