3 * Copyright 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
4 * Copyright 1998,1999 Alex Priem <alexp@sci.kun.nl>
5 * Copyright 1999 Sylvain St-Germain
7 * Note that TREEVIEW_INFO * and HTREEITEM are the same thing.
9 * Note2: All items always! have valid (allocated) pszText field.
10 * If item's text == LPSTR_TEXTCALLBACKA we allocate buffer
11 * of size TEXT_CALLBACK_SIZE in DoSetItem.
12 * We use callbackMask to keep track of fields to be updated.
15 * missing notifications: NM_SETCURSOR, TVN_GETINFOTIP, TVN_KEYDOWN,
16 * TVN_SETDISPINFO, TVN_SINGLEEXPAND
18 * missing styles: TVS_FULLROWSELECT, TVS_INFOTIP, TVS_NOSCROLL,
19 * TVS_RTLREADING, TVS_TRACKSELECT
21 * missing item styles: TVIS_CUT, TVIS_EXPANDPARTIAL
23 * Make the insertion mark look right.
24 * Scroll (instead of repaint) as much as possible.
37 #include "debugtools.h"
39 /* internal structures */
41 typedef struct _TREEITEM
/* HTREEITEM is a _TREEINFO *. */
52 int iIntegral
; /* item height multiplier (1 is normal) */
53 int iLevel
; /* indentation level:0=root level */
54 HTREEITEM parent
; /* handle to parent or 0 if at root*/
55 HTREEITEM firstChild
; /* handle to first child or 0 if no child*/
57 HTREEITEM prevSibling
; /* handle to prev item in list, 0 if first */
58 HTREEITEM nextSibling
; /* handle to next item in list, 0 if last */
64 LONG textWidth
; /* horizontal text extent for pszText */
65 LONG visibleOrder
; /* visible ordering, 0 is first visible item */
69 typedef struct tagTREEVIEW_INFO
72 HWND hwndNotify
; /* Owner window to send notifications to */
77 UINT uNumItems
; /* number of valid TREEVIEW_ITEMs */
78 INT cdmode
; /* last custom draw setting */
79 UINT uScrollTime
; /* max. time for scrolling in milliseconds */
80 BOOL bRedraw
; /* if FALSE we validate but don't redraw in TREEVIEW_Paint() */
82 UINT uItemHeight
; /* item height */
85 LONG clientWidth
; /* width of control window */
86 LONG clientHeight
; /* height of control window */
88 LONG treeWidth
; /* width of visible tree items */
89 LONG treeHeight
; /* height of visible tree items */
91 UINT uIndent
; /* indentation in pixels */
92 HTREEITEM selectedItem
; /* handle to selected item or 0 if none */
93 HTREEITEM hotItem
; /* handle currently under cursor, 0 if none */
94 HTREEITEM focusedItem
; /* item that was under the cursor when WM_LBUTTONDOWN was received */
96 HTREEITEM firstVisible
; /* handle to first visible item */
98 HTREEITEM dropItem
; /* handle to item selected by drag cursor */
99 HTREEITEM insertMarkItem
; /* item after which insertion mark is placed */
100 BOOL insertBeforeorAfter
; /* flag used by TVM_SETINSERTMARK */
101 HIMAGELIST dragList
; /* Bitmap of dragged item */
106 COLORREF clrInsertMark
;
112 WNDPROC wpEditOrig
; /* orig window proc for subclassing edit */
113 BOOL bIgnoreEditKillFocus
;
116 HIMAGELIST himlNormal
;
117 int normalImageHeight
;
118 int normalImageWidth
;
119 HIMAGELIST himlState
;
120 int stateImageHeight
;
124 DWORD lastKeyPressTimestamp
; /* Added */
125 WPARAM charCode
; /* Added */
126 INT nSearchParamLength
; /* Added */
127 CHAR szSearchParam
[ MAX_PATH
]; /* Added */
131 /******** Defines that TREEVIEW_ProcessLetterKeys uses ****************/
132 #define KEY_DELAY 450
134 /* bitflags for infoPtr->uInternalStatus */
136 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */
137 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */
138 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */
139 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */
140 #define TV_RDRAG 0x10 /* dito Rbutton */
141 #define TV_RDRAGGING 0x20
143 /* bitflags for infoPtr->timer */
145 #define TV_EDIT_TIMER 2
146 #define TV_EDIT_TIMER_SET 2
149 VOID
TREEVIEW_Register (VOID
);
150 VOID
TREEVIEW_Unregister (VOID
);
153 DEFAULT_DEBUG_CHANNEL(treeview
);
156 #define TEXT_CALLBACK_SIZE 260
158 #define TREEVIEW_LEFT_MARGIN 8
160 #define MINIMUM_INDENT 19
162 #define CALLBACK_MASK_ALL (TVIF_TEXT|TVIF_CHILDREN|TVIF_IMAGE|TVIF_SELECTEDIMAGE)
164 #define STATEIMAGEINDEX(x) (((x) >> 12) & 0x0f)
165 #define OVERLAYIMAGEINDEX(x) (((x) >> 8) & 0x0f)
166 #define ISVISIBLE(x) ((x)->visibleOrder >= 0)
169 typedef VOID (*TREEVIEW_ItemEnumFunc
)(TREEVIEW_INFO
*, TREEVIEW_ITEM
*,LPVOID
);
172 static VOID
TREEVIEW_Invalidate(TREEVIEW_INFO
*, TREEVIEW_ITEM
*);
174 static LRESULT
TREEVIEW_DoSelectItem(TREEVIEW_INFO
*, INT
, HTREEITEM
, INT
);
175 static VOID
TREEVIEW_SetFirstVisible(TREEVIEW_INFO
*, TREEVIEW_ITEM
*, BOOL
);
176 static LRESULT
TREEVIEW_EnsureVisible(TREEVIEW_INFO
*, HTREEITEM
, BOOL
);
177 static LRESULT
TREEVIEW_RButtonUp(TREEVIEW_INFO
*, LPPOINT
);
178 static LRESULT
TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
);
179 static VOID
TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
);
180 static LRESULT
TREEVIEW_HScroll(TREEVIEW_INFO
*, WPARAM
);
183 /* Random Utilities *****************************************************/
187 TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
)
192 /* The definition is at the end of the file. */
193 static void TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
);
196 /* Returns the treeview private data if hwnd is a treeview.
197 * Otherwise returns an undefined value. */
198 static TREEVIEW_INFO
*
199 TREEVIEW_GetInfoPtr(HWND hwnd
)
201 return (TREEVIEW_INFO
*)GetWindowLongA(hwnd
, 0);
204 /* Don't call this. Nothing wants an item index. */
206 TREEVIEW_GetItemIndex(TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
208 assert(infoPtr
!= NULL
);
210 return DPA_GetPtrIndex(infoPtr
->items
, handle
);
213 /***************************************************************************
214 * This method checks that handle is an item for this tree.
217 TREEVIEW_ValidItem(TREEVIEW_INFO
*infoPtr
, HTREEITEM handle
)
219 if (TREEVIEW_GetItemIndex(infoPtr
, handle
) == -1)
221 TRACE("invalid item %p\n", handle
);
229 TREEVIEW_CreateBoldFont(HFONT hOrigFont
)
233 GetObjectA(hOrigFont
, sizeof(font
), &font
);
234 font
.lfWeight
= FW_BOLD
;
235 return CreateFontIndirectA(&font
);
239 TREEVIEW_FontForItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
241 return (item
->state
& TVIS_BOLD
) ? infoPtr
->hBoldFont
: infoPtr
->hFont
;
244 /* for trace/debugging purposes only */
246 TREEVIEW_ItemName(TREEVIEW_ITEM
*item
)
248 if (item
== NULL
) return "<null item>";
249 if (item
->pszText
== LPSTR_TEXTCALLBACKA
) return "<callback>";
250 if (item
->pszText
== NULL
) return "<null>";
251 return item
->pszText
;
254 /* An item is not a child of itself. */
256 TREEVIEW_IsChildOf(TREEVIEW_ITEM
*parent
, TREEVIEW_ITEM
*child
)
260 child
= child
->parent
;
261 if (child
== parent
) return TRUE
;
262 } while (child
!= NULL
);
268 /* Tree Traversal *******************************************************/
270 /***************************************************************************
271 * This method returns the last expanded sibling or child child item
274 static TREEVIEW_ITEM
*
275 TREEVIEW_GetLastListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
280 while (wineItem
->lastChild
)
282 if (wineItem
->state
& TVIS_EXPANDED
)
283 wineItem
= wineItem
->lastChild
;
288 if (wineItem
== infoPtr
->root
)
294 /***************************************************************************
295 * This method returns the previous non-hidden item in the list not
296 * considering the tree hierarchy.
298 static TREEVIEW_ITEM
*
299 TREEVIEW_GetPrevListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*tvItem
)
301 if (tvItem
->prevSibling
)
303 /* This item has a prevSibling, get the last item in the sibling's tree. */
304 TREEVIEW_ITEM
*upItem
= tvItem
->prevSibling
;
306 if ((upItem
->state
& TVIS_EXPANDED
) && upItem
->lastChild
!= NULL
)
307 return TREEVIEW_GetLastListItem(infoPtr
, upItem
->lastChild
);
313 /* this item does not have a prevSibling, get the parent */
314 return (tvItem
->parent
!= infoPtr
->root
) ? tvItem
->parent
: NULL
;
319 /***************************************************************************
320 * This method returns the next physical item in the treeview not
321 * considering the tree hierarchy.
323 static TREEVIEW_ITEM
*
324 TREEVIEW_GetNextListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*tvItem
)
326 assert(tvItem
!= NULL
);
329 * If this item has children and is expanded, return the first child
331 if ((tvItem
->state
& TVIS_EXPANDED
) && tvItem
->firstChild
!= NULL
)
333 return tvItem
->firstChild
;
338 * try to get the sibling
340 if (tvItem
->nextSibling
)
341 return tvItem
->nextSibling
;
344 * Otherwise, get the parent's sibling.
346 while (tvItem
->parent
)
348 tvItem
= tvItem
->parent
;
350 if (tvItem
->nextSibling
)
351 return tvItem
->nextSibling
;
357 /***************************************************************************
358 * This method returns the nth item starting at the given item. It returns
359 * the last item (or first) we we run out of items.
361 * Will scroll backward if count is <0.
362 * forward if count is >0.
364 static TREEVIEW_ITEM
*
365 TREEVIEW_GetListItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
368 TREEVIEW_ITEM
*(*next_item
)(TREEVIEW_INFO
*, TREEVIEW_ITEM
*);
369 TREEVIEW_ITEM
*previousItem
;
371 assert(wineItem
!= NULL
);
375 next_item
= TREEVIEW_GetNextListItem
;
380 next_item
= TREEVIEW_GetPrevListItem
;
387 previousItem
= wineItem
;
388 wineItem
= next_item(infoPtr
, wineItem
);
390 } while (--count
&& wineItem
!= NULL
);
393 return wineItem
? wineItem
: previousItem
;
396 /* Notifications ************************************************************/
399 TREEVIEW_SendSimpleNotify(TREEVIEW_INFO
*infoPtr
, UINT code
)
402 HWND hwnd
= infoPtr
->hwnd
;
405 nmhdr
.hwndFrom
= hwnd
;
406 nmhdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
409 return (BOOL
)SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
,
410 (WPARAM
)nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
414 TREEVIEW_TVItemFromItem(UINT mask
, TVITEMA
*tvItem
, TREEVIEW_ITEM
*item
)
417 tvItem
->hItem
= item
;
418 tvItem
->state
= item
->state
;
419 tvItem
->stateMask
= 0;
420 tvItem
->iImage
= item
->iImage
;
421 tvItem
->pszText
= item
->pszText
;
422 tvItem
->cchTextMax
= item
->cchTextMax
;
423 tvItem
->iImage
= item
->iImage
;
424 tvItem
->iSelectedImage
= item
->iSelectedImage
;
425 tvItem
->cChildren
= item
->cChildren
;
426 tvItem
->lParam
= item
->lParam
;
430 TREEVIEW_SendTreeviewNotify(TREEVIEW_INFO
*infoPtr
, UINT code
, UINT action
,
431 UINT mask
, HTREEITEM oldItem
, HTREEITEM newItem
)
433 HWND hwnd
= infoPtr
->hwnd
;
436 TRACE("code:%x action:%x olditem:%p newitem:%p\n",
437 code
, action
, oldItem
, newItem
);
439 ZeroMemory(&nmhdr
, sizeof(NMTREEVIEWA
));
441 nmhdr
.hdr
.hwndFrom
= hwnd
;
442 nmhdr
.hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
443 nmhdr
.hdr
.code
= code
;
444 nmhdr
.action
= action
;
447 TREEVIEW_TVItemFromItem(mask
, &nmhdr
.itemOld
, oldItem
);
450 TREEVIEW_TVItemFromItem(mask
, &nmhdr
.itemNew
, newItem
);
455 return (BOOL
)SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
,
456 (WPARAM
)GetWindowLongA(hwnd
, GWL_ID
),
461 TREEVIEW_SendTreeviewDnDNotify(TREEVIEW_INFO
*infoPtr
, UINT code
,
462 HTREEITEM dragItem
, POINT pt
)
464 HWND hwnd
= infoPtr
->hwnd
;
467 TRACE("code:%x dragitem:%p\n", code
, dragItem
);
469 nmhdr
.hdr
.hwndFrom
= hwnd
;
470 nmhdr
.hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
471 nmhdr
.hdr
.code
= code
;
473 nmhdr
.itemNew
.mask
= TVIF_STATE
| TVIF_PARAM
| TVIF_HANDLE
;
474 nmhdr
.itemNew
.hItem
= dragItem
;
475 nmhdr
.itemNew
.state
= dragItem
->state
;
476 nmhdr
.itemNew
.lParam
= dragItem
->lParam
;
478 nmhdr
.ptDrag
.x
= pt
.x
;
479 nmhdr
.ptDrag
.y
= pt
.y
;
481 return (BOOL
)SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
,
482 (WPARAM
)GetWindowLongA(hwnd
, GWL_ID
),
488 TREEVIEW_SendCustomDrawNotify(TREEVIEW_INFO
*infoPtr
, DWORD dwDrawStage
,
491 HWND hwnd
= infoPtr
->hwnd
;
492 NMTVCUSTOMDRAW nmcdhdr
;
495 TRACE("drawstage:%lx hdc:%x\n", dwDrawStage
, hdc
);
497 nmcd
= &nmcdhdr
.nmcd
;
498 nmcd
->hdr
.hwndFrom
= hwnd
;
499 nmcd
->hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
500 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
501 nmcd
->dwDrawStage
= dwDrawStage
;
504 nmcd
->dwItemSpec
= 0;
505 nmcd
->uItemState
= 0;
506 nmcd
->lItemlParam
= 0;
507 nmcdhdr
.clrText
= infoPtr
->clrText
;
508 nmcdhdr
.clrTextBk
= infoPtr
->clrBk
;
511 return (BOOL
)SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
,
512 (WPARAM
)GetWindowLongA(hwnd
, GWL_ID
),
518 /* FIXME: need to find out when the flags in uItemState need to be set */
521 TREEVIEW_SendCustomDrawItemNotify(TREEVIEW_INFO
*infoPtr
, HDC hdc
,
522 TREEVIEW_ITEM
*wineItem
, UINT uItemDrawState
)
524 HWND hwnd
= infoPtr
->hwnd
;
525 NMTVCUSTOMDRAW nmcdhdr
;
527 DWORD dwDrawStage
, dwItemSpec
;
531 dwDrawStage
= CDDS_ITEM
| uItemDrawState
;
532 dwItemSpec
= (DWORD
)wineItem
;
534 if (wineItem
->state
& TVIS_SELECTED
)
535 uItemState
|= CDIS_SELECTED
;
536 if (wineItem
== infoPtr
->selectedItem
)
537 uItemState
|= CDIS_FOCUS
;
538 if (wineItem
== infoPtr
->hotItem
)
539 uItemState
|= CDIS_HOT
;
541 nmcd
= &nmcdhdr
.nmcd
;
542 nmcd
->hdr
.hwndFrom
= hwnd
;
543 nmcd
->hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
544 nmcd
->hdr
.code
= NM_CUSTOMDRAW
;
545 nmcd
->dwDrawStage
= dwDrawStage
;
547 nmcd
->rc
= wineItem
->rect
;
548 nmcd
->dwItemSpec
= dwItemSpec
;
549 nmcd
->uItemState
= uItemState
;
550 nmcd
->lItemlParam
= wineItem
->lParam
;
551 nmcdhdr
.clrText
= infoPtr
->clrText
;
552 nmcdhdr
.clrTextBk
= infoPtr
->clrBk
;
553 nmcdhdr
.iLevel
= wineItem
->iLevel
;
555 TRACE("drawstage:%lx hdc:%x item:%lx, itemstate:%x, lItemlParam:%lx\n",
556 nmcd
->dwDrawStage
, nmcd
->hdc
, nmcd
->dwItemSpec
,
557 nmcd
->uItemState
, nmcd
->lItemlParam
);
559 retval
= SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
,
560 (WPARAM
)GetWindowLongA(hwnd
, GWL_ID
),
563 infoPtr
->clrText
= nmcdhdr
.clrText
;
564 infoPtr
->clrBk
= nmcdhdr
.clrTextBk
;
569 TREEVIEW_BeginLabelEditNotify(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*editItem
)
571 HWND hwnd
= infoPtr
->hwnd
;
574 tvdi
.hdr
.hwndFrom
= hwnd
;
575 tvdi
.hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
576 tvdi
.hdr
.code
= TVN_BEGINLABELEDITA
;
578 tvdi
.item
.mask
= TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
| TVIF_TEXT
;
579 tvdi
.item
.hItem
= editItem
;
580 tvdi
.item
.state
= editItem
->state
;
581 tvdi
.item
.lParam
= editItem
->lParam
;
582 tvdi
.item
.pszText
= editItem
->pszText
;
583 tvdi
.item
.cchTextMax
= editItem
->cchTextMax
;
585 return SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
, tvdi
.hdr
.idFrom
,
590 TREEVIEW_UpdateDispInfo(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
593 NMTVDISPINFOA callback
;
594 HWND hwnd
= infoPtr
->hwnd
;
596 mask
&= wineItem
->callbackMask
;
598 if (mask
== 0) return;
600 callback
.hdr
.hwndFrom
= hwnd
;
601 callback
.hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
602 callback
.hdr
.code
= TVN_GETDISPINFOA
;
604 /* 'state' always contains valid value, as well as 'lParam'.
605 * All other parameters are uninitialized.
607 callback
.item
.pszText
= wineItem
->pszText
;
608 callback
.item
.cchTextMax
= wineItem
->cchTextMax
;
609 callback
.item
.mask
= mask
;
610 callback
.item
.hItem
= wineItem
;
611 callback
.item
.state
= wineItem
->state
;
612 callback
.item
.lParam
= wineItem
->lParam
;
614 /* If text is changed we need to recalculate textWidth */
615 if (mask
& TVIF_TEXT
)
616 wineItem
->textWidth
= 0;
618 SendMessageA(infoPtr
->hwndNotify
, WM_NOTIFY
, callback
.hdr
.idFrom
, (LPARAM
)&callback
);
620 /* It may have changed due to a call to SetItem. */
621 mask
&= wineItem
->callbackMask
;
623 if ((mask
& TVIF_TEXT
) && callback
.item
.pszText
!= wineItem
->pszText
)
625 /* Instead of copying text into our buffer user specified its own */
626 int len
= max(lstrlenA(callback
.item
.pszText
) + 1, TEXT_CALLBACK_SIZE
);
627 LPSTR newText
= COMCTL32_ReAlloc(wineItem
->pszText
, len
);
631 wineItem
->pszText
= newText
;
632 strcpy(wineItem
->pszText
, callback
.item
.pszText
);
633 wineItem
->cchTextMax
= len
;
635 /* If ReAlloc fails we have nothing to do, but keep original text */
638 if (mask
& TVIF_IMAGE
)
639 wineItem
->iImage
= callback
.item
.iImage
;
641 if (mask
& TVIF_SELECTEDIMAGE
)
642 wineItem
->iSelectedImage
= callback
.item
.iSelectedImage
;
644 if (mask
& TVIF_CHILDREN
)
645 wineItem
->cChildren
= callback
.item
.cChildren
;
647 /* These members are now permanently set. */
648 if (callback
.item
.mask
& TVIF_DI_SETITEM
)
649 wineItem
->callbackMask
&= ~callback
.item
.mask
;
652 /***************************************************************************
653 * This function uses cChildren field to decide whether the item has
655 * Note: if this returns TRUE, the child items may not actually exist,
656 * they could be virtual.
658 * Just use wineItem->firstChild to check for physical children.
661 TREEVIEW_HasChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
663 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_CHILDREN
);
665 return wineItem
->cChildren
> 0;
669 /* Item Position ********************************************************/
671 /* Compute linesOffset, stateOffset, imageOffset, textOffset of an item. */
673 TREEVIEW_ComputeItemInternalMetrics(TREEVIEW_INFO
*infoPtr
,
676 /* Same effect, different optimisation. */
678 BOOL lar
= ((infoPtr
->dwStyle
& TVS_LINESATROOT
)
679 && (infoPtr
->dwStyle
& (TVS_HASLINES
|TVS_HASBUTTONS
)));
681 BOOL lar
= ((infoPtr
->dwStyle
682 & (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
686 item
->linesOffset
= infoPtr
->uIndent
* (item
->iLevel
+ lar
- 1)
688 item
->stateOffset
= item
->linesOffset
+ infoPtr
->uIndent
;
689 item
->imageOffset
= item
->stateOffset
690 + (STATEIMAGEINDEX(item
->state
) ? infoPtr
->stateImageWidth
: 0);
691 item
->textOffset
= item
->imageOffset
+ infoPtr
->normalImageWidth
;
695 TREEVIEW_ComputeTextWidth(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
, HDC hDC
)
701 /* DRAW's OM docker creates items like this */
702 if (item
->pszText
== NULL
)
708 if (item
->textWidth
!= 0 && !(item
->callbackMask
& TVIF_TEXT
))
717 hdc
= GetDC(infoPtr
->hwnd
);
718 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, item
));
721 GetTextExtentPoint32A(hdc
, item
->pszText
, strlen(item
->pszText
), &sz
);
722 item
->textWidth
= sz
.cx
;
726 SelectObject(hdc
, hOldFont
);
732 TREEVIEW_ComputeItemRect(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
734 item
->rect
.top
= infoPtr
->uItemHeight
*
735 (item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
);
737 item
->rect
.bottom
= item
->rect
.top
738 + infoPtr
->uItemHeight
* item
->iIntegral
- 1;
741 item
->rect
.right
= infoPtr
->clientWidth
;
744 /* We know that only items after start need their order updated. */
746 TREEVIEW_RecalculateVisibleOrder(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*start
)
753 start
= infoPtr
->root
->firstChild
;
757 order
= start
->visibleOrder
;
759 for (item
= start
; item
!= NULL
;
760 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
762 item
->visibleOrder
= order
;
763 order
+= item
->iIntegral
;
766 infoPtr
->maxVisibleOrder
= order
;
768 for (item
= start
; item
!= NULL
;
769 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
771 TREEVIEW_ComputeItemRect(infoPtr
, item
);
776 /* Update metrics of all items in selected subtree.
777 * root must be expanded
780 TREEVIEW_UpdateSubTree(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*root
)
782 TREEVIEW_ITEM
*sibling
;
786 if (!root
->firstChild
|| !(root
->state
& TVIS_EXPANDED
))
789 root
->state
&= ~TVIS_EXPANDED
;
790 sibling
= TREEVIEW_GetNextListItem(infoPtr
, root
);
791 root
->state
|= TVIS_EXPANDED
;
793 hdc
= GetDC(infoPtr
->hwnd
);
794 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
796 for (; root
!= sibling
;
797 root
= TREEVIEW_GetNextListItem(infoPtr
, root
))
799 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, root
);
801 if (root
->callbackMask
& TVIF_TEXT
)
802 TREEVIEW_UpdateDispInfo(infoPtr
, root
, TVIF_TEXT
);
804 if (root
->textWidth
== 0)
806 SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, root
));
807 TREEVIEW_ComputeTextWidth(infoPtr
, root
, hdc
);
811 SelectObject(hdc
, hOldFont
);
812 ReleaseDC(infoPtr
->hwnd
, hdc
);
815 /* Item Allocation **********************************************************/
817 static TREEVIEW_ITEM
*
818 TREEVIEW_AllocateItem(TREEVIEW_INFO
*infoPtr
)
820 TREEVIEW_ITEM
*newItem
= COMCTL32_Alloc(sizeof(TREEVIEW_ITEM
));
825 if (DPA_InsertPtr(infoPtr
->items
, INT_MAX
, newItem
) == -1)
827 COMCTL32_Free(newItem
);
834 /* Exact opposite of TREEVIEW_AllocateItem. In particular, it does not
835 * free item->pszText. */
837 TREEVIEW_FreeItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
839 DPA_DeletePtr(infoPtr
->items
, DPA_GetPtrIndex(infoPtr
->items
, item
));
841 if (infoPtr
->selectedItem
== item
)
842 infoPtr
->selectedItem
= NULL
;
846 /* Item Insertion *******************************************************/
848 /***************************************************************************
849 * This method inserts newItem before sibling as a child of parent.
850 * sibling can be NULL, but only if parent has no children.
853 TREEVIEW_InsertBefore(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
854 TREEVIEW_ITEM
*parent
)
856 assert(newItem
!= NULL
);
857 assert(parent
!= NULL
);
861 assert(sibling
->parent
== parent
);
863 if (sibling
->prevSibling
!= NULL
)
864 sibling
->prevSibling
->nextSibling
= newItem
;
866 newItem
->prevSibling
= sibling
->prevSibling
;
867 sibling
->prevSibling
= newItem
;
870 newItem
->prevSibling
= NULL
;
872 newItem
->nextSibling
= sibling
;
874 if (parent
->firstChild
== sibling
)
875 parent
->firstChild
= newItem
;
877 if (parent
->lastChild
== NULL
)
878 parent
->lastChild
= newItem
;
881 /***************************************************************************
882 * This method inserts newItem after sibling as a child of parent.
883 * sibling can be NULL, but only if parent has no children.
886 TREEVIEW_InsertAfter(TREEVIEW_ITEM
*newItem
, TREEVIEW_ITEM
*sibling
,
887 TREEVIEW_ITEM
*parent
)
889 assert(newItem
!= NULL
);
890 assert(parent
!= NULL
);
894 assert(sibling
->parent
== parent
);
896 if (sibling
->nextSibling
!= NULL
)
897 sibling
->nextSibling
->prevSibling
= newItem
;
899 newItem
->nextSibling
= sibling
->nextSibling
;
900 sibling
->nextSibling
= newItem
;
903 newItem
->nextSibling
= NULL
;
905 newItem
->prevSibling
= sibling
;
907 if (parent
->lastChild
== sibling
)
908 parent
->lastChild
= newItem
;
910 if (parent
->firstChild
== NULL
)
911 parent
->firstChild
= newItem
;
915 TREEVIEW_DoSetItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
916 const TVITEMEXA
*tvItem
)
918 UINT callbackClear
= 0;
919 UINT callbackSet
= 0;
921 /* Do this first in case it fails. */
922 if (tvItem
->mask
& TVIF_TEXT
)
924 wineItem
->textWidth
= 0; /* force width recalculation */
925 if (tvItem
->pszText
!= LPSTR_TEXTCALLBACKA
)
927 int len
= lstrlenA(tvItem
->pszText
) + 1;
928 LPSTR newText
= COMCTL32_ReAlloc(wineItem
->pszText
, len
);
930 if (newText
== NULL
) return FALSE
;
932 callbackClear
|= TVIF_TEXT
;
934 wineItem
->pszText
= newText
;
935 wineItem
->cchTextMax
= len
;
936 lstrcpynA(wineItem
->pszText
, tvItem
->pszText
, len
);
940 callbackSet
|= TVIF_TEXT
;
942 wineItem
->pszText
= COMCTL32_ReAlloc(wineItem
->pszText
,
944 wineItem
->cchTextMax
= TEXT_CALLBACK_SIZE
;
948 if (tvItem
->mask
& TVIF_CHILDREN
)
950 wineItem
->cChildren
= tvItem
->cChildren
;
952 if (wineItem
->cChildren
== I_CHILDRENCALLBACK
)
953 callbackSet
|= TVIF_CHILDREN
;
955 callbackClear
|= TVIF_CHILDREN
;
958 if (tvItem
->mask
& TVIF_IMAGE
)
960 wineItem
->iImage
= tvItem
->iImage
;
962 if (wineItem
->iImage
== I_IMAGECALLBACK
)
963 callbackSet
|= TVIF_IMAGE
;
965 callbackClear
|= TVIF_IMAGE
;
968 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
970 wineItem
->iSelectedImage
= tvItem
->iSelectedImage
;
972 if (wineItem
->iSelectedImage
== I_IMAGECALLBACK
)
973 callbackSet
|= TVIF_SELECTEDIMAGE
;
975 callbackClear
|= TVIF_SELECTEDIMAGE
;
978 if (tvItem
->mask
& TVIF_PARAM
)
979 wineItem
->lParam
= tvItem
->lParam
;
981 /* If the application sets TVIF_INTEGRAL without
982 * supplying a TVITEMEX structure, it's toast. */
983 if (tvItem
->mask
& TVIF_INTEGRAL
)
984 wineItem
->iIntegral
= tvItem
->iIntegral
;
986 if (tvItem
->mask
& TVIF_STATE
)
988 TRACE("prevstate,state,mask:%x,%x,%x\n", wineItem
->state
, tvItem
->state
,
990 wineItem
->state
&= ~tvItem
->stateMask
;
991 wineItem
->state
|= (tvItem
->state
& tvItem
->stateMask
);
994 wineItem
->callbackMask
|= callbackSet
;
995 wineItem
->callbackMask
&= ~callbackClear
;
1000 /* Note that the new item is pre-zeroed. */
1002 TREEVIEW_InsertItemA(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
1004 const TVINSERTSTRUCTA
*ptdi
= (LPTVINSERTSTRUCTA
) lParam
;
1005 const TVITEMEXA
*tvItem
= &ptdi
->DUMMYUNIONNAME
.itemex
;
1006 HTREEITEM insertAfter
;
1007 TREEVIEW_ITEM
*newItem
, *parentItem
;
1008 BOOL bTextUpdated
= FALSE
;
1010 if (ptdi
->hParent
== TVI_ROOT
|| ptdi
->hParent
== 0)
1012 parentItem
= infoPtr
->root
;
1016 parentItem
= ptdi
->hParent
;
1018 if (!TREEVIEW_ValidItem(infoPtr
, parentItem
))
1020 WARN("invalid parent %p\n", parentItem
);
1021 return (LRESULT
)(HTREEITEM
)NULL
;
1025 insertAfter
= ptdi
->hInsertAfter
;
1027 /* Validate this now for convenience. */
1028 switch ((DWORD
)insertAfter
)
1030 case (DWORD
)TVI_FIRST
:
1031 case (DWORD
)TVI_LAST
:
1032 case (DWORD
)TVI_SORT
:
1036 if (!TREEVIEW_ValidItem(infoPtr
, insertAfter
) ||
1037 insertAfter
->parent
!= parentItem
)
1039 WARN("invalid insert after %p\n", insertAfter
);
1040 insertAfter
= TVI_LAST
;
1044 TRACE("parent %p position %p: '%s'\n", parentItem
, insertAfter
,
1045 (tvItem
->mask
& TVIF_TEXT
)
1046 ? ((tvItem
->pszText
== LPSTR_TEXTCALLBACKA
) ? "<callback>"
1050 newItem
= TREEVIEW_AllocateItem(infoPtr
);
1051 if (newItem
== NULL
)
1052 return (LRESULT
)(HTREEITEM
)NULL
;
1054 newItem
->parent
= parentItem
;
1055 newItem
->iIntegral
= 1;
1057 if (!TREEVIEW_DoSetItem(infoPtr
, newItem
, tvItem
))
1058 return (LRESULT
)(HTREEITEM
)NULL
;
1060 /* After this point, nothing can fail. (Except for TVI_SORT.) */
1062 infoPtr
->uNumItems
++;
1064 switch ((DWORD
)insertAfter
)
1066 case (DWORD
)TVI_FIRST
:
1067 TREEVIEW_InsertBefore(newItem
, parentItem
->firstChild
, parentItem
);
1068 if (infoPtr
->firstVisible
== parentItem
->firstChild
)
1069 TREEVIEW_SetFirstVisible(infoPtr
, newItem
, TRUE
);
1072 case (DWORD
)TVI_LAST
:
1073 TREEVIEW_InsertAfter(newItem
, parentItem
->lastChild
, parentItem
);
1076 /* hInsertAfter names a specific item we want to insert after */
1078 TREEVIEW_InsertAfter(newItem
, insertAfter
, insertAfter
->parent
);
1081 case (DWORD
)TVI_SORT
:
1083 TREEVIEW_ITEM
*aChild
;
1084 TREEVIEW_ITEM
*previousChild
= NULL
;
1085 BOOL bItemInserted
= FALSE
;
1087 aChild
= parentItem
->firstChild
;
1089 bTextUpdated
= TRUE
;
1090 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1092 /* Iterate the parent children to see where we fit in */
1093 while (aChild
!= NULL
)
1097 TREEVIEW_UpdateDispInfo(infoPtr
, aChild
, TVIF_TEXT
);
1098 comp
= lstrcmpA(newItem
->pszText
, aChild
->pszText
);
1100 if (comp
< 0) /* we are smaller than the current one */
1102 TREEVIEW_InsertBefore(newItem
, aChild
, parentItem
);
1103 bItemInserted
= TRUE
;
1106 else if (comp
> 0) /* we are bigger than the current one */
1108 previousChild
= aChild
;
1110 /* This will help us to exit if there is no more sibling */
1111 aChild
= (aChild
->nextSibling
== 0)
1113 : aChild
->nextSibling
;
1115 /* Look at the next item */
1121 * An item with this name is already existing, therefore,
1122 * we add after the one we found
1124 TREEVIEW_InsertAfter(newItem
, aChild
, parentItem
);
1125 bItemInserted
= TRUE
;
1131 * we reach the end of the child list and the item has not
1132 * yet been inserted, therefore, insert it after the last child.
1134 if ((!bItemInserted
) && (aChild
== NULL
))
1135 TREEVIEW_InsertAfter(newItem
, previousChild
, parentItem
);
1142 TRACE("new item %p; parent %p, mask %x\n", newItem
,
1143 newItem
->parent
, tvItem
->mask
);
1145 newItem
->iLevel
= newItem
->parent
->iLevel
+ 1;
1147 if (newItem
->parent
->cChildren
== 0)
1148 newItem
->parent
->cChildren
= 1;
1150 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
1152 if (STATEIMAGEINDEX(newItem
->state
) == 0)
1153 newItem
->state
|= INDEXTOSTATEIMAGEMASK(1);
1156 if (infoPtr
->firstVisible
== NULL
)
1157 infoPtr
->firstVisible
= newItem
;
1159 TREEVIEW_VerifyTree(infoPtr
);
1161 if (parentItem
== infoPtr
->root
||
1162 (ISVISIBLE(parentItem
) && parentItem
->state
& TVIS_EXPANDED
))
1164 TREEVIEW_ITEM
*item
;
1165 TREEVIEW_ITEM
*prev
= TREEVIEW_GetPrevListItem(infoPtr
, newItem
);
1167 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1168 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, newItem
);
1171 TREEVIEW_UpdateDispInfo(infoPtr
, newItem
, TVIF_TEXT
);
1173 TREEVIEW_ComputeTextWidth(infoPtr
, newItem
, 0);
1174 TREEVIEW_UpdateScrollBars(infoPtr
);
1176 * if the item was inserted in a visible part of the tree,
1177 * invalidate it, as well as those after it
1179 for (item
= newItem
;
1181 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
1182 TREEVIEW_Invalidate(infoPtr
, item
);
1186 newItem
->visibleOrder
= -1;
1188 /* refresh treeview if newItem is the first item inserted under parentItem */
1189 if (ISVISIBLE(parentItem
) && newItem
->prevSibling
== newItem
->nextSibling
)
1191 /* parent got '+' - update it */
1192 TREEVIEW_Invalidate(infoPtr
, parentItem
);
1196 return (LRESULT
)newItem
;
1201 TREEVIEW_InsertItemW(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
1203 TVINSERTSTRUCTW
*tvisW
;
1204 TVINSERTSTRUCTA tvisA
;
1207 tvisW
= (LPTVINSERTSTRUCTW
) lParam
;
1209 tvisA
.hParent
= tvisW
->hParent
;
1210 tvisA
.hInsertAfter
= tvisW
->hInsertAfter
;
1212 tvisA
.DUMMYUNIONNAME
.item
.mask
= tvisW
->DUMMYUNIONNAME
.item
.mask
;
1213 tvisA
.DUMMYUNIONNAME
.item
.hItem
= tvisW
->DUMMYUNIONNAME
.item
.hItem
;
1214 tvisA
.DUMMYUNIONNAME
.item
.state
= tvisW
->DUMMYUNIONNAME
.item
.state
;
1215 tvisA
.DUMMYUNIONNAME
.item
.stateMask
= tvisW
->DUMMYUNIONNAME
.item
.stateMask
;
1216 tvisA
.DUMMYUNIONNAME
.item
.cchTextMax
=
1217 tvisW
->DUMMYUNIONNAME
.item
.cchTextMax
;
1219 if (tvisW
->DUMMYUNIONNAME
.item
.pszText
)
1221 if (tvisW
->DUMMYUNIONNAME
.item
.pszText
!= LPSTR_TEXTCALLBACKW
)
1223 int len
= WideCharToMultiByte( CP_ACP
, 0, tvisW
->DUMMYUNIONNAME
.item
.pszText
, -1,
1224 NULL
, 0, NULL
, NULL
);
1225 tvisA
.DUMMYUNIONNAME
.item
.pszText
= COMCTL32_Alloc(len
);
1226 WideCharToMultiByte( CP_ACP
, 0, tvisW
->DUMMYUNIONNAME
.item
.pszText
, -1,
1227 tvisA
.DUMMYUNIONNAME
.item
.pszText
, len
, NULL
, NULL
);
1231 tvisA
.DUMMYUNIONNAME
.item
.pszText
= LPSTR_TEXTCALLBACKA
;
1232 tvisA
.DUMMYUNIONNAME
.item
.cchTextMax
= 0;
1236 tvisA
.DUMMYUNIONNAME
.item
.iImage
= tvisW
->DUMMYUNIONNAME
.item
.iImage
;
1237 tvisA
.DUMMYUNIONNAME
.item
.iSelectedImage
=
1238 tvisW
->DUMMYUNIONNAME
.item
.iSelectedImage
;
1239 tvisA
.DUMMYUNIONNAME
.item
.cChildren
= tvisW
->DUMMYUNIONNAME
.item
.cChildren
;
1240 tvisA
.DUMMYUNIONNAME
.item
.lParam
= tvisW
->DUMMYUNIONNAME
.item
.lParam
;
1242 lRes
= TREEVIEW_InsertItemA(infoPtr
, (LPARAM
)&tvisA
);
1244 if (tvisA
.DUMMYUNIONNAME
.item
.pszText
!= LPSTR_TEXTCALLBACKA
)
1246 COMCTL32_Free(tvisA
.DUMMYUNIONNAME
.item
.pszText
);
1254 /* Item Deletion ************************************************************/
1256 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
);
1259 TREEVIEW_RemoveAllChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*parentItem
)
1261 TREEVIEW_ITEM
*kill
= parentItem
->firstChild
;
1263 while (kill
!= NULL
)
1265 TREEVIEW_ITEM
*next
= kill
->nextSibling
;
1267 TREEVIEW_RemoveItem(infoPtr
, kill
);
1272 assert(parentItem
->cChildren
<= 0); /* I_CHILDRENCALLBACK or 0 */
1273 assert(parentItem
->firstChild
== NULL
);
1274 assert(parentItem
->lastChild
== NULL
);
1278 TREEVIEW_UnlinkItem(TREEVIEW_ITEM
*item
)
1280 TREEVIEW_ITEM
*parentItem
= item
->parent
;
1282 assert(item
!= NULL
);
1283 assert(item
->parent
!= NULL
); /* i.e. it must not be the root */
1285 if (parentItem
->firstChild
== item
)
1286 parentItem
->firstChild
= item
->nextSibling
;
1288 if (parentItem
->lastChild
== item
)
1289 parentItem
->lastChild
= item
->prevSibling
;
1291 if (parentItem
->firstChild
== NULL
&& parentItem
->lastChild
== NULL
1292 && parentItem
->cChildren
> 0)
1293 parentItem
->cChildren
= 0;
1295 if (item
->prevSibling
)
1296 item
->prevSibling
->nextSibling
= item
->nextSibling
;
1298 if (item
->nextSibling
)
1299 item
->nextSibling
->prevSibling
= item
->prevSibling
;
1303 TREEVIEW_RemoveItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
)
1305 TRACE("%p, (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1307 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_DELETEITEMA
,
1308 TVIF_HANDLE
| TVIF_PARAM
, 0, wineItem
, 0);
1310 if (wineItem
->firstChild
)
1311 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
1313 TREEVIEW_UnlinkItem(wineItem
);
1315 infoPtr
->uNumItems
--;
1317 if (wineItem
->pszText
!= LPSTR_TEXTCALLBACKA
)
1318 COMCTL32_Free(wineItem
->pszText
);
1320 TREEVIEW_FreeItem(infoPtr
, wineItem
);
1324 /* Empty out the tree. */
1326 TREEVIEW_RemoveTree(TREEVIEW_INFO
*infoPtr
)
1328 TREEVIEW_RemoveAllChildren(infoPtr
, infoPtr
->root
);
1330 assert(infoPtr
->uNumItems
== 0); /* root isn't counted in uNumItems */
1334 TREEVIEW_DeleteItem(TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
)
1336 TREEVIEW_ITEM
*oldSelection
= infoPtr
->selectedItem
;
1337 TREEVIEW_ITEM
*newSelection
= oldSelection
;
1338 TREEVIEW_ITEM
*newFirstVisible
= NULL
;
1339 TREEVIEW_ITEM
*parent
, *prev
= NULL
;
1340 BOOL visible
= FALSE
;
1342 if (wineItem
== TVI_ROOT
)
1344 TRACE("TVI_ROOT\n");
1345 parent
= infoPtr
->root
;
1346 newSelection
= NULL
;
1348 TREEVIEW_RemoveTree(infoPtr
);
1352 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
1355 TRACE("%p (%s)\n", wineItem
, TREEVIEW_ItemName(wineItem
));
1356 parent
= wineItem
->parent
;
1358 if (ISVISIBLE(wineItem
))
1360 prev
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
1364 if (infoPtr
->selectedItem
!= NULL
1365 && (wineItem
== infoPtr
->selectedItem
1366 || TREEVIEW_IsChildOf(wineItem
, infoPtr
->selectedItem
)))
1368 if (wineItem
->nextSibling
)
1369 newSelection
= wineItem
->nextSibling
;
1370 else if (wineItem
->parent
!= infoPtr
->root
)
1371 newSelection
= wineItem
->parent
;
1374 if (infoPtr
->firstVisible
== wineItem
)
1376 if (wineItem
->nextSibling
)
1377 newFirstVisible
= wineItem
->nextSibling
;
1378 else if (wineItem
->prevSibling
)
1379 newFirstVisible
= wineItem
->prevSibling
;
1380 else if (wineItem
->parent
!= infoPtr
->root
)
1381 newFirstVisible
= wineItem
->parent
;
1384 newFirstVisible
= infoPtr
->firstVisible
;
1386 TREEVIEW_RemoveItem(infoPtr
, wineItem
);
1389 /* Don't change if somebody else already has. */
1390 if (oldSelection
== infoPtr
->selectedItem
)
1392 if (TREEVIEW_ValidItem(infoPtr
, newSelection
))
1393 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
, TVC_UNKNOWN
);
1395 infoPtr
->selectedItem
= 0;
1398 /* Validate insertMark dropItem.
1399 * hotItem ??? - used for comparison only.
1401 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->insertMarkItem
))
1402 infoPtr
->insertMarkItem
= 0;
1404 if (!TREEVIEW_ValidItem(infoPtr
, infoPtr
->dropItem
))
1405 infoPtr
->dropItem
= 0;
1407 if (!TREEVIEW_ValidItem(infoPtr
, newFirstVisible
))
1408 newFirstVisible
= infoPtr
->root
->firstChild
;
1410 TREEVIEW_VerifyTree(infoPtr
);
1415 TREEVIEW_RecalculateVisibleOrder(infoPtr
, prev
);
1416 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
1417 TREEVIEW_UpdateScrollBars(infoPtr
);
1418 TREEVIEW_Invalidate(infoPtr
, NULL
);
1420 else if (ISVISIBLE(parent
) && !TREEVIEW_HasChildren(infoPtr
, parent
))
1422 /* parent lost '+/-' - update it */
1423 TREEVIEW_Invalidate(infoPtr
, parent
);
1430 /* Get/Set Messages *********************************************************/
1432 TREEVIEW_SetRedraw(TREEVIEW_INFO
* infoPtr
, WPARAM wParam
, LPARAM lParam
)
1435 infoPtr
->bRedraw
= TRUE
;
1437 infoPtr
->bRedraw
= FALSE
;
1443 TREEVIEW_GetIndent(TREEVIEW_INFO
*infoPtr
)
1446 return infoPtr
->uIndent
;
1450 TREEVIEW_SetIndent(TREEVIEW_INFO
*infoPtr
, UINT newIndent
)
1454 if (newIndent
< MINIMUM_INDENT
)
1455 newIndent
= MINIMUM_INDENT
;
1457 if (infoPtr
->uIndent
!= newIndent
)
1459 infoPtr
->uIndent
= newIndent
;
1460 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1461 TREEVIEW_UpdateScrollBars(infoPtr
);
1462 TREEVIEW_Invalidate(infoPtr
, NULL
);
1470 TREEVIEW_GetToolTips(TREEVIEW_INFO
*infoPtr
)
1473 return infoPtr
->hwndToolTip
;
1477 TREEVIEW_SetToolTips(TREEVIEW_INFO
*infoPtr
, HWND hwndTT
)
1482 prevToolTip
= infoPtr
->hwndToolTip
;
1483 infoPtr
->hwndToolTip
= hwndTT
;
1490 TREEVIEW_GetScrollTime(TREEVIEW_INFO
*infoPtr
)
1492 return infoPtr
->uScrollTime
;
1496 TREEVIEW_SetScrollTime(TREEVIEW_INFO
*infoPtr
, UINT uScrollTime
)
1498 UINT uOldScrollTime
= infoPtr
->uScrollTime
;
1500 infoPtr
->uScrollTime
= min(uScrollTime
, 100);
1502 return uOldScrollTime
;
1507 TREEVIEW_GetImageList(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
1513 case (WPARAM
)TVSIL_NORMAL
:
1514 return (LRESULT
)infoPtr
->himlNormal
;
1516 case (WPARAM
)TVSIL_STATE
:
1517 return (LRESULT
)infoPtr
->himlState
;
1525 TREEVIEW_SetImageList(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, HIMAGELIST himlNew
)
1527 HIMAGELIST himlOld
= 0;
1528 int oldWidth
= infoPtr
->normalImageWidth
;
1529 int oldHeight
= infoPtr
->normalImageHeight
;
1532 TRACE("%x,%p\n", wParam
, himlNew
);
1536 case (WPARAM
)TVSIL_NORMAL
:
1537 himlOld
= infoPtr
->himlNormal
;
1538 infoPtr
->himlNormal
= himlNew
;
1540 if (himlNew
!= NULL
)
1541 ImageList_GetIconSize(himlNew
, &infoPtr
->normalImageWidth
,
1542 &infoPtr
->normalImageHeight
);
1545 infoPtr
->normalImageWidth
= 0;
1546 infoPtr
->normalImageHeight
= 0;
1551 case (WPARAM
)TVSIL_STATE
:
1552 himlOld
= infoPtr
->himlState
;
1553 infoPtr
->himlState
= himlNew
;
1555 if (himlNew
!= NULL
)
1556 ImageList_GetIconSize(himlNew
, &infoPtr
->stateImageWidth
,
1557 &infoPtr
->stateImageHeight
);
1560 infoPtr
->stateImageWidth
= 0;
1561 infoPtr
->stateImageHeight
= 0;
1567 if (oldWidth
!= infoPtr
->normalImageWidth
||
1568 oldHeight
!= infoPtr
->normalImageHeight
)
1570 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1571 TREEVIEW_UpdateScrollBars(infoPtr
);
1574 TREEVIEW_Invalidate(infoPtr
, NULL
);
1576 return (LRESULT
)himlOld
;
1579 /* Compute the natural height (based on the font size) for items. */
1581 TREEVIEW_NaturalHeight(TREEVIEW_INFO
*infoPtr
)
1585 HFONT hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
1587 GetTextMetricsA(hdc
, &tm
);
1589 SelectObject(hdc
, hOldFont
);
1592 /* The 16 is a hack because our fonts are tiny. */
1593 /* add 2 for the focus border and 1 more for margin some apps assume */
1594 return max(16, tm
.tmHeight
+ tm
.tmExternalLeading
+ 3);
1598 TREEVIEW_SetItemHeight(TREEVIEW_INFO
*infoPtr
, INT newHeight
)
1600 INT prevHeight
= infoPtr
->uItemHeight
;
1602 TRACE("%d \n", newHeight
);
1603 if (newHeight
== -1)
1605 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1606 infoPtr
->bHeightSet
= FALSE
;
1610 infoPtr
->uItemHeight
= newHeight
;
1611 infoPtr
->bHeightSet
= TRUE
;
1614 /* Round down, unless we support odd ("non even") heights. */
1615 if (!(infoPtr
->dwStyle
) & TVS_NONEVENHEIGHT
)
1616 infoPtr
->uItemHeight
&= ~1;
1618 if (infoPtr
->uItemHeight
!= prevHeight
)
1620 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1621 TREEVIEW_UpdateScrollBars(infoPtr
);
1622 TREEVIEW_Invalidate(infoPtr
, NULL
);
1629 TREEVIEW_GetItemHeight(TREEVIEW_INFO
*infoPtr
)
1632 return infoPtr
->uItemHeight
;
1637 TREEVIEW_GetFont(TREEVIEW_INFO
*infoPtr
)
1639 TRACE("%x\n", infoPtr
->hFont
);
1640 return infoPtr
->hFont
;
1645 TREEVIEW_ResetTextWidth(LPVOID pItem
, DWORD unused
)
1649 ((TREEVIEW_ITEM
*)pItem
)->textWidth
= 0;
1655 TREEVIEW_SetFont(TREEVIEW_INFO
*infoPtr
, HFONT hFont
, BOOL bRedraw
)
1657 UINT uHeight
= infoPtr
->uItemHeight
;
1659 TRACE("%x %i\n", hFont
, bRedraw
);
1661 infoPtr
->hFont
= hFont
? hFont
: GetStockObject(SYSTEM_FONT
);
1663 DeleteObject(infoPtr
->hBoldFont
);
1664 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
1666 if (!infoPtr
->bHeightSet
)
1667 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
1669 if (uHeight
!= infoPtr
->uItemHeight
)
1670 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
1672 DPA_EnumCallback(infoPtr
->items
, TREEVIEW_ResetTextWidth
, 0);
1674 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
1675 TREEVIEW_UpdateScrollBars(infoPtr
);
1678 TREEVIEW_Invalidate(infoPtr
, NULL
);
1685 TREEVIEW_GetLineColor(TREEVIEW_INFO
*infoPtr
)
1688 return (LRESULT
)infoPtr
->clrLine
;
1692 TREEVIEW_SetLineColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1694 COLORREF prevColor
= infoPtr
->clrLine
;
1697 infoPtr
->clrLine
= color
;
1698 return (LRESULT
)prevColor
;
1703 TREEVIEW_GetTextColor(TREEVIEW_INFO
*infoPtr
)
1706 return (LRESULT
)infoPtr
->clrText
;
1710 TREEVIEW_SetTextColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1712 COLORREF prevColor
= infoPtr
->clrText
;
1715 infoPtr
->clrText
= color
;
1717 if (infoPtr
->clrText
!= prevColor
)
1718 TREEVIEW_Invalidate(infoPtr
, NULL
);
1720 return (LRESULT
)prevColor
;
1725 TREEVIEW_GetBkColor(TREEVIEW_INFO
*infoPtr
)
1728 return (LRESULT
)infoPtr
->clrBk
;
1732 TREEVIEW_SetBkColor(TREEVIEW_INFO
*infoPtr
, COLORREF newColor
)
1734 COLORREF prevColor
= infoPtr
->clrBk
;
1737 infoPtr
->clrBk
= newColor
;
1739 if (newColor
!= prevColor
)
1740 TREEVIEW_Invalidate(infoPtr
, NULL
);
1742 return (LRESULT
)prevColor
;
1747 TREEVIEW_GetInsertMarkColor(TREEVIEW_INFO
*infoPtr
)
1750 return (LRESULT
)infoPtr
->clrInsertMark
;
1754 TREEVIEW_SetInsertMarkColor(TREEVIEW_INFO
*infoPtr
, COLORREF color
)
1756 COLORREF prevColor
= infoPtr
->clrInsertMark
;
1758 TRACE("%lx\n", color
);
1759 infoPtr
->clrInsertMark
= color
;
1761 return (LRESULT
)prevColor
;
1766 TREEVIEW_SetInsertMark(TREEVIEW_INFO
*infoPtr
, BOOL wParam
, HTREEITEM item
)
1768 TRACE("%d %p\n", wParam
, item
);
1770 if (!TREEVIEW_ValidItem(infoPtr
, item
))
1773 infoPtr
->insertBeforeorAfter
= wParam
;
1774 infoPtr
->insertMarkItem
= item
;
1776 TREEVIEW_Invalidate(infoPtr
, NULL
);
1782 /************************************************************************
1783 * Some serious braindamage here. lParam is a pointer to both the
1784 * input HTREEITEM and the output RECT.
1787 TREEVIEW_GetItemRect(TREEVIEW_INFO
*infoPtr
, BOOL fTextRect
, LPRECT lpRect
)
1789 TREEVIEW_ITEM
*wineItem
;
1790 const HTREEITEM
*pItem
= (HTREEITEM
*)lpRect
;
1794 * validate parameters
1800 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
) || !ISVISIBLE(wineItem
))
1804 * If wParam is TRUE return the text size otherwise return
1805 * the whole item size
1809 /* Windows does not send TVN_GETDISPINFO here. */
1811 lpRect
->top
= wineItem
->rect
.top
;
1812 lpRect
->bottom
= wineItem
->rect
.bottom
;
1814 lpRect
->left
= wineItem
->textOffset
;
1815 lpRect
->right
= wineItem
->textOffset
+ wineItem
->textWidth
;
1819 *lpRect
= wineItem
->rect
;
1822 TRACE("%s [L:%d R:%d T:%d B:%d]\n", fTextRect
? "text" : "item",
1823 lpRect
->left
, lpRect
->right
, lpRect
->top
, lpRect
->bottom
);
1828 static inline LRESULT
1829 TREEVIEW_GetVisibleCount(TREEVIEW_INFO
*infoPtr
)
1831 /* Suprise! This does not take integral height into account. */
1832 return infoPtr
->clientHeight
/ infoPtr
->uItemHeight
;
1837 TREEVIEW_GetItemA(TREEVIEW_INFO
*infoPtr
, LPTVITEMEXA tvItem
)
1839 TREEVIEW_ITEM
*wineItem
;
1841 wineItem
= tvItem
->hItem
;
1842 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
1845 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, tvItem
->mask
);
1847 if (tvItem
->mask
& TVIF_CHILDREN
)
1848 tvItem
->cChildren
= wineItem
->cChildren
;
1850 if (tvItem
->mask
& TVIF_HANDLE
)
1851 tvItem
->hItem
= wineItem
;
1853 if (tvItem
->mask
& TVIF_IMAGE
)
1854 tvItem
->iImage
= wineItem
->iImage
;
1856 if (tvItem
->mask
& TVIF_INTEGRAL
)
1857 tvItem
->iIntegral
= wineItem
->iIntegral
;
1859 /* undocumented: windows ignores TVIF_PARAM and
1860 * * always sets lParam
1862 tvItem
->lParam
= wineItem
->lParam
;
1864 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
)
1865 tvItem
->iSelectedImage
= wineItem
->iSelectedImage
;
1867 if (tvItem
->mask
& TVIF_STATE
)
1868 tvItem
->state
= wineItem
->state
& tvItem
->stateMask
;
1870 if (tvItem
->mask
& TVIF_TEXT
)
1871 lstrcpynA(tvItem
->pszText
, wineItem
->pszText
, tvItem
->cchTextMax
);
1873 TRACE("item <%p>, txt %p, img %p, mask %x\n",
1874 wineItem
, tvItem
->pszText
, &tvItem
->iImage
, tvItem
->mask
);
1879 /* Beware MSDN Library Visual Studio 6.0. It says -1 on failure, 0 on success,
1880 * which is wrong. */
1882 TREEVIEW_SetItemA(TREEVIEW_INFO
*infoPtr
, LPTVITEMEXA tvItem
)
1884 TREEVIEW_ITEM
*wineItem
;
1885 TREEVIEW_ITEM originalItem
;
1887 wineItem
= tvItem
->hItem
;
1889 TRACE("item %d,mask %x\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
1892 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
1895 if (!TREEVIEW_DoSetItem(infoPtr
, wineItem
, tvItem
))
1898 /* store the orignal item values */
1899 originalItem
= *wineItem
;
1901 /* If the text or TVIS_BOLD was changed, and it is visible, recalculate. */
1902 if ((tvItem
->mask
& TVIF_TEXT
1903 || (tvItem
->mask
& TVIF_STATE
&& tvItem
->stateMask
& TVIS_BOLD
))
1904 && ISVISIBLE(wineItem
))
1906 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, TVIF_TEXT
);
1907 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, 0);
1910 if (tvItem
->mask
!= 0 && ISVISIBLE(wineItem
))
1912 /* The refresh updates everything, but we can't wait until then. */
1913 TREEVIEW_ComputeItemInternalMetrics(infoPtr
, wineItem
);
1915 /* if any of the items values changed, redraw the item */
1916 if(memcmp(&originalItem
, wineItem
, sizeof(TREEVIEW_ITEM
)))
1918 if (tvItem
->mask
& TVIF_INTEGRAL
)
1920 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
1921 TREEVIEW_UpdateScrollBars(infoPtr
);
1923 TREEVIEW_Invalidate(infoPtr
, NULL
);
1927 TREEVIEW_UpdateScrollBars(infoPtr
);
1928 TREEVIEW_Invalidate(infoPtr
, wineItem
);
1937 TREEVIEW_GetItemW(TREEVIEW_INFO
*infoPtr
, LPTVITEMEXA tvItem
)
1939 TREEVIEW_ITEM
*wineItem
;
1941 iItem
= (INT
)tvItem
->hItem
;
1943 wineItem
= tvItem
->hItem
;
1944 if(!TREEVIEW_ValidItem (infoPtr
, wineItem
))
1947 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, tvItem
->mask
);
1949 if (tvItem
->mask
& TVIF_CHILDREN
) {
1950 if (TVIF_CHILDREN
==I_CHILDRENCALLBACK
)
1951 FIXME("I_CHILDRENCALLBACK not supported\n");
1952 tvItem
->cChildren
= wineItem
->cChildren
;
1955 if (tvItem
->mask
& TVIF_HANDLE
) {
1956 tvItem
->hItem
= wineItem
;
1958 if (tvItem
->mask
& TVIF_IMAGE
) {
1959 tvItem
->iImage
= wineItem
->iImage
;
1961 if (tvItem
->mask
& TVIF_INTEGRAL
) {
1962 tvItem
->iIntegral
= wineItem
->iIntegral
;
1964 /* undocumented: windows ignores TVIF_PARAM and
1965 * always sets lParam */
1966 tvItem
->lParam
= wineItem
->lParam
;
1967 if (tvItem
->mask
& TVIF_SELECTEDIMAGE
) {
1968 tvItem
->iSelectedImage
= wineItem
->iSelectedImage
;
1970 if (tvItem
->mask
& TVIF_STATE
) {
1971 tvItem
->state
= wineItem
->state
& tvItem
->stateMask
;
1974 if (tvItem
->mask
& TVIF_TEXT
) {
1975 if (wineItem
->pszText
== LPSTR_TEXTCALLBACKW
) {
1976 tvItem
->pszText
= LPSTR_TEXTCALLBACKW
; /* FIXME:send notification? */
1977 ERR(" GetItem called with LPSTR_TEXTCALLBACK\n");
1979 else if (wineItem
->pszText
) {
1980 lstrcpynAtoW(tvItem
->pszText
, wineItem
->pszText
, tvItem
->cchTextMax
);
1984 wineItem
->pszText
= NULL
;
1985 TRACE("item %d<%p>, txt %p, img %p, action %x\n",
1986 iItem
, tvItem
, tvItem
->pszText
, &tvItem
->iImage
, tvItem
->mask
);
1991 TREEVIEW_GetItemState(TREEVIEW_INFO
*infoPtr
, HTREEITEM wineItem
, UINT mask
)
1995 if (!wineItem
|| !TREEVIEW_ValidItem(infoPtr
, wineItem
))
1998 return (wineItem
->state
& mask
);
2002 TREEVIEW_GetNextItem(TREEVIEW_INFO
*infoPtr
, UINT which
, HTREEITEM wineItem
)
2004 TREEVIEW_ITEM
*retval
;
2008 /* handle all the global data here */
2011 case TVGN_CHILD
: /* Special case: child of 0 is root */
2016 retval
= infoPtr
->root
->firstChild
;
2020 retval
= infoPtr
->selectedItem
;
2023 case TVGN_FIRSTVISIBLE
:
2024 retval
= infoPtr
->firstVisible
;
2027 case TVGN_DROPHILITE
:
2028 retval
= infoPtr
->dropItem
;
2031 case TVGN_LASTVISIBLE
:
2032 retval
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
2038 TRACE("flags:%x, returns %p\n", which
, retval
);
2039 return (LRESULT
)retval
;
2042 if (wineItem
== TVI_ROOT
) wineItem
= infoPtr
->root
;
2044 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
2050 retval
= wineItem
->nextSibling
;
2053 retval
= wineItem
->prevSibling
;
2056 retval
= (wineItem
->parent
!= infoPtr
->root
) ? wineItem
->parent
: NULL
;
2059 retval
= wineItem
->firstChild
;
2061 case TVGN_NEXTVISIBLE
:
2062 retval
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2064 case TVGN_PREVIOUSVISIBLE
:
2065 retval
= TREEVIEW_GetPrevListItem(infoPtr
, wineItem
);
2068 TRACE("Unknown msg %x,item %p\n", which
, wineItem
);
2072 TRACE("flags:%x, item %p;returns %p\n", which
, wineItem
, retval
);
2073 return (LRESULT
)retval
;
2078 TREEVIEW_GetCount(TREEVIEW_INFO
*infoPtr
)
2080 TRACE(" %d\n", infoPtr
->uNumItems
);
2081 return (LRESULT
)infoPtr
->uNumItems
;
2085 TREEVIEW_ToggleItemState(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2087 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
2089 static const unsigned int state_table
[] = { 0, 2, 1 };
2093 state
= STATEIMAGEINDEX(item
->state
);
2094 TRACE("state:%x\n", state
);
2095 item
->state
&= ~TVIS_STATEIMAGEMASK
;
2098 state
= state_table
[state
];
2100 item
->state
|= INDEXTOSTATEIMAGEMASK(state
);
2102 TRACE("state:%x\n", state
);
2103 TREEVIEW_Invalidate(infoPtr
, item
);
2108 /* Painting *************************************************************/
2110 /* Draw the lines and expand button for an item. Also draws one section
2111 * of the line from item's parent to item's parent's next sibling. */
2113 TREEVIEW_DrawItemLines(TREEVIEW_INFO
*infoPtr
, HDC hdc
, TREEVIEW_ITEM
*item
)
2115 LONG centerx
, centery
;
2116 BOOL lar
= ((infoPtr
->dwStyle
2117 & (TVS_LINESATROOT
|TVS_HASLINES
|TVS_HASBUTTONS
))
2120 if (!lar
&& item
->iLevel
== 0)
2123 centerx
= (item
->linesOffset
+ item
->stateOffset
) / 2;
2124 centery
= (item
->rect
.top
+ item
->rect
.bottom
) / 2;
2126 if (infoPtr
->dwStyle
& TVS_HASLINES
)
2128 HPEN hOldPen
, hNewPen
;
2132 * Get a dotted grey pen
2134 hNewPen
= CreatePen(PS_ALTERNATE
, 0, infoPtr
->clrLine
);
2135 hOldPen
= SelectObject(hdc
, hNewPen
);
2137 MoveToEx(hdc
, item
->stateOffset
, centery
, NULL
);
2138 LineTo(hdc
, centerx
- 1, centery
);
2140 if (item
->prevSibling
|| item
->parent
!= infoPtr
->root
)
2142 MoveToEx(hdc
, centerx
, item
->rect
.top
, NULL
);
2143 LineTo(hdc
, centerx
, centery
);
2146 if (item
->nextSibling
)
2148 MoveToEx(hdc
, centerx
, centery
, NULL
);
2149 LineTo(hdc
, centerx
, item
->rect
.bottom
+ 1);
2152 /* Draw the line from our parent to its next sibling. */
2153 parent
= item
->parent
;
2154 while (parent
!= infoPtr
->root
)
2156 int pcenterx
= (parent
->linesOffset
+ parent
->stateOffset
) / 2;
2158 if (parent
->nextSibling
2159 /* skip top-levels unless TVS_LINESATROOT */
2160 && parent
->stateOffset
> parent
->linesOffset
)
2162 MoveToEx(hdc
, pcenterx
, item
->rect
.top
, NULL
);
2163 LineTo(hdc
, pcenterx
, item
->rect
.bottom
+ 1);
2166 parent
= parent
->parent
;
2169 SelectObject(hdc
, hOldPen
);
2170 DeleteObject(hNewPen
);
2174 * Display the (+/-) signs
2177 if (infoPtr
->dwStyle
& TVS_HASBUTTONS
)
2179 if (item
->cChildren
)
2181 LONG height
= item
->rect
.bottom
- item
->rect
.top
;
2182 LONG width
= item
->stateOffset
- item
->linesOffset
;
2183 LONG rectsize
= min(height
, width
) / 4;
2184 /* plussize = ceil(rectsize * 3/4) */
2185 LONG plussize
= (rectsize
+ 1) * 3 / 4;
2187 HPEN hNewPen
= CreatePen(PS_SOLID
, 0, infoPtr
->clrLine
);
2188 HPEN hOldPen
= SelectObject(hdc
, hNewPen
);
2189 HBRUSH hbr
= CreateSolidBrush(infoPtr
->clrBk
);
2190 HBRUSH hbrOld
= SelectObject(hdc
, hbr
);
2192 Rectangle(hdc
, centerx
- rectsize
, centery
- rectsize
,
2193 centerx
+ rectsize
+ 1, centery
+ rectsize
+ 1);
2195 SelectObject(hdc
, hbrOld
);
2198 SelectObject(hdc
, hOldPen
);
2199 DeleteObject(hNewPen
);
2201 MoveToEx(hdc
, centerx
- plussize
+ 1, centery
, NULL
);
2202 LineTo(hdc
, centerx
+ plussize
, centery
);
2204 if (!(item
->state
& TVIS_EXPANDED
))
2206 MoveToEx(hdc
, centerx
, centery
- plussize
+ 1, NULL
);
2207 LineTo(hdc
, centerx
, centery
+ plussize
);
2214 TREEVIEW_DrawItem(TREEVIEW_INFO
*infoPtr
, HDC hdc
, TREEVIEW_ITEM
*wineItem
)
2220 hOldFont
= SelectObject(hdc
, TREEVIEW_FontForItem(infoPtr
, wineItem
));
2222 TREEVIEW_UpdateDispInfo(infoPtr
, wineItem
, CALLBACK_MASK_ALL
);
2224 /* The custom draw handler can query the text rectangle,
2226 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2230 if (infoPtr
->cdmode
& CDRF_NOTIFYITEMDRAW
)
2232 cditem
= TREEVIEW_SendCustomDrawItemNotify
2233 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPREPAINT
);
2234 TRACE("prepaint:cditem-app returns 0x%x\n", cditem
);
2236 if (cditem
& CDRF_SKIPDEFAULT
)
2238 SelectObject(hdc
, hOldFont
);
2243 if (cditem
& CDRF_NEWFONT
)
2244 TREEVIEW_ComputeTextWidth(infoPtr
, wineItem
, hdc
);
2246 TREEVIEW_DrawItemLines(infoPtr
, hdc
, wineItem
);
2248 centery
= (wineItem
->rect
.top
+ wineItem
->rect
.bottom
) / 2;
2251 * Display the images associated with this item
2256 /* State images are displayed to the left of the Normal image
2257 * image number is in state; zero should be `display no image'.
2259 imageIndex
= STATEIMAGEINDEX(wineItem
->state
);
2261 if (infoPtr
->himlState
&& imageIndex
)
2263 ImageList_Draw(infoPtr
->himlState
, imageIndex
, hdc
,
2264 wineItem
->stateOffset
,
2265 centery
- infoPtr
->stateImageHeight
/ 2,
2269 /* Now, draw the normal image; can be either selected or
2270 * non-selected image.
2273 if ((wineItem
->state
& TVIS_SELECTED
) && (wineItem
->iSelectedImage
))
2275 /* The item is curently selected */
2276 imageIndex
= wineItem
->iSelectedImage
;
2280 /* The item is not selected */
2281 imageIndex
= wineItem
->iImage
;
2284 if (infoPtr
->himlNormal
)
2286 int ovlIdx
= wineItem
->state
& TVIS_OVERLAYMASK
;
2288 ImageList_Draw(infoPtr
->himlNormal
, imageIndex
, hdc
,
2289 wineItem
->imageOffset
,
2290 centery
- infoPtr
->normalImageHeight
/ 2,
2291 ILD_NORMAL
| ovlIdx
);
2297 * Display the text associated with this item
2300 /* Don't paint item's text if it's being edited */
2301 if (!infoPtr
->hwndEdit
|| (infoPtr
->selectedItem
!= wineItem
))
2303 if (wineItem
->pszText
)
2305 COLORREF oldTextColor
= 0;
2308 BOOL inFocus
= (GetFocus() == infoPtr
->hwnd
);
2311 oldBkMode
= SetBkMode(hdc
, TRANSPARENT
);
2313 /* - If item is drop target or it is selected and window is in focus -
2314 * use blue background (COLOR_HIGHLIGHT).
2315 * - If item is selected, window is not in focus, but it has style
2316 * TVS_SHOWSELALWAYS - use grey background (COLOR_BTNFACE)
2317 * - Otherwise - don't fill background
2319 if ((wineItem
->state
& TVIS_DROPHILITED
) || ((wineItem
== infoPtr
->focusedItem
) && !(wineItem
->state
& TVIS_SELECTED
)) ||
2320 ((wineItem
->state
& TVIS_SELECTED
) && (!infoPtr
->focusedItem
) &&
2321 (inFocus
|| (infoPtr
->dwStyle
& TVS_SHOWSELALWAYS
))))
2323 if ((wineItem
->state
& TVIS_DROPHILITED
) || inFocus
)
2325 hbrBk
= CreateSolidBrush(GetSysColor(COLOR_HIGHLIGHT
));
2327 SetTextColor(hdc
, GetSysColor(COLOR_HIGHLIGHTTEXT
));
2331 hbrBk
= CreateSolidBrush(GetSysColor(COLOR_BTNFACE
));
2333 if (infoPtr
->clrText
== -1)
2335 SetTextColor(hdc
, GetSysColor(COLOR_WINDOWTEXT
));
2337 oldTextColor
= SetTextColor(hdc
, infoPtr
->clrText
);
2342 if (infoPtr
->clrText
== -1)
2344 SetTextColor(hdc
, GetSysColor(COLOR_WINDOWTEXT
));
2346 oldTextColor
= SetTextColor(hdc
, infoPtr
->clrText
);
2349 rcText
.top
= wineItem
->rect
.top
;
2350 rcText
.bottom
= wineItem
->rect
.bottom
;
2351 rcText
.left
= wineItem
->textOffset
;
2352 rcText
.right
= rcText
.left
+ wineItem
->textWidth
+ 4;
2356 FillRect(hdc
, &rcText
, hbrBk
);
2357 DeleteObject(hbrBk
);
2360 /* Draw the box around the selected item */
2361 if ((wineItem
== infoPtr
->selectedItem
) && inFocus
)
2363 DrawFocusRect(hdc
,&rcText
);
2366 InflateRect(&rcText
, -2, -1); /* allow for the focus rect */
2371 lstrlenA(wineItem
->pszText
),
2373 DT_CENTER
| DT_VCENTER
| DT_SINGLELINE
| DT_NOPREFIX
);
2375 /* Restore the hdc state */
2376 SetTextColor(hdc
, oldTextColor
);
2378 if (oldBkMode
!= TRANSPARENT
)
2379 SetBkMode(hdc
, oldBkMode
);
2383 /* Draw insertion mark if necessary */
2385 if (infoPtr
->insertMarkItem
)
2386 TRACE("item:%d,mark:%d\n",
2387 TREEVIEW_GetItemIndex(infoPtr
, wineItem
),
2388 (int)infoPtr
->insertMarkItem
);
2390 if (wineItem
== infoPtr
->insertMarkItem
)
2392 HPEN hNewPen
, hOldPen
;
2396 hNewPen
= CreatePen(PS_SOLID
, 2, infoPtr
->clrInsertMark
);
2397 hOldPen
= SelectObject(hdc
, hNewPen
);
2399 if (infoPtr
->insertBeforeorAfter
)
2400 offset
= wineItem
->rect
.bottom
- 1;
2402 offset
= wineItem
->rect
.top
+ 1;
2404 left
= wineItem
->textOffset
- 2;
2405 right
= wineItem
->textOffset
+ wineItem
->textWidth
+ 2;
2407 MoveToEx(hdc
, left
, offset
- 3, NULL
);
2408 LineTo(hdc
, left
, offset
+ 4);
2410 MoveToEx(hdc
, left
, offset
, NULL
);
2411 LineTo(hdc
, right
+ 1, offset
);
2413 MoveToEx(hdc
, right
, offset
+ 3, NULL
);
2414 LineTo(hdc
, right
, offset
- 4);
2416 SelectObject(hdc
, hOldPen
);
2417 DeleteObject(hNewPen
);
2420 if (cditem
& CDRF_NOTIFYPOSTPAINT
)
2422 cditem
= TREEVIEW_SendCustomDrawItemNotify
2423 (infoPtr
, hdc
, wineItem
, CDDS_ITEMPOSTPAINT
);
2424 TRACE("postpaint:cditem-app returns 0x%x\n", cditem
);
2427 SelectObject(hdc
, hOldFont
);
2430 /* Computes treeHeight and treeWidth and updates the scroll bars.
2433 TREEVIEW_UpdateScrollBars(TREEVIEW_INFO
*infoPtr
)
2435 TREEVIEW_ITEM
*wineItem
;
2436 HWND hwnd
= infoPtr
->hwnd
;
2440 LONG scrollX
= infoPtr
->scrollX
;
2442 infoPtr
->treeWidth
= 0;
2443 infoPtr
->treeHeight
= 0;
2445 /* We iterate through all visible items in order to get the tree height
2447 wineItem
= infoPtr
->root
->firstChild
;
2449 while (wineItem
!= NULL
)
2451 if (ISVISIBLE(wineItem
))
2453 /* actually we draw text at textOffset + 2 */
2454 if (2+wineItem
->textOffset
+wineItem
->textWidth
> infoPtr
->treeWidth
)
2455 infoPtr
->treeWidth
= wineItem
->textOffset
+wineItem
->textWidth
+2;
2457 /* This is scroll-adjusted, but we fix this below. */
2458 infoPtr
->treeHeight
= wineItem
->rect
.bottom
;
2461 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2464 /* Fix the scroll adjusted treeHeight and treeWidth. */
2465 if (infoPtr
->root
->firstChild
)
2466 infoPtr
->treeHeight
-= infoPtr
->root
->firstChild
->rect
.top
;
2468 infoPtr
->treeWidth
+= infoPtr
->scrollX
;
2470 /* Adding one scroll bar may take up enough space that it forces us
2471 * to add the other as well. */
2472 if (infoPtr
->treeHeight
> infoPtr
->clientHeight
)
2476 if (infoPtr
->treeWidth
2477 > infoPtr
->clientWidth
- GetSystemMetrics(SM_CXVSCROLL
))
2480 else if (infoPtr
->treeWidth
> infoPtr
->clientWidth
)
2483 if (!vert
&& horz
&& infoPtr
->treeHeight
2484 > infoPtr
->clientHeight
- GetSystemMetrics(SM_CYVSCROLL
))
2487 si
.cbSize
= sizeof(SCROLLINFO
);
2488 si
.fMask
= SIF_POS
|SIF_RANGE
|SIF_PAGE
;
2493 si
.nPage
= TREEVIEW_GetVisibleCount(infoPtr
);
2494 si
.nPos
= infoPtr
->firstVisible
->visibleOrder
;
2495 si
.nMax
= infoPtr
->maxVisibleOrder
- 1;
2497 SetScrollInfo(hwnd
, SB_VERT
, &si
, TRUE
);
2499 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
2500 ShowScrollBar(hwnd
, SB_VERT
, TRUE
);
2501 infoPtr
->uInternalStatus
|= TV_VSCROLL
;
2505 if (infoPtr
->uInternalStatus
& TV_VSCROLL
)
2506 ShowScrollBar(hwnd
, SB_VERT
, FALSE
);
2507 infoPtr
->uInternalStatus
&= ~TV_VSCROLL
;
2512 si
.nPage
= infoPtr
->clientWidth
;
2513 si
.nPos
= infoPtr
->scrollX
;
2514 si
.nMax
= infoPtr
->treeWidth
- 1;
2516 if (si
.nPos
> si
.nMax
- max( si
.nPage
-1, 0 ))
2518 si
.nPos
= si
.nMax
- max( si
.nPage
-1, 0 );
2522 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
2523 ShowScrollBar(hwnd
, SB_HORZ
, TRUE
);
2524 infoPtr
->uInternalStatus
|= TV_HSCROLL
;
2526 SetScrollInfo(hwnd
, SB_HORZ
, &si
, TRUE
);
2530 if (infoPtr
->uInternalStatus
& TV_HSCROLL
)
2531 ShowScrollBar(hwnd
, SB_HORZ
, FALSE
);
2532 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2537 if (infoPtr
->scrollX
!= scrollX
)
2539 TREEVIEW_HScroll(infoPtr
,
2540 MAKEWPARAM(SB_THUMBPOSITION
, scrollX
));
2544 infoPtr
->uInternalStatus
&= ~TV_HSCROLL
;
2547 /* CtrlSpy doesn't mention this, but CorelDRAW's object manager needs it. */
2549 TREEVIEW_EraseBackground(TREEVIEW_INFO
*infoPtr
, HDC hDC
)
2551 HBRUSH hBrush
= CreateSolidBrush(infoPtr
->clrBk
);
2554 GetClientRect(infoPtr
->hwnd
, &rect
);
2555 FillRect(hDC
, &rect
, hBrush
);
2556 DeleteObject(hBrush
);
2562 TREEVIEW_Refresh(TREEVIEW_INFO
*infoPtr
, HDC hdc
, RECT
*rc
)
2564 HWND hwnd
= infoPtr
->hwnd
;
2566 TREEVIEW_ITEM
*wineItem
;
2568 if (infoPtr
->clientHeight
== 0 || infoPtr
->clientWidth
== 0)
2570 TRACE("empty window\n");
2574 infoPtr
->cdmode
= TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_PREPAINT
,
2577 if (infoPtr
->cdmode
== CDRF_SKIPDEFAULT
)
2579 ReleaseDC(hwnd
, hdc
);
2583 for (wineItem
= infoPtr
->root
->firstChild
;
2585 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
2587 if (ISVISIBLE(wineItem
))
2589 /* Avoid unneeded calculations */
2590 if (wineItem
->rect
.top
> rect
.bottom
)
2592 if (wineItem
->rect
.bottom
< rect
.top
)
2595 TREEVIEW_DrawItem(infoPtr
, hdc
, wineItem
);
2599 TREEVIEW_UpdateScrollBars(infoPtr
);
2601 if (infoPtr
->cdmode
& CDRF_NOTIFYPOSTPAINT
)
2603 TREEVIEW_SendCustomDrawNotify(infoPtr
, CDDS_POSTPAINT
, hdc
, rect
);
2607 TREEVIEW_Invalidate(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2610 InvalidateRect(infoPtr
->hwnd
, &item
->rect
, TRUE
);
2612 InvalidateRect(infoPtr
->hwnd
, NULL
, TRUE
);
2616 TREEVIEW_Paint(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
2627 if (!GetUpdateRect(infoPtr
->hwnd
, &rc
, TRUE
))
2631 hbitmap
= GetCurrentObject(hdc
, OBJ_BITMAP
);
2632 if (!hbitmap
) return 0;
2633 GetObjectA(hbitmap
, sizeof(BITMAP
), &bitmap
);
2634 rc
.left
= 0; rc
.top
= 0;
2635 rc
.right
= bitmap
.bmWidth
;
2636 rc
.bottom
= bitmap
.bmHeight
;
2637 TREEVIEW_EraseBackground(infoPtr
, wParam
);
2642 hdc
= BeginPaint(infoPtr
->hwnd
, &ps
);
2646 if(infoPtr
->bRedraw
) /* WM_SETREDRAW sets bRedraw */
2647 TREEVIEW_Refresh(infoPtr
, hdc
, &rc
);
2650 EndPaint(infoPtr
->hwnd
, &ps
);
2656 /* Sorting **************************************************************/
2658 /***************************************************************************
2659 * Forward the DPA local callback to the treeview owner callback
2662 TREEVIEW_CallBackCompare(TREEVIEW_ITEM
*first
, TREEVIEW_ITEM
*second
, LPTVSORTCB pCallBackSort
)
2664 /* Forward the call to the client-defined callback */
2665 return pCallBackSort
->lpfnCompare(first
->lParam
,
2667 pCallBackSort
->lParam
);
2670 /***************************************************************************
2671 * Treeview native sort routine: sort on item text.
2674 TREEVIEW_SortOnName(TREEVIEW_ITEM
*first
, TREEVIEW_ITEM
*second
,
2675 TREEVIEW_INFO
*infoPtr
)
2677 TREEVIEW_UpdateDispInfo(infoPtr
, first
, TVIF_TEXT
);
2678 TREEVIEW_UpdateDispInfo(infoPtr
, second
, TVIF_TEXT
);
2680 return strcasecmp(first
->pszText
, second
->pszText
);
2683 /* Returns the number of physical children belonging to item. */
2685 TREEVIEW_CountChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2690 for (hti
= item
->firstChild
; hti
!= NULL
; hti
= hti
->nextSibling
)
2696 /* Returns a DPA containing a pointer to each physical child of item in
2697 * sibling order. If item has no children, an empty DPA is returned. */
2699 TREEVIEW_BuildChildDPA(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
2701 HTREEITEM child
= item
->firstChild
;
2703 HDPA list
= DPA_Create(8);
2704 if (list
== 0) return NULL
;
2706 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
2708 if (DPA_InsertPtr(list
, INT_MAX
, child
) == -1)
2718 /***************************************************************************
2719 * Setup the treeview structure with regards of the sort method
2720 * and sort the children of the TV item specified in lParam
2721 * fRecurse: currently unused. Should be zero.
2722 * parent: if pSort!=NULL, should equal pSort->hParent.
2723 * otherwise, item which child items are to be sorted.
2724 * pSort: sort method info. if NULL, sort on item text.
2725 * if non-NULL, sort on item's lParam content, and let the
2726 * application decide what that means. See also TVM_SORTCHILDRENCB.
2730 TREEVIEW_Sort(TREEVIEW_INFO
*infoPtr
, BOOL fRecurse
, HTREEITEM parent
,
2734 PFNDPACOMPARE pfnCompare
;
2737 /* undocumented feature: TVI_ROOT means `sort the whole tree' */
2738 if (parent
== TVI_ROOT
)
2739 parent
= infoPtr
->root
;
2741 /* Check for a valid handle to the parent item */
2742 if (!TREEVIEW_ValidItem(infoPtr
, parent
))
2744 ERR("invalid item hParent=%x\n", (INT
)parent
);
2750 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_CallBackCompare
;
2751 lpCompare
= (LPARAM
)pSort
;
2755 pfnCompare
= (PFNDPACOMPARE
)TREEVIEW_SortOnName
;
2756 lpCompare
= (LPARAM
)infoPtr
;
2759 cChildren
= TREEVIEW_CountChildren(infoPtr
, parent
);
2761 /* Make sure there is something to sort */
2764 /* TREEVIEW_ITEM rechaining */
2767 HTREEITEM nextItem
= 0;
2768 HTREEITEM prevItem
= 0;
2770 HDPA sortList
= TREEVIEW_BuildChildDPA(infoPtr
, parent
);
2772 if (sortList
== NULL
)
2775 /* let DPA sort the list */
2776 DPA_Sort(sortList
, pfnCompare
, lpCompare
);
2778 /* The order of DPA entries has been changed, so fixup the
2779 * nextSibling and prevSibling pointers. */
2781 item
= (HTREEITEM
)DPA_GetPtr(sortList
, count
++);
2782 while ((nextItem
= (HTREEITEM
)DPA_GetPtr(sortList
, count
++)) != NULL
)
2784 /* link the two current item toghether */
2785 item
->nextSibling
= nextItem
;
2786 nextItem
->prevSibling
= item
;
2788 if (prevItem
== NULL
)
2790 /* this is the first item, update the parent */
2791 parent
->firstChild
= item
;
2792 item
->prevSibling
= NULL
;
2796 /* fix the back chaining */
2797 item
->prevSibling
= prevItem
;
2800 /* get ready for the next one */
2805 /* the last item is pointed to by item and never has a sibling */
2806 item
->nextSibling
= NULL
;
2807 parent
->lastChild
= item
;
2809 DPA_Destroy(sortList
);
2811 TREEVIEW_VerifyTree(infoPtr
);
2813 if (parent
->state
& TVIS_EXPANDED
)
2815 int visOrder
= infoPtr
->firstVisible
->visibleOrder
;
2817 if (parent
== infoPtr
->root
)
2818 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
2820 TREEVIEW_RecalculateVisibleOrder(infoPtr
, parent
);
2822 if (TREEVIEW_IsChildOf(parent
, infoPtr
->firstVisible
))
2824 TREEVIEW_ITEM
*item
;
2826 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
2827 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
2829 if (item
->visibleOrder
== visOrder
)
2833 TREEVIEW_SetFirstVisible(infoPtr
, item
, FALSE
);
2836 TREEVIEW_Invalidate(infoPtr
, NULL
);
2845 /***************************************************************************
2846 * Setup the treeview structure with regards of the sort method
2847 * and sort the children of the TV item specified in lParam
2850 TREEVIEW_SortChildrenCB(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPTVSORTCB pSort
)
2852 return TREEVIEW_Sort(infoPtr
, wParam
, pSort
->hParent
, pSort
);
2856 /***************************************************************************
2857 * Sort the children of the TV item specified in lParam.
2860 TREEVIEW_SortChildren(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
2862 return TREEVIEW_Sort(infoPtr
, (BOOL
)wParam
, (HTREEITEM
)lParam
, NULL
);
2866 /* Expansion/Collapse ***************************************************/
2869 TREEVIEW_SendExpanding(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
2872 return !TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDINGA
, action
,
2873 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
2874 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
2879 TREEVIEW_SendExpanded(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
2882 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_ITEMEXPANDEDA
, action
,
2883 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
2884 | TVIF_IMAGE
| TVIF_SELECTEDIMAGE
,
2889 /* This corresponds to TVM_EXPAND with TVE_COLLAPSE.
2890 * bRemoveChildren corresponds to TVE_COLLAPSERESET. */
2892 TREEVIEW_Collapse(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
2893 BOOL bRemoveChildren
, BOOL bUser
)
2895 UINT action
= TVE_COLLAPSE
| (bRemoveChildren
? TVE_COLLAPSERESET
: 0);
2896 BOOL bSetSelection
, bSetFirstVisible
;
2898 TRACE("TVE_COLLAPSE %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
2900 if (!(wineItem
->state
& TVIS_EXPANDED
) || wineItem
->firstChild
== NULL
)
2904 TREEVIEW_SendExpanding(infoPtr
, wineItem
, action
);
2906 wineItem
->state
&= ~TVIS_EXPANDED
;
2909 TREEVIEW_SendExpanded(infoPtr
, wineItem
, action
);
2911 bSetSelection
= (infoPtr
->selectedItem
!= NULL
2912 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->selectedItem
));
2914 bSetFirstVisible
= (infoPtr
->firstVisible
!= NULL
2915 && TREEVIEW_IsChildOf(wineItem
, infoPtr
->firstVisible
));
2917 if (bRemoveChildren
)
2919 TRACE("TVE_COLLAPSERESET\n");
2920 wineItem
->state
&= ~TVIS_EXPANDEDONCE
;
2921 TREEVIEW_RemoveAllChildren(infoPtr
, wineItem
);
2924 if (wineItem
->firstChild
)
2926 TREEVIEW_ITEM
*item
, *sibling
;
2928 sibling
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
);
2930 for (item
= wineItem
->firstChild
; item
!= sibling
;
2931 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
2933 item
->visibleOrder
= -1;
2937 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
2939 TREEVIEW_SetFirstVisible(infoPtr
, bSetFirstVisible
? wineItem
2940 : infoPtr
->firstVisible
, TRUE
);
2944 /* Don't call DoSelectItem, it sends notifications. */
2945 if (TREEVIEW_ValidItem(infoPtr
, infoPtr
->selectedItem
))
2946 infoPtr
->selectedItem
->state
&= ~TVIS_SELECTED
;
2947 wineItem
->state
|= TVIS_SELECTED
;
2948 infoPtr
->selectedItem
= wineItem
;
2950 TREEVIEW_EnsureVisible(infoPtr
, wineItem
, FALSE
);
2953 TREEVIEW_UpdateScrollBars(infoPtr
);
2954 TREEVIEW_Invalidate(infoPtr
, NULL
);
2960 TREEVIEW_Expand(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
,
2961 BOOL bExpandPartial
, BOOL bUser
)
2965 if (!TREEVIEW_HasChildren(infoPtr
, wineItem
)
2966 || wineItem
->state
& TVIS_EXPANDED
)
2969 TRACE("TVE_EXPAND %p %s\n", wineItem
, TREEVIEW_ItemName(wineItem
));
2971 if (bUser
|| !(wineItem
->state
& TVIS_EXPANDEDONCE
))
2973 if (!TREEVIEW_SendExpanding(infoPtr
, wineItem
, TVE_EXPAND
))
2975 TRACE(" TVN_ITEMEXPANDING returned TRUE, exiting...\n");
2979 wineItem
->state
|= TVIS_EXPANDED
;
2980 TREEVIEW_SendExpanded(infoPtr
, wineItem
, TVE_EXPAND
);
2981 wineItem
->state
|= TVIS_EXPANDEDONCE
;
2985 /* this item has already been expanded */
2986 wineItem
->state
|= TVIS_EXPANDED
;
2990 FIXME("TVE_EXPANDPARTIAL not implemented\n");
2992 TREEVIEW_RecalculateVisibleOrder(infoPtr
, wineItem
);
2993 TREEVIEW_UpdateSubTree(infoPtr
, wineItem
);
2994 TREEVIEW_UpdateScrollBars(infoPtr
);
2996 /* Scroll up so that as many children as possible are visible.
2997 * This looses when expanding causes an HScroll bar to appear, but we
2998 * don't know that yet, so the last item is obscured. */
2999 if (wineItem
->firstChild
!= NULL
)
3001 int nChildren
= wineItem
->lastChild
->visibleOrder
3002 - wineItem
->firstChild
->visibleOrder
+ 1;
3004 int visible_pos
= wineItem
->visibleOrder
3005 - infoPtr
->firstVisible
->visibleOrder
;
3007 int rows_below
= TREEVIEW_GetVisibleCount(infoPtr
) - visible_pos
- 1;
3009 if (visible_pos
> 0 && nChildren
> rows_below
)
3011 int scroll
= nChildren
- rows_below
;
3013 if (scroll
> visible_pos
)
3014 scroll
= visible_pos
;
3018 TREEVIEW_ITEM
*newFirstVisible
3019 = TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
3023 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
3028 TREEVIEW_Invalidate(infoPtr
, NULL
);
3034 TREEVIEW_Toggle(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*wineItem
, BOOL bUser
)
3038 if (wineItem
->state
& TVIS_EXPANDED
)
3039 return TREEVIEW_Collapse(infoPtr
, wineItem
, FALSE
, bUser
);
3041 return TREEVIEW_Expand(infoPtr
, wineItem
, FALSE
, bUser
);
3045 TREEVIEW_ExpandAll(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
3047 TREEVIEW_Expand(infoPtr
, item
, FALSE
, TRUE
);
3049 for (item
= item
->firstChild
; item
!= NULL
; item
= item
->nextSibling
)
3051 if (TREEVIEW_HasChildren(infoPtr
, item
))
3052 TREEVIEW_ExpandAll(infoPtr
, item
);
3056 /* Note:If the specified item is the child of a collapsed parent item,
3057 the parent's list of child items is (recursively) expanded to reveal the
3058 specified item. This is mentioned for TREEVIEW_SelectItem; don't
3059 know if it also applies here.
3063 TREEVIEW_ExpandMsg(TREEVIEW_INFO
*infoPtr
, UINT flag
, HTREEITEM wineItem
)
3065 if (!TREEVIEW_ValidItem(infoPtr
, wineItem
))
3068 TRACE("For (%s) item:%d, flags %x, state:%d\n",
3069 TREEVIEW_ItemName(wineItem
), flag
,
3070 TREEVIEW_GetItemIndex(infoPtr
, wineItem
), wineItem
->state
);
3072 switch (flag
& TVE_TOGGLE
)
3075 return TREEVIEW_Collapse(infoPtr
, wineItem
, flag
& TVE_COLLAPSERESET
,
3079 return TREEVIEW_Expand(infoPtr
, wineItem
, flag
& TVE_EXPANDPARTIAL
,
3083 return TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3090 TRACE("Exiting, Item %p state is now %d...\n", wineItem
, wineItem
->state
);
3094 /* Hit-Testing **********************************************************/
3096 static TREEVIEW_ITEM
*
3097 TREEVIEW_HitTestPoint(TREEVIEW_INFO
*infoPtr
, POINT pt
)
3099 TREEVIEW_ITEM
*wineItem
;
3102 if (!infoPtr
->firstVisible
)
3105 row
= pt
.y
/ infoPtr
->uItemHeight
+ infoPtr
->firstVisible
->visibleOrder
;
3107 for (wineItem
= infoPtr
->firstVisible
; wineItem
!= NULL
;
3108 wineItem
= TREEVIEW_GetNextListItem(infoPtr
, wineItem
))
3110 if (row
>= wineItem
->visibleOrder
3111 && row
< wineItem
->visibleOrder
+ wineItem
->iIntegral
)
3119 TREEVIEW_HitTest(TREEVIEW_INFO
*infoPtr
, LPTVHITTESTINFO lpht
)
3121 TREEVIEW_ITEM
*wineItem
;
3127 GetClientRect(infoPtr
->hwnd
, &rect
);
3134 status
|= TVHT_TOLEFT
;
3136 else if (x
> rect
.right
)
3138 status
|= TVHT_TORIGHT
;
3143 status
|= TVHT_ABOVE
;
3145 else if (y
> rect
.bottom
)
3147 status
|= TVHT_BELOW
;
3152 lpht
->flags
= status
;
3153 return (LRESULT
)(HTREEITEM
)NULL
;
3156 wineItem
= TREEVIEW_HitTestPoint(infoPtr
, lpht
->pt
);
3159 lpht
->flags
= TVHT_NOWHERE
;
3160 return (LRESULT
)(HTREEITEM
)NULL
;
3163 if (x
>= wineItem
->textOffset
+ wineItem
->textWidth
)
3165 lpht
->flags
= TVHT_ONITEMRIGHT
;
3167 else if (x
>= wineItem
->textOffset
)
3169 lpht
->flags
= TVHT_ONITEMLABEL
;
3171 else if (x
>= wineItem
->imageOffset
)
3173 lpht
->flags
= TVHT_ONITEMICON
;
3175 else if (x
>= wineItem
->stateOffset
)
3177 lpht
->flags
= TVHT_ONITEMSTATEICON
;
3179 else if (x
>= wineItem
->linesOffset
&& infoPtr
->dwStyle
& TVS_HASBUTTONS
)
3181 lpht
->flags
= TVHT_ONITEMBUTTON
;
3185 lpht
->flags
= TVHT_ONITEMINDENT
;
3188 lpht
->hItem
= wineItem
;
3189 TRACE("(%ld,%ld):result %x\n", lpht
->pt
.x
, lpht
->pt
.y
, lpht
->flags
);
3191 return (LRESULT
)wineItem
;
3194 /* Item Label Editing ***************************************************/
3197 TREEVIEW_GetEditControl(TREEVIEW_INFO
*infoPtr
)
3199 return infoPtr
->hwndEdit
;
3202 static LRESULT CALLBACK
3203 TREEVIEW_Edit_SubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3205 TREEVIEW_INFO
*infoPtr
;
3206 BOOL bCancel
= FALSE
;
3213 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3215 TRACE("WM_PAINT start\n");
3216 rc
= CallWindowProcA(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
,
3218 TRACE("WM_PAINT done\n");
3224 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3225 if (infoPtr
->bIgnoreEditKillFocus
)
3232 return DLGC_WANTARROWS
| DLGC_WANTALLKEYS
;
3235 if (wParam
== (WPARAM
)VK_ESCAPE
)
3240 else if (wParam
== (WPARAM
)VK_RETURN
)
3248 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3250 return CallWindowProcA(infoPtr
->wpEditOrig
, hwnd
, uMsg
, wParam
,
3255 /* Processing TVN_ENDLABELEDIT message could kill the focus */
3256 /* eg. Using a messagebox */
3258 infoPtr
= TREEVIEW_GetInfoPtr(GetParent(hwnd
));
3259 infoPtr
->bIgnoreEditKillFocus
= TRUE
;
3260 TREEVIEW_EndEditLabelNow(infoPtr
, bCancel
|| !infoPtr
->bLabelChanged
);
3261 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
3267 /* should handle edit control messages here */
3270 TREEVIEW_Command(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3272 TRACE("%x %ld\n", wParam
, lParam
);
3274 switch (HIWORD(wParam
))
3279 * Adjust the edit window size
3282 TREEVIEW_ITEM
*editItem
= infoPtr
->selectedItem
;
3283 HDC hdc
= GetDC(infoPtr
->hwndEdit
);
3286 HFONT hFont
, hOldFont
= 0;
3288 infoPtr
->bLabelChanged
= TRUE
;
3290 len
= GetWindowTextA(infoPtr
->hwndEdit
, buffer
, sizeof(buffer
));
3292 /* Select font to get the right dimension of the string */
3293 hFont
= SendMessageA(infoPtr
->hwndEdit
, WM_GETFONT
, 0, 0);
3296 hOldFont
= SelectObject(hdc
, hFont
);
3299 if (GetTextExtentPoint32A(hdc
, buffer
, strlen(buffer
), &sz
))
3301 TEXTMETRICA textMetric
;
3303 /* Add Extra spacing for the next character */
3304 GetTextMetricsA(hdc
, &textMetric
);
3305 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3307 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3309 infoPtr
->clientWidth
- editItem
->textOffset
+ 2);
3311 SetWindowPos(infoPtr
->hwndEdit
,
3316 editItem
->rect
.bottom
- editItem
->rect
.top
+ 3,
3317 SWP_NOMOVE
| SWP_DRAWFRAME
);
3322 SelectObject(hdc
, hOldFont
);
3325 ReleaseDC(infoPtr
->hwnd
, hdc
);
3330 return SendMessageA(GetParent(infoPtr
->hwnd
), WM_COMMAND
, wParam
, lParam
);
3337 TREEVIEW_EditLabelA(TREEVIEW_INFO
*infoPtr
, HTREEITEM hItem
)
3339 HWND hwnd
= infoPtr
->hwnd
;
3342 TREEVIEW_ITEM
*editItem
= hItem
;
3343 HINSTANCE hinst
= GetWindowLongA(hwnd
, GWL_HINSTANCE
);
3346 TEXTMETRICA textMetric
;
3348 TRACE("%x %p\n", (unsigned)hwnd
, hItem
);
3349 if (!TREEVIEW_ValidItem(infoPtr
, editItem
))
3352 if (infoPtr
->hwndEdit
)
3353 return infoPtr
->hwndEdit
;
3355 infoPtr
->bLabelChanged
= FALSE
;
3357 /* Make sure that edit item is selected */
3358 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, hItem
, TVC_UNKNOWN
);
3359 TREEVIEW_EnsureVisible(infoPtr
, hItem
, TRUE
);
3361 TREEVIEW_UpdateDispInfo(infoPtr
, editItem
, TVIF_TEXT
);
3364 /* Select the font to get appropriate metric dimensions */
3365 if (infoPtr
->hFont
!= 0)
3367 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
3370 /* Get string length in pixels */
3371 GetTextExtentPoint32A(hdc
, editItem
->pszText
, strlen(editItem
->pszText
),
3374 /* Add Extra spacing for the next character */
3375 GetTextMetricsA(hdc
, &textMetric
);
3376 sz
.cx
+= (textMetric
.tmMaxCharWidth
* 2);
3378 sz
.cx
= max(sz
.cx
, textMetric
.tmMaxCharWidth
* 3);
3379 sz
.cx
= min(sz
.cx
, infoPtr
->clientWidth
- editItem
->textOffset
+ 2);
3381 if (infoPtr
->hFont
!= 0)
3383 SelectObject(hdc
, hOldFont
);
3386 ReleaseDC(hwnd
, hdc
);
3387 hwndEdit
= CreateWindowExA(WS_EX_LEFT
,
3390 WS_CHILD
| WS_BORDER
| ES_AUTOHSCROLL
|
3391 WS_CLIPSIBLINGS
| ES_WANTRETURN
|
3392 ES_LEFT
, editItem
->textOffset
- 2,
3393 editItem
->rect
.top
- 1, sz
.cx
+ 3,
3394 editItem
->rect
.bottom
-
3395 editItem
->rect
.top
+ 3, hwnd
, 0, hinst
, 0);
3396 /* FIXME: (HMENU)IDTVEDIT,pcs->hInstance,0); */
3398 infoPtr
->hwndEdit
= hwndEdit
;
3400 /* Get a 2D border. */
3401 SetWindowLongA(hwndEdit
, GWL_EXSTYLE
,
3402 GetWindowLongA(hwndEdit
, GWL_EXSTYLE
) & ~WS_EX_CLIENTEDGE
);
3403 SetWindowLongA(hwndEdit
, GWL_STYLE
,
3404 GetWindowLongA(hwndEdit
, GWL_STYLE
) | WS_BORDER
);
3406 SendMessageA(hwndEdit
, WM_SETFONT
, TREEVIEW_FontForItem(infoPtr
, editItem
),
3409 infoPtr
->wpEditOrig
= (WNDPROC
)SetWindowLongA(hwndEdit
, GWL_WNDPROC
,
3411 TREEVIEW_Edit_SubclassProc
);
3413 if (TREEVIEW_BeginLabelEditNotify(infoPtr
, editItem
))
3415 DestroyWindow(hwndEdit
);
3416 infoPtr
->hwndEdit
= 0;
3420 infoPtr
->selectedItem
= hItem
;
3421 SetWindowTextA(hwndEdit
, editItem
->pszText
);
3423 SendMessageA(hwndEdit
, EM_SETSEL
, 0, -1);
3424 ShowWindow(hwndEdit
, SW_SHOW
);
3431 TREEVIEW_EndEditLabelNow(TREEVIEW_INFO
*infoPtr
, BOOL bCancel
)
3433 HWND hwnd
= infoPtr
->hwnd
;
3434 TREEVIEW_ITEM
*editedItem
= infoPtr
->selectedItem
;
3437 char tmpText
[1024] = { '\0' };
3440 if (!infoPtr
->hwndEdit
)
3443 tvdi
.hdr
.hwndFrom
= hwnd
;
3444 tvdi
.hdr
.idFrom
= GetWindowLongA(hwnd
, GWL_ID
);
3445 tvdi
.hdr
.code
= TVN_ENDLABELEDITA
;
3447 tvdi
.item
.hItem
= editedItem
;
3448 tvdi
.item
.state
= editedItem
->state
;
3449 tvdi
.item
.lParam
= editedItem
->lParam
;
3453 iLength
= GetWindowTextA(infoPtr
->hwndEdit
, tmpText
, 1023);
3455 if (iLength
>= 1023)
3457 ERR("Insuficient space to retrieve new item label\n");
3460 tvdi
.item
.pszText
= tmpText
;
3461 tvdi
.item
.cchTextMax
= iLength
+ 1;
3465 tvdi
.item
.pszText
= NULL
;
3466 tvdi
.item
.cchTextMax
= 0;
3469 bCommit
= (BOOL
)SendMessageA(infoPtr
->hwndNotify
,
3471 (WPARAM
)tvdi
.hdr
.idFrom
, (LPARAM
)&tvdi
);
3473 if (!bCancel
&& bCommit
) /* Apply the changes */
3475 if (strcmp(tmpText
, editedItem
->pszText
) != 0)
3477 if (NULL
== COMCTL32_ReAlloc(editedItem
->pszText
, iLength
+ 1))
3479 ERR("OutOfMemory, cannot allocate space for label\n");
3480 DestroyWindow(infoPtr
->hwndEdit
);
3481 infoPtr
->hwndEdit
= 0;
3486 editedItem
->cchTextMax
= iLength
+ 1;
3487 lstrcpyA(editedItem
->pszText
, tmpText
);
3492 ShowWindow(infoPtr
->hwndEdit
, SW_HIDE
);
3493 DestroyWindow(infoPtr
->hwndEdit
);
3494 infoPtr
->hwndEdit
= 0;
3499 TREEVIEW_HandleTimer(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
3501 if (wParam
!= TV_EDIT_TIMER
)
3503 ERR("got unknown timer\n");
3507 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
3508 infoPtr
->Timer
&= ~TV_EDIT_TIMER_SET
;
3510 TREEVIEW_EditLabelA(infoPtr
, infoPtr
->selectedItem
);
3516 /* Mouse Tracking/Drag **************************************************/
3518 /***************************************************************************
3519 * This is quite unusual piece of code, but that's how it's implemented in
3523 TREEVIEW_TrackMouse(TREEVIEW_INFO
*infoPtr
, POINT pt
)
3525 INT cxDrag
= GetSystemMetrics(SM_CXDRAG
);
3526 INT cyDrag
= GetSystemMetrics(SM_CYDRAG
);
3530 r
.top
= pt
.y
- cyDrag
;
3531 r
.left
= pt
.x
- cxDrag
;
3532 r
.bottom
= pt
.y
+ cyDrag
;
3533 r
.right
= pt
.x
+ cxDrag
;
3535 SetCapture(infoPtr
->hwnd
);
3539 if (PeekMessageA(&msg
, 0, 0, 0, PM_REMOVE
| PM_NOYIELD
))
3541 if (msg
.message
== WM_MOUSEMOVE
)
3543 pt
.x
= SLOWORD(msg
.lParam
);
3544 pt
.y
= SHIWORD(msg
.lParam
);
3545 if (PtInRect(&r
, pt
))
3553 else if (msg
.message
>= WM_LBUTTONDOWN
&&
3554 msg
.message
<= WM_RBUTTONDBLCLK
)
3556 if (msg
.message
== WM_RBUTTONUP
)
3557 TREEVIEW_RButtonUp(infoPtr
, &pt
);
3561 DispatchMessageA(&msg
);
3564 if (GetCapture() != infoPtr
->hwnd
)
3574 TREEVIEW_LButtonDoubleClick(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3576 TREEVIEW_ITEM
*wineItem
;
3580 SetFocus(infoPtr
->hwnd
);
3582 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
3584 /* If there is pending 'edit label' event - kill it now */
3585 KillTimer(infoPtr
->hwnd
, TV_EDIT_TIMER
);
3588 hit
.pt
.x
= SLOWORD(lParam
);
3589 hit
.pt
.y
= SHIWORD(lParam
);
3591 wineItem
= (TREEVIEW_ITEM
*)TREEVIEW_HitTest(infoPtr
, &hit
);
3594 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, wineItem
));
3596 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_DBLCLK
) == FALSE
)
3600 case TVHT_ONITEMRIGHT
:
3601 /* FIXME: we should not have sent NM_DBLCLK in this case. */
3604 case TVHT_ONITEMINDENT
:
3605 if (!(infoPtr
->dwStyle
& TVS_HASLINES
))
3611 int level
= hit
.pt
.x
/ infoPtr
->uIndent
;
3612 if (!(infoPtr
->dwStyle
& TVS_LINESATROOT
)) level
++;
3614 while (wineItem
->iLevel
> level
)
3616 wineItem
= wineItem
->parent
;
3622 case TVHT_ONITEMLABEL
:
3623 case TVHT_ONITEMICON
:
3624 case TVHT_ONITEMBUTTON
:
3625 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3628 case TVHT_ONITEMSTATEICON
:
3629 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
3630 TREEVIEW_ToggleItemState(infoPtr
, wineItem
);
3632 TREEVIEW_Toggle(infoPtr
, wineItem
, TRUE
);
3641 TREEVIEW_LButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3643 HWND hwnd
= infoPtr
->hwnd
;
3648 /* If Edit control is active - kill it and return.
3649 * The best way to do it is to set focus to itself.
3650 * Edit control subclassed procedure will automatically call
3653 if (infoPtr
->hwndEdit
)
3659 ht
.pt
.x
= SLOWORD(lParam
);
3660 ht
.pt
.y
= SHIWORD(lParam
);
3662 TREEVIEW_HitTest(infoPtr
, &ht
);
3663 TRACE("item %d\n", TREEVIEW_GetItemIndex(infoPtr
, ht
.hItem
));
3665 /* update focusedItem and redraw both items */
3666 if(ht
.hItem
&& (ht
.flags
& TVHT_ONITEM
))
3668 infoPtr
->focusedItem
= ht
.hItem
;
3669 InvalidateRect(hwnd
, &(((HTREEITEM
)(ht
.hItem
))->rect
), TRUE
);
3671 if(infoPtr
->selectedItem
)
3672 InvalidateRect(hwnd
, &(infoPtr
->selectedItem
->rect
), TRUE
);
3675 bTrack
= (ht
.flags
& TVHT_ONITEM
)
3676 && !(infoPtr
->dwStyle
& TVS_DISABLEDRAGDROP
);
3678 /* Send NM_CLICK right away */
3680 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
3683 if (ht
.flags
& TVHT_ONITEMBUTTON
)
3685 TREEVIEW_Toggle(infoPtr
, ht
.hItem
, TRUE
);
3689 { /* if TREEVIEW_TrackMouse == 1 dragging occured and the cursor left the dragged item's rectangle */
3690 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
3692 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINDRAGA
, ht
.hItem
,
3694 infoPtr
->dropItem
= ht
.hItem
;
3696 /* clean up focusedItem as we dragged and won't select this item */
3697 if(infoPtr
->focusedItem
)
3699 /* refresh the item that was focused */
3700 tempItem
= infoPtr
->focusedItem
;
3701 infoPtr
->focusedItem
= 0;
3702 InvalidateRect(infoPtr
->hwnd
, &tempItem
->rect
, TRUE
);
3704 /* refresh the selected item to return the filled background */
3705 InvalidateRect(infoPtr
->hwnd
, &(infoPtr
->selectedItem
->rect
), TRUE
);
3712 if (TREEVIEW_SendSimpleNotify(infoPtr
, NM_CLICK
))
3716 * If the style allows editing and the node is already selected
3717 * and the click occured on the item label...
3719 if ((infoPtr
->dwStyle
& TVS_EDITLABELS
) &&
3720 (ht
.flags
& TVHT_ONITEMLABEL
) && (infoPtr
->selectedItem
== ht
.hItem
))
3722 if (infoPtr
->Timer
& TV_EDIT_TIMER_SET
)
3723 KillTimer(hwnd
, TV_EDIT_TIMER
);
3725 SetTimer(hwnd
, TV_EDIT_TIMER
, GetDoubleClickTime(), 0);
3726 infoPtr
->Timer
|= TV_EDIT_TIMER_SET
;
3728 else if (ht
.flags
& TVHT_ONITEM
) /* select the item if the hit was inside of the icon or text */
3731 * if we are TVS_SINGLEEXPAND then we want this single click to
3732 * do a bunch of things.
3734 if((infoPtr
->dwStyle
& TVS_SINGLEEXPAND
) &&
3735 (infoPtr
->hwndEdit
== 0))
3737 TREEVIEW_ITEM
*SelItem
;
3740 * Send the notification
3742 TREEVIEW_SendTreeviewNotify(infoPtr
, TVN_SINGLEEXPAND
, TVIF_HANDLE
| TVIF_PARAM
,
3746 * Close the previous selection all the way to the root
3747 * as long as the new selection is not a child
3749 if((infoPtr
->selectedItem
)
3750 && (infoPtr
->selectedItem
!= ht
.hItem
))
3752 BOOL closeit
= TRUE
;
3755 /* determine if the hitItem is a child of the currently selected item */
3756 while(closeit
&& SelItem
&& TREEVIEW_ValidItem(infoPtr
, SelItem
) && (SelItem
!= infoPtr
->root
))
3758 closeit
= (SelItem
!= infoPtr
->selectedItem
);
3759 SelItem
= SelItem
->parent
;
3764 if(TREEVIEW_ValidItem(infoPtr
, infoPtr
->selectedItem
))
3765 SelItem
= infoPtr
->selectedItem
;
3767 while(SelItem
&& (SelItem
!= ht
.hItem
) && TREEVIEW_ValidItem(infoPtr
, SelItem
) && (SelItem
!= infoPtr
->root
))
3769 TREEVIEW_Collapse(infoPtr
, SelItem
, FALSE
, FALSE
);
3770 SelItem
= SelItem
->parent
;
3776 * Expand the current item
3778 TREEVIEW_Expand(infoPtr
, ht
.hItem
, TVE_TOGGLE
, FALSE
);
3781 /* Select the current item */
3782 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, ht
.hItem
, TVC_BYMOUSE
);
3784 else if (ht
.flags
& TVHT_ONITEMSTATEICON
)
3786 /* TVS_CHECKBOXES requires us to toggle the current state */
3787 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
3788 TREEVIEW_ToggleItemState(infoPtr
, ht
.hItem
);
3798 TREEVIEW_RButtonDown(TREEVIEW_INFO
*infoPtr
, LPARAM lParam
)
3802 if (infoPtr
->hwndEdit
)
3804 SetFocus(infoPtr
->hwnd
);
3808 ht
.pt
.x
= SLOWORD(lParam
);
3809 ht
.pt
.y
= SHIWORD(lParam
);
3811 TREEVIEW_HitTest(infoPtr
, &ht
);
3813 if (TREEVIEW_TrackMouse(infoPtr
, ht
.pt
))
3817 TREEVIEW_SendTreeviewDnDNotify(infoPtr
, TVN_BEGINRDRAGA
, ht
.hItem
,
3819 infoPtr
->dropItem
= ht
.hItem
;
3824 SetFocus(infoPtr
->hwnd
);
3825 TREEVIEW_SendSimpleNotify(infoPtr
, NM_RCLICK
);
3832 TREEVIEW_RButtonUp(TREEVIEW_INFO
*infoPtr
, LPPOINT pPt
)
3839 TREEVIEW_CreateDragImage(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3841 TREEVIEW_ITEM
*dragItem
= (HTREEITEM
)lParam
;
3845 HBITMAP hbmp
, hOldbmp
;
3852 if (!(infoPtr
->himlNormal
))
3855 if (!dragItem
|| !TREEVIEW_ValidItem(infoPtr
, dragItem
))
3858 TREEVIEW_UpdateDispInfo(infoPtr
, dragItem
, TVIF_TEXT
);
3860 hwtop
= GetDesktopWindow();
3861 htopdc
= GetDC(hwtop
);
3862 hdc
= CreateCompatibleDC(htopdc
);
3864 hOldFont
= SelectObject(hdc
, infoPtr
->hFont
);
3865 GetTextExtentPoint32A(hdc
, dragItem
->pszText
, lstrlenA(dragItem
->pszText
),
3867 TRACE("%ld %ld %s %d\n", size
.cx
, size
.cy
, dragItem
->pszText
,
3868 lstrlenA(dragItem
->pszText
));
3869 hbmp
= CreateCompatibleBitmap(htopdc
, size
.cx
, size
.cy
);
3870 hOldbmp
= SelectObject(hdc
, hbmp
);
3872 ImageList_GetIconSize(infoPtr
->himlNormal
, &cx
, &cy
);
3877 infoPtr
->dragList
= ImageList_Create(size
.cx
, size
.cy
, ILC_COLOR
, 10, 10);
3878 ImageList_Draw(infoPtr
->himlNormal
, dragItem
->iImage
, hdc
, 0, 0,
3882 ImageList_GetImageInfo (infoPtr->himlNormal, dragItem->hItem, &iminfo);
3883 ImageList_AddMasked (infoPtr->dragList, iminfo.hbmImage, CLR_DEFAULT);
3886 /* draw item text */
3888 SetRect(&rc
, cx
, 0, size
.cx
, size
.cy
);
3889 DrawTextA(hdc
, dragItem
->pszText
, lstrlenA(dragItem
->pszText
), &rc
,
3891 SelectObject(hdc
, hOldFont
);
3892 SelectObject(hdc
, hOldbmp
);
3894 ImageList_Add(infoPtr
->dragList
, hbmp
, 0);
3898 ReleaseDC(hwtop
, htopdc
);
3900 return (LRESULT
)infoPtr
->dragList
;
3903 /* Selection ************************************************************/
3906 TREEVIEW_DoSelectItem(TREEVIEW_INFO
*infoPtr
, INT action
, HTREEITEM newSelect
,
3909 TREEVIEW_ITEM
*prevSelect
;
3912 assert(newSelect
== NULL
|| TREEVIEW_ValidItem(infoPtr
, newSelect
));
3914 TRACE("Entering item %p (%s), flag %x, cause %x, state %d\n",
3915 newSelect
, TREEVIEW_ItemName(newSelect
), action
, cause
,
3916 newSelect
? newSelect
->state
: 0);
3918 /* reset and redraw focusedItem if focusedItem was set so we don't */
3919 /* have to worry about the previously focused item when we set a new one */
3920 if(infoPtr
->focusedItem
)
3922 rcFocused
= (infoPtr
->focusedItem
)->rect
;
3923 infoPtr
->focusedItem
= 0;
3924 InvalidateRect(infoPtr
->hwnd
, &rcFocused
, TRUE
);
3930 prevSelect
= infoPtr
->selectedItem
;
3932 if (prevSelect
== newSelect
)
3935 if (TREEVIEW_SendTreeviewNotify(infoPtr
,
3938 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
3944 prevSelect
->state
&= ~TVIS_SELECTED
;
3946 newSelect
->state
|= TVIS_SELECTED
;
3948 infoPtr
->selectedItem
= newSelect
;
3950 TREEVIEW_EnsureVisible(infoPtr
, infoPtr
->selectedItem
, FALSE
);
3952 TREEVIEW_SendTreeviewNotify(infoPtr
,
3955 TVIF_HANDLE
| TVIF_STATE
| TVIF_PARAM
,
3958 TREEVIEW_Invalidate(infoPtr
, prevSelect
);
3959 TREEVIEW_Invalidate(infoPtr
, newSelect
);
3962 case TVGN_DROPHILITE
:
3963 prevSelect
= infoPtr
->dropItem
;
3966 prevSelect
->state
&= ~TVIS_DROPHILITED
;
3968 infoPtr
->dropItem
= newSelect
;
3971 newSelect
->state
|= TVIS_DROPHILITED
;
3973 TREEVIEW_Invalidate(infoPtr
, prevSelect
);
3974 TREEVIEW_Invalidate(infoPtr
, newSelect
);
3977 case TVGN_FIRSTVISIBLE
:
3978 TREEVIEW_EnsureVisible(infoPtr
, newSelect
, FALSE
);
3979 TREEVIEW_SetFirstVisible(infoPtr
, newSelect
, TRUE
);
3980 TREEVIEW_Invalidate(infoPtr
, NULL
);
3984 TRACE("Leaving state %d\n", newSelect
? newSelect
->state
: 0);
3988 /* FIXME: handle NM_KILLFOCUS etc */
3990 TREEVIEW_SelectItem(TREEVIEW_INFO
*infoPtr
, INT wParam
, HTREEITEM item
)
3992 if (item
!= NULL
&& !TREEVIEW_ValidItem(infoPtr
, item
))
3995 TRACE("%p (%s) %d\n", item
, TREEVIEW_ItemName(item
), wParam
);
3997 if (!TREEVIEW_DoSelectItem(infoPtr
, wParam
, item
, TVC_UNKNOWN
))
4003 /*************************************************************************
4004 * TREEVIEW_ProcessLetterKeys
4006 * Processes keyboard messages generated by pressing the letter keys
4008 * What this does is perform a case insensitive search from the
4009 * current position with the following quirks:
4010 * - If two chars or more are pressed in quick succession we search
4011 * for the corresponding string (e.g. 'abc').
4012 * - If there is a delay we wipe away the current search string and
4013 * restart with just that char.
4014 * - If the user keeps pressing the same character, whether slowly or
4015 * fast, so that the search string is entirely composed of this
4016 * character ('aaaaa' for instance), then we search for first item
4017 * that starting with that character.
4018 * - If the user types the above character in quick succession, then
4019 * we must also search for the corresponding string ('aaaaa'), and
4020 * go to that string if there is a match.
4028 * - The current implementation has a list of characters it will
4029 * accept and it ignores averything else. In particular it will
4030 * ignore accentuated characters which seems to match what
4031 * Windows does. But I'm not sure it makes sense to follow
4033 * - We don't sound a beep when the search fails.
4034 * - The search should start from the focused item, not from the selected
4035 * item. One reason for this is to allow for multiple selections in trees.
4036 * But currently infoPtr->focusedItem does not seem very usable.
4040 * TREEVIEW_ProcessLetterKeys
4042 static INT
TREEVIEW_ProcessLetterKeys(
4043 HWND hwnd
, /* handle to the window */
4044 WPARAM charCode
, /* the character code, the actual character */
4045 LPARAM keyData
/* key data */
4048 TREEVIEW_INFO
*infoPtr
;
4050 HTREEITEM endidx
,idx
;
4052 CHAR buffer
[MAX_PATH
];
4053 DWORD timestamp
,elapsed
;
4055 /* simple parameter checking */
4056 if (!hwnd
|| !charCode
|| !keyData
)
4059 infoPtr
=(TREEVIEW_INFO
*)GetWindowLongA(hwnd
, 0);
4063 /* only allow the valid WM_CHARs through */
4064 if (!isalnum(charCode
) &&
4065 charCode
!= '.' && charCode
!= '`' && charCode
!= '!' &&
4066 charCode
!= '@' && charCode
!= '#' && charCode
!= '$' &&
4067 charCode
!= '%' && charCode
!= '^' && charCode
!= '&' &&
4068 charCode
!= '*' && charCode
!= '(' && charCode
!= ')' &&
4069 charCode
!= '-' && charCode
!= '_' && charCode
!= '+' &&
4070 charCode
!= '=' && charCode
!= '\\'&& charCode
!= ']' &&
4071 charCode
!= '}' && charCode
!= '[' && charCode
!= '{' &&
4072 charCode
!= '/' && charCode
!= '?' && charCode
!= '>' &&
4073 charCode
!= '<' && charCode
!= ',' && charCode
!= '~')
4076 /* compute how much time elapsed since last keypress */
4077 timestamp
= GetTickCount();
4078 if (timestamp
> infoPtr
->lastKeyPressTimestamp
) {
4079 elapsed
=timestamp
-infoPtr
->lastKeyPressTimestamp
;
4081 elapsed
=infoPtr
->lastKeyPressTimestamp
-timestamp
;
4084 /* update the search parameters */
4085 infoPtr
->lastKeyPressTimestamp
=timestamp
;
4086 if (elapsed
< KEY_DELAY
) {
4087 if (infoPtr
->nSearchParamLength
< sizeof(infoPtr
->szSearchParam
)) {
4088 infoPtr
->szSearchParam
[infoPtr
->nSearchParamLength
++]=charCode
;
4090 if (infoPtr
->charCode
!= charCode
) {
4091 infoPtr
->charCode
=charCode
=0;
4094 infoPtr
->charCode
=charCode
;
4095 infoPtr
->szSearchParam
[0]=charCode
;
4096 infoPtr
->nSearchParamLength
=1;
4097 /* Redundant with the 1 char string */
4101 /* and search from the current position */
4103 if (infoPtr
->selectedItem
!= NULL
) {
4104 endidx
=infoPtr
->selectedItem
;
4105 /* if looking for single character match,
4106 * then we must always move forward
4108 if (infoPtr
->nSearchParamLength
== 1)
4109 idx
=TREEVIEW_GetNextListItem(infoPtr
,endidx
);
4114 idx
=infoPtr
->root
->firstChild
;
4120 idx
=infoPtr
->root
->firstChild
;
4124 ZeroMemory(&item
, sizeof(item
));
4125 item
.mask
= TVIF_TEXT
;
4127 item
.pszText
= buffer
;
4128 item
.cchTextMax
= sizeof(buffer
);
4129 TREEVIEW_GetItemA( infoPtr
, &item
);
4131 /* check for a match */
4132 if (strncasecmp(item
.pszText
,infoPtr
->szSearchParam
,infoPtr
->nSearchParamLength
) == 0) {
4135 } else if ( (charCode
!= 0) && (nItem
== NULL
) &&
4136 (nItem
!= infoPtr
->selectedItem
) &&
4137 (strncasecmp(item
.pszText
,infoPtr
->szSearchParam
,1) == 0) ) {
4138 /* This would work but we must keep looking for a longer match */
4141 idx
=TREEVIEW_GetNextListItem(infoPtr
,idx
);
4142 } while (idx
!= endidx
);
4144 if (nItem
!= NULL
) {
4145 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, nItem
, TVC_BYKEYBOARD
)) {
4146 TREEVIEW_EnsureVisible(infoPtr
, nItem
, FALSE
);
4153 /* Scrolling ************************************************************/
4156 TREEVIEW_EnsureVisible(TREEVIEW_INFO
*infoPtr
, HTREEITEM item
, BOOL bHScroll
)
4158 HTREEITEM newFirstVisible
= NULL
;
4161 if (!TREEVIEW_ValidItem(infoPtr
, item
))
4164 if (!ISVISIBLE(item
))
4166 /* Expand parents as necessary. */
4169 /* see if we are trying to ensure that root is vislble */
4170 if((item
!= infoPtr
->root
) && TREEVIEW_ValidItem(infoPtr
, item
))
4171 parent
= item
->parent
;
4173 parent
= item
; /* this item is the topmost item */
4175 while (parent
!= infoPtr
->root
)
4177 if (!(parent
->state
& TVIS_EXPANDED
))
4178 TREEVIEW_Expand(infoPtr
, parent
, FALSE
, FALSE
);
4180 parent
= parent
->parent
;
4184 TRACE("%p (%s) %ld - %ld\n", item
, TREEVIEW_ItemName(item
), item
->visibleOrder
,
4185 infoPtr
->firstVisible
->visibleOrder
);
4187 visible_pos
= item
->visibleOrder
- infoPtr
->firstVisible
->visibleOrder
;
4189 if (visible_pos
< 0)
4191 /* item is before the start of the list: put it at the top. */
4192 newFirstVisible
= item
;
4194 else if (visible_pos
>= TREEVIEW_GetVisibleCount(infoPtr
)
4195 /* Sometimes, before we are displayed, GVC is 0, causing us to
4196 * spuriously scroll up. */
4199 /* item is past the end of the list. */
4200 int scroll
= visible_pos
- TREEVIEW_GetVisibleCount(infoPtr
);
4202 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, infoPtr
->firstVisible
,
4208 /* Scroll window so item's text is visible as much as possible */
4209 /* Calculation of amount of extra space is taken from EditLabel code */
4211 TEXTMETRICA textMetric
;
4212 HDC hdc
= GetWindowDC(infoPtr
->hwnd
);
4214 x
= item
->textWidth
;
4216 GetTextMetricsA(hdc
, &textMetric
);
4217 ReleaseDC(infoPtr
->hwnd
, hdc
);
4219 x
+= (textMetric
.tmMaxCharWidth
* 2);
4220 x
= max(x
, textMetric
.tmMaxCharWidth
* 3);
4222 if (item
->textOffset
< 0)
4223 pos
= item
->textOffset
;
4224 else if (item
->textOffset
+ x
> infoPtr
->clientWidth
)
4226 if (x
> infoPtr
->clientWidth
)
4227 pos
= item
->textOffset
;
4229 pos
= item
->textOffset
+ x
- infoPtr
->clientWidth
;
4234 TREEVIEW_HScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, infoPtr
->scrollX
+ pos
));
4237 if (newFirstVisible
!= NULL
&& newFirstVisible
!= infoPtr
->firstVisible
)
4239 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
, TRUE
);
4248 TREEVIEW_SetFirstVisible(TREEVIEW_INFO
*infoPtr
,
4249 TREEVIEW_ITEM
*newFirstVisible
,
4250 BOOL bUpdateScrollPos
)
4254 TRACE("%p: %s\n", newFirstVisible
, TREEVIEW_ItemName(newFirstVisible
));
4256 if (newFirstVisible
!= NULL
)
4258 /* Prevent an empty gap from appearing at the bottom... */
4259 gap_size
= TREEVIEW_GetVisibleCount(infoPtr
)
4260 - infoPtr
->maxVisibleOrder
+ newFirstVisible
->visibleOrder
;
4264 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, newFirstVisible
,
4267 /* ... unless we just don't have enough items. */
4268 if (newFirstVisible
== NULL
)
4269 newFirstVisible
= infoPtr
->root
->firstChild
;
4273 if (infoPtr
->firstVisible
!= newFirstVisible
)
4275 if (infoPtr
->firstVisible
== NULL
|| newFirstVisible
== NULL
)
4277 infoPtr
->firstVisible
= newFirstVisible
;
4278 TREEVIEW_Invalidate(infoPtr
, NULL
);
4282 TREEVIEW_ITEM
*item
;
4283 int scroll
= infoPtr
->uItemHeight
*
4284 (infoPtr
->firstVisible
->visibleOrder
4285 - newFirstVisible
->visibleOrder
);
4287 infoPtr
->firstVisible
= newFirstVisible
;
4289 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4290 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4292 item
->rect
.top
+= scroll
;
4293 item
->rect
.bottom
+= scroll
;
4296 if (bUpdateScrollPos
)
4297 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4298 newFirstVisible
->visibleOrder
, TRUE
);
4300 ScrollWindow(infoPtr
->hwnd
, 0, scroll
, NULL
, NULL
);
4301 UpdateWindow(infoPtr
->hwnd
);
4306 /************************************************************************
4307 * VScroll is always in units of visible items. i.e. we always have a
4308 * visible item aligned to the top of the control. (Unless we have no
4312 TREEVIEW_VScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4314 TREEVIEW_ITEM
*oldFirstVisible
= infoPtr
->firstVisible
;
4315 TREEVIEW_ITEM
*newFirstVisible
= NULL
;
4317 int nScrollCode
= LOWORD(wParam
);
4319 TRACE("wp %x\n", wParam
);
4321 if (!(infoPtr
->uInternalStatus
& TV_VSCROLL
))
4324 if (infoPtr
->hwndEdit
)
4325 SetFocus(infoPtr
->hwnd
);
4327 if (!oldFirstVisible
)
4329 assert(infoPtr
->root
->firstChild
== NULL
);
4333 switch (nScrollCode
)
4336 newFirstVisible
= infoPtr
->root
->firstChild
;
4340 newFirstVisible
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
4344 newFirstVisible
= TREEVIEW_GetPrevListItem(infoPtr
, oldFirstVisible
);
4348 newFirstVisible
= TREEVIEW_GetNextListItem(infoPtr
, oldFirstVisible
);
4352 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4353 -max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4357 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
, oldFirstVisible
,
4358 max(1, TREEVIEW_GetVisibleCount(infoPtr
)));
4362 case SB_THUMBPOSITION
:
4363 newFirstVisible
= TREEVIEW_GetListItem(infoPtr
,
4364 infoPtr
->root
->firstChild
,
4365 (LONG
)(SHORT
)HIWORD(wParam
));
4372 if (newFirstVisible
!= NULL
)
4374 if (newFirstVisible
!= oldFirstVisible
)
4375 TREEVIEW_SetFirstVisible(infoPtr
, newFirstVisible
,
4376 nScrollCode
!= SB_THUMBTRACK
);
4377 else if (nScrollCode
== SB_THUMBPOSITION
)
4378 SetScrollPos(infoPtr
->hwnd
, SB_VERT
,
4379 newFirstVisible
->visibleOrder
, TRUE
);
4386 TREEVIEW_HScroll(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4389 int scrollX
= infoPtr
->scrollX
;
4390 int nScrollCode
= LOWORD(wParam
);
4392 TRACE("wp %x\n", wParam
);
4394 if (!(infoPtr
->uInternalStatus
& TV_HSCROLL
))
4397 if (infoPtr
->hwndEdit
)
4398 SetFocus(infoPtr
->hwnd
);
4400 maxWidth
= infoPtr
->treeWidth
- infoPtr
->clientWidth
;
4401 /* shall never occur */
4408 switch (nScrollCode
)
4411 scrollX
-= infoPtr
->uItemHeight
;
4414 scrollX
+= infoPtr
->uItemHeight
;
4417 scrollX
-= infoPtr
->clientWidth
;
4420 scrollX
+= infoPtr
->clientWidth
;
4424 case SB_THUMBPOSITION
:
4425 scrollX
= (int)(SHORT
)HIWORD(wParam
);
4432 if (scrollX
> maxWidth
)
4434 else if (scrollX
< 0)
4438 if (scrollX
!= infoPtr
->scrollX
)
4440 TREEVIEW_ITEM
*item
;
4441 LONG scroll_pixels
= infoPtr
->scrollX
- scrollX
;
4443 for (item
= infoPtr
->root
->firstChild
; item
!= NULL
;
4444 item
= TREEVIEW_GetNextListItem(infoPtr
, item
))
4446 item
->linesOffset
+= scroll_pixels
;
4447 item
->stateOffset
+= scroll_pixels
;
4448 item
->imageOffset
+= scroll_pixels
;
4449 item
->textOffset
+= scroll_pixels
;
4452 ScrollWindow(infoPtr
->hwnd
, scroll_pixels
, 0, NULL
, NULL
);
4453 infoPtr
->scrollX
= scrollX
;
4454 UpdateWindow(infoPtr
->hwnd
);
4457 if (nScrollCode
!= SB_THUMBTRACK
)
4458 SetScrollPos(infoPtr
->hwnd
, SB_HORZ
, scrollX
, TRUE
);
4464 TREEVIEW_MouseWheel(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4467 UINT pulScrollLines
= 3;
4469 if (infoPtr
->firstVisible
== NULL
)
4472 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES
, 0, &pulScrollLines
, 0);
4474 gcWheelDelta
= -(short)HIWORD(wParam
);
4475 pulScrollLines
*= (gcWheelDelta
/ WHEEL_DELTA
);
4477 if (abs(gcWheelDelta
) >= WHEEL_DELTA
&& pulScrollLines
)
4479 int newDy
= infoPtr
->firstVisible
->visibleOrder
+ pulScrollLines
;
4480 int maxDy
= infoPtr
->maxVisibleOrder
;
4488 TREEVIEW_VScroll(infoPtr
, MAKEWPARAM(SB_THUMBPOSITION
, newDy
));
4493 /* Create/Destroy *******************************************************/
4496 TREEVIEW_Create(HWND hwnd
)
4499 TREEVIEW_INFO
*infoPtr
;
4501 TRACE("wnd %x, style %lx\n", hwnd
, GetWindowLongA(hwnd
, GWL_STYLE
));
4503 infoPtr
= (TREEVIEW_INFO
*)COMCTL32_Alloc(sizeof(TREEVIEW_INFO
));
4505 if (infoPtr
== NULL
)
4507 ERR("could not allocate info memory!\n");
4511 SetWindowLongA(hwnd
, 0, (DWORD
)infoPtr
);
4513 infoPtr
->hwnd
= hwnd
;
4514 infoPtr
->dwStyle
= GetWindowLongA(hwnd
, GWL_STYLE
);
4515 infoPtr
->uInternalStatus
= 0;
4517 infoPtr
->uNumItems
= 0;
4518 infoPtr
->cdmode
= 0;
4519 infoPtr
->uScrollTime
= 300; /* milliseconds */
4520 infoPtr
->bRedraw
= TRUE
;
4522 GetClientRect(hwnd
, &rcClient
);
4524 /* No scroll bars yet. */
4525 infoPtr
->clientWidth
= rcClient
.right
;
4526 infoPtr
->clientHeight
= rcClient
.bottom
;
4528 infoPtr
->treeWidth
= 0;
4529 infoPtr
->treeHeight
= 0;
4531 infoPtr
->uIndent
= 19;
4532 infoPtr
->selectedItem
= 0;
4533 infoPtr
->focusedItem
= 0;
4535 infoPtr
->firstVisible
= 0;
4536 infoPtr
->maxVisibleOrder
= 0;
4537 infoPtr
->dropItem
= 0;
4538 infoPtr
->insertMarkItem
= 0;
4539 infoPtr
->insertBeforeorAfter
= 0;
4542 infoPtr
->scrollX
= 0;
4544 infoPtr
->clrBk
= GetSysColor(COLOR_WINDOW
);
4545 infoPtr
->clrText
= -1; /* use system color */
4546 infoPtr
->clrLine
= RGB(128, 128, 128);
4547 infoPtr
->clrInsertMark
= GetSysColor(COLOR_BTNTEXT
);
4551 infoPtr
->hwndEdit
= 0;
4552 infoPtr
->wpEditOrig
= NULL
;
4553 infoPtr
->bIgnoreEditKillFocus
= FALSE
;
4554 infoPtr
->bLabelChanged
= FALSE
;
4556 infoPtr
->himlNormal
= NULL
;
4557 infoPtr
->himlState
= NULL
;
4558 infoPtr
->normalImageWidth
= 0;
4559 infoPtr
->normalImageHeight
= 0;
4560 infoPtr
->stateImageWidth
= 0;
4561 infoPtr
->stateImageHeight
= 0;
4563 infoPtr
->items
= DPA_Create(16);
4565 infoPtr
->hFont
= GetStockObject(DEFAULT_GUI_FONT
);
4566 infoPtr
->hBoldFont
= TREEVIEW_CreateBoldFont(infoPtr
->hFont
);
4568 infoPtr
->uItemHeight
= TREEVIEW_NaturalHeight(infoPtr
);
4570 infoPtr
->root
= TREEVIEW_AllocateItem(infoPtr
);
4571 infoPtr
->root
->state
= TVIS_EXPANDED
;
4572 infoPtr
->root
->iLevel
= -1;
4573 infoPtr
->root
->visibleOrder
= -1;
4575 infoPtr
->hwndNotify
= GetParent(hwnd
);
4577 infoPtr
->bTransparent
= ( GetWindowLongA( hwnd
, GWL_STYLE
) & TBSTYLE_FLAT
);
4580 infoPtr
->hwndToolTip
= 0;
4581 if (!(infoPtr
->dwStyle
& TVS_NOTOOLTIPS
))
4582 infoPtr
->hwndToolTip
= COMCTL32_CreateToolTip(hwnd
);
4584 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4587 HBITMAP hbm
, hbmOld
;
4591 infoPtr
->himlState
=
4592 ImageList_Create(16, 16, ILC_COLOR
| ILC_MASK
, 3, 0);
4594 hdc
= CreateCompatibleDC(0);
4595 hbm
= CreateCompatibleBitmap(hdc
, 48, 16);
4596 hbmOld
= SelectObject(hdc
, hbm
);
4598 rc
.left
= 0; rc
.top
= 0;
4599 rc
.right
= 48; rc
.bottom
= 16;
4600 FillRect(hdc
, &rc
, (HBRUSH
)(COLOR_WINDOW
+1));
4602 rc
.left
= 18; rc
.top
= 2;
4603 rc
.right
= 30; rc
.bottom
= 14;
4604 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4605 DFCS_BUTTONCHECK
|DFCS_FLAT
);
4607 rc
.left
= 34; rc
.right
= 46;
4608 DrawFrameControl(hdc
, &rc
, DFC_BUTTON
,
4609 DFCS_BUTTONCHECK
|DFCS_FLAT
|DFCS_CHECKED
);
4611 nIndex
= ImageList_AddMasked(infoPtr
->himlState
, hbm
,
4612 GetSysColor(COLOR_WINDOW
));
4613 TRACE("chckbox index %d\n", nIndex
);
4614 SelectObject(hdc
, hbmOld
);
4618 infoPtr
->stateImageWidth
= 16;
4619 infoPtr
->stateImageHeight
= 16;
4626 TREEVIEW_Destroy(TREEVIEW_INFO
*infoPtr
)
4630 TREEVIEW_RemoveTree(infoPtr
);
4632 /* tool tip is automatically destroyed: we are its owner */
4634 /* Restore original windproc. */
4635 if (infoPtr
->hwndEdit
)
4636 SetWindowLongA(infoPtr
->hwndEdit
, GWL_WNDPROC
,
4637 (LONG
)infoPtr
->wpEditOrig
);
4639 /* Deassociate treeview from the window before doing anything drastic. */
4640 SetWindowLongA(infoPtr
->hwnd
, 0, (LONG
)NULL
);
4642 DeleteObject(infoPtr
->hBoldFont
);
4643 COMCTL32_Free(infoPtr
);
4648 /* Miscellaneous Messages ***********************************************/
4651 TREEVIEW_ScrollKeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM key
)
4659 #define SCROLL_ENTRY(dir, code) { ((dir) << 7) | (code) }
4660 SCROLL_ENTRY(SB_VERT
, SB_PAGEUP
), /* VK_PRIOR */
4661 SCROLL_ENTRY(SB_VERT
, SB_PAGEDOWN
), /* VK_NEXT */
4662 SCROLL_ENTRY(SB_VERT
, SB_BOTTOM
), /* VK_END */
4663 SCROLL_ENTRY(SB_VERT
, SB_TOP
), /* VK_HOME */
4664 SCROLL_ENTRY(SB_HORZ
, SB_LINEUP
), /* VK_LEFT */
4665 SCROLL_ENTRY(SB_VERT
, SB_LINEUP
), /* VK_UP */
4666 SCROLL_ENTRY(SB_HORZ
, SB_LINEDOWN
), /* VK_RIGHT */
4667 SCROLL_ENTRY(SB_VERT
, SB_LINEDOWN
) /* VK_DOWN */
4671 if (key
>= VK_PRIOR
&& key
<= VK_DOWN
)
4673 unsigned char code
= scroll
[key
- VK_PRIOR
].code
;
4675 (((code
& (1 << 7)) == (SB_HORZ
<< 7))
4677 : TREEVIEW_VScroll
)(infoPtr
, code
& 0x7F);
4683 /************************************************************************
4686 * VK_UP Move selection to the previous non-hidden item.
4687 * VK_DOWN Move selection to the next non-hidden item.
4688 * VK_HOME Move selection to the first item.
4689 * VK_END Move selection to the last item.
4690 * VK_LEFT If expanded then collapse, otherwise move to parent.
4691 * VK_RIGHT If collapsed then expand, otherwise move to first child.
4693 * VK_SUBTRACT Collapse.
4694 * VK_MULTIPLY Expand all.
4695 * VK_PRIOR Move up GetVisibleCount items.
4696 * VK_NEXT Move down GetVisibleCount items.
4697 * VK_BACK Move to parent.
4698 * CTRL-Left,Right,Up,Down,PgUp,PgDown,Home,End: Scroll without changing selection
4701 TREEVIEW_KeyDown(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
)
4703 /* If it is non-NULL and different, it will be selected and visible. */
4704 TREEVIEW_ITEM
*newSelection
= NULL
;
4706 TREEVIEW_ITEM
*prevItem
= infoPtr
->selectedItem
;
4708 TRACE("%x\n", wParam
);
4710 if (prevItem
== NULL
)
4713 if (GetAsyncKeyState(VK_CONTROL
) & 0x8000)
4714 return TREEVIEW_ScrollKeyDown(infoPtr
, wParam
);
4719 newSelection
= TREEVIEW_GetPrevListItem(infoPtr
, prevItem
);
4721 newSelection
= infoPtr
->root
->firstChild
;
4725 newSelection
= TREEVIEW_GetNextListItem(infoPtr
, prevItem
);
4729 newSelection
= infoPtr
->root
->firstChild
;
4733 newSelection
= TREEVIEW_GetLastListItem(infoPtr
, infoPtr
->root
);
4737 if (prevItem
->state
& TVIS_EXPANDED
)
4739 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
4741 else if (prevItem
->parent
!= infoPtr
->root
)
4743 newSelection
= prevItem
->parent
;
4748 if (TREEVIEW_HasChildren(infoPtr
, prevItem
))
4750 if (!(prevItem
->state
& TVIS_EXPANDED
))
4751 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
4754 newSelection
= prevItem
->firstChild
;
4761 TREEVIEW_ExpandAll(infoPtr
, prevItem
);
4765 if (!(prevItem
->state
& TVIS_EXPANDED
))
4766 TREEVIEW_Expand(infoPtr
, prevItem
, FALSE
, TRUE
);
4770 if (prevItem
->state
& TVIS_EXPANDED
)
4771 TREEVIEW_Collapse(infoPtr
, prevItem
, FALSE
, TRUE
);
4776 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
4777 -TREEVIEW_GetVisibleCount(infoPtr
));
4782 = TREEVIEW_GetListItem(infoPtr
, prevItem
,
4783 TREEVIEW_GetVisibleCount(infoPtr
));
4787 newSelection
= prevItem
->parent
;
4788 if (newSelection
== infoPtr
->root
)
4789 newSelection
= NULL
;
4793 if (infoPtr
->dwStyle
& TVS_CHECKBOXES
)
4794 TREEVIEW_ToggleItemState(infoPtr
, prevItem
);
4798 if (newSelection
&& newSelection
!= prevItem
)
4800 if (TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, newSelection
,
4803 TREEVIEW_EnsureVisible(infoPtr
, newSelection
, FALSE
);
4811 TREEVIEW_Notify(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
4813 LPNMHDR lpnmh
= (LPNMHDR
)lParam
;
4815 if (lpnmh
->code
== PGN_CALCSIZE
) {
4816 LPNMPGCALCSIZE lppgc
= (LPNMPGCALCSIZE
)lParam
;
4818 if (lppgc
->dwFlag
== PGF_CALCWIDTH
) {
4819 lppgc
->iWidth
= infoPtr
->treeWidth
;
4820 TRACE("got PGN_CALCSIZE, returning horz size = %ld, client=%ld\n",
4821 infoPtr
->treeWidth
, infoPtr
->clientWidth
);
4824 lppgc
->iHeight
= infoPtr
->treeHeight
;
4825 TRACE("got PGN_CALCSIZE, returning vert size = %ld, client=%ld\n",
4826 infoPtr
->treeHeight
, infoPtr
->clientHeight
);
4830 return DefWindowProcA(infoPtr
->hwnd
, WM_NOTIFY
, wParam
, lParam
);
4834 TREEVIEW_Size(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
4836 if (wParam
== SIZE_RESTORED
)
4838 infoPtr
->clientWidth
= SLOWORD(lParam
);
4839 infoPtr
->clientHeight
= SHIWORD(lParam
);
4841 TREEVIEW_RecalculateVisibleOrder(infoPtr
, NULL
);
4842 TREEVIEW_SetFirstVisible(infoPtr
, infoPtr
->firstVisible
, TRUE
);
4843 TREEVIEW_UpdateScrollBars(infoPtr
);
4847 FIXME("WM_SIZE flag %x %lx not handled\n", wParam
, lParam
);
4850 TREEVIEW_Invalidate(infoPtr
, NULL
);
4855 TREEVIEW_StyleChanged(TREEVIEW_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
4857 TRACE("(%x %lx)\n", wParam
, lParam
);
4859 if (wParam
== GWL_STYLE
)
4861 DWORD dwNewStyle
= ((LPSTYLESTRUCT
)lParam
)->styleNew
;
4863 /* we have to take special care about tooltips */
4864 if ((infoPtr
->dwStyle
^ dwNewStyle
) & TVS_NOTOOLTIPS
)
4866 if (infoPtr
->dwStyle
& TVS_NOTOOLTIPS
)
4868 infoPtr
->hwndToolTip
= COMCTL32_CreateToolTip(infoPtr
->hwnd
);
4873 DestroyWindow(infoPtr
->hwndToolTip
);
4874 infoPtr
->hwndToolTip
= 0;
4878 infoPtr
->dwStyle
= dwNewStyle
;
4881 TREEVIEW_UpdateSubTree(infoPtr
, infoPtr
->root
);
4882 TREEVIEW_UpdateScrollBars(infoPtr
);
4883 TREEVIEW_Invalidate(infoPtr
, NULL
);
4889 TREEVIEW_SetFocus(TREEVIEW_INFO
*infoPtr
)
4893 if (!infoPtr
->selectedItem
)
4895 TREEVIEW_DoSelectItem(infoPtr
, TVGN_CARET
, infoPtr
->firstVisible
,
4899 TREEVIEW_SendSimpleNotify(infoPtr
, NM_SETFOCUS
);
4900 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
4905 TREEVIEW_KillFocus(TREEVIEW_INFO
*infoPtr
)
4909 TREEVIEW_SendSimpleNotify(infoPtr
, NM_KILLFOCUS
);
4910 TREEVIEW_Invalidate(infoPtr
, infoPtr
->selectedItem
);
4915 static LRESULT WINAPI
4916 TREEVIEW_WindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
4918 TREEVIEW_INFO
*infoPtr
= TREEVIEW_GetInfoPtr(hwnd
);
4919 if (infoPtr
) TREEVIEW_VerifyTree(infoPtr
);
4922 if (uMsg
== WM_CREATE
)
4923 TREEVIEW_Create(hwnd
);
4930 case TVM_CREATEDRAGIMAGE
:
4931 return TREEVIEW_CreateDragImage(infoPtr
, wParam
, lParam
);
4933 case TVM_DELETEITEM
:
4934 return TREEVIEW_DeleteItem(infoPtr
, (HTREEITEM
)lParam
);
4936 case TVM_EDITLABELA
:
4937 return TREEVIEW_EditLabelA(infoPtr
, (HTREEITEM
)lParam
);
4939 case TVM_EDITLABELW
:
4940 FIXME("Unimplemented msg TVM_EDITLABELW\n");
4943 case TVM_ENDEDITLABELNOW
:
4944 return TREEVIEW_EndEditLabelNow(infoPtr
, (BOOL
)wParam
);
4946 case TVM_ENSUREVISIBLE
:
4947 return TREEVIEW_EnsureVisible(infoPtr
, (HTREEITEM
)lParam
, TRUE
);
4950 return TREEVIEW_ExpandMsg(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
4952 case TVM_GETBKCOLOR
:
4953 return TREEVIEW_GetBkColor(infoPtr
);
4956 return TREEVIEW_GetCount(infoPtr
);
4958 case TVM_GETEDITCONTROL
:
4959 return TREEVIEW_GetEditControl(infoPtr
);
4961 case TVM_GETIMAGELIST
:
4962 return TREEVIEW_GetImageList(infoPtr
, wParam
);
4965 return TREEVIEW_GetIndent(infoPtr
);
4967 case TVM_GETINSERTMARKCOLOR
:
4968 return TREEVIEW_GetInsertMarkColor(infoPtr
);
4970 case TVM_GETISEARCHSTRINGA
:
4971 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGA\n");
4974 case TVM_GETISEARCHSTRINGW
:
4975 FIXME("Unimplemented msg TVM_GETISEARCHSTRINGW\n");
4979 return TREEVIEW_GetItemA(infoPtr
, (LPTVITEMEXA
)lParam
);
4982 return TREEVIEW_GetItemW(infoPtr
, (LPTVITEMEXA
)lParam
);
4984 case TVM_GETITEMHEIGHT
:
4985 return TREEVIEW_GetItemHeight(infoPtr
);
4987 case TVM_GETITEMRECT
:
4988 return TREEVIEW_GetItemRect(infoPtr
, (BOOL
)wParam
, (LPRECT
)lParam
);
4990 case TVM_GETITEMSTATE
:
4991 return TREEVIEW_GetItemState(infoPtr
, (HTREEITEM
)wParam
, (UINT
)lParam
);
4993 case TVM_GETLINECOLOR
:
4994 return TREEVIEW_GetLineColor(infoPtr
);
4996 case TVM_GETNEXTITEM
:
4997 return TREEVIEW_GetNextItem(infoPtr
, (UINT
)wParam
, (HTREEITEM
)lParam
);
4999 case TVM_GETSCROLLTIME
:
5000 return TREEVIEW_GetScrollTime(infoPtr
);
5002 case TVM_GETTEXTCOLOR
:
5003 return TREEVIEW_GetTextColor(infoPtr
);
5005 case TVM_GETTOOLTIPS
:
5006 return TREEVIEW_GetToolTips(infoPtr
);
5008 case TVM_GETUNICODEFORMAT
:
5009 FIXME("Unimplemented msg TVM_GETUNICODEFORMAT\n");
5012 case TVM_GETVISIBLECOUNT
:
5013 return TREEVIEW_GetVisibleCount(infoPtr
);
5016 return TREEVIEW_HitTest(infoPtr
, (LPTVHITTESTINFO
)lParam
);
5018 case TVM_INSERTITEMA
:
5019 return TREEVIEW_InsertItemA(infoPtr
, lParam
);
5021 case TVM_INSERTITEMW
:
5022 return TREEVIEW_InsertItemW(infoPtr
, lParam
);
5024 case TVM_SELECTITEM
:
5025 return TREEVIEW_SelectItem(infoPtr
, (INT
)wParam
, (HTREEITEM
)lParam
);
5027 case TVM_SETBKCOLOR
:
5028 return TREEVIEW_SetBkColor(infoPtr
, (COLORREF
)lParam
);
5030 case TVM_SETIMAGELIST
:
5031 return TREEVIEW_SetImageList(infoPtr
, wParam
, (HIMAGELIST
)lParam
);
5034 return TREEVIEW_SetIndent(infoPtr
, (UINT
)wParam
);
5036 case TVM_SETINSERTMARK
:
5037 return TREEVIEW_SetInsertMark(infoPtr
, (BOOL
)wParam
, (HTREEITEM
)lParam
);
5039 case TVM_SETINSERTMARKCOLOR
:
5040 return TREEVIEW_SetInsertMarkColor(infoPtr
, (COLORREF
)lParam
);
5043 return TREEVIEW_SetItemA(infoPtr
, (LPTVITEMEXA
)lParam
);
5046 FIXME("Unimplemented msg TVM_SETITEMW\n");
5049 case TVM_SETLINECOLOR
:
5050 return TREEVIEW_SetLineColor(infoPtr
, (COLORREF
)lParam
);
5052 case TVM_SETITEMHEIGHT
:
5053 return TREEVIEW_SetItemHeight(infoPtr
, (INT
)(SHORT
)wParam
);
5055 case TVM_SETSCROLLTIME
:
5056 return TREEVIEW_SetScrollTime(infoPtr
, (UINT
)wParam
);
5058 case TVM_SETTEXTCOLOR
:
5059 return TREEVIEW_SetTextColor(infoPtr
, (COLORREF
)lParam
);
5061 case TVM_SETTOOLTIPS
:
5062 return TREEVIEW_SetToolTips(infoPtr
, (HWND
)wParam
);
5064 case TVM_SETUNICODEFORMAT
:
5065 FIXME("Unimplemented msg TVM_SETUNICODEFORMAT\n");
5068 case TVM_SORTCHILDREN
:
5069 return TREEVIEW_SortChildren(infoPtr
, wParam
, lParam
);
5071 case TVM_SORTCHILDRENCB
:
5072 return TREEVIEW_SortChildrenCB(infoPtr
, wParam
, (LPTVSORTCB
)lParam
);
5075 return TREEVIEW_ProcessLetterKeys( hwnd
, wParam
, lParam
);
5078 return TREEVIEW_Command(infoPtr
, wParam
, lParam
);
5081 return TREEVIEW_Destroy(infoPtr
);
5086 return TREEVIEW_EraseBackground(infoPtr
, (HDC
)wParam
);
5089 return DLGC_WANTARROWS
| DLGC_WANTCHARS
;
5092 return TREEVIEW_GetFont(infoPtr
);
5095 return TREEVIEW_HScroll(infoPtr
, wParam
);
5098 return TREEVIEW_KeyDown(infoPtr
, wParam
);
5101 return TREEVIEW_KillFocus(infoPtr
);
5103 case WM_LBUTTONDBLCLK
:
5104 return TREEVIEW_LButtonDoubleClick(infoPtr
, lParam
);
5106 case WM_LBUTTONDOWN
:
5107 return TREEVIEW_LButtonDown(infoPtr
, lParam
);
5109 /* WM_MBUTTONDOWN */
5114 return TREEVIEW_Notify(infoPtr
, wParam
, lParam
);
5116 /* WM_NOTIFYFORMAT */
5119 return TREEVIEW_Paint(infoPtr
, wParam
);
5121 /* WM_PRINTCLIENT */
5123 case WM_RBUTTONDOWN
:
5124 return TREEVIEW_RButtonDown(infoPtr
, lParam
);
5127 return TREEVIEW_SetFocus(infoPtr
);
5130 return TREEVIEW_SetFont(infoPtr
, (HFONT
)wParam
, (BOOL
)lParam
);
5133 return TREEVIEW_SetRedraw(infoPtr
, wParam
, lParam
);
5136 return TREEVIEW_Size(infoPtr
, wParam
, lParam
);
5138 case WM_STYLECHANGED
:
5139 return TREEVIEW_StyleChanged(infoPtr
, wParam
, lParam
);
5141 /* WM_SYSCOLORCHANGE */
5146 return TREEVIEW_HandleTimer(infoPtr
, wParam
);
5149 return TREEVIEW_VScroll(infoPtr
, wParam
);
5151 /* WM_WININICHANGE */
5154 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
5156 return TREEVIEW_MouseWheel(infoPtr
, wParam
);
5159 TRACE("drawItem\n");
5163 /* This mostly catches MFC and Delphi messages. :( */
5164 if (uMsg
>= WM_USER
)
5165 TRACE("Unknown msg %04x wp=%08x lp=%08lx\n", uMsg
, wParam
, lParam
);
5167 return DefWindowProcA(hwnd
, uMsg
, wParam
, lParam
);
5173 /* Class Registration ***************************************************/
5176 TREEVIEW_Register(void)
5182 ZeroMemory(&wndClass
, sizeof(WNDCLASSA
));
5183 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
5184 wndClass
.lpfnWndProc
= (WNDPROC
)TREEVIEW_WindowProc
;
5185 wndClass
.cbClsExtra
= 0;
5186 wndClass
.cbWndExtra
= sizeof(TREEVIEW_INFO
*);
5188 wndClass
.hCursor
= LoadCursorA(0, IDC_ARROWA
);
5189 wndClass
.hbrBackground
= 0;
5190 wndClass
.lpszClassName
= WC_TREEVIEWA
;
5192 RegisterClassA(&wndClass
);
5197 TREEVIEW_Unregister(void)
5199 UnregisterClassA(WC_TREEVIEWA
, (HINSTANCE
) NULL
);
5203 /* Tree Verification ****************************************************/
5207 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
);
5209 static inline void TREEVIEW_VerifyItemCommon(TREEVIEW_INFO
*infoPtr
,
5210 TREEVIEW_ITEM
*item
)
5212 assert(infoPtr
!= NULL
);
5213 assert(item
!= NULL
);
5215 /* both NULL, or both non-null */
5216 assert((item
->firstChild
== NULL
) == (item
->lastChild
== NULL
));
5218 assert(item
->firstChild
!= item
);
5219 assert(item
->lastChild
!= item
);
5221 if (item
->firstChild
)
5223 assert(item
->firstChild
->parent
== item
);
5224 assert(item
->firstChild
->prevSibling
== NULL
);
5227 if (item
->lastChild
)
5229 assert(item
->lastChild
->parent
== item
);
5230 assert(item
->lastChild
->nextSibling
== NULL
);
5233 assert(item
->nextSibling
!= item
);
5234 if (item
->nextSibling
)
5236 assert(item
->nextSibling
->parent
== item
->parent
);
5237 assert(item
->nextSibling
->prevSibling
== item
);
5240 assert(item
->prevSibling
!= item
);
5241 if (item
->prevSibling
)
5243 assert(item
->prevSibling
->parent
== item
->parent
);
5244 assert(item
->prevSibling
->nextSibling
== item
);
5249 TREEVIEW_VerifyItem(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
5251 assert(item
!= NULL
);
5253 assert(item
->parent
!= NULL
);
5254 assert(item
->parent
!= item
);
5255 assert(item
->iLevel
== item
->parent
->iLevel
+ 1);
5257 assert(DPA_GetPtrIndex(infoPtr
->items
, item
) != -1);
5259 TREEVIEW_VerifyItemCommon(infoPtr
, item
);
5261 TREEVIEW_VerifyChildren(infoPtr
, item
);
5265 TREEVIEW_VerifyChildren(TREEVIEW_INFO
*infoPtr
, TREEVIEW_ITEM
*item
)
5267 TREEVIEW_ITEM
*child
;
5268 assert(item
!= NULL
);
5270 for (child
= item
->firstChild
; child
!= NULL
; child
= child
->nextSibling
)
5271 TREEVIEW_VerifyItem(infoPtr
, child
);
5275 TREEVIEW_VerifyRoot(TREEVIEW_INFO
*infoPtr
)
5277 TREEVIEW_ITEM
*root
= infoPtr
->root
;
5279 assert(root
!= NULL
);
5280 assert(root
->iLevel
== -1);
5281 assert(root
->parent
== NULL
);
5282 assert(root
->prevSibling
== NULL
);
5284 TREEVIEW_VerifyItemCommon(infoPtr
, root
);
5286 TREEVIEW_VerifyChildren(infoPtr
, root
);
5290 TREEVIEW_VerifyTree(TREEVIEW_INFO
*infoPtr
)
5292 assert(infoPtr
!= NULL
);
5294 TREEVIEW_VerifyRoot(infoPtr
);