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: If item's text == LPSTR_TEXTCALLBACKA we allocate buffer
27 * of size TEXT_CALLBACK_SIZE in DoSetItem.
28 * We use callbackMask to keep track of fields to be updated.
31 * missing notifications: TVN_GETINFOTIP, TVN_KEYDOWN,
32 * TVN_SETDISPINFO, TVN_SINGLEEXPAND
34 * missing styles: TVS_FULLROWSELECT, TVS_INFOTIP, TVS_RTLREADING,
36 * missing item styles: TVIS_CUT, TVIS_EXPANDPARTIAL, TVIS_EX_FLAT,
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 WINE_DEFAULT_DEBUG_CHANNEL(treeview
);
69 /* internal structures */
71 typedef struct _TREEITEM
/* HTREEITEM is a _TREEINFO *. */
83 int iIntegral
; /* item height multiplier (1 is normal) */
84 int iLevel
; /* indentation level:0=root level */
85 HTREEITEM parent
; /* handle to parent or 0 if at root */
86 HTREEITEM firstChild
; /* handle to first child or 0 if no child */
88 HTREEITEM prevSibling
; /* handle to prev item in list, 0 if first */
89 HTREEITEM nextSibling
; /* handle to next item in list, 0 if last */
95 LONG textWidth
; /* horizontal text extent for pszText */
96 LONG visibleOrder
; /* visible ordering, 0 is first visible item */
100 typedef struct tagTREEVIEW_INFO
103 HWND hwndNotify
; /* Owner window to send notifications to */
106 UINT uInternalStatus
;
108 UINT uNumItems
; /* number of valid TREEVIEW_ITEMs */
109 INT cdmode
; /* last custom draw setting */
110 UINT uScrollTime
; /* max. time for scrolling in milliseconds */
111 BOOL bRedraw
; /* if FALSE we validate but don't redraw in TREEVIEW_Paint() */
113 UINT uItemHeight
; /* item height */
116 LONG clientWidth
; /* width of control window */
117 LONG clientHeight
; /* height of control window */
119 LONG treeWidth
; /* width of visible tree items */
120 LONG treeHeight
; /* height of visible tree items */
122 UINT uIndent
; /* indentation in pixels */
123 HTREEITEM selectedItem
; /* handle to selected item or 0 if none */
124 HTREEITEM hotItem
; /* handle currently under cursor, 0 if none */
125 HTREEITEM focusedItem
; /* item that was under the cursor when WM_LBUTTONDOWN was received */
126 HTREEITEM editItem
; /* item being edited with builtin edit box */
128 HTREEITEM firstVisible
; /* handle to first visible item */
129 LONG maxVisibleOrder
;
130 HTREEITEM dropItem
; /* handle to item selected by drag cursor */
131 HTREEITEM insertMarkItem
; /* item after which insertion mark is placed */
132 BOOL insertBeforeorAfter
; /* flag used by TVM_SETINSERTMARK */
133 HIMAGELIST dragList
; /* Bitmap of dragged item */
138 COLORREF clrInsertMark
;
142 HFONT hUnderlineFont
;
147 WNDPROC wpEditOrig
; /* orig window proc for subclassing edit */
148 BOOL bIgnoreEditKillFocus
;
151 BOOL bNtfUnicode
; /* TRUE if should send NOTIFY with W */
152 HIMAGELIST himlNormal
;
153 int normalImageHeight
;
154 int normalImageWidth
;
155 HIMAGELIST himlState
;
156 int stateImageHeight
;
160 DWORD lastKeyPressTimestamp
;
162 INT nSearchParamLength
;
163 WCHAR szSearchParam
[ MAX_PATH
];
167 /******** Defines that TREEVIEW_ProcessLetterKeys uses ****************/
168 #define KEY_DELAY 450
170 /* bitflags for infoPtr->uInternalStatus */
172 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */
173 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */
174 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */
175 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */
176 #define TV_RDRAG 0x10 /* ditto Rbutton */
177 #define TV_RDRAGGING 0x20
179 /* bitflags for infoPtr->timer */
181 #define TV_EDIT_TIMER 2
182 #define TV_EDIT_TIMER_SET 2
184 #define TEXT_CALLBACK_SIZE 260
186 #define TREEVIEW_LEFT_MARGIN 8
188 #define MINIMUM_INDENT 19
190 #define CALLBACK_MASK_ALL (TVIF_TEXT|TVIF_CHILDREN|TVIF_IMAGE|TVIF_SELECTEDIMAGE)
192 #define STATEIMAGEINDEX(x) (((x) >> 12) & 0x0f)
193 #define OVERLAYIMAGEINDEX(x) (((x) >> 8) & 0x0f)
194 #define ISVISIBLE(x) ((x)->visibleOrder >= 0)
196 #define GETLINECOLOR(x) ((x) == CLR_DEFAULT ? comctl32_color.clrGrayText : (x))
197 #define GETBKCOLOR(x) ((x) == CLR_NONE ? comctl32_color.clrWindow : (x))
198 #define GETTXTCOLOR(x) ((x) == CLR_NONE ? comctl32_color.clrWindowText : (x))
199 #define GETINSCOLOR(x) ((x) == CLR_DEFAULT ? comctl32_color.clrBtnText : (x))
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(const TREEVIEW_INFO
*, const 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(const TREEVIEW_INFO
*, const POINT
*);
213 static LRESULT
TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
);
214 static VOID
TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
);
215 static LRESULT
TREEVIEW_HScroll(TREEVIEW_INFO
*, WPARAM
);
217 /* Random Utilities *****************************************************/
218 static void TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
);
220 /* Returns the treeview private data if hwnd is a treeview.
221 * Otherwise returns an undefined value. */
222 static inline TREEVIEW_INFO
*
223 TREEVIEW_GetInfoPtr(HWND hwnd
)
225 return (TREEVIEW_INFO
*)GetWindowLongPtrW(hwnd
, 0);
228 /* Don't call this. Nothing wants an item index. */
230 TREEVIEW_GetItemIndex(const TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
232 return DPA_GetPtrIndex(infoPtr
->items
, handle
);
235 /* Checks if item has changed and needs to be redrawn */
236 static inline BOOL
item_changed (const TREEVIEW_ITEM
*tiOld
, const TREEVIEW_ITEM
*tiNew
,
237 const TVITEMEXW
*tvChange
)
239 /* Number of children has changed */
240 if ((tvChange
->mask
& TVIF_CHILDREN
) && (tiOld
->cChildren
!= tiNew
->cChildren
))
243 /* Image has changed and it's not a callback */
244 if ((tvChange
->mask
& TVIF_IMAGE
) && (tiOld
->iImage
!= tiNew
->iImage
) &&
245 tiNew
->iImage
!= I_IMAGECALLBACK
)
248 /* Selected image has changed and it's not a callback */
249 if ((tvChange
->mask
& TVIF_SELECTEDIMAGE
) && (tiOld
->iSelectedImage
!= tiNew
->iSelectedImage
) &&
250 tiNew
->iSelectedImage
!= I_IMAGECALLBACK
)
253 if ((tvChange
->mask
& TVIF_EXPANDEDIMAGE
) && (tiOld
->iExpandedImage
!= tiNew
->iExpandedImage
) &&
254 tiNew
->iExpandedImage
!= I_IMAGECALLBACK
)
257 /* Text has changed and it's not a callback */
258 if ((tvChange
->mask
& TVIF_TEXT
) && (tiOld
->pszText
!= tiNew
->pszText
) &&
259 tiNew
->pszText
!= LPSTR_TEXTCALLBACKW
)
262 /* Indent has changed */
263 if ((tvChange
->mask
& TVIF_INTEGRAL
) && (tiOld
->iIntegral
!= tiNew
->iIntegral
))
266 /* Item state has changed */
267 if ((tvChange
->mask
& TVIF_STATE
) && ((tiOld
->state
^ tiNew
->state
) & tvChange
->stateMask
))
273 /***************************************************************************
274 * This method checks that handle is an item for this tree.
277 TREEVIEW_ValidItem(const TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
279 if (TREEVIEW_GetItemIndex(infoPtr
, handle
) == -1)
281 TRACE("invalid item %p\n", handle
);
289 TREEVIEW_CreateBoldFont(HFONT hOrigFont
)
293 GetObjectW(hOrigFont
, sizeof(font
), &font
);
294 font
.lfWeight
= FW_BOLD
;
295 return CreateFontIndirectW(&font
);
299 TREEVIEW_CreateUnderlineFont(HFONT hOrigFont
)
303 GetObjectW(hOrigFont
, sizeof(font
), &font
);
304 font
.lfUnderline
= TRUE
;
305 return CreateFontIndirectW(&font
);
309 TREEVIEW_FontForItem(const TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
)
311 if ((infoPtr
->dwStyle
& TVS_TRACKSELECT
) && (item
== infoPtr
->hotItem
))
312 return infoPtr
->hUnderlineFont
;
313 if (item
->state
& TVIS_BOLD
)
314 return infoPtr
->hBoldFont
;
315 return infoPtr
->hFont
;
318 /* for trace/debugging purposes only */
320 TREEVIEW_ItemName(const TREEVIEW_ITEM
*item
)
322 if (item
== NULL
) return "<null item>";
323 if (item
->pszText
== LPSTR_TEXTCALLBACKW
) return "<callback>";
324 if (item
->pszText
== NULL
) return "<null>";
325 return debugstr_w(item
->pszText
);
328 /* An item is not a child of itself. */
330 TREEVIEW_IsChildOf(const TREEVIEW_ITEM
*parent
, const TREEVIEW_ITEM
*child
)
334 child
= child
->parent
;
335 if (child
== parent
) return TRUE
;
336 } while (child
!= NULL
);
342 /* Tree Traversal *******************************************************/
344 /***************************************************************************
345 * This method returns the last expanded sibling or child child item
348 static TREEVIEW_ITEM
*
349 TREEVIEW_GetLastListItem(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
354 while (wineItem
->lastChild
)
356 if (wineItem
->state
& TVIS_EXPANDED
)
357 wineItem
= wineItem
->lastChild
;
362 if (wineItem
== infoPtr
->root
)
368 /***************************************************************************
369 * This method returns the previous non-hidden item in the list not
370 * considering the tree hierarchy.
372 static TREEVIEW_ITEM
*
373 TREEVIEW_GetPrevListItem(const TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*tvItem
)
375 if (tvItem
->prevSibling
)
377 /* This item has a prevSibling, get the last item in the sibling's tree. */
378 TREEVIEW_ITEM
*upItem
= tvItem
->prevSibling
;
380 if ((upItem
->state
& TVIS_EXPANDED
) && upItem
->lastChild
!= NULL
)
381 return TREEVIEW_GetLastListItem(infoPtr
, upItem
->lastChild
);
387 /* this item does not have a prevSibling, get the parent */
388 return (tvItem
->parent
!= infoPtr
->root
) ? tvItem
->parent
: NULL
;
393 /***************************************************************************
394 * This method returns the next physical item in the treeview not
395 * considering the tree hierarchy.
397 static TREEVIEW_ITEM
*
398 TREEVIEW_GetNextListItem(const TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*tvItem
)
401 * If this item has children and is expanded, return the first child
403 if ((tvItem
->state
& TVIS_EXPANDED
) && tvItem
->firstChild
!= NULL
)
405 return tvItem
->firstChild
;
410 * try to get the sibling
412 if (tvItem
->nextSibling
)
413 return tvItem
->nextSibling
;
416 * Otherwise, get the parent's sibling.
418 while (tvItem
->parent
)
420 tvItem
= tvItem
->parent
;
422 if (tvItem
->nextSibling
)
423 return tvItem
->nextSibling
;
429 /***************************************************************************
430 * This method returns the nth item starting at the given item. It returns
431 * the last item (or first) we we run out of items.
433 * Will scroll backward if count is <0.
434 * forward if count is >0.
436 static TREEVIEW_ITEM
*
437 TREEVIEW_GetListItem(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
440 TREEVIEW_ITEM
*(*next_item
)(const TREEVIEW_INFO
*, const TREEVIEW_ITEM
*);
441 TREEVIEW_ITEM
*previousItem
;
443 assert(wineItem
!= NULL
);
447 next_item
= TREEVIEW_GetNextListItem
;
452 next_item
= TREEVIEW_GetPrevListItem
;
459 previousItem
= wineItem
;
460 wineItem
= next_item(infoPtr
, wineItem
);
462 } while (--count
&& wineItem
!= NULL
);
465 return wineItem
? wineItem
: previousItem
;
468 /* Notifications ************************************************************/
470 static INT
get_notifycode(const TREEVIEW_INFO
*infoPtr
, INT code
)
472 if (!infoPtr
->bNtfUnicode
) {
474 case TVN_SELCHANGINGW
: return TVN_SELCHANGINGA
;
475 case TVN_SELCHANGEDW
: return TVN_SELCHANGEDA
;
476 case TVN_GETDISPINFOW
: return TVN_GETDISPINFOA
;
477 case TVN_SETDISPINFOW
: return TVN_SETDISPINFOA
;
478 case TVN_ITEMEXPANDINGW
: return TVN_ITEMEXPANDINGA
;
479 case TVN_ITEMEXPANDEDW
: return TVN_ITEMEXPANDEDA
;
480 case TVN_BEGINDRAGW
: return TVN_BEGINDRAGA
;
481 case TVN_BEGINRDRAGW
: return TVN_BEGINRDRAGA
;
482 case TVN_DELETEITEMW
: return TVN_DELETEITEMA
;
483 case TVN_BEGINLABELEDITW
: return TVN_BEGINLABELEDITA
;
484 case TVN_ENDLABELEDITW
: return TVN_ENDLABELEDITA
;
485 case TVN_GETINFOTIPW
: return TVN_GETINFOTIPA
;
492 TREEVIEW_SendRealNotify(const TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
494 TRACE("wParam=%ld, lParam=%ld\n", wParam
, lParam
);
495 return SendMessageW(infoPtr
->hwndNotify
, WM_NOTIFY
, wParam
, lParam
);
499 TREEVIEW_SendSimpleNotify(const TREEVIEW_INFO
*infoPtr
, UINT code
)
502 HWND hwnd
= infoPtr
->hwnd
;
505 nmhdr
.hwndFrom
= hwnd
;
506 nmhdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
507 nmhdr
.code
= get_notifycode(infoPtr
, code
);
509 return TREEVIEW_SendRealNotify(infoPtr
, nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
513 TREEVIEW_TVItemFromItem(const TREEVIEW_INFO
*infoPtr
, UINT mask
, TVITEMW
*tvItem
, TREEVIEW_ITEM
*item
)
516 tvItem
->hItem
= item
;
517 tvItem
->state
= item
->state
;
518 tvItem
->stateMask
= 0;
519 tvItem
->iImage
= item
->iImage
;
520 tvItem
->iSelectedImage
= item
->iSelectedImage
;
521 tvItem
->cChildren
= item
->cChildren
;
522 tvItem
->lParam
= item
->lParam
;
526 if (!infoPtr
->bNtfUnicode
)
528 tvItem
->cchTextMax
= WideCharToMultiByte( CP_ACP
, 0, item
->pszText
, -1, NULL
, 0, NULL
, NULL
);
529 tvItem
->pszText
= Alloc (tvItem
->cchTextMax
);
530 WideCharToMultiByte( CP_ACP
, 0, item
->pszText
, -1, (LPSTR
)tvItem
->pszText
, tvItem
->cchTextMax
, 0, 0 );
534 tvItem
->cchTextMax
= item
->cchTextMax
;
535 tvItem
->pszText
= item
->pszText
;
540 tvItem
->cchTextMax
= 0;
541 tvItem
->pszText
= NULL
;
546 TREEVIEW_SendTreeviewNotify(const TREEVIEW_INFO
*infoPtr
, UINT code
, UINT action
,
547 UINT mask
, HTREEITEM oldItem
, HTREEITEM newItem
)
549 HWND hwnd
= infoPtr
->hwnd
;
553 TRACE("code:%d action:%x olditem:%p newitem:%p\n",
554 code
, action
, oldItem
, newItem
);
556 ZeroMemory(&nmhdr
, sizeof(NMTREEVIEWW
));
558 nmhdr
.hdr
.hwndFrom
= hwnd
;
559 nmhdr
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
560 nmhdr
.hdr
.code
= get_notifycode(infoPtr
, code
);
561 nmhdr
.action
= action
;
564 TREEVIEW_TVItemFromItem(infoPtr
, mask
, &nmhdr
.itemOld
, oldItem
);
567 TREEVIEW_TVItemFromItem(infoPtr
, mask
, &nmhdr
.itemNew
, newItem
);
572 ret
= TREEVIEW_SendRealNotify(infoPtr
, nmhdr
.hdr
.idFrom
, (LPARAM
)&nmhdr
);
573 if (!infoPtr
->bNtfUnicode
)
575 Free(nmhdr
.itemOld
.pszText
);
576 Free(nmhdr
.itemNew
.pszText
);
582 TREEVIEW_SendTreeviewDnDNotify(const TREEVIEW_INFO
*infoPtr
, UINT code
,
583 HTREEITEM dragItem
, POINT pt
)
585 HWND hwnd
= infoPtr
->hwnd
;
588 TRACE("code:%d dragitem:%p\n", code
, dragItem
);
590 nmhdr
.hdr
.hwndFrom
= hwnd
;
591 nmhdr
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
592 nmhdr
.hdr
.code
= get_notifycode(infoPtr
, code
);
594 nmhdr
.itemNew
.mask
= TVIF_STATE
| TVIF_PARAM
| TVIF_HANDLE
;
595 nmhdr
.itemNew
.hItem
= dragItem
;
596 nmhdr
.itemNew
.state
= dragItem
->state
;
597 nmhdr
.itemNew
.lParam
= dragItem
->lParam
;
599 nmhdr
.ptDrag
.x
= pt
.x
;
600 nmhdr
.ptDrag
.y
= pt
.y
;
602 return TREEVIEW_SendRealNotify(infoPtr
, nmhdr
.hdr
.idFrom
, (LPARAM
)&nmhdr
);
607 TREEVIEW_SendCustomDrawNotify(const TREEVIEW_INFO
*infoPtr
, DWORD dwDrawStage
,
610 HWND hwnd
= infoPtr
->hwnd
;
611 NMTVCUSTOMDRAW nmcdhdr
;
614 TRACE("drawstage:%x hdc:%p\n", dwDrawStage
, hdc
);
616 nmcd
= &nmcdhdr
.nmcd
;
617 nmcd
->hdr
.hwndFrom
= hwnd
;
618 nmcd
->hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
619 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
620 nmcd
->dwDrawStage
= dwDrawStage
;
623 nmcd
->dwItemSpec
= 0;
624 nmcd
->uItemState
= 0;
625 nmcd
->lItemlParam
= 0;
626 nmcdhdr
.clrText
= infoPtr
->clrText
;
627 nmcdhdr
.clrTextBk
= infoPtr
->clrBk
;
630 return TREEVIEW_SendRealNotify(infoPtr
, nmcd
->hdr
.idFrom
, (LPARAM
)&nmcdhdr
);
635 /* FIXME: need to find out when the flags in uItemState need to be set */
638 TREEVIEW_SendCustomDrawItemNotify(const TREEVIEW_INFO
*infoPtr
, HDC hdc
,
639 TREEVIEW_ITEM
*wineItem
, UINT uItemDrawState
,
640 NMTVCUSTOMDRAW
*nmcdhdr
)
642 HWND hwnd
= infoPtr
->hwnd
;
645 DWORD_PTR dwItemSpec
;
648 dwDrawStage
= CDDS_ITEM
| uItemDrawState
;
649 dwItemSpec
= (DWORD_PTR
)wineItem
;
651 if (wineItem
->state
& TVIS_SELECTED
)
652 uItemState
|= CDIS_SELECTED
;
653 if (wineItem
== infoPtr
->selectedItem
)
654 uItemState
|= CDIS_FOCUS
;
655 if (wineItem
== infoPtr
->hotItem
)
656 uItemState
|= CDIS_HOT
;
658 nmcd
= &nmcdhdr
->nmcd
;
659 nmcd
->hdr
.hwndFrom
= hwnd
;
660 nmcd
->hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
661 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
662 nmcd
->dwDrawStage
= dwDrawStage
;
664 nmcd
->rc
= wineItem
->rect
;
665 nmcd
->dwItemSpec
= dwItemSpec
;
666 nmcd
->uItemState
= uItemState
;
667 nmcd
->lItemlParam
= wineItem
->lParam
;
668 nmcdhdr
->iLevel
= wineItem
->iLevel
;
670 TRACE("drawstage:%x hdc:%p item:%lx, itemstate:%x, lItemlParam:%lx\n",
671 nmcd
->dwDrawStage
, nmcd
->hdc
, nmcd
->dwItemSpec
,
672 nmcd
->uItemState
, nmcd
->lItemlParam
);
674 return TREEVIEW_SendRealNotify(infoPtr
, nmcd
->hdr
.idFrom
, (LPARAM
)nmcdhdr
);
678 TREEVIEW_BeginLabelEditNotify(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*editItem
)
680 HWND hwnd
= infoPtr
->hwnd
;
684 tvdi
.hdr
.hwndFrom
= hwnd
;
685 tvdi
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
686 tvdi
.hdr
.code
= get_notifycode(infoPtr
, TVN_BEGINLABELEDITW
);
688 TREEVIEW_TVItemFromItem(infoPtr
, TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
| TVIF_TEXT
,
689 &tvdi
.item
, editItem
);
691 ret
= TREEVIEW_SendRealNotify(infoPtr
, tvdi
.hdr
.idFrom
, (LPARAM
)&tvdi
);
693 if (!infoPtr
->bNtfUnicode
)
694 Free(tvdi
.item
.pszText
);
700 TREEVIEW_UpdateDispInfo(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
703 NMTVDISPINFOEXW callback
;
704 HWND hwnd
= infoPtr
->hwnd
;
706 TRACE("mask %x callbackMask %x\n", mask
, wineItem
->callbackMask
);
707 mask
&= wineItem
->callbackMask
;
709 if (mask
== 0) return;
711 callback
.hdr
.hwndFrom
= hwnd
;
712 callback
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
713 callback
.hdr
.code
= get_notifycode(infoPtr
, TVN_GETDISPINFOW
);
715 /* 'state' always contains valid value, as well as 'lParam'.
716 * All other parameters are uninitialized.
718 callback
.item
.pszText
= wineItem
->pszText
;
719 callback
.item
.cchTextMax
= wineItem
->cchTextMax
;
720 callback
.item
.mask
= mask
;
721 callback
.item
.hItem
= wineItem
;
722 callback
.item
.state
= wineItem
->state
;
723 callback
.item
.lParam
= wineItem
->lParam
;
725 /* If text is changed we need to recalculate textWidth */
726 if (mask
& TVIF_TEXT
)
727 wineItem
->textWidth
= 0;
729 TREEVIEW_SendRealNotify(infoPtr
, callback
.hdr
.idFrom
, (LPARAM
)&callback
);
731 /* It may have changed due to a call to SetItem. */
732 mask
&= wineItem
->callbackMask
;
734 if ((mask
& TVIF_TEXT
) && callback
.item
.pszText
!= wineItem
->pszText
)
736 /* Instead of copying text into our buffer user specified its own */
737 if (!infoPtr
->bNtfUnicode
) {
740 int len
= MultiByteToWideChar( CP_ACP
, 0,
741 (LPSTR
)callback
.item
.pszText
, -1,
743 buflen
= max((len
)*sizeof(WCHAR
), TEXT_CALLBACK_SIZE
);
744 newText
= ReAlloc(wineItem
->pszText
, buflen
);
746 TRACE("returned str %s, len=%d, buflen=%d\n",
747 debugstr_a((LPSTR
)callback
.item
.pszText
), len
, buflen
);
751 wineItem
->pszText
= newText
;
752 MultiByteToWideChar( CP_ACP
, 0,
753 (LPSTR
)callback
.item
.pszText
, -1,
754 wineItem
->pszText
, buflen
/sizeof(WCHAR
));
755 wineItem
->cchTextMax
= buflen
/sizeof(WCHAR
);
757 /* If ReAlloc fails we have nothing to do, but keep original text */
760 int len
= max(lstrlenW(callback
.item
.pszText
) + 1,
762 LPWSTR newText
= ReAlloc(wineItem
->pszText
, len
);
764 TRACE("returned wstr %s, len=%d\n",
765 debugstr_w(callback
.item
.pszText
), len
);
769 wineItem
->pszText
= newText
;
770 strcpyW(wineItem
->pszText
, callback
.item
.pszText
);
771 wineItem
->cchTextMax
= len
;
773 /* If ReAlloc fails we have nothing to do, but keep original text */
776 else if (mask
& TVIF_TEXT
) {
777 /* User put text into our buffer, that is ok unless A string */
778 if (!infoPtr
->bNtfUnicode
) {
780 LPWSTR oldText
= NULL
;
782 int len
= MultiByteToWideChar( CP_ACP
, 0,
783 (LPSTR
)callback
.item
.pszText
, -1,
785 buflen
= max((len
)*sizeof(WCHAR
), TEXT_CALLBACK_SIZE
);
786 newText
= Alloc(buflen
);
788 TRACE("same buffer str %s, len=%d, buflen=%d\n",
789 debugstr_a((LPSTR
)callback
.item
.pszText
), len
, buflen
);
793 oldText
= wineItem
->pszText
;
794 wineItem
->pszText
= newText
;
795 MultiByteToWideChar( CP_ACP
, 0,
796 (LPSTR
)callback
.item
.pszText
, -1,
797 wineItem
->pszText
, buflen
/sizeof(WCHAR
));
798 wineItem
->cchTextMax
= buflen
/sizeof(WCHAR
);
804 if (mask
& TVIF_IMAGE
)
805 wineItem
->iImage
= callback
.item
.iImage
;
807 if (mask
& TVIF_SELECTEDIMAGE
)
808 wineItem
->iSelectedImage
= callback
.item
.iSelectedImage
;
810 if (mask
& TVIF_EXPANDEDIMAGE
)
811 wineItem
->iExpandedImage
= callback
.item
.iExpandedImage
;
813 if (mask
& TVIF_CHILDREN
)
814 wineItem
->cChildren
= callback
.item
.cChildren
;
816 /* These members are now permanently set. */
817 if (callback
.item
.mask
& TVIF_DI_SETITEM
)
818 wineItem
->callbackMask
&= ~callback
.item
.mask
;
821 /***************************************************************************
822 * This function uses cChildren field to decide whether the item has
824 * Note: if this returns TRUE, the child items may not actually exist,
825 * they could be virtual.
827 * Just use wineItem->firstChild to check for physical children.
830 TREEVIEW_HasChildren(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
832 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_CHILDREN
);
834 return wineItem
->cChildren
> 0;
837 static INT
TREEVIEW_NotifyFormat (TREEVIEW_INFO
*infoPtr
, HWND hwndFrom
, UINT nCommand
)
841 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom
, nCommand
);
843 if (nCommand
!= NF_REQUERY
) return 0;
845 format
= SendMessageW(hwndFrom
, WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwnd
, NF_QUERY
);
846 TRACE("format=%d\n", format
);
848 if (format
!= NFR_ANSI
&& format
!= NFR_UNICODE
) return 0;
850 infoPtr
->bNtfUnicode
= (format
== NFR_UNICODE
);
855 /* Item Position ********************************************************/
857 /* Compute linesOffset, stateOffset, imageOffset, textOffset of an item. */
859 TREEVIEW_ComputeItemInternalMetrics(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
861 /* has TVS_LINESATROOT and (TVS_HASLINES|TVS_HASBUTTONS) */
862 BOOL lar
= ((infoPtr
->dwStyle
& (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
865 item
->linesOffset
= infoPtr
->uIndent
* (lar
? item
->iLevel
: item
->iLevel
- 1)
867 item
->stateOffset
= item
->linesOffset
+ infoPtr
->uIndent
;
868 item
->imageOffset
= item
->stateOffset
869 + (STATEIMAGEINDEX(item
->state
) ? infoPtr
->stateImageWidth
: 0);
870 item
->textOffset
= item
->imageOffset
+ infoPtr
->normalImageWidth
;
874 TREEVIEW_ComputeTextWidth(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
, HDC hDC
)
880 /* DRAW's OM docker creates items like this */
881 if (item
->pszText
== NULL
)
893 hdc
= GetDC(infoPtr
->hwnd
);
894 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, item
));
897 GetTextExtentPoint32W(hdc
, item
->pszText
, strlenW(item
->pszText
), &sz
);
898 item
->textWidth
= sz
.cx
;
902 SelectObject(hdc
, hOldFont
);
908 TREEVIEW_ComputeItemRect(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
910 item
->rect
.top
= infoPtr
->uItemHeight
*
911 (item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
);
913 item
->rect
.bottom
= item
->rect
.top
914 + infoPtr
->uItemHeight
* item
->iIntegral
- 1;
917 item
->rect
.right
= infoPtr
->clientWidth
;
920 /* We know that only items after start need their order updated. */
922 TREEVIEW_RecalculateVisibleOrder(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*start
)
929 start
= infoPtr
->root
->firstChild
;
933 order
= start
->visibleOrder
;
935 for (item
= start
; item
!= NULL
;
936 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
938 if (!ISVISIBLE(item
) && order
> 0)
939 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, item
);
940 item
->visibleOrder
= order
;
941 order
+= item
->iIntegral
;
944 infoPtr
->maxVisibleOrder
= order
;
946 for (item
= start
; item
!= NULL
;
947 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
949 TREEVIEW_ComputeItemRect(infoPtr
, item
);
954 /* Update metrics of all items in selected subtree.
955 * root must be expanded
958 TREEVIEW_UpdateSubTree(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*root
)
960 TREEVIEW_ITEM
*sibling
;
964 if (!root
->firstChild
|| !(root
->state
& TVIS_EXPANDED
))
967 root
->state
&= ~TVIS_EXPANDED
;
968 sibling
= TREEVIEW_GetNextListItem(infoPtr
, root
);
969 root
->state
|= TVIS_EXPANDED
;
971 hdc
= GetDC(infoPtr
->hwnd
);
972 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
974 for (; root
!= sibling
;
975 root
= TREEVIEW_GetNextListItem(infoPtr
, root
))
977 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, root
);
979 if (root
->callbackMask
& TVIF_TEXT
)
980 TREEVIEW_UpdateDispInfo(infoPtr
, root
, TVIF_TEXT
);
982 if (root
->textWidth
== 0)
984 SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, root
));
985 TREEVIEW_ComputeTextWidth(infoPtr
, root
, hdc
);
989 SelectObject(hdc
, hOldFont
);
990 ReleaseDC(infoPtr
->hwnd
, hdc
);
993 /* Item Allocation **********************************************************/
995 static TREEVIEW_ITEM
*
996 TREEVIEW_AllocateItem(const TREEVIEW_INFO
*infoPtr
)
998 TREEVIEW_ITEM
*newItem
= Alloc(sizeof(TREEVIEW_ITEM
));
1003 /* I_IMAGENONE would make more sense but this is neither what is
1004 * documented (MSDN doesn't specify) nor what Windows actually does
1005 * (it sets it to zero)... and I can so imagine an application using
1006 * inc/dec to toggle the images. */
1007 newItem
->iImage
= 0;
1008 newItem
->iSelectedImage
= 0;
1009 newItem
->iExpandedImage
= (WORD
)I_IMAGENONE
;
1011 if (DPA_InsertPtr(infoPtr
->items
, INT_MAX
, newItem
) == -1)
1020 /* Exact opposite of TREEVIEW_AllocateItem. In particular, it does not
1021 * free item->pszText. */
1023 TREEVIEW_FreeItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
1025 DPA_DeletePtr(infoPtr
->items
, DPA_GetPtrIndex(infoPtr
->items
, item
));
1026 if (infoPtr
->selectedItem
== item
)
1027 infoPtr
->selectedItem
= NULL
;
1028 if (infoPtr
->hotItem
== item
)
1029 infoPtr
->hotItem
= NULL
;
1030 if (infoPtr
->focusedItem
== item
)
1031 infoPtr
->focusedItem
= NULL
;
1032 if (infoPtr
->firstVisible
== item
)
1033 infoPtr
->firstVisible
= NULL
;
1034 if (infoPtr
->dropItem
== item
)
1035 infoPtr
->dropItem
= NULL
;
1036 if (infoPtr
->insertMarkItem
== item
)
1037 infoPtr
->insertMarkItem
= NULL
;
1042 /* Item Insertion *******************************************************/
1044 /***************************************************************************
1045 * This method inserts newItem before sibling as a child of parent.
1046 * sibling can be NULL, but only if parent has no children.
1049 TREEVIEW_InsertBefore(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
1050 TREEVIEW_ITEM
*parent
)
1052 assert(parent
!= NULL
);
1054 if (sibling
!= NULL
)
1056 assert(sibling
->parent
== parent
);
1058 if (sibling
->prevSibling
!= NULL
)
1059 sibling
->prevSibling
->nextSibling
= newItem
;
1061 newItem
->prevSibling
= sibling
->prevSibling
;
1062 sibling
->prevSibling
= newItem
;
1065 newItem
->prevSibling
= NULL
;
1067 newItem
->nextSibling
= sibling
;
1069 if (parent
->firstChild
== sibling
)
1070 parent
->firstChild
= newItem
;
1072 if (parent
->lastChild
== NULL
)
1073 parent
->lastChild
= newItem
;
1076 /***************************************************************************
1077 * This method inserts newItem after sibling as a child of parent.
1078 * sibling can be NULL, but only if parent has no children.
1081 TREEVIEW_InsertAfter(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
1082 TREEVIEW_ITEM
*parent
)
1084 assert(parent
!= NULL
);
1086 if (sibling
!= NULL
)
1088 assert(sibling
->parent
== parent
);
1090 if (sibling
->nextSibling
!= NULL
)
1091 sibling
->nextSibling
->prevSibling
= newItem
;
1093 newItem
->nextSibling
= sibling
->nextSibling
;
1094 sibling
->nextSibling
= newItem
;
1097 newItem
->nextSibling
= NULL
;
1099 newItem
->prevSibling
= sibling
;
1101 if (parent
->lastChild
== sibling
)
1102 parent
->lastChild
= newItem
;
1104 if (parent
->firstChild
== NULL
)
1105 parent
->firstChild
= newItem
;
1109 TREEVIEW_DoSetItemT(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
1110 const TVITEMEXW
*tvItem
, BOOL isW
)
1112 UINT callbackClear
= 0;
1113 UINT callbackSet
= 0;
1115 TRACE("item %p\n", wineItem
);
1116 /* Do this first in case it fails. */
1117 if (tvItem
->mask
& TVIF_TEXT
)
1119 wineItem
->textWidth
= 0; /* force width recalculation */
1120 if (tvItem
->pszText
!= LPSTR_TEXTCALLBACKW
&& tvItem
->pszText
!= NULL
) /* covers != TEXTCALLBACKA too, and undocumented: pszText of NULL also means TEXTCALLBACK */
1125 len
= lstrlenW(tvItem
->pszText
) + 1;
1127 len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)tvItem
->pszText
, -1, NULL
, 0);
1129 newText
= ReAlloc(wineItem
->pszText
, len
* sizeof(WCHAR
));
1131 if (newText
== NULL
) return FALSE
;
1133 callbackClear
|= TVIF_TEXT
;
1135 wineItem
->pszText
= newText
;
1136 wineItem
->cchTextMax
= len
;
1138 lstrcpynW(wineItem
->pszText
, tvItem
->pszText
, len
);
1140 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)tvItem
->pszText
, -1,
1141 wineItem
->pszText
, len
);
1143 TRACE("setting text %s, item %p\n", debugstr_w(wineItem
->pszText
), wineItem
);
1147 callbackSet
|= TVIF_TEXT
;
1149 wineItem
->pszText
= ReAlloc(wineItem
->pszText
,
1150 TEXT_CALLBACK_SIZE
* sizeof(WCHAR
));
1151 wineItem
->cchTextMax
= TEXT_CALLBACK_SIZE
;
1152 TRACE("setting callback, item %p\n", wineItem
);
1156 if (tvItem
->mask
& TVIF_CHILDREN
)
1158 wineItem
->cChildren
= tvItem
->cChildren
;
1160 if (wineItem
->cChildren
== I_CHILDRENCALLBACK
)
1161 callbackSet
|= TVIF_CHILDREN
;
1163 callbackClear
|= TVIF_CHILDREN
;
1166 if (tvItem
->mask
& TVIF_IMAGE
)
1168 wineItem
->iImage
= tvItem
->iImage
;
1170 if (wineItem
->iImage
== I_IMAGECALLBACK
)
1171 callbackSet
|= TVIF_IMAGE
;
1173 callbackClear
|= TVIF_IMAGE
;
1176 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
1178 wineItem
->iSelectedImage
= tvItem
->iSelectedImage
;
1180 if (wineItem
->iSelectedImage
== I_IMAGECALLBACK
)
1181 callbackSet
|= TVIF_SELECTEDIMAGE
;
1183 callbackClear
|= TVIF_SELECTEDIMAGE
;
1186 if (tvItem
->mask
& TVIF_EXPANDEDIMAGE
)
1188 wineItem
->iExpandedImage
= tvItem
->iExpandedImage
;
1190 if (wineItem
->iExpandedImage
== I_IMAGECALLBACK
)
1191 callbackSet
|= TVIF_EXPANDEDIMAGE
;
1193 callbackClear
|= TVIF_EXPANDEDIMAGE
;
1196 if (tvItem
->mask
& TVIF_PARAM
)
1197 wineItem
->lParam
= tvItem
->lParam
;
1199 /* If the application sets TVIF_INTEGRAL without
1200 * supplying a TVITEMEX structure, it's toast. */
1201 if (tvItem
->mask
& TVIF_INTEGRAL
)
1202 wineItem
->iIntegral
= tvItem
->iIntegral
;
1204 if (tvItem
->mask
& TVIF_STATE
)
1206 TRACE("prevstate,state,mask:%x,%x,%x\n", wineItem
->state
, tvItem
->state
,
1208 wineItem
->state
&= ~tvItem
->stateMask
;
1209 wineItem
->state
|= (tvItem
->state
& tvItem
->stateMask
);
1212 if (tvItem
->mask
& TVIF_STATEEX
)
1214 FIXME("New extended state: %x\n", tvItem
->uStateEx
);
1217 wineItem
->callbackMask
|= callbackSet
;
1218 wineItem
->callbackMask
&= ~callbackClear
;
1223 /* Note that the new item is pre-zeroed. */
1225 TREEVIEW_InsertItemT(TREEVIEW_INFO
*infoPtr
, const TVINSERTSTRUCTW
*ptdi
, BOOL isW
)
1227 const TVITEMEXW
*tvItem
= &ptdi
->u
.itemex
;
1228 HTREEITEM insertAfter
;
1229 TREEVIEW_ITEM
*newItem
, *parentItem
;
1230 BOOL bTextUpdated
= FALSE
;
1232 if (ptdi
->hParent
== TVI_ROOT
|| ptdi
->hParent
== 0)
1234 parentItem
= infoPtr
->root
;
1238 parentItem
= ptdi
->hParent
;
1240 if (!TREEVIEW_ValidItem(infoPtr
, parentItem
))
1242 WARN("invalid parent %p\n", parentItem
);
1247 insertAfter
= ptdi
->hInsertAfter
;
1249 /* Validate this now for convenience. */
1250 switch ((DWORD_PTR
)insertAfter
)
1252 case (DWORD_PTR
)TVI_FIRST
:
1253 case (DWORD_PTR
)TVI_LAST
:
1254 case (DWORD_PTR
)TVI_SORT
:
1258 if (!TREEVIEW_ValidItem(infoPtr
, insertAfter
) ||
1259 insertAfter
->parent
!= parentItem
)
1261 WARN("invalid insert after %p\n", insertAfter
);
1262 insertAfter
= TVI_LAST
;
1266 TRACE("parent %p position %p: %s\n", parentItem
, insertAfter
,
1267 (tvItem
->mask
& TVIF_TEXT
)
1268 ? ((tvItem
->pszText
== LPSTR_TEXTCALLBACKW
) ? "<callback>"
1269 : (isW
? debugstr_w(tvItem
->pszText
) : debugstr_a((LPSTR
)tvItem
->pszText
)))
1272 newItem
= TREEVIEW_AllocateItem(infoPtr
);
1273 if (newItem
== NULL
)
1276 newItem
->parent
= parentItem
;
1277 newItem
->iIntegral
= 1;
1278 newItem
->visibleOrder
= -1;
1280 if (!TREEVIEW_DoSetItemT(infoPtr
, newItem
, tvItem
, isW
))
1283 /* After this point, nothing can fail. (Except for TVI_SORT.) */
1285 infoPtr
->uNumItems
++;
1287 switch ((DWORD_PTR
)insertAfter
)
1289 case (DWORD_PTR
)TVI_FIRST
:
1291 TREEVIEW_ITEM
*originalFirst
= parentItem
->firstChild
;
1292 TREEVIEW_InsertBefore(newItem
, parentItem
->firstChild
, parentItem
);
1293 if (infoPtr
->firstVisible
== originalFirst
)
1294 TREEVIEW_SetFirstVisible(infoPtr
, newItem
, TRUE
);
1298 case (DWORD_PTR
)TVI_LAST
:
1299 TREEVIEW_InsertAfter(newItem
, parentItem
->lastChild
, parentItem
);
1302 /* hInsertAfter names a specific item we want to insert after */
1304 TREEVIEW_InsertAfter(newItem
, insertAfter
, insertAfter
->parent
);
1307 case (DWORD_PTR
)TVI_SORT
:
1309 TREEVIEW_ITEM
*aChild
;
1310 TREEVIEW_ITEM
*previousChild
= NULL
;
1311 TREEVIEW_ITEM
*originalFirst
= parentItem
->firstChild
;
1312 BOOL bItemInserted
= FALSE
;
1314 aChild
= parentItem
->firstChild
;
1316 bTextUpdated
= TRUE
;
1317 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1319 /* Iterate the parent children to see where we fit in */
1320 while (aChild
!= NULL
)
1324 TREEVIEW_UpdateDispInfo(infoPtr
, aChild
, TVIF_TEXT
);
1325 comp
= lstrcmpW(newItem
->pszText
, aChild
->pszText
);
1327 if (comp
< 0) /* we are smaller than the current one */
1329 TREEVIEW_InsertBefore(newItem
, aChild
, parentItem
);
1330 if (infoPtr
->firstVisible
== originalFirst
&&
1331 aChild
== originalFirst
)
1332 TREEVIEW_SetFirstVisible(infoPtr
, newItem
, TRUE
);
1333 bItemInserted
= TRUE
;
1336 else if (comp
> 0) /* we are bigger than the current one */
1338 previousChild
= aChild
;
1340 /* This will help us to exit if there is no more sibling */
1341 aChild
= (aChild
->nextSibling
== 0)
1343 : aChild
->nextSibling
;
1345 /* Look at the next item */
1351 * An item with this name is already existing, therefore,
1352 * we add after the one we found
1354 TREEVIEW_InsertAfter(newItem
, aChild
, parentItem
);
1355 bItemInserted
= TRUE
;
1361 * we reach the end of the child list and the item has not
1362 * yet been inserted, therefore, insert it after the last child.
1364 if ((!bItemInserted
) && (aChild
== NULL
))
1365 TREEVIEW_InsertAfter(newItem
, previousChild
, parentItem
);
1372 TRACE("new item %p; parent %p, mask %x\n", newItem
,
1373 newItem
->parent
, tvItem
->mask
);
1375 newItem
->iLevel
= newItem
->parent
->iLevel
+ 1;
1377 if (newItem
->parent
->cChildren
== 0)
1378 newItem
->parent
->cChildren
= 1;
1380 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
1382 if (STATEIMAGEINDEX(newItem
->state
) == 0)
1383 newItem
->state
|= INDEXTOSTATEIMAGEMASK(1);
1386 if (infoPtr
->firstVisible
== NULL
)
1387 infoPtr
->firstVisible
= newItem
;
1389 TREEVIEW_VerifyTree(infoPtr
);
1391 if (!infoPtr
->bRedraw
) return (LRESULT
)newItem
;
1393 if (parentItem
== infoPtr
->root
||
1394 (ISVISIBLE(parentItem
) && parentItem
->state
& TVIS_EXPANDED
))
1396 TREEVIEW_ITEM
*item
;
1397 TREEVIEW_ITEM
*prev
= TREEVIEW_GetPrevListItem(infoPtr
, newItem
);
1399 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1400 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, newItem
);
1403 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1405 TREEVIEW_ComputeTextWidth(infoPtr
, newItem
, 0);
1406 TREEVIEW_UpdateScrollBars(infoPtr
);
1408 * if the item was inserted in a visible part of the tree,
1409 * invalidate it, as well as those after it
1411 for (item
= newItem
;
1413 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
1414 TREEVIEW_Invalidate(infoPtr
, item
);
1418 /* refresh treeview if newItem is the first item inserted under parentItem */
1419 if (ISVISIBLE(parentItem
) && newItem
->prevSibling
== newItem
->nextSibling
)
1421 /* parent got '+' - update it */
1422 TREEVIEW_Invalidate(infoPtr
, parentItem
);
1426 return (LRESULT
)newItem
;
1429 /* Item Deletion ************************************************************/
1431 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
);
1434 TREEVIEW_RemoveAllChildren(TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*parentItem
)
1436 TREEVIEW_ITEM
*kill
= parentItem
->firstChild
;
1438 while (kill
!= NULL
)
1440 TREEVIEW_ITEM
*next
= kill
->nextSibling
;
1442 TREEVIEW_RemoveItem(infoPtr
, kill
);
1447 assert(parentItem
->cChildren
<= 0); /* I_CHILDRENCALLBACK or 0 */
1448 assert(parentItem
->firstChild
== NULL
);
1449 assert(parentItem
->lastChild
== NULL
);
1453 TREEVIEW_UnlinkItem(const TREEVIEW_ITEM
*item
)
1455 TREEVIEW_ITEM
*parentItem
= item
->parent
;
1457 assert(item
!= NULL
);
1458 assert(item
->parent
!= NULL
); /* i.e. it must not be the root */
1460 if (parentItem
->firstChild
== item
)
1461 parentItem
->firstChild
= item
->nextSibling
;
1463 if (parentItem
->lastChild
== item
)
1464 parentItem
->lastChild
= item
->prevSibling
;
1466 if (parentItem
->firstChild
== NULL
&& parentItem
->lastChild
== NULL
1467 && parentItem
->cChildren
> 0)
1468 parentItem
->cChildren
= 0;
1470 if (item
->prevSibling
)
1471 item
->prevSibling
->nextSibling
= item
->nextSibling
;
1473 if (item
->nextSibling
)
1474 item
->nextSibling
->prevSibling
= item
->prevSibling
;
1478 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
1480 TRACE("%p, (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1482 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_DELETEITEMW
, TVC_UNKNOWN
,
1483 TVIF_HANDLE
| TVIF_PARAM
, wineItem
, 0);
1485 if (wineItem
->firstChild
)
1486 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
1488 TREEVIEW_UnlinkItem(wineItem
);
1490 infoPtr
->uNumItems
--;
1492 if (wineItem
->pszText
!= LPSTR_TEXTCALLBACKW
)
1493 Free(wineItem
->pszText
);
1495 TREEVIEW_FreeItem(infoPtr
, wineItem
);
1499 /* Empty out the tree. */
1501 TREEVIEW_RemoveTree(TREEVIEW_INFO
*infoPtr
)
1503 TREEVIEW_RemoveAllChildren(infoPtr
, infoPtr
->root
);
1505 assert(infoPtr
->uNumItems
== 0); /* root isn't counted in uNumItems */
1509 TREEVIEW_DeleteItem(TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
)
1511 TREEVIEW_ITEM
*newSelection
= NULL
;
1512 TREEVIEW_ITEM
*newFirstVisible
= NULL
;
1513 TREEVIEW_ITEM
*parent
, *prev
= NULL
;
1514 BOOL visible
= FALSE
;
1516 if (wineItem
== TVI_ROOT
)
1518 TRACE("TVI_ROOT\n");
1519 parent
= infoPtr
->root
;
1520 newSelection
= NULL
;
1522 TREEVIEW_RemoveTree(infoPtr
);
1526 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
1529 TRACE("%p (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1530 parent
= wineItem
->parent
;
1532 if (ISVISIBLE(wineItem
))
1534 prev
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
1538 if (infoPtr
->selectedItem
!= NULL
1539 && (wineItem
== infoPtr
->selectedItem
1540 || TREEVIEW_IsChildOf(wineItem
, infoPtr
->selectedItem
)))
1542 if (wineItem
->nextSibling
)
1543 newSelection
= wineItem
->nextSibling
;
1544 else if (wineItem
->parent
!= infoPtr
->root
)
1545 newSelection
= wineItem
->parent
;
1547 newSelection
= wineItem
->prevSibling
;
1548 TRACE("newSelection = %p\n", newSelection
);
1551 if (infoPtr
->firstVisible
== wineItem
)
1553 if (wineItem
->nextSibling
)
1554 newFirstVisible
= wineItem
->nextSibling
;
1555 else if (wineItem
->prevSibling
)
1556 newFirstVisible
= wineItem
->prevSibling
;
1557 else if (wineItem
->parent
!= infoPtr
->root
)
1558 newFirstVisible
= wineItem
->parent
;
1559 TREEVIEW_SetFirstVisible(infoPtr
, NULL
, TRUE
);
1562 newFirstVisible
= infoPtr
->firstVisible
;
1564 TREEVIEW_RemoveItem(infoPtr
, wineItem
);
1567 /* Don't change if somebody else already has (infoPtr->selectedItem is cleared by FreeItem). */
1568 if (!infoPtr
->selectedItem
&& newSelection
)
1570 if (TREEVIEW_ValidItem(infoPtr
, newSelection
))
1571 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
, TVC_UNKNOWN
);
1574 /* Validate insertMark dropItem.
1575 * hotItem ??? - used for comparison only.
1577 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->insertMarkItem
))
1578 infoPtr
->insertMarkItem
= 0;
1580 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->dropItem
))
1581 infoPtr
->dropItem
= 0;
1583 if (!TREEVIEW_ValidItem(infoPtr
, newFirstVisible
))
1584 newFirstVisible
= infoPtr
->root
->firstChild
;
1586 TREEVIEW_VerifyTree(infoPtr
);
1588 if (!infoPtr
->bRedraw
) return TRUE
;
1592 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
1593 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1594 TREEVIEW_UpdateScrollBars(infoPtr
);
1595 TREEVIEW_Invalidate(infoPtr
, NULL
);
1597 else if (ISVISIBLE(parent
) && !TREEVIEW_HasChildren(infoPtr
, parent
))
1599 /* parent lost '+/-' - update it */
1600 TREEVIEW_Invalidate(infoPtr
, parent
);
1607 /* Get/Set Messages *********************************************************/
1609 TREEVIEW_SetRedraw(TREEVIEW_INFO
* infoPtr
, WPARAM wParam
)
1611 infoPtr
->bRedraw
= wParam
? TRUE
: FALSE
;
1613 if (infoPtr
->bRedraw
)
1615 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1616 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1617 TREEVIEW_UpdateScrollBars(infoPtr
);
1618 TREEVIEW_Invalidate(infoPtr
, NULL
);
1624 TREEVIEW_GetIndent(const TREEVIEW_INFO
*infoPtr
)
1627 return infoPtr
->uIndent
;
1631 TREEVIEW_SetIndent(TREEVIEW_INFO
*infoPtr
, UINT newIndent
)
1635 if (newIndent
< MINIMUM_INDENT
)
1636 newIndent
= MINIMUM_INDENT
;
1638 if (infoPtr
->uIndent
!= newIndent
)
1640 infoPtr
->uIndent
= newIndent
;
1641 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1642 TREEVIEW_UpdateScrollBars(infoPtr
);
1643 TREEVIEW_Invalidate(infoPtr
, NULL
);
1651 TREEVIEW_GetToolTips(const TREEVIEW_INFO
*infoPtr
)
1654 return (LRESULT
)infoPtr
->hwndToolTip
;
1658 TREEVIEW_SetToolTips(TREEVIEW_INFO
*infoPtr
, HWND hwndTT
)
1663 prevToolTip
= infoPtr
->hwndToolTip
;
1664 infoPtr
->hwndToolTip
= hwndTT
;
1666 return (LRESULT
)prevToolTip
;
1670 TREEVIEW_SetUnicodeFormat(TREEVIEW_INFO
*infoPtr
, BOOL fUnicode
)
1672 BOOL rc
= infoPtr
->bNtfUnicode
;
1673 infoPtr
->bNtfUnicode
= fUnicode
;
1678 TREEVIEW_GetUnicodeFormat(const TREEVIEW_INFO
*infoPtr
)
1680 return infoPtr
->bNtfUnicode
;
1684 TREEVIEW_GetScrollTime(const TREEVIEW_INFO
*infoPtr
)
1686 return infoPtr
->uScrollTime
;
1690 TREEVIEW_SetScrollTime(TREEVIEW_INFO
*infoPtr
, UINT uScrollTime
)
1692 UINT uOldScrollTime
= infoPtr
->uScrollTime
;
1694 infoPtr
->uScrollTime
= min(uScrollTime
, 100);
1696 return uOldScrollTime
;
1701 TREEVIEW_GetImageList(const TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
1708 return (LRESULT
)infoPtr
->himlNormal
;
1711 return (LRESULT
)infoPtr
->himlState
;
1718 #define TVHEIGHT_MIN 16
1719 #define TVHEIGHT_FONT_ADJUST 3 /* 2 for focus border + 1 for margin some apps assume */
1721 /* Compute the natural height for items. */
1723 TREEVIEW_NaturalHeight(const TREEVIEW_INFO
*infoPtr
)
1727 HFONT hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
1730 /* Height is the maximum of:
1731 * 16 (a hack because our fonts are tiny), and
1732 * The text height + border & margin, and
1733 * The size of the normal image list
1735 GetTextMetricsW(hdc
, &tm
);
1736 SelectObject(hdc
, hOldFont
);
1739 height
= TVHEIGHT_MIN
;
1740 if (height
< tm
.tmHeight
+ tm
.tmExternalLeading
+ TVHEIGHT_FONT_ADJUST
)
1741 height
= tm
.tmHeight
+ tm
.tmExternalLeading
+ TVHEIGHT_FONT_ADJUST
;
1742 if (height
< infoPtr
->normalImageHeight
)
1743 height
= infoPtr
->normalImageHeight
;
1745 /* Round down, unless we support odd ("non even") heights. */
1746 if (!(infoPtr
->dwStyle
& TVS_NONEVENHEIGHT
))
1753 TREEVIEW_SetImageList(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, HIMAGELIST himlNew
)
1755 HIMAGELIST himlOld
= 0;
1756 int oldWidth
= infoPtr
->normalImageWidth
;
1757 int oldHeight
= infoPtr
->normalImageHeight
;
1760 TRACE("%lx,%p\n", wParam
, himlNew
);
1765 himlOld
= infoPtr
->himlNormal
;
1766 infoPtr
->himlNormal
= himlNew
;
1768 if (himlNew
!= NULL
)
1769 ImageList_GetIconSize(himlNew
, &infoPtr
->normalImageWidth
,
1770 &infoPtr
->normalImageHeight
);
1773 infoPtr
->normalImageWidth
= 0;
1774 infoPtr
->normalImageHeight
= 0;
1780 himlOld
= infoPtr
->himlState
;
1781 infoPtr
->himlState
= himlNew
;
1783 if (himlNew
!= NULL
)
1784 ImageList_GetIconSize(himlNew
, &infoPtr
->stateImageWidth
,
1785 &infoPtr
->stateImageHeight
);
1788 infoPtr
->stateImageWidth
= 0;
1789 infoPtr
->stateImageHeight
= 0;
1795 if (oldWidth
!= infoPtr
->normalImageWidth
||
1796 oldHeight
!= infoPtr
->normalImageHeight
)
1798 BOOL bRecalcVisible
= FALSE
;
1800 if (oldHeight
!= infoPtr
->normalImageHeight
&&
1801 !infoPtr
->bHeightSet
)
1803 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1804 bRecalcVisible
= TRUE
;
1807 if (infoPtr
->normalImageWidth
> MINIMUM_INDENT
&&
1808 infoPtr
->normalImageWidth
!= infoPtr
->uIndent
)
1810 infoPtr
->uIndent
= infoPtr
->normalImageWidth
;
1811 bRecalcVisible
= TRUE
;
1815 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1817 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1818 TREEVIEW_UpdateScrollBars(infoPtr
);
1821 TREEVIEW_Invalidate(infoPtr
, NULL
);
1823 return (LRESULT
)himlOld
;
1827 TREEVIEW_SetItemHeight(TREEVIEW_INFO
*infoPtr
, INT newHeight
)
1829 INT prevHeight
= infoPtr
->uItemHeight
;
1831 TRACE("%d\n", newHeight
);
1832 if (newHeight
== -1)
1834 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1835 infoPtr
->bHeightSet
= FALSE
;
1839 infoPtr
->uItemHeight
= newHeight
;
1840 infoPtr
->bHeightSet
= TRUE
;
1843 /* Round down, unless we support odd ("non even") heights. */
1844 if (!(infoPtr
->dwStyle
& TVS_NONEVENHEIGHT
))
1845 infoPtr
->uItemHeight
&= ~1;
1847 if (infoPtr
->uItemHeight
!= prevHeight
)
1849 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1850 TREEVIEW_UpdateScrollBars(infoPtr
);
1851 TREEVIEW_Invalidate(infoPtr
, NULL
);
1858 TREEVIEW_GetItemHeight(const TREEVIEW_INFO
*infoPtr
)
1861 return infoPtr
->uItemHeight
;
1866 TREEVIEW_GetFont(const TREEVIEW_INFO
*infoPtr
)
1868 TRACE("%p\n", infoPtr
->hFont
);
1869 return (LRESULT
)infoPtr
->hFont
;
1874 TREEVIEW_ResetTextWidth(LPVOID pItem
, LPVOID unused
)
1878 ((TREEVIEW_ITEM
*)pItem
)->textWidth
= 0;
1884 TREEVIEW_SetFont(TREEVIEW_INFO
*infoPtr
, HFONT hFont
, BOOL bRedraw
)
1886 UINT uHeight
= infoPtr
->uItemHeight
;
1888 TRACE("%p %i\n", hFont
, bRedraw
);
1890 infoPtr
->hFont
= hFont
? hFont
: infoPtr
->hDefaultFont
;
1892 DeleteObject(infoPtr
->hBoldFont
);
1893 DeleteObject(infoPtr
->hUnderlineFont
);
1894 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
1895 infoPtr
->hUnderlineFont
= TREEVIEW_CreateUnderlineFont(infoPtr
->hFont
);
1897 if (!infoPtr
->bHeightSet
)
1898 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1900 if (uHeight
!= infoPtr
->uItemHeight
)
1901 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1903 DPA_EnumCallback(infoPtr
->items
, TREEVIEW_ResetTextWidth
, 0);
1905 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1906 TREEVIEW_UpdateScrollBars(infoPtr
);
1909 TREEVIEW_Invalidate(infoPtr
, NULL
);
1916 TREEVIEW_GetLineColor(const TREEVIEW_INFO
*infoPtr
)
1919 return (LRESULT
)infoPtr
->clrLine
;
1923 TREEVIEW_SetLineColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1925 COLORREF prevColor
= infoPtr
->clrLine
;
1928 infoPtr
->clrLine
= color
;
1929 return (LRESULT
)prevColor
;
1934 TREEVIEW_GetTextColor(const TREEVIEW_INFO
*infoPtr
)
1937 return (LRESULT
)infoPtr
->clrText
;
1941 TREEVIEW_SetTextColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1943 COLORREF prevColor
= infoPtr
->clrText
;
1946 infoPtr
->clrText
= color
;
1948 if (infoPtr
->clrText
!= prevColor
)
1949 TREEVIEW_Invalidate(infoPtr
, NULL
);
1951 return (LRESULT
)prevColor
;
1956 TREEVIEW_GetBkColor(const TREEVIEW_INFO
*infoPtr
)
1959 return (LRESULT
)infoPtr
->clrBk
;
1963 TREEVIEW_SetBkColor(TREEVIEW_INFO
*infoPtr
, COLORREF newColor
)
1965 COLORREF prevColor
= infoPtr
->clrBk
;
1968 infoPtr
->clrBk
= newColor
;
1970 if (newColor
!= prevColor
)
1971 TREEVIEW_Invalidate(infoPtr
, NULL
);
1973 return (LRESULT
)prevColor
;
1978 TREEVIEW_GetInsertMarkColor(const TREEVIEW_INFO
*infoPtr
)
1981 return (LRESULT
)infoPtr
->clrInsertMark
;
1985 TREEVIEW_SetInsertMarkColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1987 COLORREF prevColor
= infoPtr
->clrInsertMark
;
1989 TRACE("%x\n", color
);
1990 infoPtr
->clrInsertMark
= color
;
1992 return (LRESULT
)prevColor
;
1997 TREEVIEW_SetInsertMark(TREEVIEW_INFO
*infoPtr
, BOOL wParam
, HTREEITEM item
)
1999 TRACE("%d %p\n", wParam
, item
);
2001 if (!TREEVIEW_ValidItem(infoPtr
, item
))
2004 infoPtr
->insertBeforeorAfter
= wParam
;
2005 infoPtr
->insertMarkItem
= item
;
2007 TREEVIEW_Invalidate(infoPtr
, NULL
);
2013 /************************************************************************
2014 * Some serious braindamage here. lParam is a pointer to both the
2015 * input HTREEITEM and the output RECT.
2018 TREEVIEW_GetItemRect(const TREEVIEW_INFO
*infoPtr
, BOOL fTextRect
, LPRECT lpRect
)
2020 TREEVIEW_ITEM
*wineItem
;
2021 const HTREEITEM
*pItem
= (HTREEITEM
*)lpRect
;
2025 * validate parameters
2031 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
) || !ISVISIBLE(wineItem
))
2035 * If wParam is TRUE return the text size otherwise return
2036 * the whole item size
2040 /* Windows does not send TVN_GETDISPINFO here. */
2042 lpRect
->top
= wineItem
->rect
.top
;
2043 lpRect
->bottom
= wineItem
->rect
.bottom
;
2045 lpRect
->left
= wineItem
->textOffset
;
2046 if (!wineItem
->textWidth
)
2047 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, 0);
2049 lpRect
->right
= wineItem
->textOffset
+ wineItem
->textWidth
+ 4;
2053 *lpRect
= wineItem
->rect
;
2056 TRACE("%s [%s]\n", fTextRect
? "text" : "item", wine_dbgstr_rect(lpRect
));
2061 static inline LRESULT
2062 TREEVIEW_GetVisibleCount(const TREEVIEW_INFO
*infoPtr
)
2064 /* Surprise! This does not take integral height into account. */
2065 return infoPtr
->clientHeight
/ infoPtr
->uItemHeight
;
2070 TREEVIEW_GetItemT(const TREEVIEW_INFO
*infoPtr
, LPTVITEMEXW tvItem
, BOOL isW
)
2072 TREEVIEW_ITEM
*wineItem
;
2074 wineItem
= tvItem
->hItem
;
2075 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2078 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, tvItem
->mask
);
2080 if (tvItem
->mask
& TVIF_CHILDREN
)
2082 if (wineItem
->cChildren
==I_CHILDRENCALLBACK
)
2083 FIXME("I_CHILDRENCALLBACK not supported\n");
2084 tvItem
->cChildren
= wineItem
->cChildren
;
2087 if (tvItem
->mask
& TVIF_HANDLE
)
2088 tvItem
->hItem
= wineItem
;
2090 if (tvItem
->mask
& TVIF_IMAGE
)
2091 tvItem
->iImage
= wineItem
->iImage
;
2093 if (tvItem
->mask
& TVIF_INTEGRAL
)
2094 tvItem
->iIntegral
= wineItem
->iIntegral
;
2096 /* undocumented: windows ignores TVIF_PARAM and
2097 * * always sets lParam
2099 tvItem
->lParam
= wineItem
->lParam
;
2101 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
2102 tvItem
->iSelectedImage
= wineItem
->iSelectedImage
;
2104 if (tvItem
->mask
& TVIF_EXPANDEDIMAGE
)
2105 tvItem
->iExpandedImage
= wineItem
->iExpandedImage
;
2107 if (tvItem
->mask
& TVIF_STATE
)
2108 /* Careful here - Windows ignores the stateMask when you get the state
2109 That contradicts the documentation, but makes more common sense, masking
2110 retrieval in this way seems overkill */
2111 tvItem
->state
= wineItem
->state
;
2113 if (tvItem
->mask
& TVIF_TEXT
)
2115 if (wineItem
->pszText
== NULL
)
2117 if (tvItem
->cchTextMax
> 0)
2118 tvItem
->pszText
[0] = '\0';
2122 if (wineItem
->pszText
== LPSTR_TEXTCALLBACKW
)
2124 tvItem
->pszText
= LPSTR_TEXTCALLBACKW
;
2125 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2129 lstrcpynW(tvItem
->pszText
, wineItem
->pszText
, tvItem
->cchTextMax
);
2134 if (wineItem
->pszText
== LPSTR_TEXTCALLBACKW
)
2136 tvItem
->pszText
= (LPWSTR
)LPSTR_TEXTCALLBACKA
;
2137 FIXME(" GetItem called with LPSTR_TEXTCALLBACK\n");
2141 WideCharToMultiByte(CP_ACP
, 0, wineItem
->pszText
, -1,
2142 (LPSTR
)tvItem
->pszText
, tvItem
->cchTextMax
, NULL
, NULL
);
2147 if (tvItem
->mask
& TVIF_STATEEX
)
2149 FIXME("Extended item state not supported, returning 0.\n");
2150 tvItem
->uStateEx
= 0;
2153 TRACE("item <%p>, txt %p, img %p, mask %x\n",
2154 wineItem
, tvItem
->pszText
, &tvItem
->iImage
, tvItem
->mask
);
2159 /* Beware MSDN Library Visual Studio 6.0. It says -1 on failure, 0 on success,
2160 * which is wrong. */
2162 TREEVIEW_SetItemT(TREEVIEW_INFO
*infoPtr
, const TVITEMEXW
*tvItem
, BOOL isW
)
2164 TREEVIEW_ITEM
*wineItem
;
2165 TREEVIEW_ITEM originalItem
;
2167 wineItem
= tvItem
->hItem
;
2169 TRACE("item %d,mask %x\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
2172 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2175 /* store the original item values */
2176 originalItem
= *wineItem
;
2178 if (!TREEVIEW_DoSetItemT(infoPtr
, wineItem
, tvItem
, isW
))
2181 /* If the text or TVIS_BOLD was changed, and it is visible, recalculate. */
2182 if ((tvItem
->mask
& TVIF_TEXT
2183 || (tvItem
->mask
& TVIF_STATE
&& tvItem
->stateMask
& TVIS_BOLD
))
2184 && ISVISIBLE(wineItem
))
2186 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_TEXT
);
2187 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, 0);
2190 if (tvItem
->mask
!= 0 && ISVISIBLE(wineItem
))
2192 /* The refresh updates everything, but we can't wait until then. */
2193 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, wineItem
);
2195 /* if any of the item's values changed and it's not a callback, redraw the item */
2196 if (item_changed(&originalItem
, wineItem
, tvItem
))
2198 if (tvItem
->mask
& TVIF_INTEGRAL
)
2200 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
2201 TREEVIEW_UpdateScrollBars(infoPtr
);
2203 TREEVIEW_Invalidate(infoPtr
, NULL
);
2207 TREEVIEW_UpdateScrollBars(infoPtr
);
2208 TREEVIEW_Invalidate(infoPtr
, wineItem
);
2217 TREEVIEW_GetItemState(const TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
, UINT mask
)
2221 if (!wineItem
|| !TREEVIEW_ValidItem(infoPtr
, wineItem
))
2224 return (wineItem
->state
& mask
);
2228 TREEVIEW_GetNextItem(const TREEVIEW_INFO
*infoPtr
, UINT which
, HTREEITEM wineItem
)
2230 TREEVIEW_ITEM
*retval
;
2234 /* handle all the global data here */
2237 case TVGN_CHILD
: /* Special case: child of 0 is root */
2242 retval
= infoPtr
->root
->firstChild
;
2246 retval
= infoPtr
->selectedItem
;
2249 case TVGN_FIRSTVISIBLE
:
2250 retval
= infoPtr
->firstVisible
;
2253 case TVGN_DROPHILITE
:
2254 retval
= infoPtr
->dropItem
;
2257 case TVGN_LASTVISIBLE
:
2258 retval
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
2264 TRACE("flags:%x, returns %p\n", which
, retval
);
2265 return (LRESULT
)retval
;
2268 if (wineItem
== TVI_ROOT
) wineItem
= infoPtr
->root
;
2270 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2276 retval
= wineItem
->nextSibling
;
2279 retval
= wineItem
->prevSibling
;
2282 retval
= (wineItem
->parent
!= infoPtr
->root
) ? wineItem
->parent
: NULL
;
2285 retval
= wineItem
->firstChild
;
2287 case TVGN_NEXTVISIBLE
:
2288 retval
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2290 case TVGN_PREVIOUSVISIBLE
:
2291 retval
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
2294 TRACE("Unknown msg %x,item %p\n", which
, wineItem
);
2298 TRACE("flags:%x, item %p;returns %p\n", which
, wineItem
, retval
);
2299 return (LRESULT
)retval
;
2304 TREEVIEW_GetCount(const TREEVIEW_INFO
*infoPtr
)
2306 TRACE(" %d\n", infoPtr
->uNumItems
);
2307 return (LRESULT
)infoPtr
->uNumItems
;
2311 TREEVIEW_ToggleItemState(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2313 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
2315 static const unsigned int state_table
[] = { 0, 2, 1 };
2319 state
= STATEIMAGEINDEX(item
->state
);
2320 TRACE("state:%x\n", state
);
2321 item
->state
&= ~TVIS_STATEIMAGEMASK
;
2324 state
= state_table
[state
];
2326 item
->state
|= INDEXTOSTATEIMAGEMASK(state
);
2328 TRACE("state:%x\n", state
);
2329 TREEVIEW_Invalidate(infoPtr
, item
);
2334 /* Painting *************************************************************/
2336 /* Draw the lines and expand button for an item. Also draws one section
2337 * of the line from item's parent to item's parent's next sibling. */
2339 TREEVIEW_DrawItemLines(const TREEVIEW_INFO
*infoPtr
, HDC hdc
, const TREEVIEW_ITEM
*item
)
2341 LONG centerx
, centery
;
2342 BOOL lar
= ((infoPtr
->dwStyle
2343 & (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
2346 COLORREF clrBk
= GETBKCOLOR(infoPtr
->clrBk
);
2348 if (!lar
&& item
->iLevel
== 0)
2351 hbr
= CreateSolidBrush(clrBk
);
2352 hbrOld
= SelectObject(hdc
, hbr
);
2354 centerx
= (item
->linesOffset
+ item
->stateOffset
) / 2;
2355 centery
= (item
->rect
.top
+ item
->rect
.bottom
) / 2;
2357 if (infoPtr
->dwStyle
& TVS_HASLINES
)
2359 HPEN hOldPen
, hNewPen
;
2363 /* Get a dotted grey pen */
2364 lb
.lbStyle
= BS_SOLID
;
2365 lb
.lbColor
= GETLINECOLOR(infoPtr
->clrLine
);
2366 hNewPen
= ExtCreatePen(PS_COSMETIC
|PS_ALTERNATE
, 1, &lb
, 0, NULL
);
2367 hOldPen
= SelectObject(hdc
, hNewPen
);
2369 /* Make sure the center is on a dot (using +2 instead
2370 * of +1 gives us pixel-by-pixel compat with native) */
2371 centery
= (centery
+ 2) & ~1;
2373 MoveToEx(hdc
, item
->stateOffset
, centery
, NULL
);
2374 LineTo(hdc
, centerx
- 1, centery
);
2376 if (item
->prevSibling
|| item
->parent
!= infoPtr
->root
)
2378 MoveToEx(hdc
, centerx
, item
->rect
.top
, NULL
);
2379 LineTo(hdc
, centerx
, centery
);
2382 if (item
->nextSibling
)
2384 MoveToEx(hdc
, centerx
, centery
, NULL
);
2385 LineTo(hdc
, centerx
, item
->rect
.bottom
+ 1);
2388 /* Draw the line from our parent to its next sibling. */
2389 parent
= item
->parent
;
2390 while (parent
!= infoPtr
->root
)
2392 int pcenterx
= (parent
->linesOffset
+ parent
->stateOffset
) / 2;
2394 if (parent
->nextSibling
2395 /* skip top-levels unless TVS_LINESATROOT */
2396 && parent
->stateOffset
> parent
->linesOffset
)
2398 MoveToEx(hdc
, pcenterx
, item
->rect
.top
, NULL
);
2399 LineTo(hdc
, pcenterx
, item
->rect
.bottom
+ 1);
2402 parent
= parent
->parent
;
2405 SelectObject(hdc
, hOldPen
);
2406 DeleteObject(hNewPen
);
2410 * Display the (+/-) signs
2413 if (infoPtr
->dwStyle
& TVS_HASBUTTONS
)
2415 if (item
->cChildren
)
2417 HTHEME theme
= GetWindowTheme(infoPtr
->hwnd
);
2420 RECT glyphRect
= item
->rect
;
2421 glyphRect
.left
= item
->linesOffset
;
2422 glyphRect
.right
= item
->stateOffset
;
2423 DrawThemeBackground (theme
, hdc
, TVP_GLYPH
,
2424 (item
->state
& TVIS_EXPANDED
) ? GLPS_OPENED
: GLPS_CLOSED
,
2429 LONG height
= item
->rect
.bottom
- item
->rect
.top
;
2430 LONG width
= item
->stateOffset
- item
->linesOffset
;
2431 LONG rectsize
= min(height
, width
) / 4;
2432 /* plussize = ceil(rectsize * 3/4) */
2433 LONG plussize
= (rectsize
+ 1) * 3 / 4;
2435 HPEN new_pen
= CreatePen(PS_SOLID
, 0, GETLINECOLOR(infoPtr
->clrLine
));
2436 HPEN old_pen
= SelectObject(hdc
, new_pen
);
2438 Rectangle(hdc
, centerx
- rectsize
- 1, centery
- rectsize
- 1,
2439 centerx
+ rectsize
+ 2, centery
+ rectsize
+ 2);
2441 SelectObject(hdc
, old_pen
);
2442 DeleteObject(new_pen
);
2444 /* draw +/- signs with current text color */
2445 new_pen
= CreatePen(PS_SOLID
, 0, GETTXTCOLOR(infoPtr
->clrText
));
2446 old_pen
= SelectObject(hdc
, new_pen
);
2448 if (height
< 18 || width
< 18)
2450 MoveToEx(hdc
, centerx
- plussize
+ 1, centery
, NULL
);
2451 LineTo(hdc
, centerx
+ plussize
, centery
);
2453 if (!(item
->state
& TVIS_EXPANDED
))
2455 MoveToEx(hdc
, centerx
, centery
- plussize
+ 1, NULL
);
2456 LineTo(hdc
, centerx
, centery
+ plussize
);
2461 Rectangle(hdc
, centerx
- plussize
+ 1, centery
- 1,
2462 centerx
+ plussize
, centery
+ 2);
2464 if (!(item
->state
& TVIS_EXPANDED
))
2466 Rectangle(hdc
, centerx
- 1, centery
- plussize
+ 1,
2467 centerx
+ 2, centery
+ plussize
);
2468 SetPixel(hdc
, centerx
- 1, centery
, clrBk
);
2469 SetPixel(hdc
, centerx
+ 1, centery
, clrBk
);
2473 SelectObject(hdc
, old_pen
);
2474 DeleteObject(new_pen
);
2478 SelectObject(hdc
, hbrOld
);
2483 TREEVIEW_DrawItem(const TREEVIEW_INFO
*infoPtr
, HDC hdc
, TREEVIEW_ITEM
*wineItem
)
2487 COLORREF oldTextColor
, oldTextBkColor
;
2489 BOOL inFocus
= (GetFocus() == infoPtr
->hwnd
);
2490 NMTVCUSTOMDRAW nmcdhdr
;
2492 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, CALLBACK_MASK_ALL
);
2494 /* - If item is drop target or it is selected and window is in focus -
2495 * use blue background (COLOR_HIGHLIGHT).
2496 * - If item is selected, window is not in focus, but it has style
2497 * TVS_SHOWSELALWAYS - use grey background (COLOR_BTNFACE)
2498 * - Otherwise - use background color
2500 if ((wineItem
->state
& TVIS_DROPHILITED
) || ((wineItem
== infoPtr
->focusedItem
) && !(wineItem
->state
& TVIS_SELECTED
)) ||
2501 ((wineItem
->state
& TVIS_SELECTED
) && (!infoPtr
->focusedItem
) &&
2502 (inFocus
|| (infoPtr
->dwStyle
& TVS_SHOWSELALWAYS
))))
2504 if ((wineItem
->state
& TVIS_DROPHILITED
) || inFocus
)
2506 nmcdhdr
.clrTextBk
= comctl32_color
.clrHighlight
;
2507 nmcdhdr
.clrText
= comctl32_color
.clrHighlightText
;
2511 nmcdhdr
.clrTextBk
= comctl32_color
.clrBtnFace
;
2512 nmcdhdr
.clrText
= GETTXTCOLOR(infoPtr
->clrText
);
2517 nmcdhdr
.clrTextBk
= GETBKCOLOR(infoPtr
->clrBk
);
2518 if ((infoPtr
->dwStyle
& TVS_TRACKSELECT
) && (wineItem
== infoPtr
->hotItem
))
2519 nmcdhdr
.clrText
= comctl32_color
.clrHighlight
;
2521 nmcdhdr
.clrText
= GETTXTCOLOR(infoPtr
->clrText
);
2524 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, wineItem
));
2526 /* The custom draw handler can query the text rectangle,
2528 /* should already be known, set to 0 when changed */
2529 if (!wineItem
->textWidth
)
2530 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2534 if (infoPtr
->cdmode
& CDRF_NOTIFYITEMDRAW
)
2536 cditem
= TREEVIEW_SendCustomDrawItemNotify
2537 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPREPAINT
, &nmcdhdr
);
2538 TRACE("prepaint:cditem-app returns 0x%x\n", cditem
);
2540 if (cditem
& CDRF_SKIPDEFAULT
)
2542 SelectObject(hdc
, hOldFont
);
2547 if (cditem
& CDRF_NEWFONT
)
2548 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2550 TREEVIEW_DrawItemLines(infoPtr
, hdc
, wineItem
);
2552 /* Set colors. Custom draw handler can change these so we do this after it. */
2553 oldTextColor
= SetTextColor(hdc
, nmcdhdr
.clrText
);
2554 oldTextBkColor
= SetBkColor(hdc
, nmcdhdr
.clrTextBk
);
2556 centery
= (wineItem
->rect
.top
+ wineItem
->rect
.bottom
) / 2;
2559 * Display the images associated with this item
2564 /* State images are displayed to the left of the Normal image
2565 * image number is in state; zero should be `display no image'.
2567 imageIndex
= STATEIMAGEINDEX(wineItem
->state
);
2569 if (infoPtr
->himlState
&& imageIndex
)
2571 ImageList_Draw(infoPtr
->himlState
, imageIndex
, hdc
,
2572 wineItem
->stateOffset
,
2573 centery
- infoPtr
->stateImageHeight
/ 2,
2577 /* Now, draw the normal image; can be either selected,
2578 * non-selected or expanded image.
2581 if ((wineItem
->state
& TVIS_SELECTED
) && (wineItem
->iSelectedImage
>= 0))
2583 /* The item is currently selected */
2584 imageIndex
= wineItem
->iSelectedImage
;
2586 else if ((wineItem
->state
& TVIS_EXPANDED
) && (wineItem
->iExpandedImage
!= (WORD
)I_IMAGENONE
))
2588 /* The item is currently not selected but expanded */
2589 imageIndex
= wineItem
->iExpandedImage
;
2593 /* The item is not selected and not expanded */
2594 imageIndex
= wineItem
->iImage
;
2597 if (infoPtr
->himlNormal
)
2599 int ovlIdx
= wineItem
->state
& TVIS_OVERLAYMASK
;
2601 ImageList_Draw(infoPtr
->himlNormal
, imageIndex
, hdc
,
2602 wineItem
->imageOffset
,
2603 centery
- infoPtr
->normalImageHeight
/ 2,
2604 ILD_NORMAL
| ovlIdx
);
2610 * Display the text associated with this item
2613 /* Don't paint item's text if it's being edited */
2614 if (!infoPtr
->hwndEdit
|| (infoPtr
->selectedItem
!= wineItem
))
2616 if (wineItem
->pszText
)
2620 rcText
.top
= wineItem
->rect
.top
;
2621 rcText
.bottom
= wineItem
->rect
.bottom
;
2622 rcText
.left
= wineItem
->textOffset
;
2623 rcText
.right
= rcText
.left
+ wineItem
->textWidth
+ 4;
2625 TRACE("drawing text %s at (%s)\n",
2626 debugstr_w(wineItem
->pszText
), wine_dbgstr_rect(&rcText
));
2629 ExtTextOutW(hdc
, rcText
.left
+ 2, rcText
.top
+ 1,
2630 ETO_CLIPPED
| ETO_OPAQUE
,
2633 lstrlenW(wineItem
->pszText
),
2636 /* Draw the box around the selected item */
2637 if ((wineItem
== infoPtr
->selectedItem
) && inFocus
)
2639 DrawFocusRect(hdc
,&rcText
);
2645 /* Draw insertion mark if necessary */
2647 if (infoPtr
->insertMarkItem
)
2648 TRACE("item:%d,mark:%p\n",
2649 TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
2650 infoPtr
->insertMarkItem
);
2652 if (wineItem
== infoPtr
->insertMarkItem
)
2654 HPEN hNewPen
, hOldPen
;
2658 hNewPen
= CreatePen(PS_SOLID
, 2, GETINSCOLOR(infoPtr
->clrInsertMark
));
2659 hOldPen
= SelectObject(hdc
, hNewPen
);
2661 if (infoPtr
->insertBeforeorAfter
)
2662 offset
= wineItem
->rect
.bottom
- 1;
2664 offset
= wineItem
->rect
.top
+ 1;
2666 left
= wineItem
->textOffset
- 2;
2667 right
= wineItem
->textOffset
+ wineItem
->textWidth
+ 2;
2669 MoveToEx(hdc
, left
, offset
- 3, NULL
);
2670 LineTo(hdc
, left
, offset
+ 4);
2672 MoveToEx(hdc
, left
, offset
, NULL
);
2673 LineTo(hdc
, right
+ 1, offset
);
2675 MoveToEx(hdc
, right
, offset
+ 3, NULL
);
2676 LineTo(hdc
, right
, offset
- 4);
2678 SelectObject(hdc
, hOldPen
);
2679 DeleteObject(hNewPen
);
2682 if (cditem
& CDRF_NOTIFYPOSTPAINT
)
2684 cditem
= TREEVIEW_SendCustomDrawItemNotify
2685 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPOSTPAINT
, &nmcdhdr
);
2686 TRACE("postpaint:cditem-app returns 0x%x\n", cditem
);
2689 /* Restore the hdc state */
2690 SetTextColor(hdc
, oldTextColor
);
2691 SetBkColor(hdc
, oldTextBkColor
);
2692 SelectObject(hdc
, hOldFont
);
2695 /* Computes treeHeight and treeWidth and updates the scroll bars.
2698 TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
)
2700 TREEVIEW_ITEM
*wineItem
;
2701 HWND hwnd
= infoPtr
->hwnd
;
2705 LONG scrollX
= infoPtr
->scrollX
;
2707 infoPtr
->treeWidth
= 0;
2708 infoPtr
->treeHeight
= 0;
2710 /* We iterate through all visible items in order to get the tree height
2712 wineItem
= infoPtr
->root
->firstChild
;
2714 while (wineItem
!= NULL
)
2716 if (ISVISIBLE(wineItem
))
2718 /* actually we draw text at textOffset + 2 */
2719 if (2+wineItem
->textOffset
+wineItem
->textWidth
> infoPtr
->treeWidth
)
2720 infoPtr
->treeWidth
= wineItem
->textOffset
+wineItem
->textWidth
+2;
2722 /* This is scroll-adjusted, but we fix this below. */
2723 infoPtr
->treeHeight
= wineItem
->rect
.bottom
;
2726 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2729 /* Fix the scroll adjusted treeHeight and treeWidth. */
2730 if (infoPtr
->root
->firstChild
)
2731 infoPtr
->treeHeight
-= infoPtr
->root
->firstChild
->rect
.top
;
2733 infoPtr
->treeWidth
+= infoPtr
->scrollX
;
2735 if (infoPtr
->dwStyle
& TVS_NOSCROLL
) return;
2737 /* Adding one scroll bar may take up enough space that it forces us
2738 * to add the other as well. */
2739 if (infoPtr
->treeHeight
> infoPtr
->clientHeight
)
2743 if (infoPtr
->treeWidth
2744 > infoPtr
->clientWidth
- GetSystemMetrics(SM_CXVSCROLL
))
2747 else if (infoPtr
->treeWidth
> infoPtr
->clientWidth
|| infoPtr
->scrollX
> 0)
2750 if (!vert
&& horz
&& infoPtr
->treeHeight
2751 > infoPtr
->clientHeight
- GetSystemMetrics(SM_CYVSCROLL
))
2754 if (horz
&& (infoPtr
->dwStyle
& TVS_NOHSCROLL
)) horz
= FALSE
;
2756 si
.cbSize
= sizeof(SCROLLINFO
);
2757 si
.fMask
= SIF_POS
|SIF_RANGE
|SIF_PAGE
;
2762 si
.nPage
= TREEVIEW_GetVisibleCount(infoPtr
);
2763 if ( si
.nPage
&& NULL
!= infoPtr
->firstVisible
)
2765 si
.nPos
= infoPtr
->firstVisible
->visibleOrder
;
2766 si
.nMax
= infoPtr
->maxVisibleOrder
- 1;
2768 SetScrollInfo(hwnd
, SB_VERT
, &si
, TRUE
);
2770 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
2771 ShowScrollBar(hwnd
, SB_VERT
, TRUE
);
2772 infoPtr
->uInternalStatus
|= TV_VSCROLL
;
2776 if (infoPtr
->uInternalStatus
& TV_VSCROLL
)
2777 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
2778 infoPtr
->uInternalStatus
&= ~TV_VSCROLL
;
2783 if (infoPtr
->uInternalStatus
& TV_VSCROLL
)
2784 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
2785 infoPtr
->uInternalStatus
&= ~TV_VSCROLL
;
2790 si
.nPage
= infoPtr
->clientWidth
;
2791 si
.nPos
= infoPtr
->scrollX
;
2792 si
.nMax
= infoPtr
->treeWidth
- 1;
2794 if (si
.nPos
> si
.nMax
- max( si
.nPage
-1, 0 ))
2796 si
.nPos
= si
.nMax
- max( si
.nPage
-1, 0 );
2800 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
2801 ShowScrollBar(hwnd
, SB_HORZ
, TRUE
);
2802 infoPtr
->uInternalStatus
|= TV_HSCROLL
;
2804 SetScrollInfo(hwnd
, SB_HORZ
, &si
, TRUE
);
2805 TREEVIEW_HScroll(infoPtr
,
2806 MAKEWPARAM(SB_THUMBPOSITION
, scrollX
));
2810 if (infoPtr
->uInternalStatus
& TV_HSCROLL
)
2811 ShowScrollBar(hwnd
, SB_HORZ
, FALSE
);
2812 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2815 if (infoPtr
->scrollX
!= 0)
2817 TREEVIEW_HScroll(infoPtr
,
2818 MAKEWPARAM(SB_THUMBPOSITION
, scrollX
));
2823 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2827 TREEVIEW_FillBkgnd(const TREEVIEW_INFO
*infoPtr
, HDC hdc
, const RECT
*rc
)
2830 COLORREF clrBk
= GETBKCOLOR(infoPtr
->clrBk
);
2832 hBrush
= CreateSolidBrush(clrBk
);
2833 FillRect(hdc
, rc
, hBrush
);
2834 DeleteObject(hBrush
);
2837 /* CtrlSpy doesn't mention this, but CorelDRAW's object manager needs it. */
2839 TREEVIEW_EraseBackground(const TREEVIEW_INFO
*infoPtr
, HDC hdc
)
2843 TRACE("%p\n", infoPtr
);
2845 GetClientRect(infoPtr
->hwnd
, &rect
);
2846 TREEVIEW_FillBkgnd(infoPtr
, hdc
, &rect
);
2852 TREEVIEW_Refresh(TREEVIEW_INFO
*infoPtr
, HDC hdc
, const RECT
*rc
)
2854 HWND hwnd
= infoPtr
->hwnd
;
2856 TREEVIEW_ITEM
*wineItem
;
2858 if (infoPtr
->clientHeight
== 0 || infoPtr
->clientWidth
== 0)
2860 TRACE("empty window\n");
2864 infoPtr
->cdmode
= TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_PREPAINT
,
2867 if (infoPtr
->cdmode
== CDRF_SKIPDEFAULT
)
2869 ReleaseDC(hwnd
, hdc
);
2873 for (wineItem
= infoPtr
->root
->firstChild
;
2875 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
2877 if (ISVISIBLE(wineItem
))
2879 /* Avoid unneeded calculations */
2880 if (wineItem
->rect
.top
> rect
.bottom
)
2882 if (wineItem
->rect
.bottom
< rect
.top
)
2885 TREEVIEW_DrawItem(infoPtr
, hdc
, wineItem
);
2889 TREEVIEW_UpdateScrollBars(infoPtr
);
2891 if (infoPtr
->cdmode
& CDRF_NOTIFYPOSTPAINT
)
2893 TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_POSTPAINT
, hdc
, rect
);
2897 TREEVIEW_InvalidateItem(const TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
)
2899 if (item
) InvalidateRect(infoPtr
->hwnd
, &item
->rect
, TRUE
);
2903 TREEVIEW_Invalidate(const TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
)
2906 InvalidateRect(infoPtr
->hwnd
, &item
->rect
, TRUE
);
2908 InvalidateRect(infoPtr
->hwnd
, NULL
, TRUE
);
2912 TREEVIEW_Paint(TREEVIEW_INFO
*infoPtr
, HDC hdc_ref
)
2918 TRACE("(%p %p)\n", infoPtr
, hdc_ref
);
2923 GetClientRect(infoPtr
->hwnd
, &rc
);
2927 hdc
= BeginPaint(infoPtr
->hwnd
, &ps
);
2930 TREEVIEW_FillBkgnd(infoPtr
, hdc
, &rc
);
2933 if(infoPtr
->bRedraw
) /* WM_SETREDRAW sets bRedraw */
2934 TREEVIEW_Refresh(infoPtr
, hdc
, &rc
);
2937 EndPaint(infoPtr
->hwnd
, &ps
);
2943 TREEVIEW_PrintClient(TREEVIEW_INFO
*infoPtr
, HDC hdc
, DWORD options
)
2945 FIXME("Partial Stub: (hdc=%p options=0x%08x)\n", hdc
, options
);
2947 if ((options
& PRF_CHECKVISIBLE
) && !IsWindowVisible(infoPtr
->hwnd
))
2950 if (options
& PRF_ERASEBKGND
)
2951 TREEVIEW_EraseBackground(infoPtr
, hdc
);
2953 if (options
& PRF_CLIENT
)
2956 GetClientRect(infoPtr
->hwnd
, &rc
);
2957 TREEVIEW_Refresh(infoPtr
, hdc
, &rc
);
2963 /* Sorting **************************************************************/
2965 /***************************************************************************
2966 * Forward the DPA local callback to the treeview owner callback
2969 TREEVIEW_CallBackCompare(const TREEVIEW_ITEM
*first
, const TREEVIEW_ITEM
*second
,
2970 const TVSORTCB
*pCallBackSort
)
2972 /* Forward the call to the client-defined callback */
2973 return pCallBackSort
->lpfnCompare(first
->lParam
,
2975 pCallBackSort
->lParam
);
2978 /***************************************************************************
2979 * Treeview native sort routine: sort on item text.
2982 TREEVIEW_SortOnName(TREEVIEW_ITEM
*first
, TREEVIEW_ITEM
*second
,
2983 const TREEVIEW_INFO
*infoPtr
)
2985 TREEVIEW_UpdateDispInfo(infoPtr
, first
, TVIF_TEXT
);
2986 TREEVIEW_UpdateDispInfo(infoPtr
, second
, TVIF_TEXT
);
2988 if(first
->pszText
&& second
->pszText
)
2989 return lstrcmpiW(first
->pszText
, second
->pszText
);
2990 else if(first
->pszText
)
2992 else if(second
->pszText
)
2998 /* Returns the number of physical children belonging to item. */
3000 TREEVIEW_CountChildren(const TREEVIEW_ITEM
*item
)
3005 for (hti
= item
->firstChild
; hti
!= NULL
; hti
= hti
->nextSibling
)
3011 /* Returns a DPA containing a pointer to each physical child of item in
3012 * sibling order. If item has no children, an empty DPA is returned. */
3014 TREEVIEW_BuildChildDPA(const TREEVIEW_ITEM
*item
)
3016 HTREEITEM child
= item
->firstChild
;
3018 HDPA list
= DPA_Create(8);
3019 if (list
== 0) return NULL
;
3021 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
3023 if (DPA_InsertPtr(list
, INT_MAX
, child
) == -1)
3033 /***************************************************************************
3034 * Setup the treeview structure with regards of the sort method
3035 * and sort the children of the TV item specified in lParam
3036 * fRecurse: currently unused. Should be zero.
3037 * parent: if pSort!=NULL, should equal pSort->hParent.
3038 * otherwise, item which child items are to be sorted.
3039 * pSort: sort method info. if NULL, sort on item text.
3040 * if non-NULL, sort on item's lParam content, and let the
3041 * application decide what that means. See also TVM_SORTCHILDRENCB.
3045 TREEVIEW_Sort(TREEVIEW_INFO
*infoPtr
, HTREEITEM parent
,
3049 PFNDPACOMPARE pfnCompare
;
3052 /* undocumented feature: TVI_ROOT or NULL means `sort the whole tree' */
3053 if (parent
== TVI_ROOT
|| parent
== NULL
)
3054 parent
= infoPtr
->root
;
3056 /* Check for a valid handle to the parent item */
3057 if (!TREEVIEW_ValidItem(infoPtr
, parent
))
3059 ERR("invalid item hParent=%p\n", parent
);
3065 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_CallBackCompare
;
3066 lpCompare
= (LPARAM
)pSort
;
3070 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_SortOnName
;
3071 lpCompare
= (LPARAM
)infoPtr
;
3074 cChildren
= TREEVIEW_CountChildren(parent
);
3076 /* Make sure there is something to sort */
3079 /* TREEVIEW_ITEM rechaining */
3082 HTREEITEM nextItem
= 0;
3083 HTREEITEM prevItem
= 0;
3085 HDPA sortList
= TREEVIEW_BuildChildDPA(parent
);
3087 if (sortList
== NULL
)
3090 /* let DPA sort the list */
3091 DPA_Sort(sortList
, pfnCompare
, lpCompare
);
3093 /* The order of DPA entries has been changed, so fixup the
3094 * nextSibling and prevSibling pointers. */
3096 item
= DPA_GetPtr(sortList
, count
++);
3097 while ((nextItem
= DPA_GetPtr(sortList
, count
++)) != NULL
)
3099 /* link the two current item together */
3100 item
->nextSibling
= nextItem
;
3101 nextItem
->prevSibling
= item
;
3103 if (prevItem
== NULL
)
3105 /* this is the first item, update the parent */
3106 parent
->firstChild
= item
;
3107 item
->prevSibling
= NULL
;
3111 /* fix the back chaining */
3112 item
->prevSibling
= prevItem
;
3115 /* get ready for the next one */
3120 /* the last item is pointed to by item and never has a sibling */
3121 item
->nextSibling
= NULL
;
3122 parent
->lastChild
= item
;
3124 DPA_Destroy(sortList
);
3126 TREEVIEW_VerifyTree(infoPtr
);
3128 if (parent
->state
& TVIS_EXPANDED
)
3130 int visOrder
= infoPtr
->firstVisible
->visibleOrder
;
3132 if (parent
== infoPtr
->root
)
3133 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
3135 TREEVIEW_RecalculateVisibleOrder(infoPtr
, parent
);
3137 if (TREEVIEW_IsChildOf(parent
, infoPtr
->firstVisible
))
3139 TREEVIEW_ITEM
*item
;
3141 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
3142 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
3144 if (item
->visibleOrder
== visOrder
)
3148 if (!item
) item
= parent
->firstChild
;
3149 TREEVIEW_SetFirstVisible(infoPtr
, item
, FALSE
);
3152 TREEVIEW_Invalidate(infoPtr
, NULL
);
3161 /***************************************************************************
3162 * Setup the treeview structure with regards of the sort method
3163 * and sort the children of the TV item specified in lParam
3166 TREEVIEW_SortChildrenCB(TREEVIEW_INFO
*infoPtr
, LPTVSORTCB pSort
)
3168 return TREEVIEW_Sort(infoPtr
, pSort
->hParent
, pSort
);
3172 /***************************************************************************
3173 * Sort the children of the TV item specified in lParam.
3176 TREEVIEW_SortChildren(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3178 return TREEVIEW_Sort(infoPtr
, (HTREEITEM
)lParam
, NULL
);
3182 /* Expansion/Collapse ***************************************************/
3185 TREEVIEW_SendExpanding(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3188 return !TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDINGW
, action
,
3189 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
3190 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
3195 TREEVIEW_SendExpanded(const TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3198 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDEDW
, action
,
3199 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
3200 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
3205 /* This corresponds to TVM_EXPAND with TVE_COLLAPSE.
3206 * bRemoveChildren corresponds to TVE_COLLAPSERESET. */
3208 TREEVIEW_Collapse(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3209 BOOL bRemoveChildren
, BOOL bUser
)
3211 UINT action
= TVE_COLLAPSE
| (bRemoveChildren
? TVE_COLLAPSERESET
: 0);
3212 BOOL bSetSelection
, bSetFirstVisible
;
3214 LONG scrollDist
= 0;
3215 TREEVIEW_ITEM
*nextItem
= NULL
, *tmpItem
;
3217 TRACE("TVE_COLLAPSE %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
3219 if (!(wineItem
->state
& TVIS_EXPANDED
))
3222 if (bUser
|| !(wineItem
->state
& TVIS_EXPANDEDONCE
))
3223 TREEVIEW_SendExpanding(infoPtr
, wineItem
, action
);
3225 if (wineItem
->firstChild
== NULL
)
3228 wineItem
->state
&= ~TVIS_EXPANDED
;
3230 if (bUser
|| !(wineItem
->state
& TVIS_EXPANDEDONCE
))
3231 TREEVIEW_SendExpanded(infoPtr
, wineItem
, action
);
3233 bSetSelection
= (infoPtr
->selectedItem
!= NULL
3234 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->selectedItem
));
3236 bSetFirstVisible
= (infoPtr
->firstVisible
!= NULL
3237 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->firstVisible
));
3242 if (tmpItem
->nextSibling
)
3244 nextItem
= tmpItem
->nextSibling
;
3247 tmpItem
= tmpItem
->parent
;
3251 scrollDist
= nextItem
->rect
.top
;
3253 if (bRemoveChildren
)
3255 INT old_cChildren
= wineItem
->cChildren
;
3256 TRACE("TVE_COLLAPSERESET\n");
3257 wineItem
->state
&= ~TVIS_EXPANDEDONCE
;
3258 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
3259 wineItem
->cChildren
= old_cChildren
;
3262 if (wineItem
->firstChild
)
3264 TREEVIEW_ITEM
*item
, *sibling
;
3266 sibling
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
3268 for (item
= wineItem
->firstChild
; item
!= sibling
;
3269 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
3271 item
->visibleOrder
= -1;
3275 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
3278 scrollDist
= -(scrollDist
- nextItem
->rect
.top
);
3282 /* Don't call DoSelectItem, it sends notifications. */
3283 if (TREEVIEW_ValidItem(infoPtr
, infoPtr
->selectedItem
))
3284 infoPtr
->selectedItem
->state
&= ~TVIS_SELECTED
;
3285 wineItem
->state
|= TVIS_SELECTED
;
3286 infoPtr
->selectedItem
= wineItem
;
3289 TREEVIEW_UpdateScrollBars(infoPtr
);
3291 scrollRect
.left
= 0;
3292 scrollRect
.right
= infoPtr
->clientWidth
;
3293 scrollRect
.bottom
= infoPtr
->clientHeight
;
3297 scrollRect
.top
= nextItem
->rect
.top
;
3299 ScrollWindowEx (infoPtr
->hwnd
, 0, scrollDist
, &scrollRect
, &scrollRect
,
3300 NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
3301 TREEVIEW_Invalidate(infoPtr
, wineItem
);
3303 scrollRect
.top
= wineItem
->rect
.top
;
3304 InvalidateRect(infoPtr
->hwnd
, &scrollRect
, TRUE
);
3307 TREEVIEW_SetFirstVisible(infoPtr
,
3308 bSetFirstVisible
? wineItem
: infoPtr
->firstVisible
,
3315 TREEVIEW_Expand(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
3316 BOOL partial
, BOOL user
)
3319 LONG orgNextTop
= 0;
3321 TREEVIEW_ITEM
*nextItem
, *tmpItem
;
3322 BOOL sendsNotifications
;
3324 TRACE("(%p, %p, partial=%d, %d\n", infoPtr
, wineItem
, partial
, user
);
3326 if (wineItem
->state
& TVIS_EXPANDED
)
3329 tmpItem
= wineItem
; nextItem
= NULL
;
3332 if (tmpItem
->nextSibling
)
3334 nextItem
= tmpItem
->nextSibling
;
3337 tmpItem
= tmpItem
->parent
;
3341 orgNextTop
= nextItem
->rect
.top
;
3343 TRACE("TVE_EXPAND %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
3345 sendsNotifications
= user
|| ((wineItem
->cChildren
!= 0) &&
3346 !(wineItem
->state
& TVIS_EXPANDEDONCE
));
3347 if (sendsNotifications
)
3349 if (!TREEVIEW_SendExpanding(infoPtr
, wineItem
, TVE_EXPAND
))
3351 TRACE(" TVN_ITEMEXPANDING returned TRUE, exiting...\n");
3355 if (!wineItem
->firstChild
)
3358 wineItem
->state
|= TVIS_EXPANDED
;
3361 FIXME("TVE_EXPANDPARTIAL not implemented\n");
3363 if (ISVISIBLE(wineItem
))
3365 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
3366 TREEVIEW_UpdateSubTree(infoPtr
, wineItem
);
3367 TREEVIEW_UpdateScrollBars(infoPtr
);
3369 scrollRect
.left
= 0;
3370 scrollRect
.bottom
= infoPtr
->treeHeight
;
3371 scrollRect
.right
= infoPtr
->clientWidth
;
3374 scrollDist
= nextItem
->rect
.top
- orgNextTop
;
3375 scrollRect
.top
= orgNextTop
;
3377 ScrollWindowEx (infoPtr
->hwnd
, 0, scrollDist
, &scrollRect
, NULL
,
3378 NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
3379 TREEVIEW_Invalidate (infoPtr
, wineItem
);
3381 scrollRect
.top
= wineItem
->rect
.top
;
3382 InvalidateRect(infoPtr
->hwnd
, &scrollRect
, FALSE
);
3385 /* Scroll up so that as many children as possible are visible.
3386 * This fails when expanding causes an HScroll bar to appear, but we
3387 * don't know that yet, so the last item is obscured. */
3388 if (wineItem
->firstChild
!= NULL
)
3390 int nChildren
= wineItem
->lastChild
->visibleOrder
3391 - wineItem
->firstChild
->visibleOrder
+ 1;
3393 int visible_pos
= wineItem
->visibleOrder
3394 - infoPtr
->firstVisible
->visibleOrder
;
3396 int rows_below
= TREEVIEW_GetVisibleCount(infoPtr
) - visible_pos
- 1;
3398 if (visible_pos
> 0 && nChildren
> rows_below
)
3400 int scroll
= nChildren
- rows_below
;
3402 if (scroll
> visible_pos
)
3403 scroll
= visible_pos
;
3407 TREEVIEW_ITEM
*newFirstVisible
3408 = TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
3412 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
3418 if (sendsNotifications
) {
3419 TREEVIEW_SendExpanded(infoPtr
, wineItem
, TVE_EXPAND
);
3420 wineItem
->state
|= TVIS_EXPANDEDONCE
;
3426 /* Handler for TVS_SINGLEEXPAND behaviour. Used on response
3427 to mouse messages and TVM_SELECTITEM.
3429 selection - previously selected item, used to collapse a part of a tree
3430 item - new selected item
3432 static void TREEVIEW_SingleExpand(TREEVIEW_INFO
*infoPtr
,
3433 HTREEITEM selection
, HTREEITEM item
)
3435 TREEVIEW_ITEM
*SelItem
;
3437 if ((infoPtr
->dwStyle
& TVS_SINGLEEXPAND
) == 0 || infoPtr
->hwndEdit
|| !item
) return;
3439 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_SINGLEEXPAND
, TVC_UNKNOWN
, TVIF_HANDLE
| TVIF_PARAM
, item
, 0);
3442 * Close the previous selection all the way to the root
3443 * as long as the new selection is not a child
3445 if(selection
&& (selection
!= item
))
3447 BOOL closeit
= TRUE
;
3450 /* determine if the hitItem is a child of the currently selected item */
3451 while(closeit
&& SelItem
&& TREEVIEW_ValidItem(infoPtr
, SelItem
) &&
3452 (SelItem
->parent
!= infoPtr
->root
))
3454 closeit
= (SelItem
!= selection
);
3455 SelItem
= SelItem
->parent
;
3460 if(TREEVIEW_ValidItem(infoPtr
, selection
))
3461 SelItem
= selection
;
3463 while(SelItem
&& (SelItem
!= item
) && TREEVIEW_ValidItem(infoPtr
, SelItem
) &&
3464 SelItem
->parent
!= infoPtr
->root
)
3466 TREEVIEW_Collapse(infoPtr
, SelItem
, FALSE
, FALSE
);
3467 SelItem
= SelItem
->parent
;
3473 * Expand the current item
3475 TREEVIEW_Expand(infoPtr
, item
, FALSE
, FALSE
);
3479 TREEVIEW_Toggle(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
, BOOL bUser
)
3483 if (wineItem
->state
& TVIS_EXPANDED
)
3484 return TREEVIEW_Collapse(infoPtr
, wineItem
, FALSE
, bUser
);
3486 return TREEVIEW_Expand(infoPtr
, wineItem
, FALSE
, bUser
);
3490 TREEVIEW_ExpandAll(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
3492 TREEVIEW_Expand(infoPtr
, item
, FALSE
, TRUE
);
3494 for (item
= item
->firstChild
; item
!= NULL
; item
= item
->nextSibling
)
3496 if (TREEVIEW_HasChildren(infoPtr
, item
))
3497 TREEVIEW_ExpandAll(infoPtr
, item
);
3501 /* Note:If the specified item is the child of a collapsed parent item,
3502 the parent's list of child items is (recursively) expanded to reveal the
3503 specified item. This is mentioned for TREEVIEW_SelectItem; don't
3504 know if it also applies here.
3508 TREEVIEW_ExpandMsg(TREEVIEW_INFO
*infoPtr
, UINT flag
, HTREEITEM wineItem
)
3510 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
3513 TRACE("For (%s) item:%d, flags 0x%x, state:%d\n",
3514 TREEVIEW_ItemName(wineItem
), TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
3515 flag
, wineItem
->state
);
3517 switch (flag
& TVE_TOGGLE
)
3520 return TREEVIEW_Collapse(infoPtr
, wineItem
, flag
& TVE_COLLAPSERESET
,
3524 return TREEVIEW_Expand(infoPtr
, wineItem
, flag
& TVE_EXPANDPARTIAL
,
3528 return TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3535 /* Hit-Testing **********************************************************/
3537 static TREEVIEW_ITEM
*
3538 TREEVIEW_HitTestPoint(const TREEVIEW_INFO
*infoPtr
, POINT pt
)
3540 TREEVIEW_ITEM
*wineItem
;
3543 if (!infoPtr
->firstVisible
)
3546 row
= pt
.y
/ infoPtr
->uItemHeight
+ infoPtr
->firstVisible
->visibleOrder
;
3548 for (wineItem
= infoPtr
->firstVisible
; wineItem
!= NULL
;
3549 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
3551 if (row
>= wineItem
->visibleOrder
3552 && row
< wineItem
->visibleOrder
+ wineItem
->iIntegral
)
3560 TREEVIEW_HitTest(const TREEVIEW_INFO
*infoPtr
, LPTVHITTESTINFO lpht
)
3562 TREEVIEW_ITEM
*wineItem
;
3568 GetClientRect(infoPtr
->hwnd
, &rect
);
3575 status
|= TVHT_TOLEFT
;
3577 else if (x
> rect
.right
)
3579 status
|= TVHT_TORIGHT
;
3584 status
|= TVHT_ABOVE
;
3586 else if (y
> rect
.bottom
)
3588 status
|= TVHT_BELOW
;
3593 lpht
->flags
= status
;
3597 wineItem
= TREEVIEW_HitTestPoint(infoPtr
, lpht
->pt
);
3600 lpht
->flags
= TVHT_NOWHERE
;
3604 if (x
>= wineItem
->textOffset
+ wineItem
->textWidth
)
3606 lpht
->flags
= TVHT_ONITEMRIGHT
;
3608 else if (x
>= wineItem
->textOffset
)
3610 lpht
->flags
= TVHT_ONITEMLABEL
;
3612 else if (x
>= wineItem
->imageOffset
)
3614 lpht
->flags
= TVHT_ONITEMICON
;
3616 else if (x
>= wineItem
->stateOffset
)
3618 lpht
->flags
= TVHT_ONITEMSTATEICON
;
3620 else if (x
>= wineItem
->linesOffset
&& infoPtr
->dwStyle
& TVS_HASBUTTONS
)
3622 lpht
->flags
= TVHT_ONITEMBUTTON
;
3626 lpht
->flags
= TVHT_ONITEMINDENT
;
3629 lpht
->hItem
= wineItem
;
3630 TRACE("(%d,%d):result %x\n", lpht
->pt
.x
, lpht
->pt
.y
, lpht
->flags
);
3632 return (LRESULT
)wineItem
;
3635 /* Item Label Editing ***************************************************/
3638 TREEVIEW_GetEditControl(const TREEVIEW_INFO
*infoPtr
)
3640 return (LRESULT
)infoPtr
->hwndEdit
;
3643 static LRESULT CALLBACK
3644 TREEVIEW_Edit_SubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3646 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3647 BOOL bCancel
= FALSE
;
3653 TRACE("WM_PAINT start\n");
3654 rc
= CallWindowProcW(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
,
3656 TRACE("WM_PAINT done\n");
3660 if (infoPtr
->bIgnoreEditKillFocus
)
3666 WNDPROC editProc
= infoPtr
->wpEditOrig
;
3667 infoPtr
->wpEditOrig
= 0;
3668 SetWindowLongPtrW(hwnd
, GWLP_WNDPROC
, (DWORD_PTR
)editProc
);
3669 return CallWindowProcW(editProc
, hwnd
, uMsg
, wParam
, lParam
);
3673 return DLGC_WANTARROWS
| DLGC_WANTALLKEYS
;
3676 if (wParam
== VK_ESCAPE
)
3681 else if (wParam
== VK_RETURN
)
3688 return CallWindowProcW(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
, lParam
);
3691 /* Processing TVN_ENDLABELEDIT message could kill the focus */
3692 /* eg. Using a messagebox */
3694 infoPtr
->bIgnoreEditKillFocus
= TRUE
;
3695 TREEVIEW_EndEditLabelNow(infoPtr
, bCancel
|| !infoPtr
->bLabelChanged
);
3696 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
3702 /* should handle edit control messages here */
3705 TREEVIEW_Command(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3707 TRACE("code=%x, id=%x, handle=%lx\n", HIWORD(wParam
), LOWORD(wParam
), lParam
);
3709 switch (HIWORD(wParam
))
3714 * Adjust the edit window size
3717 TREEVIEW_ITEM
*editItem
= infoPtr
->editItem
;
3718 HDC hdc
= GetDC(infoPtr
->hwndEdit
);
3720 HFONT hFont
, hOldFont
= 0;
3722 TRACE("edit=%p\n", infoPtr
->hwndEdit
);
3724 if (!IsWindow(infoPtr
->hwndEdit
) || !hdc
) return FALSE
;
3726 infoPtr
->bLabelChanged
= TRUE
;
3728 GetWindowTextW(infoPtr
->hwndEdit
, buffer
, sizeof(buffer
)/sizeof(buffer
[0]));
3730 /* Select font to get the right dimension of the string */
3731 hFont
= (HFONT
)SendMessageW(infoPtr
->hwndEdit
, WM_GETFONT
, 0, 0);
3735 hOldFont
= SelectObject(hdc
, hFont
);
3738 if (GetTextExtentPoint32W(hdc
, buffer
, strlenW(buffer
), &sz
))
3740 TEXTMETRICW textMetric
;
3742 /* Add Extra spacing for the next character */
3743 GetTextMetricsW(hdc
, &textMetric
);
3744 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3746 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3748 infoPtr
->clientWidth
- editItem
->textOffset
+ 2);
3750 SetWindowPos(infoPtr
->hwndEdit
,
3755 editItem
->rect
.bottom
- editItem
->rect
.top
+ 3,
3756 SWP_NOMOVE
| SWP_DRAWFRAME
);
3761 SelectObject(hdc
, hOldFont
);
3764 ReleaseDC(infoPtr
->hwnd
, hdc
);
3768 /* apparently we should respect passed handle value */
3769 if (infoPtr
->hwndEdit
!= (HWND
)lParam
) return FALSE
;
3771 TREEVIEW_EndEditLabelNow(infoPtr
, FALSE
);
3775 return SendMessageW(infoPtr
->hwndNotify
, WM_COMMAND
, wParam
, lParam
);
3782 TREEVIEW_EditLabel(TREEVIEW_INFO
*infoPtr
, HTREEITEM hItem
)
3784 HWND hwnd
= infoPtr
->hwnd
;
3787 HINSTANCE hinst
= (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
);
3790 TEXTMETRICW textMetric
;
3792 TRACE("%p %p\n", hwnd
, hItem
);
3793 if (!TREEVIEW_ValidItem(infoPtr
, hItem
))
3796 if (infoPtr
->hwndEdit
)
3797 return infoPtr
->hwndEdit
;
3799 infoPtr
->bLabelChanged
= FALSE
;
3801 /* make edit item visible */
3802 TREEVIEW_EnsureVisible(infoPtr
, hItem
, TRUE
);
3804 TREEVIEW_UpdateDispInfo(infoPtr
, hItem
, TVIF_TEXT
);
3807 /* Select the font to get appropriate metric dimensions */
3808 if (infoPtr
->hFont
!= 0)
3810 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
3813 /* Get string length in pixels */
3815 GetTextExtentPoint32W(hdc
, hItem
->pszText
, strlenW(hItem
->pszText
),
3818 GetTextExtentPoint32A(hdc
, "", 0, &sz
);
3820 /* Add Extra spacing for the next character */
3821 GetTextMetricsW(hdc
, &textMetric
);
3822 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3824 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3825 sz
.cx
= min(sz
.cx
, infoPtr
->clientWidth
- hItem
->textOffset
+ 2);
3827 if (infoPtr
->hFont
!= 0)
3829 SelectObject(hdc
, hOldFont
);
3832 ReleaseDC(hwnd
, hdc
);
3834 infoPtr
->editItem
= hItem
;
3836 hwndEdit
= CreateWindowExW(WS_EX_LEFT
,
3839 WS_CHILD
| WS_BORDER
| ES_AUTOHSCROLL
|
3840 WS_CLIPSIBLINGS
| ES_WANTRETURN
|
3841 ES_LEFT
, hItem
->textOffset
- 2,
3842 hItem
->rect
.top
- 1, sz
.cx
+ 3,
3843 hItem
->rect
.bottom
-
3844 hItem
->rect
.top
+ 3, hwnd
, 0, hinst
, 0);
3845 /* FIXME: (HMENU)IDTVEDIT,pcs->hInstance,0); */
3847 infoPtr
->hwndEdit
= hwndEdit
;
3849 /* Get a 2D border. */
3850 SetWindowLongW(hwndEdit
, GWL_EXSTYLE
,
3851 GetWindowLongW(hwndEdit
, GWL_EXSTYLE
) & ~WS_EX_CLIENTEDGE
);
3852 SetWindowLongW(hwndEdit
, GWL_STYLE
,
3853 GetWindowLongW(hwndEdit
, GWL_STYLE
) | WS_BORDER
);
3855 SendMessageW(hwndEdit
, WM_SETFONT
,
3856 (WPARAM
)TREEVIEW_FontForItem(infoPtr
, hItem
), FALSE
);
3858 infoPtr
->wpEditOrig
= (WNDPROC
)SetWindowLongPtrW(hwndEdit
, GWLP_WNDPROC
,
3860 TREEVIEW_Edit_SubclassProc
);
3862 if (TREEVIEW_BeginLabelEditNotify(infoPtr
, hItem
))
3864 DestroyWindow(hwndEdit
);
3865 infoPtr
->hwndEdit
= 0;
3866 infoPtr
->editItem
= NULL
;
3871 SetWindowTextW(hwndEdit
, hItem
->pszText
);
3874 SendMessageW(hwndEdit
, EM_SETSEL
, 0, -1);
3875 ShowWindow(hwndEdit
, SW_SHOW
);
3882 TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
)
3884 HWND hwnd
= infoPtr
->hwnd
;
3885 TREEVIEW_ITEM
*editedItem
= infoPtr
->editItem
;
3888 WCHAR tmpText
[1024] = { '\0' };
3889 WCHAR
*newText
= tmpText
;
3892 if (!IsWindow(infoPtr
->hwndEdit
)) return FALSE
;
3894 tvdi
.hdr
.hwndFrom
= hwnd
;
3895 tvdi
.hdr
.idFrom
= GetWindowLongPtrW(hwnd
, GWLP_ID
);
3896 tvdi
.hdr
.code
= get_notifycode(infoPtr
, TVN_ENDLABELEDITW
);
3898 tvdi
.item
.hItem
= editedItem
;
3899 tvdi
.item
.state
= editedItem
->state
;
3900 tvdi
.item
.lParam
= editedItem
->lParam
;
3904 if (!infoPtr
->bNtfUnicode
)
3905 iLength
= GetWindowTextA(infoPtr
->hwndEdit
, (LPSTR
)tmpText
, 1023);
3907 iLength
= GetWindowTextW(infoPtr
->hwndEdit
, tmpText
, 1023);
3909 if (iLength
>= 1023)
3911 ERR("Insufficient space to retrieve new item label\n");
3914 tvdi
.item
.mask
= TVIF_TEXT
;
3915 tvdi
.item
.pszText
= tmpText
;
3916 tvdi
.item
.cchTextMax
= iLength
+ 1;
3920 tvdi
.item
.pszText
= NULL
;
3921 tvdi
.item
.cchTextMax
= 0;
3924 bCommit
= TREEVIEW_SendRealNotify(infoPtr
, tvdi
.hdr
.idFrom
, (LPARAM
)&tvdi
);
3926 if (!bCancel
&& bCommit
) /* Apply the changes */
3928 if (!infoPtr
->bNtfUnicode
)
3930 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)tmpText
, -1, NULL
, 0 );
3931 newText
= Alloc(len
* sizeof(WCHAR
));
3932 MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)tmpText
, -1, newText
, len
);
3936 if (strcmpW(newText
, editedItem
->pszText
) != 0)
3938 WCHAR
*ptr
= ReAlloc(editedItem
->pszText
, sizeof(WCHAR
)*(iLength
+ 1));
3941 ERR("OutOfMemory, cannot allocate space for label\n");
3942 if(newText
!= tmpText
) Free(newText
);
3943 DestroyWindow(infoPtr
->hwndEdit
);
3944 infoPtr
->hwndEdit
= 0;
3945 infoPtr
->editItem
= NULL
;
3950 editedItem
->pszText
= ptr
;
3951 editedItem
->cchTextMax
= iLength
+ 1;
3952 strcpyW(editedItem
->pszText
, newText
);
3953 TREEVIEW_ComputeTextWidth(infoPtr
, editedItem
, 0);
3956 if(newText
!= tmpText
) Free(newText
);
3959 ShowWindow(infoPtr
->hwndEdit
, SW_HIDE
);
3960 DestroyWindow(infoPtr
->hwndEdit
);
3961 infoPtr
->hwndEdit
= 0;
3962 infoPtr
->editItem
= NULL
;
3967 TREEVIEW_HandleTimer(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
3969 if (wParam
!= TV_EDIT_TIMER
)
3971 ERR("got unknown timer\n");
3975 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
3976 infoPtr
->Timer
&= ~TV_EDIT_TIMER_SET
;
3978 TREEVIEW_EditLabel(infoPtr
, infoPtr
->selectedItem
);
3984 /* Mouse Tracking/Drag **************************************************/
3986 /***************************************************************************
3987 * This is quite unusual piece of code, but that's how it's implemented in
3991 TREEVIEW_TrackMouse(const TREEVIEW_INFO
*infoPtr
, POINT pt
)
3993 INT cxDrag
= GetSystemMetrics(SM_CXDRAG
);
3994 INT cyDrag
= GetSystemMetrics(SM_CYDRAG
);
3998 r
.top
= pt
.y
- cyDrag
;
3999 r
.left
= pt
.x
- cxDrag
;
4000 r
.bottom
= pt
.y
+ cyDrag
;
4001 r
.right
= pt
.x
+ cxDrag
;
4003 SetCapture(infoPtr
->hwnd
);
4007 if (PeekMessageW(&msg
, 0, 0, 0, PM_REMOVE
| PM_NOYIELD
))
4009 if (msg
.message
== WM_MOUSEMOVE
)
4011 pt
.x
= (short)LOWORD(msg
.lParam
);
4012 pt
.y
= (short)HIWORD(msg
.lParam
);
4013 if (PtInRect(&r
, pt
))
4021 else if (msg
.message
>= WM_LBUTTONDOWN
&&
4022 msg
.message
<= WM_RBUTTONDBLCLK
)
4024 if (msg
.message
== WM_RBUTTONUP
)
4025 TREEVIEW_RButtonUp(infoPtr
, &pt
);
4029 DispatchMessageW(&msg
);
4032 if (GetCapture() != infoPtr
->hwnd
)
4042 TREEVIEW_LButtonDoubleClick(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
4044 TREEVIEW_ITEM
*wineItem
;
4048 SetFocus(infoPtr
->hwnd
);
4050 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
4052 /* If there is pending 'edit label' event - kill it now */
4053 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
4056 hit
.pt
.x
= (short)LOWORD(lParam
);
4057 hit
.pt
.y
= (short)HIWORD(lParam
);
4059 wineItem
= (TREEVIEW_ITEM
*)TREEVIEW_HitTest(infoPtr
, &hit
);
4062 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
));
4064 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_DBLCLK
) == FALSE
)
4068 case TVHT_ONITEMRIGHT
:
4069 /* FIXME: we should not have sent NM_DBLCLK in this case. */
4072 case TVHT_ONITEMINDENT
:
4073 if (!(infoPtr
->dwStyle
& TVS_HASLINES
))
4079 int level
= hit
.pt
.x
/ infoPtr
->uIndent
;
4080 if (!(infoPtr
->dwStyle
& TVS_LINESATROOT
)) level
++;
4082 while (wineItem
->iLevel
> level
)
4084 wineItem
= wineItem
->parent
;
4090 case TVHT_ONITEMLABEL
:
4091 case TVHT_ONITEMICON
:
4092 case TVHT_ONITEMBUTTON
:
4093 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
4096 case TVHT_ONITEMSTATEICON
:
4097 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4098 TREEVIEW_ToggleItemState(infoPtr
, wineItem
);
4100 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
4109 TREEVIEW_LButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
4111 HWND hwnd
= infoPtr
->hwnd
;
4113 BOOL bTrack
, bDoLabelEdit
;
4115 /* If Edit control is active - kill it and return.
4116 * The best way to do it is to set focus to itself.
4117 * Edit control subclassed procedure will automatically call
4120 if (infoPtr
->hwndEdit
)
4126 ht
.pt
.x
= (short)LOWORD(lParam
);
4127 ht
.pt
.y
= (short)HIWORD(lParam
);
4129 TREEVIEW_HitTest(infoPtr
, &ht
);
4130 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, ht
.hItem
));
4132 /* update focusedItem and redraw both items */
4133 if(ht
.hItem
&& (ht
.flags
& TVHT_ONITEM
))
4135 infoPtr
->focusedItem
= ht
.hItem
;
4136 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->focusedItem
);
4137 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->selectedItem
);
4140 bTrack
= (ht
.flags
& TVHT_ONITEM
)
4141 && !(infoPtr
->dwStyle
& TVS_DISABLEDRAGDROP
);
4144 * If the style allows editing and the node is already selected
4145 * and the click occurred on the item label...
4147 bDoLabelEdit
= (infoPtr
->dwStyle
& TVS_EDITLABELS
) &&
4148 (ht
.flags
& TVHT_ONITEMLABEL
) && (infoPtr
->selectedItem
== ht
.hItem
);
4150 /* Send NM_CLICK right away */
4152 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
4155 if (ht
.flags
& TVHT_ONITEMBUTTON
)
4157 TREEVIEW_Toggle(infoPtr
, ht
.hItem
, TRUE
);
4161 { /* if TREEVIEW_TrackMouse == 1 dragging occurred and the cursor left the dragged item's rectangle */
4162 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
4164 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINDRAGW
, ht
.hItem
, ht
.pt
);
4165 infoPtr
->dropItem
= ht
.hItem
;
4167 /* clean up focusedItem as we dragged and won't select this item */
4168 if(infoPtr
->focusedItem
)
4170 /* refresh the item that was focused */
4171 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->focusedItem
);
4172 infoPtr
->focusedItem
= NULL
;
4174 /* refresh the selected item to return the filled background */
4175 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->selectedItem
);
4182 if (bTrack
&& TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
4187 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
4188 KillTimer(hwnd
, TV_EDIT_TIMER
);
4190 SetTimer(hwnd
, TV_EDIT_TIMER
, GetDoubleClickTime(), 0);
4191 infoPtr
->Timer
|= TV_EDIT_TIMER_SET
;
4193 else if (ht
.flags
& (TVHT_ONITEMICON
|TVHT_ONITEMLABEL
)) /* select the item if the hit was inside of the icon or text */
4195 TREEVIEW_ITEM
*selection
= infoPtr
->selectedItem
;
4197 /* Select the current item */
4198 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, ht
.hItem
, TVC_BYMOUSE
);
4199 TREEVIEW_SingleExpand(infoPtr
, selection
, ht
.hItem
);
4201 else if (ht
.flags
& TVHT_ONITEMSTATEICON
)
4203 /* TVS_CHECKBOXES requires us to toggle the current state */
4204 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4205 TREEVIEW_ToggleItemState(infoPtr
, ht
.hItem
);
4215 TREEVIEW_RButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
4219 if (infoPtr
->hwndEdit
)
4221 SetFocus(infoPtr
->hwnd
);
4225 ht
.pt
.x
= (short)LOWORD(lParam
);
4226 ht
.pt
.y
= (short)HIWORD(lParam
);
4228 TREEVIEW_HitTest(infoPtr
, &ht
);
4230 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
4234 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINRDRAGW
, ht
.hItem
, ht
.pt
);
4235 infoPtr
->dropItem
= ht
.hItem
;
4240 SetFocus(infoPtr
->hwnd
);
4241 TREEVIEW_SendSimpleNotify(infoPtr
, NM_RCLICK
);
4248 TREEVIEW_RButtonUp(const TREEVIEW_INFO
*infoPtr
, const POINT
*pPt
)
4254 TREEVIEW_HitTest(infoPtr
, &ht
);
4258 /* Change to screen coordinate for WM_CONTEXTMENU */
4259 ClientToScreen(infoPtr
->hwnd
, &ht
.pt
);
4261 /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
4262 SendMessageW(infoPtr
->hwnd
, WM_CONTEXTMENU
,
4263 (WPARAM
)infoPtr
->hwnd
, MAKELPARAM(ht
.pt
.x
, ht
.pt
.y
));
4270 TREEVIEW_CreateDragImage(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
4272 TREEVIEW_ITEM
*dragItem
= (HTREEITEM
)lParam
;
4276 HBITMAP hbmp
, hOldbmp
;
4283 if (!(infoPtr
->himlNormal
))
4286 if (!dragItem
|| !TREEVIEW_ValidItem(infoPtr
, dragItem
))
4289 TREEVIEW_UpdateDispInfo(infoPtr
, dragItem
, TVIF_TEXT
);
4291 hwtop
= GetDesktopWindow();
4292 htopdc
= GetDC(hwtop
);
4293 hdc
= CreateCompatibleDC(htopdc
);
4295 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
4297 if (dragItem
->pszText
)
4298 GetTextExtentPoint32W(hdc
, dragItem
->pszText
, strlenW(dragItem
->pszText
),
4301 GetTextExtentPoint32A(hdc
, "", 0, &size
);
4303 TRACE("%d %d %s\n", size
.cx
, size
.cy
, debugstr_w(dragItem
->pszText
));
4304 hbmp
= CreateCompatibleBitmap(htopdc
, size
.cx
, size
.cy
);
4305 hOldbmp
= SelectObject(hdc
, hbmp
);
4307 ImageList_GetIconSize(infoPtr
->himlNormal
, &cx
, &cy
);
4312 infoPtr
->dragList
= ImageList_Create(size
.cx
, size
.cy
, ILC_COLOR
, 10, 10);
4313 ImageList_Draw(infoPtr
->himlNormal
, dragItem
->iImage
, hdc
, 0, 0,
4317 ImageList_GetImageInfo (infoPtr->himlNormal, dragItem->hItem, &iminfo);
4318 ImageList_AddMasked (infoPtr->dragList, iminfo.hbmImage, CLR_DEFAULT);
4321 /* draw item text */
4323 SetRect(&rc
, cx
, 0, size
.cx
, size
.cy
);
4325 if (dragItem
->pszText
)
4326 DrawTextW(hdc
, dragItem
->pszText
, strlenW(dragItem
->pszText
), &rc
,
4329 SelectObject(hdc
, hOldFont
);
4330 SelectObject(hdc
, hOldbmp
);
4332 ImageList_Add(infoPtr
->dragList
, hbmp
, 0);
4336 ReleaseDC(hwtop
, htopdc
);
4338 return (LRESULT
)infoPtr
->dragList
;
4341 /* Selection ************************************************************/
4344 TREEVIEW_DoSelectItem(TREEVIEW_INFO
*infoPtr
, INT action
, HTREEITEM newSelect
,
4347 TREEVIEW_ITEM
*prevSelect
;
4349 assert(newSelect
== NULL
|| TREEVIEW_ValidItem(infoPtr
, newSelect
));
4351 TRACE("Entering item %p (%s), flag %x, cause %x, state %d\n",
4352 newSelect
, TREEVIEW_ItemName(newSelect
), action
, cause
,
4353 newSelect
? newSelect
->state
: 0);
4355 /* reset and redraw focusedItem if focusedItem was set so we don't */
4356 /* have to worry about the previously focused item when we set a new one */
4357 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->focusedItem
);
4358 infoPtr
->focusedItem
= NULL
;
4362 case TVGN_CARET
|TVSI_NOSINGLEEXPAND
:
4363 FIXME("TVSI_NOSINGLEEXPAND specified.\n");
4366 prevSelect
= infoPtr
->selectedItem
;
4368 if (prevSelect
== newSelect
) {
4369 TREEVIEW_EnsureVisible(infoPtr
, infoPtr
->selectedItem
, FALSE
);
4373 if (TREEVIEW_SendTreeviewNotify(infoPtr
,
4376 TVIF_TEXT
| TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
4382 prevSelect
->state
&= ~TVIS_SELECTED
;
4384 newSelect
->state
|= TVIS_SELECTED
;
4386 infoPtr
->selectedItem
= newSelect
;
4388 TREEVIEW_EnsureVisible(infoPtr
, infoPtr
->selectedItem
, FALSE
);
4390 TREEVIEW_InvalidateItem(infoPtr
, prevSelect
);
4391 TREEVIEW_InvalidateItem(infoPtr
, newSelect
);
4393 TREEVIEW_SendTreeviewNotify(infoPtr
,
4396 TVIF_TEXT
| TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
4401 case TVGN_DROPHILITE
:
4402 prevSelect
= infoPtr
->dropItem
;
4405 prevSelect
->state
&= ~TVIS_DROPHILITED
;
4407 infoPtr
->dropItem
= newSelect
;
4410 newSelect
->state
|= TVIS_DROPHILITED
;
4412 TREEVIEW_Invalidate(infoPtr
, prevSelect
);
4413 TREEVIEW_Invalidate(infoPtr
, newSelect
);
4416 case TVGN_FIRSTVISIBLE
:
4417 if (newSelect
!= NULL
)
4419 TREEVIEW_EnsureVisible(infoPtr
, newSelect
, FALSE
);
4420 TREEVIEW_SetFirstVisible(infoPtr
, newSelect
, TRUE
);
4421 TREEVIEW_Invalidate(infoPtr
, NULL
);
4426 TRACE("Leaving state %d\n", newSelect
? newSelect
->state
: 0);
4430 /* FIXME: handle NM_KILLFOCUS etc */
4432 TREEVIEW_SelectItem(TREEVIEW_INFO
*infoPtr
, INT wParam
, HTREEITEM item
)
4434 TREEVIEW_ITEM
*selection
= infoPtr
->selectedItem
;
4436 if (item
&& !TREEVIEW_ValidItem(infoPtr
, item
))
4439 TRACE("%p (%s) %d\n", item
, TREEVIEW_ItemName(item
), wParam
);
4441 if (!TREEVIEW_DoSelectItem(infoPtr
, wParam
, item
, TVC_UNKNOWN
))
4444 TREEVIEW_SingleExpand(infoPtr
, selection
, item
);
4449 /*************************************************************************
4450 * TREEVIEW_ProcessLetterKeys
4452 * Processes keyboard messages generated by pressing the letter keys
4454 * What this does is perform a case insensitive search from the
4455 * current position with the following quirks:
4456 * - If two chars or more are pressed in quick succession we search
4457 * for the corresponding string (e.g. 'abc').
4458 * - If there is a delay we wipe away the current search string and
4459 * restart with just that char.
4460 * - If the user keeps pressing the same character, whether slowly or
4461 * fast, so that the search string is entirely composed of this
4462 * character ('aaaaa' for instance), then we search for first item
4463 * that starting with that character.
4464 * - If the user types the above character in quick succession, then
4465 * we must also search for the corresponding string ('aaaaa'), and
4466 * go to that string if there is a match.
4474 * - The current implementation has a list of characters it will
4475 * accept and it ignores everything else. In particular it will
4476 * ignore accentuated characters which seems to match what
4477 * Windows does. But I'm not sure it makes sense to follow
4479 * - We don't sound a beep when the search fails.
4480 * - The search should start from the focused item, not from the selected
4481 * item. One reason for this is to allow for multiple selections in trees.
4482 * But currently infoPtr->focusedItem does not seem very usable.
4486 * TREEVIEW_ProcessLetterKeys
4488 static INT
TREEVIEW_ProcessLetterKeys(TREEVIEW_INFO
*infoPtr
, WPARAM charCode
, LPARAM keyData
)
4491 HTREEITEM endidx
,idx
;
4493 WCHAR buffer
[MAX_PATH
];
4494 DWORD timestamp
,elapsed
;
4496 /* simple parameter checking */
4497 if (!charCode
|| !keyData
) return 0;
4499 /* only allow the valid WM_CHARs through */
4500 if (!isalnum(charCode
) &&
4501 charCode
!= '.' && charCode
!= '`' && charCode
!= '!' &&
4502 charCode
!= '@' && charCode
!= '#' && charCode
!= '$' &&
4503 charCode
!= '%' && charCode
!= '^' && charCode
!= '&' &&
4504 charCode
!= '*' && charCode
!= '(' && charCode
!= ')' &&
4505 charCode
!= '-' && charCode
!= '_' && charCode
!= '+' &&
4506 charCode
!= '=' && charCode
!= '\\'&& charCode
!= ']' &&
4507 charCode
!= '}' && charCode
!= '[' && charCode
!= '{' &&
4508 charCode
!= '/' && charCode
!= '?' && charCode
!= '>' &&
4509 charCode
!= '<' && charCode
!= ',' && charCode
!= '~')
4512 /* compute how much time elapsed since last keypress */
4513 timestamp
= GetTickCount();
4514 if (timestamp
> infoPtr
->lastKeyPressTimestamp
) {
4515 elapsed
=timestamp
-infoPtr
->lastKeyPressTimestamp
;
4517 elapsed
=infoPtr
->lastKeyPressTimestamp
-timestamp
;
4520 /* update the search parameters */
4521 infoPtr
->lastKeyPressTimestamp
=timestamp
;
4522 if (elapsed
< KEY_DELAY
) {
4523 if (infoPtr
->nSearchParamLength
< sizeof(infoPtr
->szSearchParam
) / sizeof(WCHAR
)) {
4524 infoPtr
->szSearchParam
[infoPtr
->nSearchParamLength
++]=charCode
;
4526 if (infoPtr
->charCode
!= charCode
) {
4527 infoPtr
->charCode
=charCode
=0;
4530 infoPtr
->charCode
=charCode
;
4531 infoPtr
->szSearchParam
[0]=charCode
;
4532 infoPtr
->nSearchParamLength
=1;
4533 /* Redundant with the 1 char string */
4537 /* and search from the current position */
4539 if (infoPtr
->selectedItem
!= NULL
) {
4540 endidx
=infoPtr
->selectedItem
;
4541 /* if looking for single character match,
4542 * then we must always move forward
4544 if (infoPtr
->nSearchParamLength
== 1)
4545 idx
=TREEVIEW_GetNextListItem(infoPtr
,endidx
);
4550 idx
=infoPtr
->root
->firstChild
;
4553 /* At the end point, sort out wrapping */
4556 /* If endidx is null, stop at the last item (ie top to bottom) */
4560 /* Otherwise, start again at the very beginning */
4561 idx
=infoPtr
->root
->firstChild
;
4563 /* But if we are stopping on the first child, end now! */
4564 if (idx
== endidx
) break;
4568 ZeroMemory(&item
, sizeof(item
));
4569 item
.mask
= TVIF_TEXT
;
4571 item
.pszText
= buffer
;
4572 item
.cchTextMax
= sizeof(buffer
);
4573 TREEVIEW_GetItemT( infoPtr
, &item
, TRUE
);
4575 /* check for a match */
4576 if (strncmpiW(item
.pszText
,infoPtr
->szSearchParam
,infoPtr
->nSearchParamLength
) == 0) {
4579 } else if ( (charCode
!= 0) && (nItem
== NULL
) &&
4580 (nItem
!= infoPtr
->selectedItem
) &&
4581 (strncmpiW(item
.pszText
,infoPtr
->szSearchParam
,1) == 0) ) {
4582 /* This would work but we must keep looking for a longer match */
4585 idx
=TREEVIEW_GetNextListItem(infoPtr
,idx
);
4586 } while (idx
!= endidx
);
4588 if (nItem
!= NULL
) {
4589 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, nItem
, TVC_BYKEYBOARD
)) {
4590 TREEVIEW_EnsureVisible(infoPtr
, nItem
, FALSE
);
4597 /* Scrolling ************************************************************/
4600 TREEVIEW_EnsureVisible(TREEVIEW_INFO
*infoPtr
, HTREEITEM item
, BOOL bHScroll
)
4603 BOOL hasFirstVisible
= infoPtr
->firstVisible
!= NULL
;
4604 HTREEITEM newFirstVisible
= NULL
;
4605 int visible_pos
= -1;
4607 if (!TREEVIEW_ValidItem(infoPtr
, item
))
4610 if (!ISVISIBLE(item
))
4612 /* Expand parents as necessary. */
4615 /* see if we are trying to ensure that root is visible */
4616 if((item
!= infoPtr
->root
) && TREEVIEW_ValidItem(infoPtr
, item
))
4617 parent
= item
->parent
;
4619 parent
= item
; /* this item is the topmost item */
4621 while (parent
!= infoPtr
->root
)
4623 if (!(parent
->state
& TVIS_EXPANDED
))
4624 TREEVIEW_Expand(infoPtr
, parent
, FALSE
, FALSE
);
4626 parent
= parent
->parent
;
4630 viscount
= TREEVIEW_GetVisibleCount(infoPtr
);
4632 TRACE("%p (%s) %d - %d viscount(%d)\n", item
, TREEVIEW_ItemName(item
), item
->visibleOrder
,
4633 hasFirstVisible
? infoPtr
->firstVisible
->visibleOrder
: -1, viscount
);
4635 if (hasFirstVisible
)
4636 visible_pos
= item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
;
4638 if (visible_pos
< 0)
4640 /* item is before the start of the list: put it at the top. */
4641 newFirstVisible
= item
;
4643 else if (visible_pos
>= viscount
4644 /* Sometimes, before we are displayed, GVC is 0, causing us to
4645 * spuriously scroll up. */
4646 && visible_pos
> 0 && !(infoPtr
->dwStyle
& TVS_NOSCROLL
) )
4648 /* item is past the end of the list. */
4649 int scroll
= visible_pos
- viscount
;
4651 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
4657 /* Scroll window so item's text is visible as much as possible */
4658 /* Calculation of amount of extra space is taken from EditLabel code */
4660 TEXTMETRICW textMetric
;
4661 HDC hdc
= GetWindowDC(infoPtr
->hwnd
);
4663 x
= item
->textWidth
;
4665 GetTextMetricsW(hdc
, &textMetric
);
4666 ReleaseDC(infoPtr
->hwnd
, hdc
);
4668 x
+= (textMetric
.tmMaxCharWidth
* 2);
4669 x
= max(x
, textMetric
.tmMaxCharWidth
* 3);
4671 if (item
->textOffset
< 0)
4672 pos
= item
->textOffset
;
4673 else if (item
->textOffset
+ x
> infoPtr
->clientWidth
)
4675 if (x
> infoPtr
->clientWidth
)
4676 pos
= item
->textOffset
;
4678 pos
= item
->textOffset
+ x
- infoPtr
->clientWidth
;
4683 TREEVIEW_HScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, infoPtr
->scrollX
+ pos
));
4686 if (newFirstVisible
!= NULL
&& newFirstVisible
!= infoPtr
->firstVisible
)
4688 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
4697 TREEVIEW_SetFirstVisible(TREEVIEW_INFO
*infoPtr
,
4698 TREEVIEW_ITEM
*newFirstVisible
,
4699 BOOL bUpdateScrollPos
)
4703 TRACE("%p: %s\n", newFirstVisible
, TREEVIEW_ItemName(newFirstVisible
));
4705 if (newFirstVisible
!= NULL
)
4707 /* Prevent an empty gap from appearing at the bottom... */
4708 gap_size
= TREEVIEW_GetVisibleCount(infoPtr
)
4709 - infoPtr
->maxVisibleOrder
+ newFirstVisible
->visibleOrder
;
4713 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, newFirstVisible
,
4716 /* ... unless we just don't have enough items. */
4717 if (newFirstVisible
== NULL
)
4718 newFirstVisible
= infoPtr
->root
->firstChild
;
4722 if (infoPtr
->firstVisible
!= newFirstVisible
)
4724 if (infoPtr
->firstVisible
== NULL
|| newFirstVisible
== NULL
)
4726 infoPtr
->firstVisible
= newFirstVisible
;
4727 TREEVIEW_Invalidate(infoPtr
, NULL
);
4731 TREEVIEW_ITEM
*item
;
4732 int scroll
= infoPtr
->uItemHeight
*
4733 (infoPtr
->firstVisible
->visibleOrder
4734 - newFirstVisible
->visibleOrder
);
4736 infoPtr
->firstVisible
= newFirstVisible
;
4738 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4739 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4741 item
->rect
.top
+= scroll
;
4742 item
->rect
.bottom
+= scroll
;
4745 if (bUpdateScrollPos
)
4746 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4747 newFirstVisible
->visibleOrder
, TRUE
);
4749 ScrollWindowEx(infoPtr
->hwnd
, 0, scroll
, NULL
, NULL
, NULL
, NULL
, SW_ERASE
| SW_INVALIDATE
);
4754 /************************************************************************
4755 * VScroll is always in units of visible items. i.e. we always have a
4756 * visible item aligned to the top of the control. (Unless we have no
4760 TREEVIEW_VScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4762 TREEVIEW_ITEM
*oldFirstVisible
= infoPtr
->firstVisible
;
4763 TREEVIEW_ITEM
*newFirstVisible
= NULL
;
4765 int nScrollCode
= LOWORD(wParam
);
4767 TRACE("wp %lx\n", wParam
);
4769 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
4772 if (!oldFirstVisible
)
4774 assert(infoPtr
->root
->firstChild
== NULL
);
4778 switch (nScrollCode
)
4781 newFirstVisible
= infoPtr
->root
->firstChild
;
4785 newFirstVisible
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
4789 newFirstVisible
= TREEVIEW_GetPrevListItem(infoPtr
, oldFirstVisible
);
4793 newFirstVisible
= TREEVIEW_GetNextListItem(infoPtr
, oldFirstVisible
);
4797 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4798 -max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4802 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4803 max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4807 case SB_THUMBPOSITION
:
4808 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
,
4809 infoPtr
->root
->firstChild
,
4810 (LONG
)(SHORT
)HIWORD(wParam
));
4817 if (newFirstVisible
!= NULL
)
4819 if (newFirstVisible
!= oldFirstVisible
)
4820 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
,
4821 nScrollCode
!= SB_THUMBTRACK
);
4822 else if (nScrollCode
== SB_THUMBPOSITION
)
4823 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4824 newFirstVisible
->visibleOrder
, TRUE
);
4831 TREEVIEW_HScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4834 int scrollX
= infoPtr
->scrollX
;
4835 int nScrollCode
= LOWORD(wParam
);
4837 TRACE("wp %lx\n", wParam
);
4839 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
4842 maxWidth
= infoPtr
->treeWidth
- infoPtr
->clientWidth
;
4843 /* shall never occur */
4850 switch (nScrollCode
)
4853 scrollX
-= infoPtr
->uItemHeight
;
4856 scrollX
+= infoPtr
->uItemHeight
;
4859 scrollX
-= infoPtr
->clientWidth
;
4862 scrollX
+= infoPtr
->clientWidth
;
4866 case SB_THUMBPOSITION
:
4867 scrollX
= (int)(SHORT
)HIWORD(wParam
);
4874 if (scrollX
> maxWidth
)
4876 else if (scrollX
< 0)
4880 if (scrollX
!= infoPtr
->scrollX
)
4882 TREEVIEW_ITEM
*item
;
4883 LONG scroll_pixels
= infoPtr
->scrollX
- scrollX
;
4885 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4886 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4888 item
->linesOffset
+= scroll_pixels
;
4889 item
->stateOffset
+= scroll_pixels
;
4890 item
->imageOffset
+= scroll_pixels
;
4891 item
->textOffset
+= scroll_pixels
;
4894 ScrollWindow(infoPtr
->hwnd
, scroll_pixels
, 0, NULL
, NULL
);
4895 infoPtr
->scrollX
= scrollX
;
4896 UpdateWindow(infoPtr
->hwnd
);
4899 if (nScrollCode
!= SB_THUMBTRACK
)
4900 SetScrollPos(infoPtr
->hwnd
, SB_HORZ
, scrollX
, TRUE
);
4906 TREEVIEW_MouseWheel(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
4909 UINT pulScrollLines
= 3;
4911 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
4912 return DefWindowProcW(infoPtr
->hwnd
, WM_MOUSEWHEEL
, wParam
, lParam
);
4914 if (infoPtr
->firstVisible
== NULL
)
4917 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
, 0, &pulScrollLines
, 0);
4919 gcWheelDelta
= -(short)HIWORD(wParam
);
4920 pulScrollLines
*= (gcWheelDelta
/ WHEEL_DELTA
);
4922 if (abs(gcWheelDelta
) >= WHEEL_DELTA
&& pulScrollLines
)
4924 int newDy
= infoPtr
->firstVisible
->visibleOrder
+ pulScrollLines
;
4925 int maxDy
= infoPtr
->maxVisibleOrder
;
4933 TREEVIEW_VScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, newDy
));
4938 /* Create/Destroy *******************************************************/
4941 initialize_checkboxes(TREEVIEW_INFO
*infoPtr
)
4944 HBITMAP hbm
, hbmOld
;
4948 infoPtr
->himlState
= ImageList_Create(16, 16, ILC_COLOR
| ILC_MASK
, 3, 0);
4950 hdcScreen
= GetDC(0);
4952 hdc
= CreateCompatibleDC(hdcScreen
);
4953 hbm
= CreateCompatibleBitmap(hdcScreen
, 48, 16);
4954 hbmOld
= SelectObject(hdc
, hbm
);
4956 SetRect(&rc
, 0, 0, 48, 16);
4957 FillRect(hdc
, &rc
, (HBRUSH
)(COLOR_WINDOW
+1));
4959 SetRect(&rc
, 18, 2, 30, 14);
4960 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4961 DFCS_BUTTONCHECK
|DFCS_FLAT
);
4963 SetRect(&rc
, 34, 2, 46, 14);
4964 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4965 DFCS_BUTTONCHECK
|DFCS_FLAT
|DFCS_CHECKED
);
4967 SelectObject(hdc
, hbmOld
);
4968 nIndex
= ImageList_AddMasked(infoPtr
->himlState
, hbm
,
4969 comctl32_color
.clrWindow
);
4970 TRACE("checkbox index %d\n", nIndex
);
4974 ReleaseDC(0, hdcScreen
);
4976 infoPtr
->stateImageWidth
= 16;
4977 infoPtr
->stateImageHeight
= 16;
4981 TREEVIEW_Create(HWND hwnd
, const CREATESTRUCTW
*lpcs
)
4984 TREEVIEW_INFO
*infoPtr
;
4987 TRACE("wnd %p, style %x\n", hwnd
, GetWindowLongW(hwnd
, GWL_STYLE
));
4989 infoPtr
= Alloc(sizeof(TREEVIEW_INFO
));
4991 if (infoPtr
== NULL
)
4993 ERR("could not allocate info memory!\n");
4997 SetWindowLongPtrW(hwnd
, 0, (DWORD_PTR
)infoPtr
);
4999 infoPtr
->hwnd
= hwnd
;
5000 infoPtr
->dwStyle
= GetWindowLongW(hwnd
, GWL_STYLE
);
5002 infoPtr
->uNumItems
= 0;
5003 infoPtr
->cdmode
= 0;
5004 infoPtr
->uScrollTime
= 300; /* milliseconds */
5005 infoPtr
->bRedraw
= TRUE
;
5007 GetClientRect(hwnd
, &rcClient
);
5009 /* No scroll bars yet. */
5010 infoPtr
->clientWidth
= rcClient
.right
;
5011 infoPtr
->clientHeight
= rcClient
.bottom
;
5012 infoPtr
->uInternalStatus
= 0;
5014 infoPtr
->treeWidth
= 0;
5015 infoPtr
->treeHeight
= 0;
5017 infoPtr
->uIndent
= MINIMUM_INDENT
;
5018 infoPtr
->selectedItem
= NULL
;
5019 infoPtr
->focusedItem
= NULL
;
5020 infoPtr
->hotItem
= NULL
;
5021 infoPtr
->editItem
= NULL
;
5022 infoPtr
->firstVisible
= NULL
;
5023 infoPtr
->maxVisibleOrder
= 0;
5024 infoPtr
->dropItem
= NULL
;
5025 infoPtr
->insertMarkItem
= NULL
;
5026 infoPtr
->insertBeforeorAfter
= 0;
5029 infoPtr
->scrollX
= 0;
5031 infoPtr
->clrBk
= CLR_NONE
; /* use system color */
5032 infoPtr
->clrText
= CLR_NONE
; /* use system color */
5033 infoPtr
->clrLine
= CLR_DEFAULT
;
5034 infoPtr
->clrInsertMark
= CLR_DEFAULT
;
5038 infoPtr
->hwndEdit
= NULL
;
5039 infoPtr
->wpEditOrig
= NULL
;
5040 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
5041 infoPtr
->bLabelChanged
= FALSE
;
5043 infoPtr
->himlNormal
= NULL
;
5044 infoPtr
->himlState
= NULL
;
5045 infoPtr
->normalImageWidth
= 0;
5046 infoPtr
->normalImageHeight
= 0;
5047 infoPtr
->stateImageWidth
= 0;
5048 infoPtr
->stateImageHeight
= 0;
5050 infoPtr
->items
= DPA_Create(16);
5052 SystemParametersInfoW(SPI_GETICONTITLELOGFONT
, sizeof(lf
), &lf
, 0);
5053 infoPtr
->hFont
= infoPtr
->hDefaultFont
= CreateFontIndirectW(&lf
);
5054 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
5055 infoPtr
->hUnderlineFont
= TREEVIEW_CreateUnderlineFont(infoPtr
->hFont
);
5056 infoPtr
->hcurHand
= LoadCursorW(NULL
, (LPWSTR
)IDC_HAND
);
5058 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
5060 infoPtr
->root
= TREEVIEW_AllocateItem(infoPtr
);
5061 infoPtr
->root
->state
= TVIS_EXPANDED
;
5062 infoPtr
->root
->iLevel
= -1;
5063 infoPtr
->root
->visibleOrder
= -1;
5065 infoPtr
->hwndNotify
= lpcs
->hwndParent
;
5066 infoPtr
->hwndToolTip
= 0;
5068 infoPtr
->bNtfUnicode
= IsWindowUnicode (hwnd
);
5070 /* Determine what type of notify should be issued */
5071 /* sets infoPtr->bNtfUnicode */
5072 TREEVIEW_NotifyFormat(infoPtr
, infoPtr
->hwndNotify
, NF_REQUERY
);
5074 if (!(infoPtr
->dwStyle
& TVS_NOTOOLTIPS
))
5075 infoPtr
->hwndToolTip
= CreateWindowExW(0, TOOLTIPS_CLASSW
, NULL
, WS_POPUP
,
5076 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
5079 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
5080 initialize_checkboxes(infoPtr
);
5082 /* Make sure actual scrollbar state is consistent with uInternalStatus */
5083 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
5084 ShowScrollBar(hwnd
, SB_HORZ
, FALSE
);
5086 OpenThemeData (hwnd
, themeClass
);
5093 TREEVIEW_Destroy(TREEVIEW_INFO
*infoPtr
)
5097 /* free item data */
5098 TREEVIEW_RemoveTree(infoPtr
);
5099 /* root isn't freed with other items */
5100 TREEVIEW_FreeItem(infoPtr
, infoPtr
->root
);
5101 DPA_Destroy(infoPtr
->items
);
5103 /* tool tip is automatically destroyed: we are its owner */
5105 /* Restore original wndproc */
5106 if (infoPtr
->hwndEdit
)
5107 SetWindowLongPtrW(infoPtr
->hwndEdit
, GWLP_WNDPROC
,
5108 (DWORD_PTR
)infoPtr
->wpEditOrig
);
5110 CloseThemeData (GetWindowTheme (infoPtr
->hwnd
));
5112 /* Deassociate treeview from the window before doing anything drastic. */
5113 SetWindowLongPtrW(infoPtr
->hwnd
, 0, 0);
5116 DeleteObject(infoPtr
->hDefaultFont
);
5117 DeleteObject(infoPtr
->hBoldFont
);
5118 DeleteObject(infoPtr
->hUnderlineFont
);
5124 /* Miscellaneous Messages ***********************************************/
5127 TREEVIEW_ScrollKeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM key
)
5135 #define SCROLL_ENTRY(dir, code) { ((dir) << 7) | (code) }
5136 SCROLL_ENTRY(SB_VERT
, SB_PAGEUP
), /* VK_PRIOR */
5137 SCROLL_ENTRY(SB_VERT
, SB_PAGEDOWN
), /* VK_NEXT */
5138 SCROLL_ENTRY(SB_VERT
, SB_BOTTOM
), /* VK_END */
5139 SCROLL_ENTRY(SB_VERT
, SB_TOP
), /* VK_HOME */
5140 SCROLL_ENTRY(SB_HORZ
, SB_LINEUP
), /* VK_LEFT */
5141 SCROLL_ENTRY(SB_VERT
, SB_LINEUP
), /* VK_UP */
5142 SCROLL_ENTRY(SB_HORZ
, SB_LINEDOWN
), /* VK_RIGHT */
5143 SCROLL_ENTRY(SB_VERT
, SB_LINEDOWN
) /* VK_DOWN */
5147 if (key
>= VK_PRIOR
&& key
<= VK_DOWN
)
5149 unsigned char code
= scroll
[key
- VK_PRIOR
].code
;
5151 (((code
& (1 << 7)) == (SB_HORZ
<< 7))
5153 : TREEVIEW_VScroll
)(infoPtr
, code
& 0x7F);
5159 /************************************************************************
5162 * VK_UP Move selection to the previous non-hidden item.
5163 * VK_DOWN Move selection to the next non-hidden item.
5164 * VK_HOME Move selection to the first item.
5165 * VK_END Move selection to the last item.
5166 * VK_LEFT If expanded then collapse, otherwise move to parent.
5167 * VK_RIGHT If collapsed then expand, otherwise move to first child.
5169 * VK_SUBTRACT Collapse.
5170 * VK_MULTIPLY Expand all.
5171 * VK_PRIOR Move up GetVisibleCount items.
5172 * VK_NEXT Move down GetVisibleCount items.
5173 * VK_BACK Move to parent.
5174 * CTRL-Left,Right,Up,Down,PgUp,PgDown,Home,End: Scroll without changing selection
5177 TREEVIEW_KeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
5179 /* If it is non-NULL and different, it will be selected and visible. */
5180 TREEVIEW_ITEM
*newSelection
= NULL
;
5182 TREEVIEW_ITEM
*prevItem
= infoPtr
->selectedItem
;
5184 TRACE("%lx\n", wParam
);
5186 if (prevItem
== NULL
)
5189 if (GetAsyncKeyState(VK_CONTROL
) & 0x8000)
5190 return TREEVIEW_ScrollKeyDown(infoPtr
, wParam
);
5195 newSelection
= TREEVIEW_GetPrevListItem(infoPtr
, prevItem
);
5197 newSelection
= infoPtr
->root
->firstChild
;
5201 newSelection
= TREEVIEW_GetNextListItem(infoPtr
, prevItem
);
5205 newSelection
= infoPtr
->root
->firstChild
;
5209 newSelection
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
5213 if (prevItem
->state
& TVIS_EXPANDED
)
5215 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
5217 else if (prevItem
->parent
!= infoPtr
->root
)
5219 newSelection
= prevItem
->parent
;
5224 if (TREEVIEW_HasChildren(infoPtr
, prevItem
))
5226 if (!(prevItem
->state
& TVIS_EXPANDED
))
5227 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
5230 newSelection
= prevItem
->firstChild
;
5237 TREEVIEW_ExpandAll(infoPtr
, prevItem
);
5241 if (!(prevItem
->state
& TVIS_EXPANDED
))
5242 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
5246 if (prevItem
->state
& TVIS_EXPANDED
)
5247 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
5252 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
5253 -TREEVIEW_GetVisibleCount(infoPtr
));
5258 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
5259 TREEVIEW_GetVisibleCount(infoPtr
));
5263 newSelection
= prevItem
->parent
;
5264 if (newSelection
== infoPtr
->root
)
5265 newSelection
= NULL
;
5269 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
5270 TREEVIEW_ToggleItemState(infoPtr
, prevItem
);
5274 if (newSelection
&& newSelection
!= prevItem
)
5276 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
,
5279 TREEVIEW_EnsureVisible(infoPtr
, newSelection
, FALSE
);
5287 TREEVIEW_MouseLeave (TREEVIEW_INFO
* infoPtr
)
5289 /* remove hot effect from item */
5290 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->hotItem
);
5291 infoPtr
->hotItem
= NULL
;
5297 TREEVIEW_MouseMove (TREEVIEW_INFO
* infoPtr
, LPARAM lParam
)
5300 TRACKMOUSEEVENT trackinfo
;
5301 TREEVIEW_ITEM
* item
;
5303 if (!(infoPtr
->dwStyle
& TVS_TRACKSELECT
)) return 0;
5305 /* fill in the TRACKMOUSEEVENT struct */
5306 trackinfo
.cbSize
= sizeof(TRACKMOUSEEVENT
);
5307 trackinfo
.dwFlags
= TME_QUERY
;
5308 trackinfo
.hwndTrack
= infoPtr
->hwnd
;
5310 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
5311 _TrackMouseEvent(&trackinfo
);
5313 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
5314 if(!(trackinfo
.dwFlags
& TME_LEAVE
))
5316 trackinfo
.dwFlags
= TME_LEAVE
; /* notify upon leaving */
5317 trackinfo
.hwndTrack
= infoPtr
->hwnd
;
5318 /* do it as fast as possible, minimal systimer latency will be used */
5319 trackinfo
.dwHoverTime
= 1;
5321 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
5322 /* and can properly deactivate the hot item */
5323 _TrackMouseEvent(&trackinfo
);
5326 pt
.x
= (short)LOWORD(lParam
);
5327 pt
.y
= (short)HIWORD(lParam
);
5329 item
= TREEVIEW_HitTestPoint(infoPtr
, pt
);
5331 if (item
!= infoPtr
->hotItem
)
5333 /* redraw old hot item */
5334 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->hotItem
);
5335 infoPtr
->hotItem
= item
;
5336 /* redraw new hot item */
5337 TREEVIEW_InvalidateItem(infoPtr
, infoPtr
->hotItem
);
5343 /* Draw themed border */
5344 static BOOL
TREEVIEW_NCPaint (const TREEVIEW_INFO
*infoPtr
, HRGN region
, LPARAM lParam
)
5346 HTHEME theme
= GetWindowTheme (infoPtr
->hwnd
);
5350 int cxEdge
= GetSystemMetrics (SM_CXEDGE
),
5351 cyEdge
= GetSystemMetrics (SM_CYEDGE
);
5354 return DefWindowProcW (infoPtr
->hwnd
, WM_NCPAINT
, (WPARAM
)region
, lParam
);
5356 GetWindowRect(infoPtr
->hwnd
, &r
);
5358 cliprgn
= CreateRectRgn (r
.left
+ cxEdge
, r
.top
+ cyEdge
,
5359 r
.right
- cxEdge
, r
.bottom
- cyEdge
);
5360 if (region
!= (HRGN
)1)
5361 CombineRgn (cliprgn
, cliprgn
, region
, RGN_AND
);
5362 OffsetRect(&r
, -r
.left
, -r
.top
);
5364 dc
= GetDCEx(infoPtr
->hwnd
, region
, DCX_WINDOW
|DCX_INTERSECTRGN
);
5365 OffsetRect(&r
, -r
.left
, -r
.top
);
5367 if (IsThemeBackgroundPartiallyTransparent (theme
, 0, 0))
5368 DrawThemeParentBackground(infoPtr
->hwnd
, dc
, &r
);
5369 DrawThemeBackground (theme
, dc
, 0, 0, &r
, 0);
5370 ReleaseDC(infoPtr
->hwnd
, dc
);
5372 /* Call default proc to get the scrollbars etc. painted */
5373 DefWindowProcW (infoPtr
->hwnd
, WM_NCPAINT
, (WPARAM
)cliprgn
, 0);
5379 TREEVIEW_Notify(const TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5381 LPNMHDR lpnmh
= (LPNMHDR
)lParam
;
5383 if (lpnmh
->code
== PGN_CALCSIZE
) {
5384 LPNMPGCALCSIZE lppgc
= (LPNMPGCALCSIZE
)lParam
;
5386 if (lppgc
->dwFlag
== PGF_CALCWIDTH
) {
5387 lppgc
->iWidth
= infoPtr
->treeWidth
;
5388 TRACE("got PGN_CALCSIZE, returning horz size = %d, client=%d\n",
5389 infoPtr
->treeWidth
, infoPtr
->clientWidth
);
5392 lppgc
->iHeight
= infoPtr
->treeHeight
;
5393 TRACE("got PGN_CALCSIZE, returning vert size = %d, client=%d\n",
5394 infoPtr
->treeHeight
, infoPtr
->clientHeight
);
5398 return DefWindowProcW(infoPtr
->hwnd
, WM_NOTIFY
, wParam
, lParam
);
5402 TREEVIEW_Size(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5404 if (wParam
== SIZE_RESTORED
)
5406 infoPtr
->clientWidth
= (short)LOWORD(lParam
);
5407 infoPtr
->clientHeight
= (short)HIWORD(lParam
);
5409 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
5410 TREEVIEW_SetFirstVisible(infoPtr
, infoPtr
->firstVisible
, TRUE
);
5411 TREEVIEW_UpdateScrollBars(infoPtr
);
5415 FIXME("WM_SIZE flag %lx %lx not handled\n", wParam
, lParam
);
5418 TREEVIEW_Invalidate(infoPtr
, NULL
);
5423 TREEVIEW_StyleChanged(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5425 TRACE("(%lx %lx)\n", wParam
, lParam
);
5427 if (wParam
== GWL_STYLE
)
5429 DWORD dwNewStyle
= ((LPSTYLESTRUCT
)lParam
)->styleNew
;
5431 if ((infoPtr
->dwStyle
^ dwNewStyle
) & TVS_CHECKBOXES
)
5433 if (dwNewStyle
& TVS_CHECKBOXES
)
5435 initialize_checkboxes(infoPtr
);
5436 TRACE("checkboxes enabled\n");
5440 FIXME("tried to disable checkboxes\n");
5444 if ((infoPtr
->dwStyle
^ dwNewStyle
) & TVS_NOTOOLTIPS
)
5446 if (infoPtr
->dwStyle
& TVS_NOTOOLTIPS
)
5448 infoPtr
->hwndToolTip
= COMCTL32_CreateToolTip(infoPtr
->hwnd
);
5449 TRACE("tooltips enabled\n");
5453 DestroyWindow(infoPtr
->hwndToolTip
);
5454 infoPtr
->hwndToolTip
= 0;
5455 TRACE("tooltips disabled\n");
5459 infoPtr
->dwStyle
= dwNewStyle
;
5462 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
5463 TREEVIEW_UpdateScrollBars(infoPtr
);
5464 TREEVIEW_Invalidate(infoPtr
, NULL
);
5470 TREEVIEW_SetCursor(const TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
5473 TREEVIEW_ITEM
* item
;
5477 ScreenToClient(infoPtr
->hwnd
, &pt
);
5479 item
= TREEVIEW_HitTestPoint(infoPtr
, pt
);
5481 memset(&nmmouse
, 0, sizeof(nmmouse
));
5482 nmmouse
.hdr
.hwndFrom
= infoPtr
->hwnd
;
5483 nmmouse
.hdr
.idFrom
= GetWindowLongPtrW(infoPtr
->hwnd
, GWLP_ID
);
5484 nmmouse
.hdr
.code
= NM_SETCURSOR
;
5487 nmmouse
.dwItemSpec
= (DWORD_PTR
)item
;
5488 nmmouse
.dwItemData
= item
->lParam
;
5492 nmmouse
.dwHitInfo
= lParam
;
5493 if (TREEVIEW_SendRealNotify(infoPtr
, nmmouse
.hdr
.idFrom
, (LPARAM
)&nmmouse
))
5496 if (item
&& (infoPtr
->dwStyle
& TVS_TRACKSELECT
))
5498 SetCursor(infoPtr
->hcurHand
);
5502 return DefWindowProcW(infoPtr
->hwnd
, WM_SETCURSOR
, wParam
, lParam
);
5506 TREEVIEW_SetFocus(TREEVIEW_INFO
*infoPtr
)
5510 if (!infoPtr
->selectedItem
)
5512 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, infoPtr
->firstVisible
,
5516 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
5517 TREEVIEW_SendSimpleNotify(infoPtr
, NM_SETFOCUS
);
5522 TREEVIEW_KillFocus(const TREEVIEW_INFO
*infoPtr
)
5526 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
5527 UpdateWindow(infoPtr
->hwnd
);
5528 TREEVIEW_SendSimpleNotify(infoPtr
, NM_KILLFOCUS
);
5532 /* update theme after a WM_THEMECHANGED message */
5533 static LRESULT
TREEVIEW_ThemeChanged(const TREEVIEW_INFO
*infoPtr
)
5535 HTHEME theme
= GetWindowTheme (infoPtr
->hwnd
);
5536 CloseThemeData (theme
);
5537 OpenThemeData (infoPtr
->hwnd
, themeClass
);
5542 static LRESULT WINAPI
5543 TREEVIEW_WindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
5545 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(hwnd
);
5547 TRACE("hwnd %p msg %04x wp=%08lx lp=%08lx\n", hwnd
, uMsg
, wParam
, lParam
);
5549 if (infoPtr
) TREEVIEW_VerifyTree(infoPtr
);
5552 if (uMsg
== WM_CREATE
)
5553 TREEVIEW_Create(hwnd
, (LPCREATESTRUCTW
)lParam
);
5560 case TVM_CREATEDRAGIMAGE
:
5561 return TREEVIEW_CreateDragImage(infoPtr
, lParam
);
5563 case TVM_DELETEITEM
:
5564 return TREEVIEW_DeleteItem(infoPtr
, (HTREEITEM
)lParam
);
5566 case TVM_EDITLABELA
:
5567 case TVM_EDITLABELW
:
5568 return (LRESULT
)TREEVIEW_EditLabel(infoPtr
, (HTREEITEM
)lParam
);
5570 case TVM_ENDEDITLABELNOW
:
5571 return TREEVIEW_EndEditLabelNow(infoPtr
, (BOOL
)wParam
);
5573 case TVM_ENSUREVISIBLE
:
5574 return TREEVIEW_EnsureVisible(infoPtr
, (HTREEITEM
)lParam
, TRUE
);
5577 return TREEVIEW_ExpandMsg(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
5579 case TVM_GETBKCOLOR
:
5580 return TREEVIEW_GetBkColor(infoPtr
);
5583 return TREEVIEW_GetCount(infoPtr
);
5585 case TVM_GETEDITCONTROL
:
5586 return TREEVIEW_GetEditControl(infoPtr
);
5588 case TVM_GETIMAGELIST
:
5589 return TREEVIEW_GetImageList(infoPtr
, wParam
);
5592 return TREEVIEW_GetIndent(infoPtr
);
5594 case TVM_GETINSERTMARKCOLOR
:
5595 return TREEVIEW_GetInsertMarkColor(infoPtr
);
5597 case TVM_GETISEARCHSTRINGA
:
5598 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGA\n");
5601 case TVM_GETISEARCHSTRINGW
:
5602 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGW\n");
5607 return TREEVIEW_GetItemT(infoPtr
, (LPTVITEMEXW
)lParam
,
5608 uMsg
== TVM_GETITEMW
);
5609 case TVM_GETITEMHEIGHT
:
5610 return TREEVIEW_GetItemHeight(infoPtr
);
5612 case TVM_GETITEMRECT
:
5613 return TREEVIEW_GetItemRect(infoPtr
, (BOOL
)wParam
, (LPRECT
)lParam
);
5615 case TVM_GETITEMSTATE
:
5616 return TREEVIEW_GetItemState(infoPtr
, (HTREEITEM
)wParam
, (UINT
)lParam
);
5618 case TVM_GETLINECOLOR
:
5619 return TREEVIEW_GetLineColor(infoPtr
);
5621 case TVM_GETNEXTITEM
:
5622 return TREEVIEW_GetNextItem(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
5624 case TVM_GETSCROLLTIME
:
5625 return TREEVIEW_GetScrollTime(infoPtr
);
5627 case TVM_GETTEXTCOLOR
:
5628 return TREEVIEW_GetTextColor(infoPtr
);
5630 case TVM_GETTOOLTIPS
:
5631 return TREEVIEW_GetToolTips(infoPtr
);
5633 case TVM_GETUNICODEFORMAT
:
5634 return TREEVIEW_GetUnicodeFormat(infoPtr
);
5636 case TVM_GETVISIBLECOUNT
:
5637 return TREEVIEW_GetVisibleCount(infoPtr
);
5640 return TREEVIEW_HitTest(infoPtr
, (LPTVHITTESTINFO
)lParam
);
5642 case TVM_INSERTITEMA
:
5643 case TVM_INSERTITEMW
:
5644 return TREEVIEW_InsertItemT(infoPtr
, (LPTVINSERTSTRUCTW
)lParam
,
5645 uMsg
== TVM_INSERTITEMW
);
5646 case TVM_SELECTITEM
:
5647 return TREEVIEW_SelectItem(infoPtr
, (INT
)wParam
, (HTREEITEM
)lParam
);
5649 case TVM_SETBKCOLOR
:
5650 return TREEVIEW_SetBkColor(infoPtr
, (COLORREF
)lParam
);
5652 case TVM_SETIMAGELIST
:
5653 return TREEVIEW_SetImageList(infoPtr
, wParam
, (HIMAGELIST
)lParam
);
5656 return TREEVIEW_SetIndent(infoPtr
, (UINT
)wParam
);
5658 case TVM_SETINSERTMARK
:
5659 return TREEVIEW_SetInsertMark(infoPtr
, (BOOL
)wParam
, (HTREEITEM
)lParam
);
5661 case TVM_SETINSERTMARKCOLOR
:
5662 return TREEVIEW_SetInsertMarkColor(infoPtr
, (COLORREF
)lParam
);
5666 return TREEVIEW_SetItemT(infoPtr
, (LPTVITEMEXW
)lParam
,
5667 uMsg
== TVM_SETITEMW
);
5668 case TVM_SETLINECOLOR
:
5669 return TREEVIEW_SetLineColor(infoPtr
, (COLORREF
)lParam
);
5671 case TVM_SETITEMHEIGHT
:
5672 return TREEVIEW_SetItemHeight(infoPtr
, (INT
)(SHORT
)wParam
);
5674 case TVM_SETSCROLLTIME
:
5675 return TREEVIEW_SetScrollTime(infoPtr
, (UINT
)wParam
);
5677 case TVM_SETTEXTCOLOR
:
5678 return TREEVIEW_SetTextColor(infoPtr
, (COLORREF
)lParam
);
5680 case TVM_SETTOOLTIPS
:
5681 return TREEVIEW_SetToolTips(infoPtr
, (HWND
)wParam
);
5683 case TVM_SETUNICODEFORMAT
:
5684 return TREEVIEW_SetUnicodeFormat(infoPtr
, (BOOL
)wParam
);
5686 case TVM_SORTCHILDREN
:
5687 return TREEVIEW_SortChildren(infoPtr
, lParam
);
5689 case TVM_SORTCHILDRENCB
:
5690 return TREEVIEW_SortChildrenCB(infoPtr
, (LPTVSORTCB
)lParam
);
5693 return TREEVIEW_ProcessLetterKeys(infoPtr
, wParam
, lParam
);
5696 return TREEVIEW_Command(infoPtr
, wParam
, lParam
);
5699 return TREEVIEW_Destroy(infoPtr
);
5704 return TREEVIEW_EraseBackground(infoPtr
, (HDC
)wParam
);
5707 return DLGC_WANTARROWS
| DLGC_WANTCHARS
;
5710 return TREEVIEW_GetFont(infoPtr
);
5713 return TREEVIEW_HScroll(infoPtr
, wParam
);
5716 return TREEVIEW_KeyDown(infoPtr
, wParam
);
5719 return TREEVIEW_KillFocus(infoPtr
);
5721 case WM_LBUTTONDBLCLK
:
5722 return TREEVIEW_LButtonDoubleClick(infoPtr
, lParam
);
5724 case WM_LBUTTONDOWN
:
5725 return TREEVIEW_LButtonDown(infoPtr
, lParam
);
5727 /* WM_MBUTTONDOWN */
5730 return TREEVIEW_MouseLeave(infoPtr
);
5733 return TREEVIEW_MouseMove(infoPtr
, lParam
);
5735 case WM_NCLBUTTONDOWN
:
5736 if (infoPtr
->hwndEdit
)
5737 SetFocus(infoPtr
->hwnd
);
5741 return TREEVIEW_NCPaint (infoPtr
, (HRGN
)wParam
, lParam
);
5744 return TREEVIEW_Notify(infoPtr
, wParam
, lParam
);
5746 case WM_NOTIFYFORMAT
:
5747 return TREEVIEW_NotifyFormat(infoPtr
, (HWND
)wParam
, (UINT
)lParam
);
5749 case WM_PRINTCLIENT
:
5750 return TREEVIEW_PrintClient(infoPtr
, (HDC
)wParam
, lParam
);
5753 return TREEVIEW_Paint(infoPtr
, (HDC
)wParam
);
5755 case WM_RBUTTONDOWN
:
5756 return TREEVIEW_RButtonDown(infoPtr
, lParam
);
5759 return TREEVIEW_SetCursor(infoPtr
, wParam
, lParam
);
5762 return TREEVIEW_SetFocus(infoPtr
);
5765 return TREEVIEW_SetFont(infoPtr
, (HFONT
)wParam
, (BOOL
)lParam
);
5768 return TREEVIEW_SetRedraw(infoPtr
, wParam
);
5771 return TREEVIEW_Size(infoPtr
, wParam
, lParam
);
5773 case WM_STYLECHANGED
:
5774 return TREEVIEW_StyleChanged(infoPtr
, wParam
, lParam
);
5776 case WM_SYSCOLORCHANGE
:
5777 COMCTL32_RefreshSysColors();
5783 return TREEVIEW_HandleTimer(infoPtr
, wParam
);
5785 case WM_THEMECHANGED
:
5786 return TREEVIEW_ThemeChanged (infoPtr
);
5789 return TREEVIEW_VScroll(infoPtr
, wParam
);
5791 /* WM_WININICHANGE */
5794 return TREEVIEW_MouseWheel(infoPtr
, wParam
, lParam
);
5797 TRACE("drawItem\n");
5801 /* This mostly catches MFC and Delphi messages. :( */
5802 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
5803 TRACE("Unknown msg %04x wp=%08lx lp=%08lx\n", uMsg
, wParam
, lParam
);
5805 return DefWindowProcW(hwnd
, uMsg
, wParam
, lParam
);
5810 /* Class Registration ***************************************************/
5813 TREEVIEW_Register(void)
5819 ZeroMemory(&wndClass
, sizeof(WNDCLASSW
));
5820 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
5821 wndClass
.lpfnWndProc
= TREEVIEW_WindowProc
;
5822 wndClass
.cbClsExtra
= 0;
5823 wndClass
.cbWndExtra
= sizeof(TREEVIEW_INFO
*);
5825 wndClass
.hCursor
= LoadCursorW(0, (LPWSTR
)IDC_ARROW
);
5826 wndClass
.hbrBackground
= 0;
5827 wndClass
.lpszClassName
= WC_TREEVIEWW
;
5829 RegisterClassW(&wndClass
);
5834 TREEVIEW_Unregister(void)
5836 UnregisterClassW(WC_TREEVIEWW
, NULL
);
5840 /* Tree Verification ****************************************************/
5843 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
);
5845 static inline void TREEVIEW_VerifyItemCommon(TREEVIEW_INFO
*infoPtr
,
5846 const TREEVIEW_ITEM
*item
)
5848 assert(infoPtr
!= NULL
);
5849 assert(item
!= NULL
);
5851 /* both NULL, or both non-null */
5852 assert((item
->firstChild
== NULL
) == (item
->lastChild
== NULL
));
5854 assert(item
->firstChild
!= item
);
5855 assert(item
->lastChild
!= item
);
5857 if (item
->firstChild
)
5859 assert(item
->firstChild
->parent
== item
);
5860 assert(item
->firstChild
->prevSibling
== NULL
);
5863 if (item
->lastChild
)
5865 assert(item
->lastChild
->parent
== item
);
5866 assert(item
->lastChild
->nextSibling
== NULL
);
5869 assert(item
->nextSibling
!= item
);
5870 if (item
->nextSibling
)
5872 assert(item
->nextSibling
->parent
== item
->parent
);
5873 assert(item
->nextSibling
->prevSibling
== item
);
5876 assert(item
->prevSibling
!= item
);
5877 if (item
->prevSibling
)
5879 assert(item
->prevSibling
->parent
== item
->parent
);
5880 assert(item
->prevSibling
->nextSibling
== item
);
5885 TREEVIEW_VerifyItem(TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
)
5887 assert(item
!= NULL
);
5889 assert(item
->parent
!= NULL
);
5890 assert(item
->parent
!= item
);
5891 assert(item
->iLevel
== item
->parent
->iLevel
+ 1);
5893 assert(DPA_GetPtrIndex(infoPtr
->items
, item
) != -1);
5895 TREEVIEW_VerifyItemCommon(infoPtr
, item
);
5897 TREEVIEW_VerifyChildren(infoPtr
, item
);
5901 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, const TREEVIEW_ITEM
*item
)
5903 const TREEVIEW_ITEM
*child
;
5904 assert(item
!= NULL
);
5906 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
5907 TREEVIEW_VerifyItem(infoPtr
, child
);
5911 TREEVIEW_VerifyRoot(TREEVIEW_INFO
*infoPtr
)
5913 TREEVIEW_ITEM
*root
= infoPtr
->root
;
5915 assert(root
!= NULL
);
5916 assert(root
->iLevel
== -1);
5917 assert(root
->parent
== NULL
);
5918 assert(root
->prevSibling
== NULL
);
5920 TREEVIEW_VerifyItemCommon(infoPtr
, root
);
5922 TREEVIEW_VerifyChildren(infoPtr
, root
);
5926 TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
)
5928 if (!TRACE_ON(treeview
)) return;
5930 assert(infoPtr
!= NULL
);
5931 TREEVIEW_VerifyRoot(infoPtr
);