4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 1999 Luc Tourangeau
6 * Copyright 2000 Jason Mawdsley
7 * Copyright 2001 CodeWeavers Inc.
8 * Copyright 2002 Dimitrie O. Paun
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 * This code was audited for completeness against the documented features
27 * of Comctl32.dll version 6.0 on May. 20, 2005, by James Hawkins.
29 * Unless otherwise noted, we believe this code to be complete, as per
30 * the specification mentioned above.
31 * If you discover missing features, or bugs, please note them below.
35 * Default Message Processing
36 * -- EN_KILLFOCUS should be handled in WM_COMMAND
37 * -- WM_CREATE: create the icon and small icon image lists at this point only if
38 * the LVS_SHAREIMAGELISTS style is not specified.
39 * -- WM_ERASEBKGND: forward this message to the parent window if the bkgnd
41 * -- WM_WINDOWPOSCHANGED: arrange the list items if the current view is icon
42 * or small icon and the LVS_AUTOARRANGE style is specified.
47 * -- Hot item handling, mouse hovering
48 * -- Workareas support
53 * -- Expand large item in ICON mode when the cursor is flying over the icon or text.
54 * -- Support CustomDraw options for _WIN32_IE >= 0x560 (see NMLVCUSTOMDRAW docs).
55 * -- LVA_SNAPTOGRID not implemented
56 * -- LISTVIEW_ApproximateViewRect partially implemented
57 * -- LISTVIEW_[GS]etColumnOrderArray stubs
58 * -- LISTVIEW_SetColumnWidth ignores header images & bitmap
59 * -- LISTVIEW_SetIconSpacing is incomplete
60 * -- LISTVIEW_StyleChanged doesn't handle some changes too well
63 * -- LISTVIEW_GetNextItem needs to be rewritten. It is currently
64 * linear in the number of items in the list, and this is
65 * unacceptable for large lists.
66 * -- in sorted mode, LISTVIEW_InsertItemT sorts the array,
67 * instead of inserting in the right spot
68 * -- we should keep an ordered array of coordinates in iconic mode
69 * this would allow to frame items (iterator_frameditems),
70 * and find nearest item (LVFI_NEARESTXY) a lot more efficiently
78 * -- LVIS_ACTIVATING (not currently supported by comctl32.dll version 6.0)
85 * -- LVS_NOSCROLL (see Q137520)
86 * -- LVS_SORTASCENDING, LVS_SORTDESCENDING
88 * -- LVS_TYPESTYLEMASK
91 * -- LVS_EX_BORDERSELECT
93 * -- LVS_EX_HEADERDRAGDROP
96 * -- LVS_EX_MULTIWORKAREAS
98 * -- LVS_EX_SIMPLESELECT
99 * -- LVS_EX_TWOCLICKACTIVATE
100 * -- LVS_EX_UNDERLINECOLD
101 * -- LVS_EX_UNDERLINEHOT
104 * -- LVN_BEGINSCROLL, LVN_ENDSCROLL
107 * -- LVN_MARQUEEBEGIN
113 * -- LVM_CANCELEDITLABEL
114 * -- LVM_ENABLEGROUPVIEW
115 * -- LVM_GETBKIMAGE, LVM_SETBKIMAGE
116 * -- LVM_GETGROUPINFO, LVM_SETGROUPINFO
117 * -- LVM_GETGROUPMETRICS, LVM_SETGROUPMETRICS
118 * -- LVM_GETINSERTMARK, LVM_SETINSERTMARK
119 * -- LVM_GETINSERTMARKCOLOR, LVM_SETINSERTMARKCOLOR
120 * -- LVM_GETINSERTMARKRECT
121 * -- LVM_GETNUMBEROFWORKAREAS
122 * -- LVM_GETOUTLINECOLOR, LVM_SETOUTLINECOLOR
123 * -- LVM_GETSELECTEDCOLUMN, LVM_SETSELECTEDCOLUMN
124 * -- LVM_GETISEARCHSTRINGW, LVM_GETISEARCHSTRINGA
125 * -- LVM_GETTILEINFO, LVM_SETTILEINFO
126 * -- LVM_GETTILEVIEWINFO, LVM_SETTILEVIEWINFO
127 * -- LVM_GETUNICODEFORMAT, LVM_SETUNICODEFORMAT
128 * -- LVM_GETVIEW, LVM_SETVIEW
129 * -- LVM_GETWORKAREAS, LVM_SETWORKAREAS
130 * -- LVM_HASGROUP, LVM_INSERTGROUP, LVM_REMOVEGROUP, LVM_REMOVEALLGROUPS
131 * -- LVM_INSERTGROUPSORTED
132 * -- LVM_INSERTMARKHITTEST
133 * -- LVM_ISGROUPVIEWENABLED
134 * -- LVM_MAPIDTOINDEX, LVM_MAPINDEXTOID
136 * -- LVM_MOVEITEMTOGROUP
138 * -- LVM_SETTILEWIDTH
142 * -- ListView_GetCheckSate, ListView_SetCheckState
143 * -- ListView_GetHoverTime, ListView_SetHoverTime
144 * -- ListView_GetISearchString
145 * -- ListView_GetNumberOfWorkAreas
146 * -- ListView_GetOrigin
147 * -- ListView_GetUnicodeFormat, ListView_SetUnicodeFormat
148 * -- ListView_GetWorkAreas, ListView_SetWorkAreas
153 * Known differences in message stream from native control (not known if
154 * these differences cause problems):
155 * LVM_INSERTITEM issues LVM_SETITEMSTATE and LVM_SETITEM in certain cases.
156 * LVM_SETITEM does not always issue LVN_ITEMCHANGING/LVN_ITEMCHANGED.
157 * WM_CREATE does not issue WM_QUERYUISTATE and associated registry
158 * processing for "USEDOUBLECLICKTIME".
162 #include "wine/port.h"
177 #include "commctrl.h"
178 #include "comctl32.h"
181 #include "wine/debug.h"
182 #include "wine/unicode.h"
184 WINE_DEFAULT_DEBUG_CHANNEL(listview);
186 /* make sure you set this to 0 for production use! */
187 #define DEBUG_RANGES 1
189 typedef struct tagCOLUMN_INFO
191 RECT rcHeader; /* tracks the header's rectangle */
192 int fmt; /* same as LVCOLUMN.fmt */
195 typedef struct tagITEMHDR
199 } ITEMHDR, *LPITEMHDR;
201 typedef struct tagSUBITEM_INFO
207 typedef struct tagITEM_INFO
215 typedef struct tagRANGE
221 typedef struct tagRANGES
226 typedef struct tagITERATOR
235 typedef struct tagDELAYED_ITEM_EDIT
241 typedef struct tagLISTVIEW_INFO
248 HIMAGELIST himlNormal;
249 HIMAGELIST himlSmall;
250 HIMAGELIST himlState;
254 POINT ptClickPos; /* point where the user clicked */
255 BOOL bNoItemMetrics; /* flags if item metrics are not yet computed */
258 RANGES selectionRanges;
263 RECT rcList; /* This rectangle is really the window
264 * client rectangle possibly reduced by the
265 * horizontal scroll bar and/or header - see
266 * LISTVIEW_UpdateSize. This rectangle offset
267 * by the LISTVIEW_GetOrigin value is in
268 * client coordinates */
277 INT ntmHeight; /* Some cached metrics of the font used */
278 INT ntmMaxCharWidth; /* by the listview to draw items */
280 BOOL bRedraw; /* Turns on/off repaints & invalidations */
281 BOOL bAutoarrange; /* Autoarrange flag when NOT in LVS_AUTOARRANGE */
283 BOOL bDoChangeNotify; /* send change notification messages? */
286 DWORD dwStyle; /* the cached window GWL_STYLE */
287 DWORD dwLvExStyle; /* extended listview style */
288 INT nItemCount; /* the number of items in the list */
289 HDPA hdpaItems; /* array ITEM_INFO pointers */
290 HDPA hdpaPosX; /* maintains the (X, Y) coordinates of the */
291 HDPA hdpaPosY; /* items in LVS_ICON, and LVS_SMALLICON modes */
292 HDPA hdpaColumns; /* array of COLUMN_INFO pointers */
293 POINT currIconPos; /* this is the position next icon will be placed */
294 PFNLVCOMPARE pfnCompare;
302 DWORD cditemmode; /* Keep the custom draw flags for an item/row */
304 DWORD lastKeyPressTimestamp;
306 INT nSearchParamLength;
307 WCHAR szSearchParam[ MAX_PATH ];
309 INT nMeasureItemHeight;
310 INT xTrackLine; /* The x coefficient of the track line or -1 if none */
311 DELAYED_ITEM_EDIT itemEdit; /* Pointer to this structure will be the timer ID */
317 /* How many we debug buffer to allocate */
318 #define DEBUG_BUFFERS 20
319 /* The size of a single debug bbuffer */
320 #define DEBUG_BUFFER_SIZE 256
322 /* Internal interface to LISTVIEW_HScroll and LISTVIEW_VScroll */
323 #define SB_INTERNAL -1
325 /* maximum size of a label */
326 #define DISP_TEXT_SIZE 512
328 /* padding for items in list and small icon display modes */
329 #define WIDTH_PADDING 12
331 /* padding for items in list, report and small icon display modes */
332 #define HEIGHT_PADDING 1
334 /* offset of items in report display mode */
335 #define REPORT_MARGINX 2
337 /* padding for icon in large icon display mode
338 * ICON_TOP_PADDING_NOTHITABLE - space between top of box and area
339 * that HITTEST will see.
340 * ICON_TOP_PADDING_HITABLE - spacing between above and icon.
341 * ICON_TOP_PADDING - sum of the two above.
342 * ICON_BOTTOM_PADDING - between bottom of icon and top of text
343 * LABEL_HOR_PADDING - between text and sides of box
344 * LABEL_VERT_PADDING - between bottom of text and end of box
346 * ICON_LR_PADDING - additional width above icon size.
347 * ICON_LR_HALF - half of the above value
349 #define ICON_TOP_PADDING_NOTHITABLE 2
350 #define ICON_TOP_PADDING_HITABLE 2
351 #define ICON_TOP_PADDING (ICON_TOP_PADDING_NOTHITABLE + ICON_TOP_PADDING_HITABLE)
352 #define ICON_BOTTOM_PADDING 4
353 #define LABEL_HOR_PADDING 5
354 #define LABEL_VERT_PADDING 7
355 #define ICON_LR_PADDING 16
356 #define ICON_LR_HALF (ICON_LR_PADDING/2)
358 /* default label width for items in list and small icon display modes */
359 #define DEFAULT_LABEL_WIDTH 40
361 /* default column width for items in list display mode */
362 #define DEFAULT_COLUMN_WIDTH 128
364 /* Size of "line" scroll for V & H scrolls */
365 #define LISTVIEW_SCROLL_ICON_LINE_SIZE 37
367 /* Padding between image and label */
368 #define IMAGE_PADDING 2
370 /* Padding behind the label */
371 #define TRAILING_LABEL_PADDING 12
372 #define TRAILING_HEADER_PADDING 11
374 /* Border for the icon caption */
375 #define CAPTION_BORDER 2
377 /* Standard DrawText flags */
378 #define LV_ML_DT_FLAGS (DT_TOP | DT_NOPREFIX | DT_EDITCONTROL | DT_CENTER | DT_WORDBREAK | DT_WORD_ELLIPSIS | DT_END_ELLIPSIS)
379 #define LV_FL_DT_FLAGS (DT_TOP | DT_NOPREFIX | DT_EDITCONTROL | DT_CENTER | DT_WORDBREAK | DT_NOCLIP)
380 #define LV_SL_DT_FLAGS (DT_VCENTER | DT_NOPREFIX | DT_EDITCONTROL | DT_SINGLELINE | DT_WORD_ELLIPSIS | DT_END_ELLIPSIS)
382 /* Image index from state */
383 #define STATEIMAGEINDEX(x) (((x) & LVIS_STATEIMAGEMASK) >> 12)
385 /* The time in milliseconds to reset the search in the list */
386 #define KEY_DELAY 450
388 /* Dump the LISTVIEW_INFO structure to the debug channel */
389 #define LISTVIEW_DUMP(iP) do { \
390 TRACE("hwndSelf=%p, clrBk=0x%06x, clrText=0x%06x, clrTextBk=0x%06x, ItemHeight=%d, ItemWidth=%d, Style=0x%08x\n", \
391 iP->hwndSelf, iP->clrBk, iP->clrText, iP->clrTextBk, \
392 iP->nItemHeight, iP->nItemWidth, iP->dwStyle); \
393 TRACE("hwndSelf=%p, himlNor=%p, himlSml=%p, himlState=%p, Focused=%d, Hot=%d, exStyle=0x%08x, Focus=%d\n", \
394 iP->hwndSelf, iP->himlNormal, iP->himlSmall, iP->himlState, \
395 iP->nFocusedItem, iP->nHotItem, iP->dwLvExStyle, iP->bFocus ); \
396 TRACE("hwndSelf=%p, ntmH=%d, icSz.cx=%d, icSz.cy=%d, icSp.cx=%d, icSp.cy=%d, notifyFmt=%d\n", \
397 iP->hwndSelf, iP->ntmHeight, iP->iconSize.cx, iP->iconSize.cy, \
398 iP->iconSpacing.cx, iP->iconSpacing.cy, iP->notifyFormat); \
399 TRACE("hwndSelf=%p, rcList=%s\n", iP->hwndSelf, wine_dbgstr_rect(&iP->rcList)); \
402 static const WCHAR themeClass[] = {'L','i','s','t','V','i','e','w',0};
405 * forward declarations
407 static BOOL LISTVIEW_GetItemT(const LISTVIEW_INFO *, LPLVITEMW, BOOL);
408 static void LISTVIEW_GetItemBox(const LISTVIEW_INFO *, INT, LPRECT);
409 static void LISTVIEW_GetItemOrigin(const LISTVIEW_INFO *, INT, LPPOINT);
410 static BOOL LISTVIEW_GetItemPosition(const LISTVIEW_INFO *, INT, LPPOINT);
411 static BOOL LISTVIEW_GetItemRect(const LISTVIEW_INFO *, INT, LPRECT);
412 static INT LISTVIEW_GetLabelWidth(const LISTVIEW_INFO *, INT);
413 static void LISTVIEW_GetOrigin(const LISTVIEW_INFO *, LPPOINT);
414 static BOOL LISTVIEW_GetViewRect(const LISTVIEW_INFO *, LPRECT);
415 static void LISTVIEW_SetGroupSelection(LISTVIEW_INFO *, INT);
416 static BOOL LISTVIEW_SetItemT(LISTVIEW_INFO *, LVITEMW *, BOOL);
417 static void LISTVIEW_UpdateScroll(const LISTVIEW_INFO *);
418 static void LISTVIEW_SetSelection(LISTVIEW_INFO *, INT);
419 static void LISTVIEW_UpdateSize(LISTVIEW_INFO *);
420 static HWND LISTVIEW_EditLabelT(LISTVIEW_INFO *, INT, BOOL);
421 static LRESULT LISTVIEW_Command(const LISTVIEW_INFO *, WPARAM, LPARAM);
422 static INT LISTVIEW_GetStringWidthT(const LISTVIEW_INFO *, LPCWSTR, BOOL);
423 static BOOL LISTVIEW_KeySelection(LISTVIEW_INFO *, INT, BOOL);
424 static UINT LISTVIEW_GetItemState(const LISTVIEW_INFO *, INT, UINT);
425 static BOOL LISTVIEW_SetItemState(LISTVIEW_INFO *, INT, const LVITEMW *);
426 static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *, INT, INT, HWND);
427 static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *, INT, INT, HWND);
428 static INT LISTVIEW_GetTopIndex(const LISTVIEW_INFO *);
429 static BOOL LISTVIEW_EnsureVisible(LISTVIEW_INFO *, INT, BOOL);
430 static HWND CreateEditLabelT(LISTVIEW_INFO *, LPCWSTR, DWORD, INT, INT, INT, INT, BOOL);
431 static HIMAGELIST LISTVIEW_SetImageList(LISTVIEW_INFO *, INT, HIMAGELIST);
432 static INT LISTVIEW_HitTest(const LISTVIEW_INFO *, LPLVHITTESTINFO, BOOL, BOOL);
434 /******** Text handling functions *************************************/
436 /* A text pointer is either NULL, LPSTR_TEXTCALLBACK, or points to a
437 * text string. The string may be ANSI or Unicode, in which case
438 * the boolean isW tells us the type of the string.
440 * The name of the function tell what type of strings it expects:
441 * W: Unicode, T: ANSI/Unicode - function of isW
444 static inline BOOL is_textW(LPCWSTR text)
446 return text != NULL && text != LPSTR_TEXTCALLBACKW;
449 static inline BOOL is_textT(LPCWSTR text, BOOL isW)
451 /* we can ignore isW since LPSTR_TEXTCALLBACKW == LPSTR_TEXTCALLBACKA */
452 return is_textW(text);
455 static inline int textlenT(LPCWSTR text, BOOL isW)
457 return !is_textT(text, isW) ? 0 :
458 isW ? lstrlenW(text) : lstrlenA((LPCSTR)text);
461 static inline void textcpynT(LPWSTR dest, BOOL isDestW, LPCWSTR src, BOOL isSrcW, INT max)
464 if (isSrcW) lstrcpynW(dest, src, max);
465 else MultiByteToWideChar(CP_ACP, 0, (LPCSTR)src, -1, dest, max);
467 if (isSrcW) WideCharToMultiByte(CP_ACP, 0, src, -1, (LPSTR)dest, max, NULL, NULL);
468 else lstrcpynA((LPSTR)dest, (LPCSTR)src, max);
471 static inline LPWSTR textdupTtoW(LPCWSTR text, BOOL isW)
473 LPWSTR wstr = (LPWSTR)text;
475 if (!isW && is_textT(text, isW))
477 INT len = MultiByteToWideChar(CP_ACP, 0, (LPCSTR)text, -1, NULL, 0);
478 wstr = Alloc(len * sizeof(WCHAR));
479 if (wstr) MultiByteToWideChar(CP_ACP, 0, (LPCSTR)text, -1, wstr, len);
481 TRACE(" wstr=%s\n", text == LPSTR_TEXTCALLBACKW ? "(callback)" : debugstr_w(wstr));
485 static inline void textfreeT(LPWSTR wstr, BOOL isW)
487 if (!isW && is_textT(wstr, isW)) Free (wstr);
491 * dest is a pointer to a Unicode string
492 * src is a pointer to a string (Unicode if isW, ANSI if !isW)
494 static BOOL textsetptrT(LPWSTR *dest, LPCWSTR src, BOOL isW)
498 if (src == LPSTR_TEXTCALLBACKW)
500 if (is_textW(*dest)) Free(*dest);
501 *dest = LPSTR_TEXTCALLBACKW;
505 LPWSTR pszText = textdupTtoW(src, isW);
506 if (*dest == LPSTR_TEXTCALLBACKW) *dest = NULL;
507 bResult = Str_SetPtrW(dest, pszText);
508 textfreeT(pszText, isW);
514 * compares a Unicode to a Unicode/ANSI text string
516 static inline int textcmpWT(LPCWSTR aw, LPCWSTR bt, BOOL isW)
518 if (!aw) return bt ? -1 : 0;
519 if (!bt) return aw ? 1 : 0;
520 if (aw == LPSTR_TEXTCALLBACKW)
521 return bt == LPSTR_TEXTCALLBACKW ? 0 : -1;
522 if (bt != LPSTR_TEXTCALLBACKW)
524 LPWSTR bw = textdupTtoW(bt, isW);
525 int r = bw ? lstrcmpW(aw, bw) : 1;
533 static inline int lstrncmpiW(LPCWSTR s1, LPCWSTR s2, int n)
537 n = min(min(n, lstrlenW(s1)), lstrlenW(s2));
538 res = CompareStringW(LOCALE_USER_DEFAULT, NORM_IGNORECASE, s1, n, s2, n);
539 return res ? res - sizeof(WCHAR) : res;
542 /******** Debugging functions *****************************************/
544 static inline LPCSTR debugtext_t(LPCWSTR text, BOOL isW)
546 if (text == LPSTR_TEXTCALLBACKW) return "(callback)";
547 return isW ? debugstr_w(text) : debugstr_a((LPCSTR)text);
550 static inline LPCSTR debugtext_tn(LPCWSTR text, BOOL isW, INT n)
552 if (text == LPSTR_TEXTCALLBACKW) return "(callback)";
553 n = min(textlenT(text, isW), n);
554 return isW ? debugstr_wn(text, n) : debugstr_an((LPCSTR)text, n);
557 static char* debug_getbuf(void)
559 static int index = 0;
560 static char buffers[DEBUG_BUFFERS][DEBUG_BUFFER_SIZE];
561 return buffers[index++ % DEBUG_BUFFERS];
564 static inline const char* debugrange(const RANGE *lprng)
566 if (!lprng) return "(null)";
567 return wine_dbg_sprintf("[%d, %d]", lprng->lower, lprng->upper);
570 static const char* debugscrollinfo(const SCROLLINFO *pScrollInfo)
572 char* buf = debug_getbuf(), *text = buf;
573 int len, size = DEBUG_BUFFER_SIZE;
575 if (pScrollInfo == NULL) return "(null)";
576 len = snprintf(buf, size, "{cbSize=%d, ", pScrollInfo->cbSize);
577 if (len == -1) goto end; buf += len; size -= len;
578 if (pScrollInfo->fMask & SIF_RANGE)
579 len = snprintf(buf, size, "nMin=%d, nMax=%d, ", pScrollInfo->nMin, pScrollInfo->nMax);
581 if (len == -1) goto end; buf += len; size -= len;
582 if (pScrollInfo->fMask & SIF_PAGE)
583 len = snprintf(buf, size, "nPage=%u, ", pScrollInfo->nPage);
585 if (len == -1) goto end; buf += len; size -= len;
586 if (pScrollInfo->fMask & SIF_POS)
587 len = snprintf(buf, size, "nPos=%d, ", pScrollInfo->nPos);
589 if (len == -1) goto end; buf += len; size -= len;
590 if (pScrollInfo->fMask & SIF_TRACKPOS)
591 len = snprintf(buf, size, "nTrackPos=%d, ", pScrollInfo->nTrackPos);
593 if (len == -1) goto end; buf += len; size -= len;
596 buf = text + strlen(text);
598 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
602 static const char* debugnmlistview(const NMLISTVIEW *plvnm)
604 if (!plvnm) return "(null)";
605 return wine_dbg_sprintf("iItem=%d, iSubItem=%d, uNewState=0x%x,"
606 " uOldState=0x%x, uChanged=0x%x, ptAction=%s, lParam=%ld",
607 plvnm->iItem, plvnm->iSubItem, plvnm->uNewState, plvnm->uOldState,
608 plvnm->uChanged, wine_dbgstr_point(&plvnm->ptAction), plvnm->lParam);
611 static const char* debuglvitem_t(const LVITEMW *lpLVItem, BOOL isW)
613 char* buf = debug_getbuf(), *text = buf;
614 int len, size = DEBUG_BUFFER_SIZE;
616 if (lpLVItem == NULL) return "(null)";
617 len = snprintf(buf, size, "{iItem=%d, iSubItem=%d, ", lpLVItem->iItem, lpLVItem->iSubItem);
618 if (len == -1) goto end; buf += len; size -= len;
619 if (lpLVItem->mask & LVIF_STATE)
620 len = snprintf(buf, size, "state=%x, stateMask=%x, ", lpLVItem->state, lpLVItem->stateMask);
622 if (len == -1) goto end; buf += len; size -= len;
623 if (lpLVItem->mask & LVIF_TEXT)
624 len = snprintf(buf, size, "pszText=%s, cchTextMax=%d, ", debugtext_tn(lpLVItem->pszText, isW, 80), lpLVItem->cchTextMax);
626 if (len == -1) goto end; buf += len; size -= len;
627 if (lpLVItem->mask & LVIF_IMAGE)
628 len = snprintf(buf, size, "iImage=%d, ", lpLVItem->iImage);
630 if (len == -1) goto end; buf += len; size -= len;
631 if (lpLVItem->mask & LVIF_PARAM)
632 len = snprintf(buf, size, "lParam=%lx, ", lpLVItem->lParam);
634 if (len == -1) goto end; buf += len; size -= len;
635 if (lpLVItem->mask & LVIF_INDENT)
636 len = snprintf(buf, size, "iIndent=%d, ", lpLVItem->iIndent);
638 if (len == -1) goto end; buf += len; size -= len;
641 buf = text + strlen(text);
643 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
647 static const char* debuglvcolumn_t(const LVCOLUMNW *lpColumn, BOOL isW)
649 char* buf = debug_getbuf(), *text = buf;
650 int len, size = DEBUG_BUFFER_SIZE;
652 if (lpColumn == NULL) return "(null)";
653 len = snprintf(buf, size, "{");
654 if (len == -1) goto end; buf += len; size -= len;
655 if (lpColumn->mask & LVCF_SUBITEM)
656 len = snprintf(buf, size, "iSubItem=%d, ", lpColumn->iSubItem);
658 if (len == -1) goto end; buf += len; size -= len;
659 if (lpColumn->mask & LVCF_FMT)
660 len = snprintf(buf, size, "fmt=%x, ", lpColumn->fmt);
662 if (len == -1) goto end; buf += len; size -= len;
663 if (lpColumn->mask & LVCF_WIDTH)
664 len = snprintf(buf, size, "cx=%d, ", lpColumn->cx);
666 if (len == -1) goto end; buf += len; size -= len;
667 if (lpColumn->mask & LVCF_TEXT)
668 len = snprintf(buf, size, "pszText=%s, cchTextMax=%d, ", debugtext_tn(lpColumn->pszText, isW, 80), lpColumn->cchTextMax);
670 if (len == -1) goto end; buf += len; size -= len;
671 if (lpColumn->mask & LVCF_IMAGE)
672 len = snprintf(buf, size, "iImage=%d, ", lpColumn->iImage);
674 if (len == -1) goto end; buf += len; size -= len;
675 if (lpColumn->mask & LVCF_ORDER)
676 len = snprintf(buf, size, "iOrder=%d, ", lpColumn->iOrder);
678 if (len == -1) goto end; buf += len; size -= len;
681 buf = text + strlen(text);
683 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
687 static const char* debuglvhittestinfo(const LVHITTESTINFO *lpht)
689 if (!lpht) return "(null)";
691 return wine_dbg_sprintf("{pt=%s, flags=0x%x, iItem=%d, iSubItem=%d}",
692 wine_dbgstr_point(&lpht->pt), lpht->flags, lpht->iItem, lpht->iSubItem);
695 /* Return the corresponding text for a given scroll value */
696 static inline LPCSTR debugscrollcode(int nScrollCode)
700 case SB_LINELEFT: return "SB_LINELEFT";
701 case SB_LINERIGHT: return "SB_LINERIGHT";
702 case SB_PAGELEFT: return "SB_PAGELEFT";
703 case SB_PAGERIGHT: return "SB_PAGERIGHT";
704 case SB_THUMBPOSITION: return "SB_THUMBPOSITION";
705 case SB_THUMBTRACK: return "SB_THUMBTRACK";
706 case SB_ENDSCROLL: return "SB_ENDSCROLL";
707 case SB_INTERNAL: return "SB_INTERNAL";
708 default: return "unknown";
713 /******** Notification functions ************************************/
715 static LRESULT notify_forward_header(const LISTVIEW_INFO *infoPtr, const NMHEADERW *lpnmh)
717 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY,
718 (WPARAM)lpnmh->hdr.idFrom, (LPARAM)lpnmh);
721 static LRESULT notify_hdr(const LISTVIEW_INFO *infoPtr, INT code, LPNMHDR pnmh)
725 TRACE("(code=%d)\n", code);
727 pnmh->hwndFrom = infoPtr->hwndSelf;
728 pnmh->idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
730 result = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, pnmh->idFrom, (LPARAM)pnmh);
732 TRACE(" <= %ld\n", result);
737 static inline BOOL notify(const LISTVIEW_INFO *infoPtr, INT code)
740 HWND hwnd = infoPtr->hwndSelf;
741 notify_hdr(infoPtr, code, &nmh);
742 return IsWindow(hwnd);
745 static inline void notify_itemactivate(const LISTVIEW_INFO *infoPtr, const LVHITTESTINFO *htInfo)
756 item.mask = LVIF_PARAM|LVIF_STATE;
757 item.iItem = htInfo->iItem;
759 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) {
760 nmia.lParam = item.lParam;
761 nmia.uOldState = item.state;
762 nmia.uNewState = item.state | LVIS_ACTIVATING;
763 nmia.uChanged = LVIF_STATE;
766 nmia.iItem = htInfo->iItem;
767 nmia.iSubItem = htInfo->iSubItem;
768 nmia.ptAction = htInfo->pt;
770 if (GetKeyState(VK_SHIFT) & 0x8000) nmia.uKeyFlags |= LVKF_SHIFT;
771 if (GetKeyState(VK_CONTROL) & 0x8000) nmia.uKeyFlags |= LVKF_CONTROL;
772 if (GetKeyState(VK_MENU) & 0x8000) nmia.uKeyFlags |= LVKF_ALT;
774 notify_hdr(infoPtr, LVN_ITEMACTIVATE, (LPNMHDR)&nmia);
777 static inline LRESULT notify_listview(const LISTVIEW_INFO *infoPtr, INT code, LPNMLISTVIEW plvnm)
779 TRACE("(code=%d, plvnm=%s)\n", code, debugnmlistview(plvnm));
780 return notify_hdr(infoPtr, code, (LPNMHDR)plvnm);
783 static BOOL notify_click(const LISTVIEW_INFO *infoPtr, INT code, const LVHITTESTINFO *lvht)
787 HWND hwnd = infoPtr->hwndSelf;
789 TRACE("code=%d, lvht=%s\n", code, debuglvhittestinfo(lvht));
790 ZeroMemory(&nmlv, sizeof(nmlv));
791 nmlv.iItem = lvht->iItem;
792 nmlv.iSubItem = lvht->iSubItem;
793 nmlv.ptAction = lvht->pt;
794 item.mask = LVIF_PARAM;
795 item.iItem = lvht->iItem;
797 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) nmlv.lParam = item.lParam;
798 notify_listview(infoPtr, code, &nmlv);
799 return IsWindow(hwnd);
802 static BOOL notify_deleteitem(const LISTVIEW_INFO *infoPtr, INT nItem)
806 HWND hwnd = infoPtr->hwndSelf;
808 ZeroMemory(&nmlv, sizeof (NMLISTVIEW));
810 item.mask = LVIF_PARAM;
813 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) nmlv.lParam = item.lParam;
814 notify_listview(infoPtr, LVN_DELETEITEM, &nmlv);
815 return IsWindow(hwnd);
818 static int get_ansi_notification(UINT unicodeNotificationCode)
820 switch (unicodeNotificationCode)
822 case LVN_BEGINLABELEDITW: return LVN_BEGINLABELEDITA;
823 case LVN_ENDLABELEDITW: return LVN_ENDLABELEDITA;
824 case LVN_GETDISPINFOW: return LVN_GETDISPINFOA;
825 case LVN_SETDISPINFOW: return LVN_SETDISPINFOA;
826 case LVN_ODFINDITEMW: return LVN_ODFINDITEMA;
827 case LVN_GETINFOTIPW: return LVN_GETINFOTIPA;
829 ERR("unknown notification %x\n", unicodeNotificationCode);
835 Send notification. depends on dispinfoW having same
836 structure as dispinfoA.
837 infoPtr : listview struct
838 notificationCode : *Unicode* notification code
839 pdi : dispinfo structure (can be unicode or ansi)
840 isW : TRUE if dispinfo is Unicode
842 static BOOL notify_dispinfoT(const LISTVIEW_INFO *infoPtr, UINT notificationCode, LPNMLVDISPINFOW pdi, BOOL isW)
844 BOOL bResult = FALSE;
845 BOOL convertToAnsi = FALSE, convertToUnicode = FALSE;
846 INT cchTempBufMax = 0, savCchTextMax = 0;
848 LPWSTR pszTempBuf = NULL, savPszText = NULL;
850 if ((pdi->item.mask & LVIF_TEXT) && is_textT(pdi->item.pszText, isW))
852 convertToAnsi = (isW && infoPtr->notifyFormat == NFR_ANSI);
853 convertToUnicode = (!isW && infoPtr->notifyFormat == NFR_UNICODE);
856 if (convertToAnsi || convertToUnicode)
858 if (notificationCode != LVN_GETDISPINFOW)
860 cchTempBufMax = convertToUnicode ?
861 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pdi->item.pszText, -1, NULL, 0):
862 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, NULL, 0, NULL, NULL);
866 cchTempBufMax = pdi->item.cchTextMax;
867 *pdi->item.pszText = 0; /* make sure we don't process garbage */
870 pszTempBuf = Alloc( (convertToUnicode ? sizeof(WCHAR) : sizeof(CHAR)) * cchTempBufMax);
871 if (!pszTempBuf) return FALSE;
873 if (convertToUnicode)
874 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pdi->item.pszText, -1,
875 pszTempBuf, cchTempBufMax);
877 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, (LPSTR) pszTempBuf,
878 cchTempBufMax, NULL, NULL);
880 savCchTextMax = pdi->item.cchTextMax;
881 savPszText = pdi->item.pszText;
882 pdi->item.pszText = pszTempBuf;
883 pdi->item.cchTextMax = cchTempBufMax;
886 if (infoPtr->notifyFormat == NFR_ANSI)
887 realNotifCode = get_ansi_notification(notificationCode);
889 realNotifCode = notificationCode;
890 TRACE(" pdi->item=%s\n", debuglvitem_t(&pdi->item, infoPtr->notifyFormat != NFR_ANSI));
891 bResult = notify_hdr(infoPtr, realNotifCode, &pdi->hdr);
893 if (convertToUnicode || convertToAnsi)
895 if (convertToUnicode) /* note : pointer can be changed by app ! */
896 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, (LPSTR) savPszText,
897 savCchTextMax, NULL, NULL);
899 MultiByteToWideChar(CP_ACP, 0, (LPSTR) pdi->item.pszText, -1,
900 savPszText, savCchTextMax);
901 pdi->item.pszText = savPszText; /* restores our buffer */
902 pdi->item.cchTextMax = savCchTextMax;
908 static void customdraw_fill(NMLVCUSTOMDRAW *lpnmlvcd, const LISTVIEW_INFO *infoPtr, HDC hdc,
909 const RECT *rcBounds, const LVITEMW *lplvItem)
911 ZeroMemory(lpnmlvcd, sizeof(NMLVCUSTOMDRAW));
912 lpnmlvcd->nmcd.hdc = hdc;
913 lpnmlvcd->nmcd.rc = *rcBounds;
914 lpnmlvcd->clrTextBk = infoPtr->clrTextBk;
915 lpnmlvcd->clrText = infoPtr->clrText;
916 if (!lplvItem) return;
917 lpnmlvcd->nmcd.dwItemSpec = lplvItem->iItem + 1;
918 lpnmlvcd->iSubItem = lplvItem->iSubItem;
919 if (lplvItem->state & LVIS_SELECTED) lpnmlvcd->nmcd.uItemState |= CDIS_SELECTED;
920 if (lplvItem->state & LVIS_FOCUSED) lpnmlvcd->nmcd.uItemState |= CDIS_FOCUS;
921 if (lplvItem->iItem == infoPtr->nHotItem) lpnmlvcd->nmcd.uItemState |= CDIS_HOT;
922 lpnmlvcd->nmcd.lItemlParam = lplvItem->lParam;
925 static inline DWORD notify_customdraw (const LISTVIEW_INFO *infoPtr, DWORD dwDrawStage, NMLVCUSTOMDRAW *lpnmlvcd)
927 BOOL isForItem = (lpnmlvcd->nmcd.dwItemSpec != 0);
930 lpnmlvcd->nmcd.dwDrawStage = dwDrawStage;
931 if (isForItem) lpnmlvcd->nmcd.dwDrawStage |= CDDS_ITEM;
932 if (lpnmlvcd->iSubItem) lpnmlvcd->nmcd.dwDrawStage |= CDDS_SUBITEM;
933 if (isForItem) lpnmlvcd->nmcd.dwItemSpec--;
934 result = notify_hdr(infoPtr, NM_CUSTOMDRAW, &lpnmlvcd->nmcd.hdr);
935 if (isForItem) lpnmlvcd->nmcd.dwItemSpec++;
939 static void prepaint_setup (const LISTVIEW_INFO *infoPtr, HDC hdc, NMLVCUSTOMDRAW *lpnmlvcd, BOOL SubItem)
941 if (lpnmlvcd->clrTextBk == CLR_DEFAULT)
942 lpnmlvcd->clrTextBk = comctl32_color.clrWindow;
943 if (lpnmlvcd->clrText == CLR_DEFAULT)
944 lpnmlvcd->clrText = comctl32_color.clrWindowText;
946 /* apparently, for selected items, we have to override the returned values */
949 if (lpnmlvcd->nmcd.uItemState & CDIS_SELECTED)
953 lpnmlvcd->clrTextBk = comctl32_color.clrHighlight;
954 lpnmlvcd->clrText = comctl32_color.clrHighlightText;
956 else if (infoPtr->dwStyle & LVS_SHOWSELALWAYS)
958 lpnmlvcd->clrTextBk = comctl32_color.clr3dFace;
959 lpnmlvcd->clrText = comctl32_color.clrBtnText;
964 /* Set the text attributes */
965 if (lpnmlvcd->clrTextBk != CLR_NONE)
967 SetBkMode(hdc, OPAQUE);
968 SetBkColor(hdc,lpnmlvcd->clrTextBk);
971 SetBkMode(hdc, TRANSPARENT);
972 SetTextColor(hdc, lpnmlvcd->clrText);
975 static inline DWORD notify_postpaint (const LISTVIEW_INFO *infoPtr, NMLVCUSTOMDRAW *lpnmlvcd)
977 return notify_customdraw(infoPtr, CDDS_POSTPAINT, lpnmlvcd);
980 /******** Item iterator functions **********************************/
982 static RANGES ranges_create(int count);
983 static void ranges_destroy(RANGES ranges);
984 static BOOL ranges_add(RANGES ranges, RANGE range);
985 static BOOL ranges_del(RANGES ranges, RANGE range);
986 static void ranges_dump(RANGES ranges);
988 static inline BOOL ranges_additem(RANGES ranges, INT nItem)
990 RANGE range = { nItem, nItem + 1 };
992 return ranges_add(ranges, range);
995 static inline BOOL ranges_delitem(RANGES ranges, INT nItem)
997 RANGE range = { nItem, nItem + 1 };
999 return ranges_del(ranges, range);
1003 * ITERATOR DOCUMENTATION
1005 * The iterator functions allow for easy, and convenient iteration
1006 * over items of interest in the list. Typically, you create a
1007 * iterator, use it, and destroy it, as such:
1010 * iterator_xxxitems(&i, ...);
1011 * while (iterator_{prev,next}(&i)
1013 * //code which uses i.nItem
1015 * iterator_destroy(&i);
1017 * where xxx is either: framed, or visible.
1018 * Note that it is important that the code destroys the iterator
1019 * after it's done with it, as the creation of the iterator may
1020 * allocate memory, which thus needs to be freed.
1022 * You can iterate both forwards, and backwards through the list,
1023 * by using iterator_next or iterator_prev respectively.
1025 * Lower numbered items are draw on top of higher number items in
1026 * LVS_ICON, and LVS_SMALLICON (which are the only modes where
1027 * items may overlap). So, to test items, you should use
1029 * which lists the items top to bottom (in Z-order).
1030 * For drawing items, you should use
1032 * which lists the items bottom to top (in Z-order).
1033 * If you keep iterating over the items after the end-of-items
1034 * marker (-1) is returned, the iterator will start from the
1035 * beginning. Typically, you don't need to test for -1,
1036 * because iterator_{next,prev} will return TRUE if more items
1037 * are to be iterated over, or FALSE otherwise.
1039 * Note: the iterator is defined to be bidirectional. That is,
1040 * any number of prev followed by any number of next, or
1041 * five versa, should leave the iterator at the same item:
1042 * prev * n, next * n = next * n, prev * n
1044 * The iterator has a notion of an out-of-order, special item,
1045 * which sits at the start of the list. This is used in
1046 * LVS_ICON, and LVS_SMALLICON mode to handle the focused item,
1047 * which needs to be first, as it may overlap other items.
1049 * The code is a bit messy because we have:
1050 * - a special item to deal with
1051 * - simple range, or composite range
1053 * If you find bugs, or want to add features, please make sure you
1054 * always check/modify *both* iterator_prev, and iterator_next.
1058 * This function iterates through the items in increasing order,
1059 * but prefixed by the special item, then -1. That is:
1060 * special, 1, 2, 3, ..., n, -1.
1061 * Each item is listed only once.
1063 static inline BOOL iterator_next(ITERATOR* i)
1067 i->nItem = i->nSpecial;
1068 if (i->nItem != -1) return TRUE;
1070 if (i->nItem == i->nSpecial)
1072 if (i->ranges) i->index = 0;
1078 if (i->nItem == i->nSpecial) i->nItem++;
1079 if (i->nItem < i->range.upper) return TRUE;
1084 if (i->index < DPA_GetPtrCount(i->ranges->hdpa))
1085 i->range = *(RANGE*)DPA_GetPtr(i->ranges->hdpa, i->index++);
1088 else if (i->nItem >= i->range.upper) goto end;
1090 i->nItem = i->range.lower;
1091 if (i->nItem >= 0) goto testitem;
1098 * This function iterates through the items in decreasing order,
1099 * followed by the special item, then -1. That is:
1100 * n, n-1, ..., 3, 2, 1, special, -1.
1101 * Each item is listed only once.
1103 static inline BOOL iterator_prev(ITERATOR* i)
1110 if (i->ranges) i->index = DPA_GetPtrCount(i->ranges->hdpa);
1113 if (i->nItem == i->nSpecial)
1121 if (i->nItem == i->nSpecial) i->nItem--;
1122 if (i->nItem >= i->range.lower) return TRUE;
1128 i->range = *(RANGE*)DPA_GetPtr(i->ranges->hdpa, --i->index);
1131 else if (!start && i->nItem < i->range.lower) goto end;
1133 i->nItem = i->range.upper;
1134 if (i->nItem > 0) goto testitem;
1136 return (i->nItem = i->nSpecial) != -1;
1139 static RANGE iterator_range(const ITERATOR *i)
1143 if (!i->ranges) return i->range;
1145 if (DPA_GetPtrCount(i->ranges->hdpa) > 0)
1147 range.lower = (*(RANGE*)DPA_GetPtr(i->ranges->hdpa, 0)).lower;
1148 range.upper = (*(RANGE*)DPA_GetPtr(i->ranges->hdpa, DPA_GetPtrCount(i->ranges->hdpa) - 1)).upper;
1150 else range.lower = range.upper = 0;
1156 * Releases resources associated with this ierator.
1158 static inline void iterator_destroy(const ITERATOR *i)
1160 ranges_destroy(i->ranges);
1164 * Create an empty iterator.
1166 static inline BOOL iterator_empty(ITERATOR* i)
1168 ZeroMemory(i, sizeof(*i));
1169 i->nItem = i->nSpecial = i->range.lower = i->range.upper = -1;
1174 * Create an iterator over a range.
1176 static inline BOOL iterator_rangeitems(ITERATOR* i, RANGE range)
1184 * Create an iterator over a bunch of ranges.
1185 * Please note that the iterator will take ownership of the ranges,
1186 * and will free them upon destruction.
1188 static inline BOOL iterator_rangesitems(ITERATOR* i, RANGES ranges)
1196 * Creates an iterator over the items which intersect lprc.
1198 static BOOL iterator_frameditems(ITERATOR* i, const LISTVIEW_INFO* infoPtr, const RECT *lprc)
1200 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1201 RECT frame = *lprc, rcItem, rcTemp;
1204 /* in case we fail, we want to return an empty iterator */
1205 if (!iterator_empty(i)) return FALSE;
1207 LISTVIEW_GetOrigin(infoPtr, &Origin);
1209 TRACE("(lprc=%s)\n", wine_dbgstr_rect(lprc));
1210 OffsetRect(&frame, -Origin.x, -Origin.y);
1212 if (uView == LVS_ICON || uView == LVS_SMALLICON)
1216 if (uView == LVS_ICON && infoPtr->nFocusedItem != -1)
1218 LISTVIEW_GetItemBox(infoPtr, infoPtr->nFocusedItem, &rcItem);
1219 if (IntersectRect(&rcTemp, &rcItem, lprc))
1220 i->nSpecial = infoPtr->nFocusedItem;
1222 if (!(iterator_rangesitems(i, ranges_create(50)))) return FALSE;
1223 /* to do better here, we need to have PosX, and PosY sorted */
1224 TRACE("building icon ranges:\n");
1225 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
1227 rcItem.left = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
1228 rcItem.top = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
1229 rcItem.right = rcItem.left + infoPtr->nItemWidth;
1230 rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
1231 if (IntersectRect(&rcTemp, &rcItem, &frame))
1232 ranges_additem(i->ranges, nItem);
1236 else if (uView == LVS_REPORT)
1240 if (frame.left >= infoPtr->nItemWidth) return TRUE;
1241 if (frame.top >= infoPtr->nItemHeight * infoPtr->nItemCount) return TRUE;
1243 range.lower = max(frame.top / infoPtr->nItemHeight, 0);
1244 range.upper = min((frame.bottom - 1) / infoPtr->nItemHeight, infoPtr->nItemCount - 1) + 1;
1245 if (range.upper <= range.lower) return TRUE;
1246 if (!iterator_rangeitems(i, range)) return FALSE;
1247 TRACE(" report=%s\n", debugrange(&i->range));
1251 INT nPerCol = max((infoPtr->rcList.bottom - infoPtr->rcList.top) / infoPtr->nItemHeight, 1);
1252 INT nFirstRow = max(frame.top / infoPtr->nItemHeight, 0);
1253 INT nLastRow = min((frame.bottom - 1) / infoPtr->nItemHeight, nPerCol - 1);
1254 INT nFirstCol = max(frame.left / infoPtr->nItemWidth, 0);
1255 INT nLastCol = min((frame.right - 1) / infoPtr->nItemWidth, (infoPtr->nItemCount + nPerCol - 1) / nPerCol);
1256 INT lower = nFirstCol * nPerCol + nFirstRow;
1260 TRACE("nPerCol=%d, nFirstRow=%d, nLastRow=%d, nFirstCol=%d, nLastCol=%d, lower=%d\n",
1261 nPerCol, nFirstRow, nLastRow, nFirstCol, nLastCol, lower);
1263 if (nLastCol < nFirstCol || nLastRow < nFirstRow) return TRUE;
1265 if (!(iterator_rangesitems(i, ranges_create(nLastCol - nFirstCol + 1)))) return FALSE;
1266 TRACE("building list ranges:\n");
1267 for (nCol = nFirstCol; nCol <= nLastCol; nCol++)
1269 item_range.lower = nCol * nPerCol + nFirstRow;
1270 if(item_range.lower >= infoPtr->nItemCount) break;
1271 item_range.upper = min(nCol * nPerCol + nLastRow + 1, infoPtr->nItemCount);
1272 TRACE(" list=%s\n", debugrange(&item_range));
1273 ranges_add(i->ranges, item_range);
1281 * Creates an iterator over the items which intersect the visible region of hdc.
1283 static BOOL iterator_visibleitems(ITERATOR *i, const LISTVIEW_INFO *infoPtr, HDC hdc)
1285 POINT Origin, Position;
1286 RECT rcItem, rcClip;
1289 rgntype = GetClipBox(hdc, &rcClip);
1290 if (rgntype == NULLREGION) return iterator_empty(i);
1291 if (!iterator_frameditems(i, infoPtr, &rcClip)) return FALSE;
1292 if (rgntype == SIMPLEREGION) return TRUE;
1294 /* first deal with the special item */
1295 if (i->nSpecial != -1)
1297 LISTVIEW_GetItemBox(infoPtr, i->nSpecial, &rcItem);
1298 if (!RectVisible(hdc, &rcItem)) i->nSpecial = -1;
1301 /* if we can't deal with the region, we'll just go with the simple range */
1302 LISTVIEW_GetOrigin(infoPtr, &Origin);
1303 TRACE("building visible range:\n");
1304 if (!i->ranges && i->range.lower < i->range.upper)
1306 if (!(i->ranges = ranges_create(50))) return TRUE;
1307 if (!ranges_add(i->ranges, i->range))
1309 ranges_destroy(i->ranges);
1315 /* now delete the invisible items from the list */
1316 while(iterator_next(i))
1318 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
1319 rcItem.left = Position.x + Origin.x;
1320 rcItem.top = Position.y + Origin.y;
1321 rcItem.right = rcItem.left + infoPtr->nItemWidth;
1322 rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
1323 if (!RectVisible(hdc, &rcItem))
1324 ranges_delitem(i->ranges, i->nItem);
1326 /* the iterator should restart on the next iterator_next */
1332 /******** Misc helper functions ************************************/
1334 static inline LRESULT CallWindowProcT(WNDPROC proc, HWND hwnd, UINT uMsg,
1335 WPARAM wParam, LPARAM lParam, BOOL isW)
1337 if (isW) return CallWindowProcW(proc, hwnd, uMsg, wParam, lParam);
1338 else return CallWindowProcA(proc, hwnd, uMsg, wParam, lParam);
1341 static inline BOOL is_autoarrange(const LISTVIEW_INFO *infoPtr)
1343 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1345 return ((infoPtr->dwStyle & LVS_AUTOARRANGE) || infoPtr->bAutoarrange) &&
1346 (uView == LVS_ICON || uView == LVS_SMALLICON);
1349 static void toggle_checkbox_state(LISTVIEW_INFO *infoPtr, INT nItem)
1351 DWORD state = STATEIMAGEINDEX(LISTVIEW_GetItemState(infoPtr, nItem, LVIS_STATEIMAGEMASK));
1352 if(state == 1 || state == 2)
1356 lvitem.state = INDEXTOSTATEIMAGEMASK(state);
1357 lvitem.stateMask = LVIS_STATEIMAGEMASK;
1358 LISTVIEW_SetItemState(infoPtr, nItem, &lvitem);
1362 /******** Internal API functions ************************************/
1364 static inline COLUMN_INFO * LISTVIEW_GetColumnInfo(const LISTVIEW_INFO *infoPtr, INT nSubItem)
1366 static COLUMN_INFO mainItem;
1368 if (nSubItem == 0 && DPA_GetPtrCount(infoPtr->hdpaColumns) == 0) return &mainItem;
1369 assert (nSubItem >= 0 && nSubItem < DPA_GetPtrCount(infoPtr->hdpaColumns));
1370 return DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
1373 static INT LISTVIEW_CreateHeader(LISTVIEW_INFO *infoPtr)
1375 DWORD dFlags = WS_CHILD | HDS_HORZ | HDS_FULLDRAG | HDS_DRAGDROP;
1378 if (infoPtr->hwndHeader) return 0;
1380 TRACE("Creating header for list %p\n", infoPtr->hwndSelf);
1382 /* setup creation flags */
1383 dFlags |= (LVS_NOSORTHEADER & infoPtr->dwStyle) ? 0 : HDS_BUTTONS;
1384 dFlags |= (LVS_NOCOLUMNHEADER & infoPtr->dwStyle) ? HDS_HIDDEN : 0;
1386 hInst = (HINSTANCE)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_HINSTANCE);
1389 infoPtr->hwndHeader = CreateWindowW(WC_HEADERW, NULL, dFlags,
1390 0, 0, 0, 0, infoPtr->hwndSelf, NULL, hInst, NULL);
1391 if (!infoPtr->hwndHeader) return -1;
1393 /* set header unicode format */
1394 SendMessageW(infoPtr->hwndHeader, HDM_SETUNICODEFORMAT, TRUE, 0);
1396 /* set header font */
1397 SendMessageW(infoPtr->hwndHeader, WM_SETFONT, (WPARAM)infoPtr->hFont, (LPARAM)TRUE);
1399 LISTVIEW_UpdateSize(infoPtr);
1404 static inline void LISTVIEW_GetHeaderRect(const LISTVIEW_INFO *infoPtr, INT nSubItem, LPRECT lprc)
1406 *lprc = LISTVIEW_GetColumnInfo(infoPtr, nSubItem)->rcHeader;
1409 static inline BOOL LISTVIEW_GetItemW(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem)
1411 return LISTVIEW_GetItemT(infoPtr, lpLVItem, TRUE);
1414 /* Listview invalidation functions: use _only_ these functions to invalidate */
1416 static inline BOOL is_redrawing(const LISTVIEW_INFO *infoPtr)
1418 return infoPtr->bRedraw;
1421 static inline void LISTVIEW_InvalidateRect(const LISTVIEW_INFO *infoPtr, const RECT* rect)
1423 if(!is_redrawing(infoPtr)) return;
1424 TRACE(" invalidating rect=%s\n", wine_dbgstr_rect(rect));
1425 InvalidateRect(infoPtr->hwndSelf, rect, TRUE);
1428 static inline void LISTVIEW_InvalidateItem(const LISTVIEW_INFO *infoPtr, INT nItem)
1432 if(!is_redrawing(infoPtr)) return;
1433 LISTVIEW_GetItemBox(infoPtr, nItem, &rcBox);
1434 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
1437 static inline void LISTVIEW_InvalidateSubItem(const LISTVIEW_INFO *infoPtr, INT nItem, INT nSubItem)
1439 POINT Origin, Position;
1442 if(!is_redrawing(infoPtr)) return;
1443 assert ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_REPORT);
1444 LISTVIEW_GetOrigin(infoPtr, &Origin);
1445 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
1446 LISTVIEW_GetHeaderRect(infoPtr, nSubItem, &rcBox);
1448 rcBox.bottom = infoPtr->nItemHeight;
1449 OffsetRect(&rcBox, Origin.x + Position.x, Origin.y + Position.y);
1450 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
1453 static inline void LISTVIEW_InvalidateList(const LISTVIEW_INFO *infoPtr)
1455 LISTVIEW_InvalidateRect(infoPtr, NULL);
1458 static inline void LISTVIEW_InvalidateColumn(const LISTVIEW_INFO *infoPtr, INT nColumn)
1462 if(!is_redrawing(infoPtr)) return;
1463 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcCol);
1464 rcCol.top = infoPtr->rcList.top;
1465 rcCol.bottom = infoPtr->rcList.bottom;
1466 LISTVIEW_InvalidateRect(infoPtr, &rcCol);
1471 * Retrieves the number of items that can fit vertically in the client area.
1474 * [I] infoPtr : valid pointer to the listview structure
1477 * Number of items per row.
1479 static inline INT LISTVIEW_GetCountPerRow(const LISTVIEW_INFO *infoPtr)
1481 INT nListWidth = infoPtr->rcList.right - infoPtr->rcList.left;
1483 return max(nListWidth/infoPtr->nItemWidth, 1);
1488 * Retrieves the number of items that can fit horizontally in the client
1492 * [I] infoPtr : valid pointer to the listview structure
1495 * Number of items per column.
1497 static inline INT LISTVIEW_GetCountPerColumn(const LISTVIEW_INFO *infoPtr)
1499 INT nListHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
1501 return max(nListHeight / infoPtr->nItemHeight, 1);
1505 /*************************************************************************
1506 * LISTVIEW_ProcessLetterKeys
1508 * Processes keyboard messages generated by pressing the letter keys
1510 * What this does is perform a case insensitive search from the
1511 * current position with the following quirks:
1512 * - If two chars or more are pressed in quick succession we search
1513 * for the corresponding string (e.g. 'abc').
1514 * - If there is a delay we wipe away the current search string and
1515 * restart with just that char.
1516 * - If the user keeps pressing the same character, whether slowly or
1517 * fast, so that the search string is entirely composed of this
1518 * character ('aaaaa' for instance), then we search for first item
1519 * that starting with that character.
1520 * - If the user types the above character in quick succession, then
1521 * we must also search for the corresponding string ('aaaaa'), and
1522 * go to that string if there is a match.
1525 * [I] hwnd : handle to the window
1526 * [I] charCode : the character code, the actual character
1527 * [I] keyData : key data
1535 * - The current implementation has a list of characters it will
1536 * accept and it ignores everything else. In particular it will
1537 * ignore accentuated characters which seems to match what
1538 * Windows does. But I'm not sure it makes sense to follow
1540 * - We don't sound a beep when the search fails.
1544 * TREEVIEW_ProcessLetterKeys
1546 static INT LISTVIEW_ProcessLetterKeys(LISTVIEW_INFO *infoPtr, WPARAM charCode, LPARAM keyData)
1551 WCHAR buffer[MAX_PATH];
1552 DWORD lastKeyPressTimestamp = infoPtr->lastKeyPressTimestamp;
1554 /* simple parameter checking */
1555 if (!charCode || !keyData) return 0;
1557 /* only allow the valid WM_CHARs through */
1558 if (!isalnumW(charCode) &&
1559 charCode != '.' && charCode != '`' && charCode != '!' &&
1560 charCode != '@' && charCode != '#' && charCode != '$' &&
1561 charCode != '%' && charCode != '^' && charCode != '&' &&
1562 charCode != '*' && charCode != '(' && charCode != ')' &&
1563 charCode != '-' && charCode != '_' && charCode != '+' &&
1564 charCode != '=' && charCode != '\\'&& charCode != ']' &&
1565 charCode != '}' && charCode != '[' && charCode != '{' &&
1566 charCode != '/' && charCode != '?' && charCode != '>' &&
1567 charCode != '<' && charCode != ',' && charCode != '~')
1570 /* if there's one item or less, there is no where to go */
1571 if (infoPtr->nItemCount <= 1) return 0;
1573 /* update the search parameters */
1574 infoPtr->lastKeyPressTimestamp = GetTickCount();
1575 if (infoPtr->lastKeyPressTimestamp - lastKeyPressTimestamp < KEY_DELAY) {
1576 if (infoPtr->nSearchParamLength < MAX_PATH-1)
1577 infoPtr->szSearchParam[infoPtr->nSearchParamLength++]=charCode;
1578 if (infoPtr->charCode != charCode)
1579 infoPtr->charCode = charCode = 0;
1581 infoPtr->charCode=charCode;
1582 infoPtr->szSearchParam[0]=charCode;
1583 infoPtr->nSearchParamLength=1;
1584 /* Redundant with the 1 char string */
1588 /* and search from the current position */
1590 if (infoPtr->nFocusedItem >= 0) {
1591 endidx=infoPtr->nFocusedItem;
1593 /* if looking for single character match,
1594 * then we must always move forward
1596 if (infoPtr->nSearchParamLength == 1)
1599 endidx=infoPtr->nItemCount;
1603 /* Let application handle this for virtual listview */
1604 if (infoPtr->dwStyle & LVS_OWNERDATA)
1609 ZeroMemory(&lvfi, sizeof(lvfi));
1610 lvfi.flags = (LVFI_WRAP | LVFI_PARTIAL);
1611 infoPtr->szSearchParam[infoPtr->nSearchParamLength] = '\0';
1612 lvfi.psz = infoPtr->szSearchParam;
1616 nItem = notify_hdr(infoPtr, LVN_ODFINDITEMW, (LPNMHDR)&nmlv.hdr);
1619 LISTVIEW_KeySelection(infoPtr, nItem, FALSE);
1625 if (idx == infoPtr->nItemCount) {
1626 if (endidx == infoPtr->nItemCount || endidx == 0)
1632 item.mask = LVIF_TEXT;
1635 item.pszText = buffer;
1636 item.cchTextMax = MAX_PATH;
1637 if (!LISTVIEW_GetItemW(infoPtr, &item)) return 0;
1639 /* check for a match */
1640 if (lstrncmpiW(item.pszText,infoPtr->szSearchParam,infoPtr->nSearchParamLength) == 0) {
1643 } else if ( (charCode != 0) && (nItem == -1) && (nItem != infoPtr->nFocusedItem) &&
1644 (lstrncmpiW(item.pszText,infoPtr->szSearchParam,1) == 0) ) {
1645 /* This would work but we must keep looking for a longer match */
1649 } while (idx != endidx);
1652 LISTVIEW_KeySelection(infoPtr, nItem, FALSE);
1657 /*************************************************************************
1658 * LISTVIEW_UpdateHeaderSize [Internal]
1660 * Function to resize the header control
1663 * [I] hwnd : handle to a window
1664 * [I] nNewScrollPos : scroll pos to set
1669 static void LISTVIEW_UpdateHeaderSize(const LISTVIEW_INFO *infoPtr, INT nNewScrollPos)
1674 TRACE("nNewScrollPos=%d\n", nNewScrollPos);
1676 if (!infoPtr->hwndHeader) return;
1678 GetWindowRect(infoPtr->hwndHeader, &winRect);
1679 point[0].x = winRect.left;
1680 point[0].y = winRect.top;
1681 point[1].x = winRect.right;
1682 point[1].y = winRect.bottom;
1684 MapWindowPoints(HWND_DESKTOP, infoPtr->hwndSelf, point, 2);
1685 point[0].x = -nNewScrollPos;
1686 point[1].x += nNewScrollPos;
1688 SetWindowPos(infoPtr->hwndHeader,0,
1689 point[0].x,point[0].y,point[1].x,point[1].y,
1690 (infoPtr->dwStyle & LVS_NOCOLUMNHEADER) ? SWP_HIDEWINDOW : SWP_SHOWWINDOW |
1691 SWP_NOZORDER | SWP_NOACTIVATE);
1696 * Update the scrollbars. This functions should be called whenever
1697 * the content, size or view changes.
1700 * [I] infoPtr : valid pointer to the listview structure
1705 static void LISTVIEW_UpdateScroll(const LISTVIEW_INFO *infoPtr)
1707 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1708 SCROLLINFO horzInfo, vertInfo;
1711 if ((infoPtr->dwStyle & LVS_NOSCROLL) || !is_redrawing(infoPtr)) return;
1713 ZeroMemory(&horzInfo, sizeof(SCROLLINFO));
1714 horzInfo.cbSize = sizeof(SCROLLINFO);
1715 horzInfo.nPage = infoPtr->rcList.right - infoPtr->rcList.left;
1717 /* for now, we'll set info.nMax to the _count_, and adjust it later */
1718 if (uView == LVS_LIST)
1720 INT nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
1721 horzInfo.nMax = (infoPtr->nItemCount + nPerCol - 1) / nPerCol;
1723 /* scroll by at least one column per page */
1724 if(horzInfo.nPage < infoPtr->nItemWidth)
1725 horzInfo.nPage = infoPtr->nItemWidth;
1727 horzInfo.nPage /= infoPtr->nItemWidth;
1729 else if (uView == LVS_REPORT)
1731 horzInfo.nMax = infoPtr->nItemWidth;
1733 else /* LVS_ICON, or LVS_SMALLICON */
1737 if (LISTVIEW_GetViewRect(infoPtr, &rcView)) horzInfo.nMax = rcView.right - rcView.left;
1740 horzInfo.fMask = SIF_RANGE | SIF_PAGE;
1741 horzInfo.nMax = max(horzInfo.nMax - 1, 0);
1742 dx = GetScrollPos(infoPtr->hwndSelf, SB_HORZ);
1743 dx -= SetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &horzInfo, TRUE);
1744 TRACE("horzInfo=%s\n", debugscrollinfo(&horzInfo));
1746 /* Setting the horizontal scroll can change the listview size
1747 * (and potentially everything else) so we need to recompute
1748 * everything again for the vertical scroll
1751 ZeroMemory(&vertInfo, sizeof(SCROLLINFO));
1752 vertInfo.cbSize = sizeof(SCROLLINFO);
1753 vertInfo.nPage = infoPtr->rcList.bottom - infoPtr->rcList.top;
1755 if (uView == LVS_REPORT)
1757 vertInfo.nMax = infoPtr->nItemCount;
1759 /* scroll by at least one page */
1760 if(vertInfo.nPage < infoPtr->nItemHeight)
1761 vertInfo.nPage = infoPtr->nItemHeight;
1763 if (infoPtr->nItemHeight > 0)
1764 vertInfo.nPage /= infoPtr->nItemHeight;
1766 else if (uView != LVS_LIST) /* LVS_ICON, or LVS_SMALLICON */
1770 if (LISTVIEW_GetViewRect(infoPtr, &rcView)) vertInfo.nMax = rcView.bottom - rcView.top;
1773 vertInfo.fMask = SIF_RANGE | SIF_PAGE;
1774 vertInfo.nMax = max(vertInfo.nMax - 1, 0);
1775 dy = GetScrollPos(infoPtr->hwndSelf, SB_VERT);
1776 dy -= SetScrollInfo(infoPtr->hwndSelf, SB_VERT, &vertInfo, TRUE);
1777 TRACE("vertInfo=%s\n", debugscrollinfo(&vertInfo));
1779 /* Change of the range may have changed the scroll pos. If so move the content */
1780 if (dx != 0 || dy != 0)
1783 listRect = infoPtr->rcList;
1784 ScrollWindowEx(infoPtr->hwndSelf, dx, dy, &listRect, &listRect, 0, 0,
1785 SW_ERASE | SW_INVALIDATE);
1788 /* Update the Header Control */
1789 if (uView == LVS_REPORT)
1791 horzInfo.fMask = SIF_POS;
1792 GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &horzInfo);
1793 LISTVIEW_UpdateHeaderSize(infoPtr, horzInfo.nPos);
1800 * Shows/hides the focus rectangle.
1803 * [I] infoPtr : valid pointer to the listview structure
1804 * [I] fShow : TRUE to show the focus, FALSE to hide it.
1809 static void LISTVIEW_ShowFocusRect(const LISTVIEW_INFO *infoPtr, BOOL fShow)
1811 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1814 TRACE("fShow=%d, nItem=%d\n", fShow, infoPtr->nFocusedItem);
1816 if (infoPtr->nFocusedItem < 0) return;
1818 /* we need some gymnastics in ICON mode to handle large items */
1819 if ( (infoPtr->dwStyle & LVS_TYPEMASK) == LVS_ICON )
1823 LISTVIEW_GetItemBox(infoPtr, infoPtr->nFocusedItem, &rcBox);
1824 if ((rcBox.bottom - rcBox.top) > infoPtr->nItemHeight)
1826 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
1831 if (!(hdc = GetDC(infoPtr->hwndSelf))) return;
1833 /* for some reason, owner draw should work only in report mode */
1834 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (uView == LVS_REPORT))
1839 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
1840 HFONT hOldFont = SelectObject(hdc, hFont);
1842 item.iItem = infoPtr->nFocusedItem;
1844 item.mask = LVIF_PARAM;
1845 if (!LISTVIEW_GetItemW(infoPtr, &item)) goto done;
1847 ZeroMemory(&dis, sizeof(dis));
1848 dis.CtlType = ODT_LISTVIEW;
1849 dis.CtlID = (UINT)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
1850 dis.itemID = item.iItem;
1851 dis.itemAction = ODA_FOCUS;
1852 if (fShow) dis.itemState |= ODS_FOCUS;
1853 dis.hwndItem = infoPtr->hwndSelf;
1855 LISTVIEW_GetItemBox(infoPtr, dis.itemID, &dis.rcItem);
1856 dis.itemData = item.lParam;
1858 SendMessageW(infoPtr->hwndNotify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
1860 SelectObject(hdc, hOldFont);
1864 DrawFocusRect(hdc, &infoPtr->rcFocus);
1867 ReleaseDC(infoPtr->hwndSelf, hdc);
1871 * Invalidates all visible selected items.
1873 static void LISTVIEW_InvalidateSelectedItems(const LISTVIEW_INFO *infoPtr)
1877 iterator_frameditems(&i, infoPtr, &infoPtr->rcList);
1878 while(iterator_next(&i))
1880 if (LISTVIEW_GetItemState(infoPtr, i.nItem, LVIS_SELECTED))
1881 LISTVIEW_InvalidateItem(infoPtr, i.nItem);
1883 iterator_destroy(&i);
1888 * DESCRIPTION: [INTERNAL]
1889 * Computes an item's (left,top) corner, relative to rcView.
1890 * That is, the position has NOT been made relative to the Origin.
1891 * This is deliberate, to avoid computing the Origin over, and
1892 * over again, when this function is called in a loop. Instead,
1893 * one can factor the computation of the Origin before the loop,
1894 * and offset the value returned by this function, on every iteration.
1897 * [I] infoPtr : valid pointer to the listview structure
1898 * [I] nItem : item number
1899 * [O] lpptOrig : item top, left corner
1904 static void LISTVIEW_GetItemOrigin(const LISTVIEW_INFO *infoPtr, INT nItem, LPPOINT lpptPosition)
1906 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1908 assert(nItem >= 0 && nItem < infoPtr->nItemCount);
1910 if ((uView == LVS_SMALLICON) || (uView == LVS_ICON))
1912 lpptPosition->x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
1913 lpptPosition->y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
1915 else if (uView == LVS_LIST)
1917 INT nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
1918 lpptPosition->x = nItem / nCountPerColumn * infoPtr->nItemWidth;
1919 lpptPosition->y = nItem % nCountPerColumn * infoPtr->nItemHeight;
1921 else /* LVS_REPORT */
1923 lpptPosition->x = 0;
1924 lpptPosition->y = nItem * infoPtr->nItemHeight;
1929 * DESCRIPTION: [INTERNAL]
1930 * Compute the rectangles of an item. This is to localize all
1931 * the computations in one place. If you are not interested in some
1932 * of these values, simply pass in a NULL -- the function is smart
1933 * enough to compute only what's necessary. The function computes
1934 * the standard rectangles (BOUNDS, ICON, LABEL) plus a non-standard
1935 * one, the BOX rectangle. This rectangle is very cheap to compute,
1936 * and is guaranteed to contain all the other rectangles. Computing
1937 * the ICON rect is also cheap, but all the others are potentially
1938 * expensive. This gives an easy and effective optimization when
1939 * searching (like point inclusion, or rectangle intersection):
1940 * first test against the BOX, and if TRUE, test against the desired
1942 * If the function does not have all the necessary information
1943 * to computed the requested rectangles, will crash with a
1944 * failed assertion. This is done so we catch all programming
1945 * errors, given that the function is called only from our code.
1947 * We have the following 'special' meanings for a few fields:
1948 * * If LVIS_FOCUSED is set, we assume the item has the focus
1949 * This is important in ICON mode, where it might get a larger
1950 * then usual rectangle
1952 * Please note that subitem support works only in REPORT mode.
1955 * [I] infoPtr : valid pointer to the listview structure
1956 * [I] lpLVItem : item to compute the measures for
1957 * [O] lprcBox : ptr to Box rectangle
1958 * Same as LVM_GETITEMRECT with LVIR_BOUNDS
1959 * [0] lprcSelectBox : ptr to select box rectangle
1960 * Same as LVM_GETITEMRECT with LVIR_SELECTEDBOUNDS
1961 * [O] lprcIcon : ptr to Icon rectangle
1962 * Same as LVM_GETITEMRECT with LVIR_ICON
1963 * [O] lprcStateIcon: ptr to State Icon rectangle
1964 * [O] lprcLabel : ptr to Label rectangle
1965 * Same as LVM_GETITEMRECT with LVIR_LABEL
1970 static void LISTVIEW_GetItemMetrics(const LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem,
1971 LPRECT lprcBox, LPRECT lprcSelectBox,
1972 LPRECT lprcIcon, LPRECT lprcStateIcon, LPRECT lprcLabel)
1974 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
1975 BOOL doSelectBox = FALSE, doIcon = FALSE, doLabel = FALSE, oversizedBox = FALSE;
1976 RECT Box, SelectBox, Icon, Label;
1977 COLUMN_INFO *lpColumnInfo = NULL;
1978 SIZE labelSize = { 0, 0 };
1980 TRACE("(lpLVItem=%s)\n", debuglvitem_t(lpLVItem, TRUE));
1982 /* Be smart and try to figure out the minimum we have to do */
1983 if (lpLVItem->iSubItem) assert(uView == LVS_REPORT);
1984 if (uView == LVS_ICON && (lprcBox || lprcLabel))
1986 assert((lpLVItem->mask & LVIF_STATE) && (lpLVItem->stateMask & LVIS_FOCUSED));
1987 if (lpLVItem->state & LVIS_FOCUSED) oversizedBox = doLabel = TRUE;
1989 if (lprcSelectBox) doSelectBox = TRUE;
1990 if (lprcLabel) doLabel = TRUE;
1991 if (doLabel || lprcIcon || lprcStateIcon) doIcon = TRUE;
1998 /************************************************************/
1999 /* compute the box rectangle (it should be cheap to do) */
2000 /************************************************************/
2001 if (lpLVItem->iSubItem || uView == LVS_REPORT)
2002 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpLVItem->iSubItem);
2004 if (lpLVItem->iSubItem)
2006 Box = lpColumnInfo->rcHeader;
2011 Box.right = infoPtr->nItemWidth;
2014 Box.bottom = infoPtr->nItemHeight;
2016 /******************************************************************/
2017 /* compute ICON bounding box (ala LVM_GETITEMRECT) and STATEICON */
2018 /******************************************************************/
2021 LONG state_width = 0;
2023 if (infoPtr->himlState && lpLVItem->iSubItem == 0)
2024 state_width = infoPtr->iconStateSize.cx;
2026 if (uView == LVS_ICON)
2028 Icon.left = Box.left + state_width;
2029 if (infoPtr->himlNormal)
2030 Icon.left += (infoPtr->nItemWidth - infoPtr->iconSize.cx - state_width) / 2;
2031 Icon.top = Box.top + ICON_TOP_PADDING;
2032 Icon.right = Icon.left;
2033 Icon.bottom = Icon.top;
2034 if (infoPtr->himlNormal)
2036 Icon.right += infoPtr->iconSize.cx;
2037 Icon.bottom += infoPtr->iconSize.cy;
2040 else /* LVS_SMALLICON, LVS_LIST or LVS_REPORT */
2042 Icon.left = Box.left + state_width;
2044 if (uView == LVS_REPORT)
2045 Icon.left += REPORT_MARGINX;
2048 Icon.right = Icon.left;
2049 if (infoPtr->himlSmall &&
2050 (!lpColumnInfo || lpLVItem->iSubItem == 0 || (lpColumnInfo->fmt & LVCFMT_IMAGE) ||
2051 ((infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES) && lpLVItem->iImage != I_IMAGECALLBACK)))
2052 Icon.right += infoPtr->iconSize.cx;
2053 Icon.bottom = Icon.top + infoPtr->iconSize.cy;
2055 if(lprcIcon) *lprcIcon = Icon;
2056 TRACE(" - icon=%s\n", wine_dbgstr_rect(&Icon));
2058 /* TODO: is this correct? */
2061 lprcStateIcon->left = Icon.left - state_width;
2062 lprcStateIcon->right = Icon.left;
2063 lprcStateIcon->top = Icon.top;
2064 lprcStateIcon->bottom = lprcStateIcon->top + infoPtr->iconSize.cy;
2065 TRACE(" - state icon=%s\n", wine_dbgstr_rect(lprcStateIcon));
2068 else Icon.right = 0;
2070 /************************************************************/
2071 /* compute LABEL bounding box (ala LVM_GETITEMRECT) */
2072 /************************************************************/
2075 /* calculate how far to the right can the label stretch */
2076 Label.right = Box.right;
2077 if (uView == LVS_REPORT)
2079 if (lpLVItem->iSubItem == 0) Label = lpColumnInfo->rcHeader;
2082 if (lpLVItem->iSubItem || ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && uView == LVS_REPORT))
2084 labelSize.cx = infoPtr->nItemWidth;
2085 labelSize.cy = infoPtr->nItemHeight;
2089 /* we need the text in non owner draw mode */
2090 assert(lpLVItem->mask & LVIF_TEXT);
2091 if (is_textT(lpLVItem->pszText, TRUE))
2093 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
2094 HDC hdc = GetDC(infoPtr->hwndSelf);
2095 HFONT hOldFont = SelectObject(hdc, hFont);
2099 /* compute rough rectangle where the label will go */
2100 SetRectEmpty(&rcText);
2101 rcText.right = infoPtr->nItemWidth - TRAILING_LABEL_PADDING;
2102 rcText.bottom = infoPtr->nItemHeight;
2103 if (uView == LVS_ICON)
2104 rcText.bottom -= ICON_TOP_PADDING + infoPtr->iconSize.cy + ICON_BOTTOM_PADDING;
2106 /* now figure out the flags */
2107 if (uView == LVS_ICON)
2108 uFormat = oversizedBox ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS;
2110 uFormat = LV_SL_DT_FLAGS;
2112 DrawTextW (hdc, lpLVItem->pszText, -1, &rcText, uFormat | DT_CALCRECT);
2114 labelSize.cx = min(rcText.right - rcText.left + TRAILING_LABEL_PADDING, infoPtr->nItemWidth);
2115 labelSize.cy = rcText.bottom - rcText.top;
2117 SelectObject(hdc, hOldFont);
2118 ReleaseDC(infoPtr->hwndSelf, hdc);
2122 if (uView == LVS_ICON)
2124 Label.left = Box.left + (infoPtr->nItemWidth - labelSize.cx) / 2;
2125 Label.top = Box.top + ICON_TOP_PADDING_HITABLE +
2126 infoPtr->iconSize.cy + ICON_BOTTOM_PADDING;
2127 Label.right = Label.left + labelSize.cx;
2128 Label.bottom = Label.top + infoPtr->nItemHeight;
2129 if (!oversizedBox && labelSize.cy > infoPtr->ntmHeight)
2131 labelSize.cy = min(Box.bottom - Label.top, labelSize.cy);
2132 labelSize.cy /= infoPtr->ntmHeight;
2133 labelSize.cy = max(labelSize.cy, 1);
2134 labelSize.cy *= infoPtr->ntmHeight;
2136 Label.bottom = Label.top + labelSize.cy + HEIGHT_PADDING;
2138 else if (uView == LVS_REPORT)
2140 Label.left = Icon.right;
2141 Label.top = Box.top;
2142 Label.right = lpColumnInfo->rcHeader.right;
2143 Label.bottom = Label.top + infoPtr->nItemHeight;
2145 else /* LVS_SMALLICON, LVS_LIST or LVS_REPORT */
2147 Label.left = Icon.right;
2148 Label.top = Box.top;
2149 Label.right = min(Label.left + labelSize.cx, Label.right);
2150 Label.bottom = Label.top + infoPtr->nItemHeight;
2153 if (lprcLabel) *lprcLabel = Label;
2154 TRACE(" - label=%s\n", wine_dbgstr_rect(&Label));
2157 /************************************************************/
2158 /* compute STATEICON bounding box */
2159 /************************************************************/
2162 if (uView == LVS_REPORT)
2164 SelectBox.left = Icon.right; /* FIXME: should be Icon.left */
2165 SelectBox.top = Box.top;
2166 SelectBox.bottom = Box.bottom;
2167 if (lpLVItem->iSubItem == 0)
2169 /* we need the indent in report mode */
2170 assert(lpLVItem->mask & LVIF_INDENT);
2171 SelectBox.left += infoPtr->iconSize.cx * lpLVItem->iIndent;
2173 SelectBox.right = min(SelectBox.left + labelSize.cx, Label.right);
2177 UnionRect(&SelectBox, &Icon, &Label);
2179 if (lprcSelectBox) *lprcSelectBox = SelectBox;
2180 TRACE(" - select box=%s\n", wine_dbgstr_rect(&SelectBox));
2183 /* Fix the Box if necessary */
2186 if (oversizedBox) UnionRect(lprcBox, &Box, &Label);
2187 else *lprcBox = Box;
2189 TRACE(" - box=%s\n", wine_dbgstr_rect(&Box));
2193 * DESCRIPTION: [INTERNAL]
2196 * [I] infoPtr : valid pointer to the listview structure
2197 * [I] nItem : item number
2198 * [O] lprcBox : ptr to Box rectangle
2203 static void LISTVIEW_GetItemBox(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprcBox)
2205 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
2206 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
2207 POINT Position, Origin;
2210 LISTVIEW_GetOrigin(infoPtr, &Origin);
2211 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
2213 /* Be smart and try to figure out the minimum we have to do */
2215 if (uView == LVS_ICON && infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, nItem, LVIS_FOCUSED))
2216 lvItem.mask |= LVIF_TEXT;
2217 lvItem.iItem = nItem;
2218 lvItem.iSubItem = 0;
2219 lvItem.pszText = szDispText;
2220 lvItem.cchTextMax = DISP_TEXT_SIZE;
2221 if (lvItem.mask) LISTVIEW_GetItemW(infoPtr, &lvItem);
2222 if (uView == LVS_ICON)
2224 lvItem.mask |= LVIF_STATE;
2225 lvItem.stateMask = LVIS_FOCUSED;
2226 lvItem.state = (lvItem.mask & LVIF_TEXT ? LVIS_FOCUSED : 0);
2228 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprcBox, 0, 0, 0, 0);
2230 OffsetRect(lprcBox, Position.x + Origin.x, Position.y + Origin.y);
2236 * Returns the current icon position, and advances it along the top.
2237 * The returned position is not offset by Origin.
2240 * [I] infoPtr : valid pointer to the listview structure
2241 * [O] lpPos : will get the current icon position
2246 static void LISTVIEW_NextIconPosTop(LISTVIEW_INFO *infoPtr, LPPOINT lpPos)
2248 INT nListWidth = infoPtr->rcList.right - infoPtr->rcList.left;
2250 *lpPos = infoPtr->currIconPos;
2252 infoPtr->currIconPos.x += infoPtr->nItemWidth;
2253 if (infoPtr->currIconPos.x + infoPtr->nItemWidth <= nListWidth) return;
2255 infoPtr->currIconPos.x = 0;
2256 infoPtr->currIconPos.y += infoPtr->nItemHeight;
2262 * Returns the current icon position, and advances it down the left edge.
2263 * The returned position is not offset by Origin.
2266 * [I] infoPtr : valid pointer to the listview structure
2267 * [O] lpPos : will get the current icon position
2272 static void LISTVIEW_NextIconPosLeft(LISTVIEW_INFO *infoPtr, LPPOINT lpPos)
2274 INT nListHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
2276 *lpPos = infoPtr->currIconPos;
2278 infoPtr->currIconPos.y += infoPtr->nItemHeight;
2279 if (infoPtr->currIconPos.y + infoPtr->nItemHeight <= nListHeight) return;
2281 infoPtr->currIconPos.x += infoPtr->nItemWidth;
2282 infoPtr->currIconPos.y = 0;
2288 * Moves an icon to the specified position.
2289 * It takes care of invalidating the item, etc.
2292 * [I] infoPtr : valid pointer to the listview structure
2293 * [I] nItem : the item to move
2294 * [I] lpPos : the new icon position
2295 * [I] isNew : flags the item as being new
2301 static BOOL LISTVIEW_MoveIconTo(const LISTVIEW_INFO *infoPtr, INT nItem, const POINT *lppt, BOOL isNew)
2307 old.x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
2308 old.y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
2310 if (lppt->x == old.x && lppt->y == old.y) return TRUE;
2311 LISTVIEW_InvalidateItem(infoPtr, nItem);
2314 /* Allocating a POINTER for every item is too resource intensive,
2315 * so we'll keep the (x,y) in different arrays */
2316 if (!DPA_SetPtr(infoPtr->hdpaPosX, nItem, (void *)(LONG_PTR)lppt->x)) return FALSE;
2317 if (!DPA_SetPtr(infoPtr->hdpaPosY, nItem, (void *)(LONG_PTR)lppt->y)) return FALSE;
2319 LISTVIEW_InvalidateItem(infoPtr, nItem);
2326 * Arranges listview items in icon display mode.
2329 * [I] infoPtr : valid pointer to the listview structure
2330 * [I] nAlignCode : alignment code
2336 static BOOL LISTVIEW_Arrange(LISTVIEW_INFO *infoPtr, INT nAlignCode)
2338 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
2339 void (*next_pos)(LISTVIEW_INFO *, LPPOINT);
2343 if (uView != LVS_ICON && uView != LVS_SMALLICON) return FALSE;
2345 TRACE("nAlignCode=%d\n", nAlignCode);
2347 if (nAlignCode == LVA_DEFAULT)
2349 if (infoPtr->dwStyle & LVS_ALIGNLEFT) nAlignCode = LVA_ALIGNLEFT;
2350 else nAlignCode = LVA_ALIGNTOP;
2355 case LVA_ALIGNLEFT: next_pos = LISTVIEW_NextIconPosLeft; break;
2356 case LVA_ALIGNTOP: next_pos = LISTVIEW_NextIconPosTop; break;
2357 case LVA_SNAPTOGRID: next_pos = LISTVIEW_NextIconPosTop; break; /* FIXME */
2358 default: return FALSE;
2361 infoPtr->bAutoarrange = TRUE;
2362 infoPtr->currIconPos.x = infoPtr->currIconPos.y = 0;
2363 for (i = 0; i < infoPtr->nItemCount; i++)
2365 next_pos(infoPtr, &pos);
2366 LISTVIEW_MoveIconTo(infoPtr, i, &pos, FALSE);
2374 * Retrieves the bounding rectangle of all the items, not offset by Origin.
2377 * [I] infoPtr : valid pointer to the listview structure
2378 * [O] lprcView : bounding rectangle
2384 static void LISTVIEW_GetAreaRect(const LISTVIEW_INFO *infoPtr, LPRECT lprcView)
2388 SetRectEmpty(lprcView);
2390 switch (infoPtr->dwStyle & LVS_TYPEMASK)
2394 for (i = 0; i < infoPtr->nItemCount; i++)
2396 x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, i);
2397 y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, i);
2398 lprcView->right = max(lprcView->right, x);
2399 lprcView->bottom = max(lprcView->bottom, y);
2401 if (infoPtr->nItemCount > 0)
2403 lprcView->right += infoPtr->nItemWidth;
2404 lprcView->bottom += infoPtr->nItemHeight;
2409 y = LISTVIEW_GetCountPerColumn(infoPtr);
2410 x = infoPtr->nItemCount / y;
2411 if (infoPtr->nItemCount % y) x++;
2412 lprcView->right = x * infoPtr->nItemWidth;
2413 lprcView->bottom = y * infoPtr->nItemHeight;
2417 lprcView->right = infoPtr->nItemWidth;
2418 lprcView->bottom = infoPtr->nItemCount * infoPtr->nItemHeight;
2425 * Retrieves the bounding rectangle of all the items.
2428 * [I] infoPtr : valid pointer to the listview structure
2429 * [O] lprcView : bounding rectangle
2435 static BOOL LISTVIEW_GetViewRect(const LISTVIEW_INFO *infoPtr, LPRECT lprcView)
2439 TRACE("(lprcView=%p)\n", lprcView);
2441 if (!lprcView) return FALSE;
2443 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
2444 LISTVIEW_GetAreaRect(infoPtr, lprcView);
2445 OffsetRect(lprcView, ptOrigin.x, ptOrigin.y);
2447 TRACE("lprcView=%s\n", wine_dbgstr_rect(lprcView));
2454 * Retrieves the subitem pointer associated with the subitem index.
2457 * [I] hdpaSubItems : DPA handle for a specific item
2458 * [I] nSubItem : index of subitem
2461 * SUCCESS : subitem pointer
2464 static SUBITEM_INFO* LISTVIEW_GetSubItemPtr(HDPA hdpaSubItems, INT nSubItem)
2466 SUBITEM_INFO *lpSubItem;
2469 /* we should binary search here if need be */
2470 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
2472 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
2473 if (lpSubItem->iSubItem == nSubItem)
2483 * Calculates the desired item width.
2486 * [I] infoPtr : valid pointer to the listview structure
2489 * The desired item width.
2491 static INT LISTVIEW_CalculateItemWidth(const LISTVIEW_INFO *infoPtr)
2493 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
2496 TRACE("uView=%d\n", uView);
2498 if (uView == LVS_ICON)
2499 nItemWidth = infoPtr->iconSpacing.cx;
2500 else if (uView == LVS_REPORT)
2504 if (DPA_GetPtrCount(infoPtr->hdpaColumns) > 0)
2506 LISTVIEW_GetHeaderRect(infoPtr, DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, &rcHeader);
2507 nItemWidth = rcHeader.right;
2510 else /* LVS_SMALLICON, or LVS_LIST */
2514 for (i = 0; i < infoPtr->nItemCount; i++)
2515 nItemWidth = max(LISTVIEW_GetLabelWidth(infoPtr, i), nItemWidth);
2517 if (infoPtr->himlSmall) nItemWidth += infoPtr->iconSize.cx;
2518 if (infoPtr->himlState) nItemWidth += infoPtr->iconStateSize.cx;
2520 nItemWidth = max(DEFAULT_COLUMN_WIDTH, nItemWidth + WIDTH_PADDING);
2523 return max(nItemWidth, 1);
2528 * Calculates the desired item height.
2531 * [I] infoPtr : valid pointer to the listview structure
2534 * The desired item height.
2536 static INT LISTVIEW_CalculateItemHeight(const LISTVIEW_INFO *infoPtr)
2538 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
2541 TRACE("uView=%d\n", uView);
2543 if (uView == LVS_ICON)
2544 nItemHeight = infoPtr->iconSpacing.cy;
2547 nItemHeight = infoPtr->ntmHeight;
2548 if (uView == LVS_REPORT && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
2550 if (infoPtr->himlState)
2551 nItemHeight = max(nItemHeight, infoPtr->iconStateSize.cy);
2552 if (infoPtr->himlSmall)
2553 nItemHeight = max(nItemHeight, infoPtr->iconSize.cy);
2554 if (infoPtr->himlState || infoPtr->himlSmall)
2555 nItemHeight += HEIGHT_PADDING;
2556 if (infoPtr->nMeasureItemHeight > 0)
2557 nItemHeight = infoPtr->nMeasureItemHeight;
2560 return max(nItemHeight, 1);
2565 * Updates the width, and height of an item.
2568 * [I] infoPtr : valid pointer to the listview structure
2573 static inline void LISTVIEW_UpdateItemSize(LISTVIEW_INFO *infoPtr)
2575 infoPtr->nItemWidth = LISTVIEW_CalculateItemWidth(infoPtr);
2576 infoPtr->nItemHeight = LISTVIEW_CalculateItemHeight(infoPtr);
2582 * Retrieves and saves important text metrics info for the current
2586 * [I] infoPtr : valid pointer to the listview structure
2589 static void LISTVIEW_SaveTextMetrics(LISTVIEW_INFO *infoPtr)
2591 HDC hdc = GetDC(infoPtr->hwndSelf);
2592 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
2593 HFONT hOldFont = SelectObject(hdc, hFont);
2597 if (GetTextMetricsW(hdc, &tm))
2599 infoPtr->ntmHeight = tm.tmHeight;
2600 infoPtr->ntmMaxCharWidth = tm.tmMaxCharWidth;
2603 if (GetTextExtentPoint32A(hdc, "...", 3, &sz))
2604 infoPtr->nEllipsisWidth = sz.cx;
2606 SelectObject(hdc, hOldFont);
2607 ReleaseDC(infoPtr->hwndSelf, hdc);
2609 TRACE("tmHeight=%d\n", infoPtr->ntmHeight);
2614 * A compare function for ranges
2617 * [I] range1 : pointer to range 1;
2618 * [I] range2 : pointer to range 2;
2622 * > 0 : if range 1 > range 2
2623 * < 0 : if range 2 > range 1
2624 * = 0 : if range intersects range 2
2626 static INT CALLBACK ranges_cmp(LPVOID range1, LPVOID range2, LPARAM flags)
2630 if (((RANGE*)range1)->upper <= ((RANGE*)range2)->lower)
2632 else if (((RANGE*)range2)->upper <= ((RANGE*)range1)->lower)
2637 TRACE("range1=%s, range2=%s, cmp=%d\n", debugrange(range1), debugrange(range2), cmp);
2643 #define ranges_check(ranges, desc) ranges_assert(ranges, desc, __FUNCTION__, __LINE__)
2645 #define ranges_check(ranges, desc) do { } while(0)
2648 static void ranges_assert(RANGES ranges, LPCSTR desc, const char *func, int line)
2653 TRACE("*** Checking %s:%d:%s ***\n", func, line, desc);
2655 assert (DPA_GetPtrCount(ranges->hdpa) >= 0);
2656 ranges_dump(ranges);
2657 if (DPA_GetPtrCount(ranges->hdpa) > 0)
2659 prev = DPA_GetPtr(ranges->hdpa, 0);
2660 assert (prev->lower >= 0 && prev->lower < prev->upper);
2661 for (i = 1; i < DPA_GetPtrCount(ranges->hdpa); i++)
2663 curr = DPA_GetPtr(ranges->hdpa, i);
2664 assert (prev->upper <= curr->lower);
2665 assert (curr->lower < curr->upper);
2669 TRACE("--- Done checking---\n");
2672 static RANGES ranges_create(int count)
2674 RANGES ranges = Alloc(sizeof(struct tagRANGES));
2675 if (!ranges) return NULL;
2676 ranges->hdpa = DPA_Create(count);
2677 if (ranges->hdpa) return ranges;
2682 static void ranges_clear(RANGES ranges)
2686 for(i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
2687 Free(DPA_GetPtr(ranges->hdpa, i));
2688 DPA_DeleteAllPtrs(ranges->hdpa);
2692 static void ranges_destroy(RANGES ranges)
2694 if (!ranges) return;
2695 ranges_clear(ranges);
2696 DPA_Destroy(ranges->hdpa);
2700 static RANGES ranges_clone(RANGES ranges)
2705 if (!(clone = ranges_create(DPA_GetPtrCount(ranges->hdpa)))) goto fail;
2707 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
2709 RANGE *newrng = Alloc(sizeof(RANGE));
2710 if (!newrng) goto fail;
2711 *newrng = *((RANGE*)DPA_GetPtr(ranges->hdpa, i));
2712 DPA_SetPtr(clone->hdpa, i, newrng);
2717 TRACE ("clone failed\n");
2718 ranges_destroy(clone);
2722 static RANGES ranges_diff(RANGES ranges, RANGES sub)
2726 for (i = 0; i < DPA_GetPtrCount(sub->hdpa); i++)
2727 ranges_del(ranges, *((RANGE *)DPA_GetPtr(sub->hdpa, i)));
2732 static void ranges_dump(RANGES ranges)
2736 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
2737 TRACE(" %s\n", debugrange(DPA_GetPtr(ranges->hdpa, i)));
2740 static inline BOOL ranges_contain(RANGES ranges, INT nItem)
2742 RANGE srchrng = { nItem, nItem + 1 };
2744 TRACE("(nItem=%d)\n", nItem);
2745 ranges_check(ranges, "before contain");
2746 return DPA_Search(ranges->hdpa, &srchrng, 0, ranges_cmp, 0, DPAS_SORTED) != -1;
2749 static INT ranges_itemcount(RANGES ranges)
2753 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
2755 RANGE *sel = DPA_GetPtr(ranges->hdpa, i);
2756 count += sel->upper - sel->lower;
2762 static BOOL ranges_shift(RANGES ranges, INT nItem, INT delta, INT nUpper)
2764 RANGE srchrng = { nItem, nItem + 1 }, *chkrng;
2767 index = DPA_Search(ranges->hdpa, &srchrng, 0, ranges_cmp, 0, DPAS_SORTED | DPAS_INSERTAFTER);
2768 if (index == -1) return TRUE;
2770 for (; index < DPA_GetPtrCount(ranges->hdpa); index++)
2772 chkrng = DPA_GetPtr(ranges->hdpa, index);
2773 if (chkrng->lower >= nItem)
2774 chkrng->lower = max(min(chkrng->lower + delta, nUpper - 1), 0);
2775 if (chkrng->upper > nItem)
2776 chkrng->upper = max(min(chkrng->upper + delta, nUpper), 0);
2781 static BOOL ranges_add(RANGES ranges, RANGE range)
2786 TRACE("(%s)\n", debugrange(&range));
2787 ranges_check(ranges, "before add");
2789 /* try find overlapping regions first */
2790 srchrgn.lower = range.lower - 1;
2791 srchrgn.upper = range.upper + 1;
2792 index = DPA_Search(ranges->hdpa, &srchrgn, 0, ranges_cmp, 0, DPAS_SORTED);
2798 TRACE("Adding new range\n");
2800 /* create the brand new range to insert */
2801 newrgn = Alloc(sizeof(RANGE));
2802 if(!newrgn) goto fail;
2805 /* figure out where to insert it */
2806 index = DPA_Search(ranges->hdpa, newrgn, 0, ranges_cmp, 0, DPAS_SORTED | DPAS_INSERTAFTER);
2807 TRACE("index=%d\n", index);
2808 if (index == -1) index = 0;
2810 /* and get it over with */
2811 if (DPA_InsertPtr(ranges->hdpa, index, newrgn) == -1)
2819 RANGE *chkrgn, *mrgrgn;
2820 INT fromindex, mergeindex;
2822 chkrgn = DPA_GetPtr(ranges->hdpa, index);
2823 TRACE("Merge with %s @%d\n", debugrange(chkrgn), index);
2825 chkrgn->lower = min(range.lower, chkrgn->lower);
2826 chkrgn->upper = max(range.upper, chkrgn->upper);
2828 TRACE("New range %s @%d\n", debugrange(chkrgn), index);
2830 /* merge now common ranges */
2832 srchrgn.lower = chkrgn->lower - 1;
2833 srchrgn.upper = chkrgn->upper + 1;
2837 mergeindex = DPA_Search(ranges->hdpa, &srchrgn, fromindex, ranges_cmp, 0, 0);
2838 if (mergeindex == -1) break;
2839 if (mergeindex == index)
2841 fromindex = index + 1;
2845 TRACE("Merge with index %i\n", mergeindex);
2847 mrgrgn = DPA_GetPtr(ranges->hdpa, mergeindex);
2848 chkrgn->lower = min(chkrgn->lower, mrgrgn->lower);
2849 chkrgn->upper = max(chkrgn->upper, mrgrgn->upper);
2851 DPA_DeletePtr(ranges->hdpa, mergeindex);
2852 if (mergeindex < index) index --;
2856 ranges_check(ranges, "after add");
2860 ranges_check(ranges, "failed add");
2864 static BOOL ranges_del(RANGES ranges, RANGE range)
2869 TRACE("(%s)\n", debugrange(&range));
2870 ranges_check(ranges, "before del");
2872 /* we don't use DPAS_SORTED here, since we need *
2873 * to find the first overlapping range */
2874 index = DPA_Search(ranges->hdpa, &range, 0, ranges_cmp, 0, 0);
2877 chkrgn = DPA_GetPtr(ranges->hdpa, index);
2879 TRACE("Matches range %s @%d\n", debugrange(chkrgn), index);
2881 /* case 1: Same range */
2882 if ( (chkrgn->upper == range.upper) &&
2883 (chkrgn->lower == range.lower) )
2885 DPA_DeletePtr(ranges->hdpa, index);
2888 /* case 2: engulf */
2889 else if ( (chkrgn->upper <= range.upper) &&
2890 (chkrgn->lower >= range.lower) )
2892 DPA_DeletePtr(ranges->hdpa, index);
2894 /* case 3: overlap upper */
2895 else if ( (chkrgn->upper <= range.upper) &&
2896 (chkrgn->lower < range.lower) )
2898 chkrgn->upper = range.lower;
2900 /* case 4: overlap lower */
2901 else if ( (chkrgn->upper > range.upper) &&
2902 (chkrgn->lower >= range.lower) )
2904 chkrgn->lower = range.upper;
2907 /* case 5: fully internal */
2910 RANGE tmprgn = *chkrgn, *newrgn;
2912 if (!(newrgn = Alloc(sizeof(RANGE)))) goto fail;
2913 newrgn->lower = chkrgn->lower;
2914 newrgn->upper = range.lower;
2915 chkrgn->lower = range.upper;
2916 if (DPA_InsertPtr(ranges->hdpa, index, newrgn) == -1)
2925 index = DPA_Search(ranges->hdpa, &range, index, ranges_cmp, 0, 0);
2928 ranges_check(ranges, "after del");
2932 ranges_check(ranges, "failed del");
2938 * Removes all selection ranges
2941 * [I] infoPtr : valid pointer to the listview structure
2942 * [I] toSkip : item range to skip removing the selection
2948 static BOOL LISTVIEW_DeselectAllSkipItems(LISTVIEW_INFO *infoPtr, RANGES toSkip)
2957 lvItem.stateMask = LVIS_SELECTED;
2959 /* need to clone the DPA because callbacks can change it */
2960 if (!(clone = ranges_clone(infoPtr->selectionRanges))) return FALSE;
2961 iterator_rangesitems(&i, ranges_diff(clone, toSkip));
2962 while(iterator_next(&i))
2963 LISTVIEW_SetItemState(infoPtr, i.nItem, &lvItem);
2964 /* note that the iterator destructor will free the cloned range */
2965 iterator_destroy(&i);
2970 static inline BOOL LISTVIEW_DeselectAllSkipItem(LISTVIEW_INFO *infoPtr, INT nItem)
2974 if (!(toSkip = ranges_create(1))) return FALSE;
2975 if (nItem != -1) ranges_additem(toSkip, nItem);
2976 LISTVIEW_DeselectAllSkipItems(infoPtr, toSkip);
2977 ranges_destroy(toSkip);
2981 static inline BOOL LISTVIEW_DeselectAll(LISTVIEW_INFO *infoPtr)
2983 return LISTVIEW_DeselectAllSkipItem(infoPtr, -1);
2988 * Retrieves the number of items that are marked as selected.
2991 * [I] infoPtr : valid pointer to the listview structure
2994 * Number of items selected.
2996 static INT LISTVIEW_GetSelectedCount(const LISTVIEW_INFO *infoPtr)
2998 INT nSelectedCount = 0;
3000 if (infoPtr->uCallbackMask & LVIS_SELECTED)
3003 for (i = 0; i < infoPtr->nItemCount; i++)
3005 if (LISTVIEW_GetItemState(infoPtr, i, LVIS_SELECTED))
3010 nSelectedCount = ranges_itemcount(infoPtr->selectionRanges);
3012 TRACE("nSelectedCount=%d\n", nSelectedCount);
3013 return nSelectedCount;
3018 * Manages the item focus.
3021 * [I] infoPtr : valid pointer to the listview structure
3022 * [I] nItem : item index
3025 * TRUE : focused item changed
3026 * FALSE : focused item has NOT changed
3028 static inline BOOL LISTVIEW_SetItemFocus(LISTVIEW_INFO *infoPtr, INT nItem)
3030 INT oldFocus = infoPtr->nFocusedItem;
3033 if (nItem == infoPtr->nFocusedItem) return FALSE;
3035 lvItem.state = nItem == -1 ? 0 : LVIS_FOCUSED;
3036 lvItem.stateMask = LVIS_FOCUSED;
3037 LISTVIEW_SetItemState(infoPtr, nItem == -1 ? infoPtr->nFocusedItem : nItem, &lvItem);
3039 return oldFocus != infoPtr->nFocusedItem;
3042 /* Helper function for LISTVIEW_ShiftIndices *only* */
3043 static INT shift_item(const LISTVIEW_INFO *infoPtr, INT nShiftItem, INT nItem, INT direction)
3045 if (nShiftItem < nItem) return nShiftItem;
3047 if (nShiftItem > nItem) return nShiftItem + direction;
3049 if (direction > 0) return nShiftItem + direction;
3051 return min(nShiftItem, infoPtr->nItemCount - 1);
3056 * Updates the various indices after an item has been inserted or deleted.
3059 * [I] infoPtr : valid pointer to the listview structure
3060 * [I] nItem : item index
3061 * [I] direction : Direction of shift, +1 or -1.
3066 static void LISTVIEW_ShiftIndices(LISTVIEW_INFO *infoPtr, INT nItem, INT direction)
3071 /* temporarily disable change notification while shifting items */
3072 bOldChange = infoPtr->bDoChangeNotify;
3073 infoPtr->bDoChangeNotify = FALSE;
3075 TRACE("Shifting %iu, %i steps\n", nItem, direction);
3077 ranges_shift(infoPtr->selectionRanges, nItem, direction, infoPtr->nItemCount);
3079 assert(abs(direction) == 1);
3081 infoPtr->nSelectionMark = shift_item(infoPtr, infoPtr->nSelectionMark, nItem, direction);
3083 nNewFocus = shift_item(infoPtr, infoPtr->nFocusedItem, nItem, direction);
3084 if (nNewFocus != infoPtr->nFocusedItem)
3085 LISTVIEW_SetItemFocus(infoPtr, nNewFocus);
3087 /* But we are not supposed to modify nHotItem! */
3089 infoPtr->bDoChangeNotify = bOldChange;
3095 * Adds a block of selections.
3098 * [I] infoPtr : valid pointer to the listview structure
3099 * [I] nItem : item index
3102 * Whether the window is still valid.
3104 static BOOL LISTVIEW_AddGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3106 INT nFirst = min(infoPtr->nSelectionMark, nItem);
3107 INT nLast = max(infoPtr->nSelectionMark, nItem);
3108 HWND hwndSelf = infoPtr->hwndSelf;
3109 NMLVODSTATECHANGE nmlv;
3114 /* Temporarily disable change notification
3115 * If the control is LVS_OWNERDATA, we need to send
3116 * only one LVN_ODSTATECHANGED notification.
3117 * See MSDN documentation for LVN_ITEMCHANGED.
3119 bOldChange = infoPtr->bDoChangeNotify;
3120 if (infoPtr->dwStyle & LVS_OWNERDATA) infoPtr->bDoChangeNotify = FALSE;
3122 if (nFirst == -1) nFirst = nItem;
3124 item.state = LVIS_SELECTED;
3125 item.stateMask = LVIS_SELECTED;
3127 for (i = nFirst; i <= nLast; i++)
3128 LISTVIEW_SetItemState(infoPtr,i,&item);
3130 ZeroMemory(&nmlv, sizeof(nmlv));
3131 nmlv.iFrom = nFirst;
3134 nmlv.uOldState = item.state;
3136 notify_hdr(infoPtr, LVN_ODSTATECHANGED, (LPNMHDR)&nmlv);
3137 if (!IsWindow(hwndSelf))
3139 infoPtr->bDoChangeNotify = bOldChange;
3146 * Sets a single group selection.
3149 * [I] infoPtr : valid pointer to the listview structure
3150 * [I] nItem : item index
3155 static void LISTVIEW_SetGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3157 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
3163 if (!(selection = ranges_create(100))) return;
3165 item.state = LVIS_SELECTED;
3166 item.stateMask = LVIS_SELECTED;
3168 if ((uView == LVS_LIST) || (uView == LVS_REPORT))
3170 if (infoPtr->nSelectionMark == -1)
3172 infoPtr->nSelectionMark = nItem;
3173 ranges_additem(selection, nItem);
3179 sel.lower = min(infoPtr->nSelectionMark, nItem);
3180 sel.upper = max(infoPtr->nSelectionMark, nItem) + 1;
3181 ranges_add(selection, sel);
3186 RECT rcItem, rcSel, rcSelMark;
3189 rcItem.left = LVIR_BOUNDS;
3190 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) return;
3191 rcSelMark.left = LVIR_BOUNDS;
3192 if (!LISTVIEW_GetItemRect(infoPtr, infoPtr->nSelectionMark, &rcSelMark)) return;
3193 UnionRect(&rcSel, &rcItem, &rcSelMark);
3194 iterator_frameditems(&i, infoPtr, &rcSel);
3195 while(iterator_next(&i))
3197 LISTVIEW_GetItemPosition(infoPtr, i.nItem, &ptItem);
3198 if (PtInRect(&rcSel, ptItem)) ranges_additem(selection, i.nItem);
3200 iterator_destroy(&i);
3203 /* disable per item notifications on LVS_OWNERDATA style
3204 FIXME: single LVN_ODSTATECHANGED should be used */
3205 bOldChange = infoPtr->bDoChangeNotify;
3206 if (infoPtr->dwStyle & LVS_OWNERDATA) infoPtr->bDoChangeNotify = FALSE;
3208 LISTVIEW_DeselectAllSkipItems(infoPtr, selection);
3211 iterator_rangesitems(&i, selection);
3212 while(iterator_next(&i))
3213 LISTVIEW_SetItemState(infoPtr, i.nItem, &item);
3214 /* this will also destroy the selection */
3215 iterator_destroy(&i);
3217 infoPtr->bDoChangeNotify = bOldChange;
3219 LISTVIEW_SetItemFocus(infoPtr, nItem);
3224 * Sets a single selection.
3227 * [I] infoPtr : valid pointer to the listview structure
3228 * [I] nItem : item index
3233 static void LISTVIEW_SetSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3237 TRACE("nItem=%d\n", nItem);
3239 LISTVIEW_DeselectAllSkipItem(infoPtr, nItem);
3241 lvItem.state = LVIS_FOCUSED | LVIS_SELECTED;
3242 lvItem.stateMask = LVIS_FOCUSED | LVIS_SELECTED;
3243 LISTVIEW_SetItemState(infoPtr, nItem, &lvItem);
3245 infoPtr->nSelectionMark = nItem;
3250 * Set selection(s) with keyboard.
3253 * [I] infoPtr : valid pointer to the listview structure
3254 * [I] nItem : item index
3255 * [I] space : VK_SPACE code sent
3258 * SUCCESS : TRUE (needs to be repainted)
3259 * FAILURE : FALSE (nothing has changed)
3261 static BOOL LISTVIEW_KeySelection(LISTVIEW_INFO *infoPtr, INT nItem, BOOL space)
3263 /* FIXME: pass in the state */
3264 WORD wShift = HIWORD(GetKeyState(VK_SHIFT));
3265 WORD wCtrl = HIWORD(GetKeyState(VK_CONTROL));
3266 BOOL bResult = FALSE;
3268 TRACE("nItem=%d, wShift=%d, wCtrl=%d\n", nItem, wShift, wCtrl);
3269 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
3271 if (infoPtr->dwStyle & LVS_SINGLESEL)
3274 LISTVIEW_SetSelection(infoPtr, nItem);
3281 LISTVIEW_SetGroupSelection(infoPtr, nItem);
3286 lvItem.state = ~LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED);
3287 lvItem.stateMask = LVIS_SELECTED;
3290 LISTVIEW_SetItemState(infoPtr, nItem, &lvItem);
3291 if (lvItem.state & LVIS_SELECTED)
3292 infoPtr->nSelectionMark = nItem;
3294 bResult = LISTVIEW_SetItemFocus(infoPtr, nItem);
3299 LISTVIEW_SetSelection(infoPtr, nItem);
3302 LISTVIEW_EnsureVisible(infoPtr, nItem, FALSE);
3305 UpdateWindow(infoPtr->hwndSelf); /* update client area */
3309 static BOOL LISTVIEW_GetItemAtPt(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, POINT pt)
3311 LVHITTESTINFO lvHitTestInfo;
3313 ZeroMemory(&lvHitTestInfo, sizeof(lvHitTestInfo));
3314 lvHitTestInfo.pt.x = pt.x;
3315 lvHitTestInfo.pt.y = pt.y;
3317 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
3319 lpLVItem->mask = LVIF_PARAM;
3320 lpLVItem->iItem = lvHitTestInfo.iItem;
3321 lpLVItem->iSubItem = 0;
3323 return LISTVIEW_GetItemT(infoPtr, lpLVItem, TRUE);
3326 static inline BOOL LISTVIEW_isHotTracking(const LISTVIEW_INFO *infoPtr)
3328 return ((infoPtr->dwLvExStyle & LVS_EX_TRACKSELECT) ||
3329 (infoPtr->dwLvExStyle & LVS_EX_ONECLICKACTIVATE) ||
3330 (infoPtr->dwLvExStyle & LVS_EX_TWOCLICKACTIVATE));
3335 * Called when the mouse is being actively tracked and has hovered for a specified
3339 * [I] infoPtr : valid pointer to the listview structure
3340 * [I] fwKeys : key indicator
3341 * [I] x,y : mouse position
3344 * 0 if the message was processed, non-zero if there was an error
3347 * LVS_EX_TRACKSELECT: An item is automatically selected when the cursor remains
3348 * over the item for a certain period of time.
3351 static LRESULT LISTVIEW_MouseHover(LISTVIEW_INFO *infoPtr, WORD fwKeys, INT x, INT y)
3353 if (LISTVIEW_isHotTracking(infoPtr))
3361 if (LISTVIEW_GetItemAtPt(infoPtr, &item, pt))
3362 LISTVIEW_SetSelection(infoPtr, item.iItem);
3370 * Called whenever WM_MOUSEMOVE is received.
3373 * [I] infoPtr : valid pointer to the listview structure
3374 * [I] fwKeys : key indicator
3375 * [I] x,y : mouse position
3378 * 0 if the message is processed, non-zero if there was an error
3380 static LRESULT LISTVIEW_MouseMove(LISTVIEW_INFO *infoPtr, WORD fwKeys, INT x, INT y)
3382 TRACKMOUSEEVENT trackinfo;
3384 if (!(fwKeys & MK_LBUTTON))
3385 infoPtr->bLButtonDown = FALSE;
3387 if (infoPtr->bLButtonDown)
3391 WORD wDragWidth = GetSystemMetrics(SM_CXDRAG);
3392 WORD wDragHeight= GetSystemMetrics(SM_CYDRAG);
3394 rect.left = infoPtr->ptClickPos.x - wDragWidth;
3395 rect.right = infoPtr->ptClickPos.x + wDragWidth;
3396 rect.top = infoPtr->ptClickPos.y - wDragHeight;
3397 rect.bottom = infoPtr->ptClickPos.y + wDragHeight;
3402 if (!PtInRect(&rect, tmp))
3404 LVHITTESTINFO lvHitTestInfo;
3407 lvHitTestInfo.pt = infoPtr->ptClickPos;
3408 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
3410 ZeroMemory(&nmlv, sizeof(nmlv));
3411 nmlv.iItem = lvHitTestInfo.iItem;
3412 nmlv.ptAction = infoPtr->ptClickPos;
3414 if (!infoPtr->bDragging)
3416 notify_listview(infoPtr, LVN_BEGINDRAG, &nmlv);
3417 infoPtr->bDragging = TRUE;
3424 infoPtr->bLButtonDown = FALSE;
3426 /* see if we are supposed to be tracking mouse hovering */
3427 if (LISTVIEW_isHotTracking(infoPtr)) {
3428 /* fill in the trackinfo struct */
3429 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
3430 trackinfo.dwFlags = TME_QUERY;
3431 trackinfo.hwndTrack = infoPtr->hwndSelf;
3432 trackinfo.dwHoverTime = infoPtr->dwHoverTime;
3434 /* see if we are already tracking this hwnd */
3435 _TrackMouseEvent(&trackinfo);
3437 if(!(trackinfo.dwFlags & TME_HOVER)) {
3438 trackinfo.dwFlags = TME_HOVER;
3440 /* call TRACKMOUSEEVENT so we receive WM_MOUSEHOVER messages */
3441 _TrackMouseEvent(&trackinfo);
3450 * Tests whether the item is assignable to a list with style lStyle
3452 static inline BOOL is_assignable_item(const LVITEMW *lpLVItem, LONG lStyle)
3454 if ( (lpLVItem->mask & LVIF_TEXT) &&
3455 (lpLVItem->pszText == LPSTR_TEXTCALLBACKW) &&
3456 (lStyle & (LVS_SORTASCENDING | LVS_SORTDESCENDING)) ) return FALSE;
3464 * Helper for LISTVIEW_SetItemT *only*: sets item attributes.
3467 * [I] infoPtr : valid pointer to the listview structure
3468 * [I] lpLVItem : valid pointer to new item attributes
3469 * [I] isNew : the item being set is being inserted
3470 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
3471 * [O] bChanged : will be set to TRUE if the item really changed
3477 static BOOL set_main_item(LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isNew, BOOL isW, BOOL *bChanged)
3479 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
3484 /* stateMask is ignored for LVM_INSERTITEM */
3485 UINT stateMask = isNew ? ~0 : lpLVItem->stateMask;
3489 assert(lpLVItem->iItem >= 0 && lpLVItem->iItem < infoPtr->nItemCount);
3491 if (lpLVItem->mask == 0) return TRUE;
3493 if (infoPtr->dwStyle & LVS_OWNERDATA)
3495 /* a virtual listview only stores selection and focus */
3496 if (lpLVItem->mask & ~LVIF_STATE)
3502 HDPA hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
3503 lpItem = DPA_GetPtr(hdpaSubItems, 0);
3507 /* we need to get the lParam and state of the item */
3508 item.iItem = lpLVItem->iItem;
3509 item.iSubItem = lpLVItem->iSubItem;
3510 item.mask = LVIF_STATE | LVIF_PARAM;
3511 item.stateMask = ~0;
3514 if (!isNew && !LISTVIEW_GetItemW(infoPtr, &item)) return FALSE;
3516 TRACE("oldState=%x, newState=%x\n", item.state, lpLVItem->state);
3517 /* determine what fields will change */
3518 if ((lpLVItem->mask & LVIF_STATE) && ((item.state ^ lpLVItem->state) & stateMask & ~infoPtr->uCallbackMask))
3519 uChanged |= LVIF_STATE;
3521 if ((lpLVItem->mask & LVIF_IMAGE) && (lpItem->hdr.iImage != lpLVItem->iImage))
3522 uChanged |= LVIF_IMAGE;
3524 if ((lpLVItem->mask & LVIF_PARAM) && (lpItem->lParam != lpLVItem->lParam))
3525 uChanged |= LVIF_PARAM;
3527 if ((lpLVItem->mask & LVIF_INDENT) && (lpItem->iIndent != lpLVItem->iIndent))
3528 uChanged |= LVIF_INDENT;
3530 if ((lpLVItem->mask & LVIF_TEXT) && textcmpWT(lpItem->hdr.pszText, lpLVItem->pszText, isW))
3531 uChanged |= LVIF_TEXT;
3533 TRACE("uChanged=0x%x\n", uChanged);
3534 if (!uChanged) return TRUE;
3537 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
3538 nmlv.iItem = lpLVItem->iItem;
3539 nmlv.uNewState = (item.state & ~stateMask) | (lpLVItem->state & stateMask);
3540 nmlv.uOldState = item.state;
3541 nmlv.uChanged = uChanged;
3542 nmlv.lParam = item.lParam;
3544 /* send LVN_ITEMCHANGING notification, if the item is not being inserted */
3545 /* and we are _NOT_ virtual (LVS_OWNERDATA), and change notifications */
3547 if(lpItem && !isNew && infoPtr->bDoChangeNotify)
3549 HWND hwndSelf = infoPtr->hwndSelf;
3551 if (notify_listview(infoPtr, LVN_ITEMCHANGING, &nmlv))
3553 if (!IsWindow(hwndSelf))
3557 /* copy information */
3558 if (lpLVItem->mask & LVIF_TEXT)
3559 textsetptrT(&lpItem->hdr.pszText, lpLVItem->pszText, isW);
3561 if (lpLVItem->mask & LVIF_IMAGE)
3562 lpItem->hdr.iImage = lpLVItem->iImage;
3564 if (lpLVItem->mask & LVIF_PARAM)
3565 lpItem->lParam = lpLVItem->lParam;
3567 if (lpLVItem->mask & LVIF_INDENT)
3568 lpItem->iIndent = lpLVItem->iIndent;
3570 if (uChanged & LVIF_STATE)
3572 if (lpItem && (stateMask & ~infoPtr->uCallbackMask))
3574 lpItem->state &= ~stateMask;
3575 lpItem->state |= (lpLVItem->state & stateMask);
3577 if (lpLVItem->state & stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED)
3579 if (infoPtr->dwStyle & LVS_SINGLESEL) LISTVIEW_DeselectAllSkipItem(infoPtr, lpLVItem->iItem);
3580 ranges_additem(infoPtr->selectionRanges, lpLVItem->iItem);
3582 else if (stateMask & LVIS_SELECTED)
3584 ranges_delitem(infoPtr->selectionRanges, lpLVItem->iItem);
3586 /* if we are asked to change focus, and we manage it, do it */
3587 if (stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED)
3589 if (lpLVItem->state & LVIS_FOCUSED)
3591 if (infoPtr->nFocusedItem != -1)
3593 /* remove current focus */
3594 item.mask = LVIF_STATE;
3596 item.stateMask = LVIS_FOCUSED;
3598 /* recurse with redrawing an item */
3599 LISTVIEW_SetItemState(infoPtr, infoPtr->nFocusedItem, &item);
3602 infoPtr->nFocusedItem = lpLVItem->iItem;
3603 LISTVIEW_EnsureVisible(infoPtr, lpLVItem->iItem, uView == LVS_LIST);
3605 else if (infoPtr->nFocusedItem == lpLVItem->iItem)
3607 infoPtr->nFocusedItem = -1;
3612 /* if we're inserting the item, we're done */
3613 if (isNew) return TRUE;
3615 /* send LVN_ITEMCHANGED notification */
3616 if (lpLVItem->mask & LVIF_PARAM) nmlv.lParam = lpLVItem->lParam;
3617 if (infoPtr->bDoChangeNotify) notify_listview(infoPtr, LVN_ITEMCHANGED, &nmlv);
3624 * Helper for LISTVIEW_{Set,Insert}ItemT *only*: sets subitem attributes.
3627 * [I] infoPtr : valid pointer to the listview structure
3628 * [I] lpLVItem : valid pointer to new subitem attributes
3629 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
3630 * [O] bChanged : will be set to TRUE if the item really changed
3636 static BOOL set_sub_item(const LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isW, BOOL *bChanged)
3639 SUBITEM_INFO *lpSubItem;
3641 /* we do not support subitems for virtual listviews */
3642 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
3644 /* set subitem only if column is present */
3645 if (lpLVItem->iSubItem >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
3647 /* First do some sanity checks */
3648 /* The LVIF_STATE flag is valid for subitems, but does not appear to be
3649 particularly useful. We currently do not actually do anything with
3650 the flag on subitems.
3652 if (lpLVItem->mask & ~(LVIF_TEXT | LVIF_IMAGE | LVIF_STATE)) return FALSE;
3653 if (!(lpLVItem->mask & (LVIF_TEXT | LVIF_IMAGE | LVIF_STATE))) return TRUE;
3655 /* get the subitem structure, and create it if not there */
3656 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
3657 assert (hdpaSubItems);
3659 lpSubItem = LISTVIEW_GetSubItemPtr(hdpaSubItems, lpLVItem->iSubItem);
3662 SUBITEM_INFO *tmpSubItem;
3665 lpSubItem = Alloc(sizeof(SUBITEM_INFO));
3666 if (!lpSubItem) return FALSE;
3667 /* we could binary search here, if need be...*/
3668 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
3670 tmpSubItem = DPA_GetPtr(hdpaSubItems, i);
3671 if (tmpSubItem->iSubItem > lpLVItem->iSubItem) break;
3673 if (DPA_InsertPtr(hdpaSubItems, i, lpSubItem) == -1)
3678 lpSubItem->iSubItem = lpLVItem->iSubItem;
3679 lpSubItem->hdr.iImage = I_IMAGECALLBACK;
3683 if (lpLVItem->mask & LVIF_IMAGE)
3684 if (lpSubItem->hdr.iImage != lpLVItem->iImage)
3686 lpSubItem->hdr.iImage = lpLVItem->iImage;
3690 if (lpLVItem->mask & LVIF_TEXT)
3691 if (lpSubItem->hdr.pszText != lpLVItem->pszText)
3693 textsetptrT(&lpSubItem->hdr.pszText, lpLVItem->pszText, isW);
3702 * Sets item attributes.
3705 * [I] infoPtr : valid pointer to the listview structure
3706 * [I] lpLVItem : new item attributes
3707 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
3713 static BOOL LISTVIEW_SetItemT(LISTVIEW_INFO *infoPtr, LVITEMW *lpLVItem, BOOL isW)
3715 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
3716 HWND hwndSelf = infoPtr->hwndSelf;
3717 LPWSTR pszText = NULL;
3718 BOOL bResult, bChanged = FALSE;
3720 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
3722 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
3725 /* For efficiency, we transform the lpLVItem->pszText to Unicode here */
3726 if ((lpLVItem->mask & LVIF_TEXT) && is_textW(lpLVItem->pszText))
3728 pszText = lpLVItem->pszText;
3729 lpLVItem->pszText = textdupTtoW(lpLVItem->pszText, isW);
3732 /* actually set the fields */
3733 if (!is_assignable_item(lpLVItem, infoPtr->dwStyle)) return FALSE;
3735 if (lpLVItem->iSubItem)
3736 bResult = set_sub_item(infoPtr, lpLVItem, TRUE, &bChanged);
3738 bResult = set_main_item(infoPtr, lpLVItem, FALSE, TRUE, &bChanged);
3739 if (!IsWindow(hwndSelf))
3742 /* redraw item, if necessary */
3743 if (bChanged && !infoPtr->bIsDrawing)
3745 /* this little optimization eliminates some nasty flicker */
3746 if ( uView == LVS_REPORT && !(infoPtr->dwStyle & LVS_OWNERDRAWFIXED) &&
3747 !(infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) &&
3748 lpLVItem->iSubItem > 0 && lpLVItem->iSubItem <= DPA_GetPtrCount(infoPtr->hdpaColumns) )
3749 LISTVIEW_InvalidateSubItem(infoPtr, lpLVItem->iItem, lpLVItem->iSubItem);
3751 LISTVIEW_InvalidateItem(infoPtr, lpLVItem->iItem);
3756 textfreeT(lpLVItem->pszText, isW);
3757 lpLVItem->pszText = pszText;
3765 * Retrieves the index of the item at coordinate (0, 0) of the client area.
3768 * [I] infoPtr : valid pointer to the listview structure
3773 static INT LISTVIEW_GetTopIndex(const LISTVIEW_INFO *infoPtr)
3775 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
3777 SCROLLINFO scrollInfo;
3779 scrollInfo.cbSize = sizeof(SCROLLINFO);
3780 scrollInfo.fMask = SIF_POS;
3782 if (uView == LVS_LIST)
3784 if (GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo))
3785 nItem = scrollInfo.nPos * LISTVIEW_GetCountPerColumn(infoPtr);
3787 else if (uView == LVS_REPORT)
3789 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
3790 nItem = scrollInfo.nPos;
3794 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
3795 nItem = LISTVIEW_GetCountPerRow(infoPtr) * (scrollInfo.nPos / infoPtr->nItemHeight);
3798 TRACE("nItem=%d\n", nItem);
3806 * Erases the background of the given rectangle
3809 * [I] infoPtr : valid pointer to the listview structure
3810 * [I] hdc : device context handle
3811 * [I] lprcBox : clipping rectangle
3817 static inline BOOL LISTVIEW_FillBkgnd(const LISTVIEW_INFO *infoPtr, HDC hdc, const RECT *lprcBox)
3819 if (!infoPtr->hBkBrush) return FALSE;
3821 TRACE("(hdc=%p, lprcBox=%s, hBkBrush=%p)\n", hdc, wine_dbgstr_rect(lprcBox), infoPtr->hBkBrush);
3823 return FillRect(hdc, lprcBox, infoPtr->hBkBrush);
3831 * [I] infoPtr : valid pointer to the listview structure
3832 * [I] hdc : device context handle
3833 * [I] nItem : item index
3834 * [I] nSubItem : subitem index
3835 * [I] pos : item position in client coordinates
3836 * [I] cdmode : custom draw mode
3842 static BOOL LISTVIEW_DrawItem(LISTVIEW_INFO *infoPtr, HDC hdc, INT nItem, INT nSubItem, POINT pos, DWORD cdmode)
3844 UINT uFormat, uView = infoPtr->dwStyle & LVS_TYPEMASK;
3845 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
3846 static WCHAR szCallback[] = { '(', 'c', 'a', 'l', 'l', 'b', 'a', 'c', 'k', ')', 0 };
3847 DWORD cdsubitemmode = CDRF_DODEFAULT;
3849 RECT rcSelect, rcBox, rcIcon, rcLabel, rcStateIcon;
3850 NMLVCUSTOMDRAW nmlvcd;
3855 TRACE("(hdc=%p, nItem=%d, nSubItem=%d, pos=%s)\n", hdc, nItem, nSubItem, wine_dbgstr_point(&pos));
3857 /* get information needed for drawing the item */
3858 lvItem.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
3859 if (nSubItem == 0) lvItem.mask |= LVIF_STATE;
3860 if (uView == LVS_REPORT) lvItem.mask |= LVIF_INDENT;
3861 lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED | LVIS_STATEIMAGEMASK;
3862 lvItem.iItem = nItem;
3863 lvItem.iSubItem = nSubItem;
3866 lvItem.cchTextMax = DISP_TEXT_SIZE;
3867 lvItem.pszText = szDispText;
3868 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return FALSE;
3869 if (nSubItem > 0 && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
3870 lvItem.state = LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED);
3871 if (lvItem.pszText == LPSTR_TEXTCALLBACKW) lvItem.pszText = szCallback;
3872 TRACE(" lvItem=%s\n", debuglvitem_t(&lvItem, TRUE));
3874 /* now check if we need to update the focus rectangle */
3875 lprcFocus = infoPtr->bFocus && (lvItem.state & LVIS_FOCUSED) ? &infoPtr->rcFocus : 0;
3877 if (!lprcFocus) lvItem.state &= ~LVIS_FOCUSED;
3878 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, &rcBox, &rcSelect, &rcIcon, &rcStateIcon, &rcLabel);
3879 OffsetRect(&rcBox, pos.x, pos.y);
3880 OffsetRect(&rcSelect, pos.x, pos.y);
3881 OffsetRect(&rcIcon, pos.x, pos.y);
3882 OffsetRect(&rcStateIcon, pos.x, pos.y);
3883 OffsetRect(&rcLabel, pos.x, pos.y);
3884 TRACE(" rcBox=%s, rcSelect=%s, rcIcon=%s. rcLabel=%s\n",
3885 wine_dbgstr_rect(&rcBox), wine_dbgstr_rect(&rcSelect),
3886 wine_dbgstr_rect(&rcIcon), wine_dbgstr_rect(&rcLabel));
3888 /* fill in the custom draw structure */
3889 customdraw_fill(&nmlvcd, infoPtr, hdc, &rcBox, &lvItem);
3891 hOldFont = GetCurrentObject(hdc, OBJ_FONT);
3892 if (nSubItem > 0) cdmode = infoPtr->cditemmode;
3893 if (cdmode & CDRF_SKIPDEFAULT) goto postpaint;
3894 if (cdmode & CDRF_NOTIFYITEMDRAW)
3895 cdsubitemmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
3896 if (nSubItem == 0) infoPtr->cditemmode = cdsubitemmode;
3897 if (cdsubitemmode & CDRF_SKIPDEFAULT) goto postpaint;
3898 /* we have to send a CDDS_SUBITEM customdraw explicitly for subitem 0 */
3899 if (nSubItem == 0 && cdsubitemmode == CDRF_NOTIFYITEMDRAW)
3901 cdsubitemmode = notify_customdraw(infoPtr, CDDS_SUBITEM | CDDS_ITEMPREPAINT, &nmlvcd);
3902 if (cdsubitemmode & CDRF_SKIPDEFAULT) goto postpaint;
3904 if (nSubItem == 0 || (cdmode & CDRF_NOTIFYITEMDRAW))
3905 prepaint_setup(infoPtr, hdc, &nmlvcd, FALSE);
3906 else if ((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) == FALSE)
3907 prepaint_setup(infoPtr, hdc, &nmlvcd, TRUE);
3909 /* in full row select, subitems, will just use main item's colors */
3910 if (nSubItem && uView == LVS_REPORT && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
3911 nmlvcd.clrTextBk = CLR_NONE;
3914 if (infoPtr->himlState && STATEIMAGEINDEX(lvItem.state) && (nSubItem == 0))
3916 UINT uStateImage = STATEIMAGEINDEX(lvItem.state);
3919 TRACE("uStateImage=%d\n", uStateImage);
3920 ImageList_Draw(infoPtr->himlState, uStateImage - 1, hdc,
3921 rcStateIcon.left, rcStateIcon.top, ILD_NORMAL);
3926 himl = (uView == LVS_ICON ? infoPtr->himlNormal : infoPtr->himlSmall);
3927 if (himl && lvItem.iImage >= 0 && !IsRectEmpty(&rcIcon))
3929 TRACE("iImage=%d\n", lvItem.iImage);
3930 ImageList_DrawEx(himl, lvItem.iImage, hdc, rcIcon.left, rcIcon.top,
3931 rcIcon.right - rcIcon.left, rcIcon.bottom - rcIcon.top, infoPtr->clrBk, CLR_DEFAULT,
3932 (lvItem.state & LVIS_SELECTED) && (infoPtr->bFocus) ? ILD_SELECTED : ILD_NORMAL);
3935 /* Don't bother painting item being edited */
3936 if (infoPtr->hwndEdit && nItem == infoPtr->nEditLabelItem && nSubItem == 0) goto postpaint;
3938 /* FIXME: temporary hack */
3939 rcSelect.left = rcLabel.left;
3941 /* draw the selection background, if we're drawing the main item */
3944 /* in icon mode, the label rect is really what we want to draw the
3946 if (uView == LVS_ICON)
3949 if (uView == LVS_REPORT && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
3950 rcSelect.right = rcBox.right;
3952 if (nmlvcd.clrTextBk != CLR_NONE)
3953 ExtTextOutW(hdc, rcSelect.left, rcSelect.top, ETO_OPAQUE, &rcSelect, 0, 0, 0);
3954 if(lprcFocus) *lprcFocus = rcSelect;
3957 /* figure out the text drawing flags */
3958 uFormat = (uView == LVS_ICON ? (lprcFocus ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS) : LV_SL_DT_FLAGS);
3959 if (uView == LVS_ICON)
3960 uFormat = (lprcFocus ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS);
3963 switch (LISTVIEW_GetColumnInfo(infoPtr, nSubItem)->fmt & LVCFMT_JUSTIFYMASK)
3965 case LVCFMT_RIGHT: uFormat |= DT_RIGHT; break;
3966 case LVCFMT_CENTER: uFormat |= DT_CENTER; break;
3967 default: uFormat |= DT_LEFT;
3970 if (!(uFormat & (DT_RIGHT | DT_CENTER)))
3972 if (himl && lvItem.iImage >= 0 && !IsRectEmpty(&rcIcon)) rcLabel.left += IMAGE_PADDING;
3973 else rcLabel.left += LABEL_HOR_PADDING;
3975 else if (uFormat & DT_RIGHT) rcLabel.right -= LABEL_HOR_PADDING;
3977 /* for GRIDLINES reduce the bottom so the text formats correctly */
3978 if (uView == LVS_REPORT && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
3981 DrawTextW(hdc, lvItem.pszText, -1, &rcLabel, uFormat);
3984 if (cdsubitemmode & CDRF_NOTIFYPOSTPAINT)
3985 notify_postpaint(infoPtr, &nmlvcd);
3986 if (cdsubitemmode & CDRF_NEWFONT)
3987 SelectObject(hdc, hOldFont);
3993 * Draws listview items when in owner draw mode.
3996 * [I] infoPtr : valid pointer to the listview structure
3997 * [I] hdc : device context handle
4002 static void LISTVIEW_RefreshOwnerDraw(const LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4004 UINT uID = (UINT)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
4005 DWORD cditemmode = CDRF_DODEFAULT;
4006 NMLVCUSTOMDRAW nmlvcd;
4007 POINT Origin, Position;
4013 ZeroMemory(&dis, sizeof(dis));
4015 /* Get scroll info once before loop */
4016 LISTVIEW_GetOrigin(infoPtr, &Origin);
4018 /* iterate through the invalidated rows */
4019 while(iterator_next(i))
4021 item.iItem = i->nItem;
4023 item.mask = LVIF_PARAM | LVIF_STATE;
4024 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
4025 if (!LISTVIEW_GetItemW(infoPtr, &item)) continue;
4027 dis.CtlType = ODT_LISTVIEW;
4029 dis.itemID = item.iItem;
4030 dis.itemAction = ODA_DRAWENTIRE;
4032 if (item.state & LVIS_SELECTED) dis.itemState |= ODS_SELECTED;
4033 if (infoPtr->bFocus && (item.state & LVIS_FOCUSED)) dis.itemState |= ODS_FOCUS;
4034 dis.hwndItem = infoPtr->hwndSelf;
4036 LISTVIEW_GetItemOrigin(infoPtr, dis.itemID, &Position);
4037 dis.rcItem.left = Position.x + Origin.x;
4038 dis.rcItem.right = dis.rcItem.left + infoPtr->nItemWidth;
4039 dis.rcItem.top = Position.y + Origin.y;
4040 dis.rcItem.bottom = dis.rcItem.top + infoPtr->nItemHeight;
4041 dis.itemData = item.lParam;
4043 TRACE("item=%s, rcItem=%s\n", debuglvitem_t(&item, TRUE), wine_dbgstr_rect(&dis.rcItem));
4046 * Even if we do not send the CDRF_NOTIFYITEMDRAW we need to fill the nmlvcd
4047 * structure for the rest. of the paint cycle
4049 customdraw_fill(&nmlvcd, infoPtr, hdc, &dis.rcItem, &item);
4050 if (cdmode & CDRF_NOTIFYITEMDRAW)
4051 cditemmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
4053 if (!(cditemmode & CDRF_SKIPDEFAULT))
4055 prepaint_setup (infoPtr, hdc, &nmlvcd, FALSE);
4056 SendMessageW(infoPtr->hwndNotify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
4059 if (cditemmode & CDRF_NOTIFYPOSTPAINT)
4060 notify_postpaint(infoPtr, &nmlvcd);
4066 * Draws listview items when in report display mode.
4069 * [I] infoPtr : valid pointer to the listview structure
4070 * [I] hdc : device context handle
4071 * [I] cdmode : custom draw mode
4076 static void LISTVIEW_RefreshReport(LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4079 RECT rcClip, rcItem;
4080 POINT Origin, Position;
4086 /* figure out what to draw */
4087 rgntype = GetClipBox(hdc, &rcClip);
4088 if (rgntype == NULLREGION) return;
4090 /* Get scroll info once before loop */
4091 LISTVIEW_GetOrigin(infoPtr, &Origin);
4093 /* narrow down the columns we need to paint */
4094 for(colRange.lower = 0; colRange.lower < DPA_GetPtrCount(infoPtr->hdpaColumns); colRange.lower++)
4096 LISTVIEW_GetHeaderRect(infoPtr, colRange.lower, &rcItem);
4097 if (rcItem.right + Origin.x >= rcClip.left) break;
4099 for(colRange.upper = DPA_GetPtrCount(infoPtr->hdpaColumns); colRange.upper > 0; colRange.upper--)
4101 LISTVIEW_GetHeaderRect(infoPtr, colRange.upper - 1, &rcItem);
4102 if (rcItem.left + Origin.x < rcClip.right) break;
4104 iterator_rangeitems(&j, colRange);
4106 /* in full row select, we _have_ to draw the main item */
4107 if (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT)
4110 /* iterate through the invalidated rows */
4111 while(iterator_next(i))
4113 /* iterate through the invalidated columns */
4114 while(iterator_next(&j))
4116 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
4117 Position.x += Origin.x;
4118 Position.y += Origin.y;
4120 if (rgntype == COMPLEXREGION && !((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) && j.nItem == 0))
4122 LISTVIEW_GetHeaderRect(infoPtr, j.nItem, &rcItem);
4124 rcItem.bottom = infoPtr->nItemHeight;
4125 OffsetRect(&rcItem, Position.x, Position.y);
4126 if (!RectVisible(hdc, &rcItem)) continue;
4129 LISTVIEW_DrawItem(infoPtr, hdc, i->nItem, j.nItem, Position, cdmode);
4132 iterator_destroy(&j);
4137 * Draws the gridlines if necessary when in report display mode.
4140 * [I] infoPtr : valid pointer to the listview structure
4141 * [I] hdc : device context handle
4146 static void LISTVIEW_RefreshReportGrid(LISTVIEW_INFO *infoPtr, HDC hdc)
4151 RECT rcClip, rcItem;
4158 /* figure out what to draw */
4159 rgntype = GetClipBox(hdc, &rcClip);
4160 if (rgntype == NULLREGION) return;
4162 /* Get scroll info once before loop */
4163 LISTVIEW_GetOrigin(infoPtr, &Origin);
4165 /* narrow down the columns we need to paint */
4166 for(colRange.lower = 0; colRange.lower < DPA_GetPtrCount(infoPtr->hdpaColumns); colRange.lower++)
4168 LISTVIEW_GetHeaderRect(infoPtr, colRange.lower, &rcItem);
4169 if (rcItem.right + Origin.x >= rcClip.left) break;
4171 for(colRange.upper = DPA_GetPtrCount(infoPtr->hdpaColumns); colRange.upper > 0; colRange.upper--)
4173 LISTVIEW_GetHeaderRect(infoPtr, colRange.upper - 1, &rcItem);
4174 if (rcItem.left + Origin.x < rcClip.right) break;
4176 iterator_rangeitems(&j, colRange);
4178 if ((hPen = CreatePen( PS_SOLID, 1, comctl32_color.clr3dFace )))
4180 hOldPen = SelectObject ( hdc, hPen );
4182 /* draw the vertical lines for the columns */
4183 iterator_rangeitems(&j, colRange);
4184 while(iterator_next(&j))
4186 LISTVIEW_GetHeaderRect(infoPtr, j.nItem, &rcItem);
4187 if (rcItem.left == 0) continue; /* skip first column */
4188 rcItem.left += Origin.x;
4189 rcItem.right += Origin.x;
4190 rcItem.top = infoPtr->rcList.top;
4191 rcItem.bottom = infoPtr->rcList.bottom;
4192 TRACE("vert col=%d, rcItem=%s\n", j.nItem, wine_dbgstr_rect(&rcItem));
4193 MoveToEx (hdc, rcItem.left, rcItem.top, NULL);
4194 LineTo (hdc, rcItem.left, rcItem.bottom);
4196 iterator_destroy(&j);
4198 /* draw the horizontial lines for the rows */
4199 itemheight = LISTVIEW_CalculateItemHeight(infoPtr);
4200 rcItem.left = infoPtr->rcList.left + Origin.x;
4201 rcItem.right = infoPtr->rcList.right + Origin.x;
4202 rcItem.bottom = rcItem.top = Origin.y - 1;
4203 MoveToEx(hdc, rcItem.left, rcItem.top, NULL);
4204 LineTo(hdc, rcItem.right, rcItem.top);
4205 for(y=itemheight-1+Origin.y; y<=infoPtr->rcList.bottom; y+=itemheight)
4207 rcItem.bottom = rcItem.top = y;
4208 TRACE("horz rcItem=%s\n", wine_dbgstr_rect(&rcItem));
4209 MoveToEx (hdc, rcItem.left, rcItem.top, NULL);
4210 LineTo (hdc, rcItem.right, rcItem.top);
4213 SelectObject( hdc, hOldPen );
4214 DeleteObject( hPen );
4220 * Draws listview items when in list display mode.
4223 * [I] infoPtr : valid pointer to the listview structure
4224 * [I] hdc : device context handle
4225 * [I] cdmode : custom draw mode
4230 static void LISTVIEW_RefreshList(LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4232 POINT Origin, Position;
4234 /* Get scroll info once before loop */
4235 LISTVIEW_GetOrigin(infoPtr, &Origin);
4237 while(iterator_prev(i))
4239 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
4240 Position.x += Origin.x;
4241 Position.y += Origin.y;
4243 LISTVIEW_DrawItem(infoPtr, hdc, i->nItem, 0, Position, cdmode);
4250 * Draws listview items.
4253 * [I] infoPtr : valid pointer to the listview structure
4254 * [I] hdc : device context handle
4255 * [I] prcErase : rect to be erased before refresh (may be NULL)
4260 static void LISTVIEW_Refresh(LISTVIEW_INFO *infoPtr, HDC hdc, const RECT *prcErase)
4262 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
4263 COLORREF oldTextColor = 0, oldBkColor = 0, oldClrTextBk, oldClrText;
4264 NMLVCUSTOMDRAW nmlvcd;
4271 HBITMAP hbmp = NULL;
4273 LISTVIEW_DUMP(infoPtr);
4275 if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) {
4276 TRACE("double buffering\n");
4278 hdc = CreateCompatibleDC(hdcOrig);
4280 ERR("Failed to create DC for backbuffer\n");
4283 hbmp = CreateCompatibleBitmap(hdcOrig, infoPtr->rcList.right,
4284 infoPtr->rcList.bottom);
4286 ERR("Failed to create bitmap for backbuffer\n");
4291 SelectObject(hdc, hbmp);
4292 SelectObject(hdc, infoPtr->hFont);
4294 /* Save dc values we're gonna trash while drawing
4295 * FIXME: Should be done in LISTVIEW_DrawItem() */
4296 hOldFont = SelectObject(hdc, infoPtr->hFont);
4297 oldBkMode = GetBkMode(hdc);
4298 oldBkColor = GetBkColor(hdc);
4299 oldTextColor = GetTextColor(hdc);
4302 infoPtr->bIsDrawing = TRUE;
4305 LISTVIEW_FillBkgnd(infoPtr, hdc, prcErase);
4306 } else if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) {
4307 /* If no erasing was done (usually because RedrawWindow was called
4308 * with RDW_INVALIDATE only) we need to copy the old contents into
4309 * the backbuffer before continuing. */
4310 BitBlt(hdc, infoPtr->rcList.left, infoPtr->rcList.top,
4311 infoPtr->rcList.right - infoPtr->rcList.left,
4312 infoPtr->rcList.bottom - infoPtr->rcList.top,
4313 hdcOrig, infoPtr->rcList.left, infoPtr->rcList.top, SRCCOPY);
4316 /* FIXME: Shouldn't need to do this */
4317 oldClrTextBk = infoPtr->clrTextBk;
4318 oldClrText = infoPtr->clrText;
4320 infoPtr->cditemmode = CDRF_DODEFAULT;
4322 GetClientRect(infoPtr->hwndSelf, &rcClient);
4323 customdraw_fill(&nmlvcd, infoPtr, hdc, &rcClient, 0);
4324 cdmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
4325 if (cdmode & CDRF_SKIPDEFAULT) goto enddraw;
4326 prepaint_setup(infoPtr, hdc, &nmlvcd, FALSE);
4328 /* Use these colors to draw the items */
4329 infoPtr->clrTextBk = nmlvcd.clrTextBk;
4330 infoPtr->clrText = nmlvcd.clrText;
4332 /* nothing to draw */
4333 if(infoPtr->nItemCount == 0) goto enddraw;
4335 /* figure out what we need to draw */
4336 iterator_visibleitems(&i, infoPtr, hdc);
4338 /* send cache hint notification */
4339 if (infoPtr->dwStyle & LVS_OWNERDATA)
4341 RANGE range = iterator_range(&i);
4344 ZeroMemory(&nmlv, sizeof(NMLVCACHEHINT));
4345 nmlv.iFrom = range.lower;
4346 nmlv.iTo = range.upper - 1;
4347 notify_hdr(infoPtr, LVN_ODCACHEHINT, &nmlv.hdr);
4350 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (uView == LVS_REPORT))
4351 LISTVIEW_RefreshOwnerDraw(infoPtr, &i, hdc, cdmode);
4354 if (uView == LVS_REPORT)
4355 LISTVIEW_RefreshReport(infoPtr, &i, hdc, cdmode);
4356 else /* LVS_LIST, LVS_ICON or LVS_SMALLICON */
4357 LISTVIEW_RefreshList(infoPtr, &i, hdc, cdmode);
4359 /* if we have a focus rect, draw it */
4360 if (infoPtr->bFocus)
4361 DrawFocusRect(hdc, &infoPtr->rcFocus);
4363 iterator_destroy(&i);
4366 /* For LVS_EX_GRIDLINES go and draw lines */
4367 /* This includes the case where there were *no* items */
4368 if ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_REPORT &&
4369 infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
4370 LISTVIEW_RefreshReportGrid(infoPtr, hdc);
4372 if (cdmode & CDRF_NOTIFYPOSTPAINT)
4373 notify_postpaint(infoPtr, &nmlvcd);
4375 infoPtr->clrTextBk = oldClrTextBk;
4376 infoPtr->clrText = oldClrText;
4379 BitBlt(hdcOrig, infoPtr->rcList.left, infoPtr->rcList.top,
4380 infoPtr->rcList.right - infoPtr->rcList.left,
4381 infoPtr->rcList.bottom - infoPtr->rcList.top,
4382 hdc, infoPtr->rcList.left, infoPtr->rcList.top, SRCCOPY);
4387 SelectObject(hdc, hOldFont);
4388 SetBkMode(hdc, oldBkMode);
4389 SetBkColor(hdc, oldBkColor);
4390 SetTextColor(hdc, oldTextColor);
4393 infoPtr->bIsDrawing = FALSE;
4399 * Calculates the approximate width and height of a given number of items.
4402 * [I] infoPtr : valid pointer to the listview structure
4403 * [I] nItemCount : number of items
4404 * [I] wWidth : width
4405 * [I] wHeight : height
4408 * Returns a DWORD. The width in the low word and the height in high word.
4410 static DWORD LISTVIEW_ApproximateViewRect(const LISTVIEW_INFO *infoPtr, INT nItemCount,
4411 WORD wWidth, WORD wHeight)
4413 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
4414 INT nItemCountPerColumn = 1;
4415 INT nColumnCount = 0;
4416 DWORD dwViewRect = 0;
4418 if (nItemCount == -1)
4419 nItemCount = infoPtr->nItemCount;
4421 if (uView == LVS_LIST)
4423 if (wHeight == 0xFFFF)
4425 /* use current height */
4426 wHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
4429 if (wHeight < infoPtr->nItemHeight)
4430 wHeight = infoPtr->nItemHeight;
4434 if (infoPtr->nItemHeight > 0)
4436 nItemCountPerColumn = wHeight / infoPtr->nItemHeight;
4437 if (nItemCountPerColumn == 0)
4438 nItemCountPerColumn = 1;
4440 if (nItemCount % nItemCountPerColumn != 0)
4441 nColumnCount = nItemCount / nItemCountPerColumn;
4443 nColumnCount = nItemCount / nItemCountPerColumn + 1;
4447 /* Microsoft padding magic */
4448 wHeight = nItemCountPerColumn * infoPtr->nItemHeight + 2;
4449 wWidth = nColumnCount * infoPtr->nItemWidth + 2;
4451 dwViewRect = MAKELONG(wWidth, wHeight);
4453 else if (uView == LVS_REPORT)
4457 if (infoPtr->nItemCount > 0)
4459 LISTVIEW_GetItemBox(infoPtr, 0, &rcBox);
4460 wWidth = rcBox.right - rcBox.left;
4461 wHeight = (rcBox.bottom - rcBox.top) * nItemCount;
4465 /* use current height and width */
4466 if (wHeight == 0xffff)
4467 wHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
4468 if (wWidth == 0xffff)
4469 wWidth = infoPtr->rcList.right - infoPtr->rcList.left;
4472 dwViewRect = MAKELONG(wWidth, wHeight);
4474 else if (uView == LVS_SMALLICON)
4475 FIXME("uView == LVS_SMALLICON: not implemented\n");
4476 else if (uView == LVS_ICON)
4477 FIXME("uView == LVS_ICON: not implemented\n");
4485 * Create a drag image list for the specified item.
4488 * [I] infoPtr : valid pointer to the listview structure
4489 * [I] iItem : index of item
4490 * [O] lppt : Upper-left corner of the image
4493 * Returns a handle to the image list if successful, NULL otherwise.
4495 static HIMAGELIST LISTVIEW_CreateDragImage(LISTVIEW_INFO *infoPtr, INT iItem, LPPOINT lppt)
4501 HBITMAP hbmp, hOldbmp;
4502 HIMAGELIST dragList = 0;
4503 TRACE("iItem=%d Count=%d\n", iItem, infoPtr->nItemCount);
4505 if (iItem < 0 || iItem >= infoPtr->nItemCount)
4508 rcItem.left = LVIR_BOUNDS;
4509 if (!LISTVIEW_GetItemRect(infoPtr, iItem, &rcItem))
4512 lppt->x = rcItem.left;
4513 lppt->y = rcItem.top;
4515 size.cx = rcItem.right - rcItem.left;
4516 size.cy = rcItem.bottom - rcItem.top;
4518 hdcOrig = GetDC(infoPtr->hwndSelf);
4519 hdc = CreateCompatibleDC(hdcOrig);
4520 hbmp = CreateCompatibleBitmap(hdcOrig, size.cx, size.cy);
4521 hOldbmp = SelectObject(hdc, hbmp);
4523 rcItem.left = rcItem.top = 0;
4524 rcItem.right = size.cx;
4525 rcItem.bottom = size.cy;
4526 FillRect(hdc, &rcItem, infoPtr->hBkBrush);
4529 if (LISTVIEW_DrawItem(infoPtr, hdc, iItem, 0, pos, infoPtr->cditemmode))
4531 dragList = ImageList_Create(size.cx, size.cy, ILC_COLOR, 10, 10);
4532 SelectObject(hdc, hOldbmp);
4533 ImageList_Add(dragList, hbmp, 0);
4536 SelectObject(hdc, hOldbmp);
4540 ReleaseDC(infoPtr->hwndSelf, hdcOrig);
4542 TRACE("ret=%p\n", dragList);
4550 * Removes all listview items and subitems.
4553 * [I] infoPtr : valid pointer to the listview structure
4559 static BOOL LISTVIEW_DeleteAllItems(LISTVIEW_INFO *infoPtr, BOOL destroy)
4562 HDPA hdpaSubItems = NULL;
4569 /* we do it directly, to avoid notifications */
4570 ranges_clear(infoPtr->selectionRanges);
4571 infoPtr->nSelectionMark = -1;
4572 infoPtr->nFocusedItem = -1;
4573 SetRectEmpty(&infoPtr->rcFocus);
4574 /* But we are supposed to leave nHotItem as is! */
4577 /* send LVN_DELETEALLITEMS notification */
4578 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
4580 bSuppress = notify_listview(infoPtr, LVN_DELETEALLITEMS, &nmlv);
4582 for (i = infoPtr->nItemCount - 1; i >= 0; i--)
4584 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
4586 /* send LVN_DELETEITEM notification, if not suppressed
4587 and if it is not a virtual listview */
4588 if (!bSuppress) notify_deleteitem(infoPtr, i);
4589 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, i);
4590 for (j = 0; j < DPA_GetPtrCount(hdpaSubItems); j++)
4592 hdrItem = DPA_GetPtr(hdpaSubItems, j);
4593 if (is_textW(hdrItem->pszText)) Free(hdrItem->pszText);
4596 DPA_Destroy(hdpaSubItems);
4597 DPA_DeletePtr(infoPtr->hdpaItems, i);
4599 DPA_DeletePtr(infoPtr->hdpaPosX, i);
4600 DPA_DeletePtr(infoPtr->hdpaPosY, i);
4601 infoPtr->nItemCount --;
4606 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
4607 LISTVIEW_UpdateScroll(infoPtr);
4609 LISTVIEW_InvalidateList(infoPtr);
4616 * Scrolls, and updates the columns, when a column is changing width.
4619 * [I] infoPtr : valid pointer to the listview structure
4620 * [I] nColumn : column to scroll
4621 * [I] dx : amount of scroll, in pixels
4626 static void LISTVIEW_ScrollColumns(LISTVIEW_INFO *infoPtr, INT nColumn, INT dx)
4628 COLUMN_INFO *lpColumnInfo;
4633 if (nColumn < 0 || DPA_GetPtrCount(infoPtr->hdpaColumns) < 1) return;
4634 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, min(nColumn, DPA_GetPtrCount(infoPtr->hdpaColumns) - 1));
4635 rcCol = lpColumnInfo->rcHeader;
4636 if (nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns))
4637 rcCol.left = rcCol.right;
4639 /* adjust the other columns */
4640 for (nCol = nColumn; nCol < DPA_GetPtrCount(infoPtr->hdpaColumns); nCol++)
4642 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nCol);
4643 lpColumnInfo->rcHeader.left += dx;
4644 lpColumnInfo->rcHeader.right += dx;
4647 /* do not update screen if not in report mode */
4648 if (!is_redrawing(infoPtr) || (infoPtr->dwStyle & LVS_TYPEMASK) != LVS_REPORT) return;
4650 /* if we have a focus, we must first erase the focus rect */
4651 if (infoPtr->bFocus) LISTVIEW_ShowFocusRect(infoPtr, FALSE);
4653 /* Need to reset the item width when inserting a new column */
4654 infoPtr->nItemWidth += dx;
4656 LISTVIEW_UpdateScroll(infoPtr);
4657 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
4659 /* scroll to cover the deleted column, and invalidate for redraw */
4660 rcOld = infoPtr->rcList;
4661 rcOld.left = ptOrigin.x + rcCol.left + dx;
4662 ScrollWindowEx(infoPtr->hwndSelf, dx, 0, &rcOld, &rcOld, 0, 0, SW_ERASE | SW_INVALIDATE);
4664 /* we can restore focus now */
4665 if (infoPtr->bFocus) LISTVIEW_ShowFocusRect(infoPtr, TRUE);
4670 * Removes a column from the listview control.
4673 * [I] infoPtr : valid pointer to the listview structure
4674 * [I] nColumn : column index
4680 static BOOL LISTVIEW_DeleteColumn(LISTVIEW_INFO *infoPtr, INT nColumn)
4684 TRACE("nColumn=%d\n", nColumn);
4686 if (nColumn < 0 || DPA_GetPtrCount(infoPtr->hdpaColumns) == 0
4687 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
4689 /* While the MSDN specifically says that column zero should not be deleted,
4690 what actually happens is that the column itself is deleted but no items or subitems
4694 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcCol);
4696 if (!Header_DeleteItem(infoPtr->hwndHeader, nColumn))
4699 Free(DPA_GetPtr(infoPtr->hdpaColumns, nColumn));
4700 DPA_DeletePtr(infoPtr->hdpaColumns, nColumn);
4702 if (!(infoPtr->dwStyle & LVS_OWNERDATA) && nColumn)
4704 SUBITEM_INFO *lpSubItem, *lpDelItem;
4706 INT nItem, nSubItem, i;
4708 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
4710 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, nItem);
4713 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
4715 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
4716 if (lpSubItem->iSubItem == nColumn)
4719 lpDelItem = lpSubItem;
4721 else if (lpSubItem->iSubItem > nColumn)
4723 lpSubItem->iSubItem--;
4727 /* if we found our subitem, zapp it */
4731 if (is_textW(lpDelItem->hdr.pszText))
4732 Free(lpDelItem->hdr.pszText);
4737 /* free dpa memory */
4738 DPA_DeletePtr(hdpaSubItems, nSubItem);
4743 /* update the other column info */
4744 LISTVIEW_UpdateItemSize(infoPtr);
4745 if(DPA_GetPtrCount(infoPtr->hdpaColumns) == 0)
4746 LISTVIEW_InvalidateList(infoPtr);
4748 LISTVIEW_ScrollColumns(infoPtr, nColumn, -(rcCol.right - rcCol.left));
4755 * Invalidates the listview after an item's insertion or deletion.
4758 * [I] infoPtr : valid pointer to the listview structure
4759 * [I] nItem : item index
4760 * [I] dir : -1 if deleting, 1 if inserting
4765 static void LISTVIEW_ScrollOnInsert(LISTVIEW_INFO *infoPtr, INT nItem, INT dir)
4767 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
4768 INT nPerCol, nItemCol, nItemRow;
4772 /* if we don't refresh, what's the point of scrolling? */
4773 if (!is_redrawing(infoPtr)) return;
4775 assert (abs(dir) == 1);
4777 /* arrange icons if autoarrange is on */
4778 if (is_autoarrange(infoPtr))
4780 BOOL arrange = TRUE;
4781 if (dir < 0 && nItem >= infoPtr->nItemCount) arrange = FALSE;
4782 if (dir > 0 && nItem == infoPtr->nItemCount - 1) arrange = FALSE;
4783 if (arrange) LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
4786 /* scrollbars need updating */
4787 LISTVIEW_UpdateScroll(infoPtr);
4789 /* figure out the item's position */
4790 if (uView == LVS_REPORT)
4791 nPerCol = infoPtr->nItemCount + 1;
4792 else if (uView == LVS_LIST)
4793 nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
4794 else /* LVS_ICON, or LVS_SMALLICON */
4797 nItemCol = nItem / nPerCol;
4798 nItemRow = nItem % nPerCol;
4799 LISTVIEW_GetOrigin(infoPtr, &Origin);
4801 /* move the items below up a slot */
4802 rcScroll.left = nItemCol * infoPtr->nItemWidth;
4803 rcScroll.top = nItemRow * infoPtr->nItemHeight;
4804 rcScroll.right = rcScroll.left + infoPtr->nItemWidth;
4805 rcScroll.bottom = nPerCol * infoPtr->nItemHeight;
4806 OffsetRect(&rcScroll, Origin.x, Origin.y);
4807 TRACE("rcScroll=%s, dx=%d\n", wine_dbgstr_rect(&rcScroll), dir * infoPtr->nItemHeight);
4808 if (IntersectRect(&rcScroll, &rcScroll, &infoPtr->rcList))
4810 TRACE("Scrolling rcScroll=%s, rcList=%s\n", wine_dbgstr_rect(&rcScroll), wine_dbgstr_rect(&infoPtr->rcList));
4811 ScrollWindowEx(infoPtr->hwndSelf, 0, dir * infoPtr->nItemHeight,
4812 &rcScroll, &rcScroll, 0, 0, SW_ERASE | SW_INVALIDATE);
4815 /* report has only that column, so we're done */
4816 if (uView == LVS_REPORT) return;
4818 /* now for LISTs, we have to deal with the columns to the right */
4819 rcScroll.left = (nItemCol + 1) * infoPtr->nItemWidth;
4821 rcScroll.right = (infoPtr->nItemCount / nPerCol + 1) * infoPtr->nItemWidth;
4822 rcScroll.bottom = nPerCol * infoPtr->nItemHeight;
4823 OffsetRect(&rcScroll, Origin.x, Origin.y);
4824 if (IntersectRect(&rcScroll, &rcScroll, &infoPtr->rcList))
4825 ScrollWindowEx(infoPtr->hwndSelf, 0, dir * infoPtr->nItemHeight,
4826 &rcScroll, &rcScroll, 0, 0, SW_ERASE | SW_INVALIDATE);
4831 * Removes an item from the listview control.
4834 * [I] infoPtr : valid pointer to the listview structure
4835 * [I] nItem : item index
4841 static BOOL LISTVIEW_DeleteItem(LISTVIEW_INFO *infoPtr, INT nItem)
4844 const UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
4845 const BOOL is_icon = (uView == LVS_SMALLICON || uView == LVS_ICON);
4847 TRACE("(nItem=%d)\n", nItem);
4849 if (nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
4851 /* remove selection, and focus */
4853 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
4854 LISTVIEW_SetItemState(infoPtr, nItem, &item);
4856 /* send LVN_DELETEITEM notification. */
4857 if (!notify_deleteitem(infoPtr, nItem)) return FALSE;
4859 /* we need to do this here, because we'll be deleting stuff */
4861 LISTVIEW_InvalidateItem(infoPtr, nItem);
4863 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
4869 hdpaSubItems = DPA_DeletePtr(infoPtr->hdpaItems, nItem);
4870 for (i = 0; i < DPA_GetPtrCount(hdpaSubItems); i++)
4872 hdrItem = DPA_GetPtr(hdpaSubItems, i);
4873 if (is_textW(hdrItem->pszText)) Free(hdrItem->pszText);
4876 DPA_Destroy(hdpaSubItems);
4881 DPA_DeletePtr(infoPtr->hdpaPosX, nItem);
4882 DPA_DeletePtr(infoPtr->hdpaPosY, nItem);
4885 infoPtr->nItemCount--;
4886 LISTVIEW_ShiftIndices(infoPtr, nItem, -1);
4888 /* now is the invalidation fun */
4890 LISTVIEW_ScrollOnInsert(infoPtr, nItem, -1);
4897 * Callback implementation for editlabel control
4900 * [I] infoPtr : valid pointer to the listview structure
4901 * [I] pszText : modified text
4902 * [I] isW : TRUE if psxText is Unicode, FALSE if it's ANSI
4908 static BOOL LISTVIEW_EndEditLabelT(LISTVIEW_INFO *infoPtr, LPWSTR pszText, BOOL isW)
4910 HWND hwndSelf = infoPtr->hwndSelf;
4911 NMLVDISPINFOW dispInfo;
4912 INT editedItem = infoPtr->nEditLabelItem;
4915 TRACE("(pszText=%s, isW=%d)\n", debugtext_t(pszText, isW), isW);
4917 infoPtr->nEditLabelItem = -1;
4919 ZeroMemory(&dispInfo, sizeof(dispInfo));
4920 dispInfo.item.mask = LVIF_PARAM | LVIF_STATE | LVIF_TEXT;
4921 dispInfo.item.iItem = editedItem;
4922 dispInfo.item.iSubItem = 0;
4923 dispInfo.item.stateMask = ~0;
4924 if (!LISTVIEW_GetItemW(infoPtr, &dispInfo.item)) return FALSE;
4927 bSame = (lstrcmpW(dispInfo.item.pszText, pszText) == 0);
4930 LPWSTR tmp = textdupTtoW(pszText, FALSE);
4931 bSame = (lstrcmpW(dispInfo.item.pszText, tmp) == 0);
4932 textfreeT(tmp, FALSE);
4934 if (bSame) return TRUE;
4936 /* add the text from the edit in */
4937 dispInfo.item.mask |= LVIF_TEXT;
4938 dispInfo.item.pszText = pszText;
4939 dispInfo.item.cchTextMax = textlenT(pszText, isW);
4941 /* Do we need to update the Item Text */
4942 if (!notify_dispinfoT(infoPtr, LVN_ENDLABELEDITW, &dispInfo, isW)) return FALSE;
4943 if (!IsWindow(hwndSelf))
4945 if (!pszText) return TRUE;
4947 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
4949 HDPA hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, editedItem);
4950 ITEM_INFO* lpItem = DPA_GetPtr(hdpaSubItems, 0);
4951 if (lpItem && lpItem->hdr.pszText == LPSTR_TEXTCALLBACKW)
4953 LISTVIEW_InvalidateItem(infoPtr, editedItem);
4958 ZeroMemory(&dispInfo, sizeof(dispInfo));
4959 dispInfo.item.mask = LVIF_TEXT;
4960 dispInfo.item.iItem = editedItem;
4961 dispInfo.item.iSubItem = 0;
4962 dispInfo.item.pszText = pszText;
4963 dispInfo.item.cchTextMax = textlenT(pszText, isW);
4964 return LISTVIEW_SetItemT(infoPtr, &dispInfo.item, isW);
4969 * Begin in place editing of specified list view item
4972 * [I] infoPtr : valid pointer to the listview structure
4973 * [I] nItem : item index
4974 * [I] isW : TRUE if it's a Unicode req, FALSE if ASCII
4980 static HWND LISTVIEW_EditLabelT(LISTVIEW_INFO *infoPtr, INT nItem, BOOL isW)
4982 WCHAR szDispText[DISP_TEXT_SIZE] = { 0 };
4983 NMLVDISPINFOW dispInfo;
4985 HWND hwndSelf = infoPtr->hwndSelf;
4987 TRACE("(nItem=%d, isW=%d)\n", nItem, isW);
4989 if (~infoPtr->dwStyle & LVS_EDITLABELS) return 0;
4990 if (nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
4992 infoPtr->nEditLabelItem = nItem;
4994 /* Is the EditBox still there, if so remove it */
4995 if(infoPtr->hwndEdit != 0)
4997 SetFocus(infoPtr->hwndSelf);
4998 infoPtr->hwndEdit = 0;
5001 LISTVIEW_SetSelection(infoPtr, nItem);
5002 LISTVIEW_SetItemFocus(infoPtr, nItem);
5003 LISTVIEW_InvalidateItem(infoPtr, nItem);
5005 rect.left = LVIR_LABEL;
5006 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rect)) return 0;
5008 ZeroMemory(&dispInfo, sizeof(dispInfo));
5009 dispInfo.item.mask = LVIF_PARAM | LVIF_STATE | LVIF_TEXT;
5010 dispInfo.item.iItem = nItem;
5011 dispInfo.item.iSubItem = 0;
5012 dispInfo.item.stateMask = ~0;
5013 dispInfo.item.pszText = szDispText;
5014 dispInfo.item.cchTextMax = DISP_TEXT_SIZE;
5015 if (!LISTVIEW_GetItemT(infoPtr, &dispInfo.item, isW)) return 0;
5017 infoPtr->hwndEdit = CreateEditLabelT(infoPtr, dispInfo.item.pszText, WS_VISIBLE,
5018 rect.left-2, rect.top-1, 0, rect.bottom - rect.top+2, isW);
5019 if (!infoPtr->hwndEdit) return 0;
5021 if (notify_dispinfoT(infoPtr, LVN_BEGINLABELEDITW, &dispInfo, isW))
5023 if (!IsWindow(hwndSelf))
5025 SendMessageW(infoPtr->hwndEdit, WM_CLOSE, 0, 0);
5026 infoPtr->hwndEdit = 0;
5030 ShowWindow(infoPtr->hwndEdit, SW_NORMAL);
5031 SetFocus(infoPtr->hwndEdit);
5032 SendMessageW(infoPtr->hwndEdit, EM_SETSEL, 0, -1);
5033 return infoPtr->hwndEdit;
5039 * Ensures the specified item is visible, scrolling into view if necessary.
5042 * [I] infoPtr : valid pointer to the listview structure
5043 * [I] nItem : item index
5044 * [I] bPartial : partially or entirely visible
5050 static BOOL LISTVIEW_EnsureVisible(LISTVIEW_INFO *infoPtr, INT nItem, BOOL bPartial)
5052 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
5053 INT nScrollPosHeight = 0;
5054 INT nScrollPosWidth = 0;
5055 INT nHorzAdjust = 0;
5056 INT nVertAdjust = 0;
5059 RECT rcItem, rcTemp;
5061 rcItem.left = LVIR_BOUNDS;
5062 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) return FALSE;
5064 if (bPartial && IntersectRect(&rcTemp, &infoPtr->rcList, &rcItem)) return TRUE;
5066 if (rcItem.left < infoPtr->rcList.left || rcItem.right > infoPtr->rcList.right)
5068 /* scroll left/right, but in LVS_REPORT mode */
5069 if (uView == LVS_LIST)
5070 nScrollPosWidth = infoPtr->nItemWidth;
5071 else if ((uView == LVS_SMALLICON) || (uView == LVS_ICON))
5072 nScrollPosWidth = 1;
5074 if (rcItem.left < infoPtr->rcList.left)
5077 if (uView != LVS_REPORT) nHorzDiff = rcItem.left - infoPtr->rcList.left;
5082 if (uView != LVS_REPORT) nHorzDiff = rcItem.right - infoPtr->rcList.right;
5086 if (rcItem.top < infoPtr->rcList.top || rcItem.bottom > infoPtr->rcList.bottom)
5088 /* scroll up/down, but not in LVS_LIST mode */
5089 if (uView == LVS_REPORT)
5090 nScrollPosHeight = infoPtr->nItemHeight;
5091 else if ((uView == LVS_ICON) || (uView == LVS_SMALLICON))
5092 nScrollPosHeight = 1;
5094 if (rcItem.top < infoPtr->rcList.top)
5097 if (uView != LVS_LIST) nVertDiff = rcItem.top - infoPtr->rcList.top;
5102 if (uView != LVS_LIST) nVertDiff = rcItem.bottom - infoPtr->rcList.bottom;
5106 if (!nScrollPosWidth && !nScrollPosHeight) return TRUE;
5108 if (nScrollPosWidth)
5110 INT diff = nHorzDiff / nScrollPosWidth;
5111 if (nHorzDiff % nScrollPosWidth) diff += nHorzAdjust;
5112 LISTVIEW_HScroll(infoPtr, SB_INTERNAL, diff, 0);
5115 if (nScrollPosHeight)
5117 INT diff = nVertDiff / nScrollPosHeight;
5118 if (nVertDiff % nScrollPosHeight) diff += nVertAdjust;
5119 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, diff, 0);
5127 * Searches for an item with specific characteristics.
5130 * [I] hwnd : window handle
5131 * [I] nStart : base item index
5132 * [I] lpFindInfo : item information to look for
5135 * SUCCESS : index of item
5138 static INT LISTVIEW_FindItemW(const LISTVIEW_INFO *infoPtr, INT nStart,
5139 const LVFINDINFOW *lpFindInfo)
5141 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
5142 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
5143 BOOL bWrap = FALSE, bNearest = FALSE;
5144 INT nItem = nStart + 1, nLast = infoPtr->nItemCount, nNearestItem = -1;
5145 ULONG xdist, ydist, dist, mindist = 0x7fffffff;
5146 POINT Position, Destination;
5149 /* Search in virtual listviews should be done by application, not by
5150 listview control, so we just send LVN_ODFINDITEMW and return the result */
5151 if (infoPtr->dwStyle & LVS_OWNERDATA)
5155 nmlv.iStart = nStart;
5156 nmlv.lvfi = *lpFindInfo;
5157 return notify_hdr(infoPtr, LVN_ODFINDITEMW, (LPNMHDR)&nmlv.hdr);
5160 if (!lpFindInfo || nItem < 0) return -1;
5163 if (lpFindInfo->flags & (LVFI_STRING | LVFI_PARTIAL))
5165 lvItem.mask |= LVIF_TEXT;
5166 lvItem.pszText = szDispText;
5167 lvItem.cchTextMax = DISP_TEXT_SIZE;
5170 if (lpFindInfo->flags & LVFI_WRAP)
5173 if ((lpFindInfo->flags & LVFI_NEARESTXY) &&
5174 (uView == LVS_ICON || uView ==LVS_SMALLICON))
5179 LISTVIEW_GetOrigin(infoPtr, &Origin);
5180 Destination.x = lpFindInfo->pt.x - Origin.x;
5181 Destination.y = lpFindInfo->pt.y - Origin.y;
5182 switch(lpFindInfo->vkDirection)
5184 case VK_DOWN: Destination.y += infoPtr->nItemHeight; break;
5185 case VK_UP: Destination.y -= infoPtr->nItemHeight; break;
5186 case VK_RIGHT: Destination.x += infoPtr->nItemWidth; break;
5187 case VK_LEFT: Destination.x -= infoPtr->nItemWidth; break;
5188 case VK_HOME: Destination.x = Destination.y = 0; break;
5189 case VK_NEXT: Destination.y += infoPtr->rcList.bottom - infoPtr->rcList.top; break;
5190 case VK_PRIOR: Destination.y -= infoPtr->rcList.bottom - infoPtr->rcList.top; break;
5192 LISTVIEW_GetAreaRect(infoPtr, &rcArea);
5193 Destination.x = rcArea.right;
5194 Destination.y = rcArea.bottom;
5196 default: ERR("Unknown vkDirection=%d\n", lpFindInfo->vkDirection);
5200 else Destination.x = Destination.y = 0;
5202 /* if LVFI_PARAM is specified, all other flags are ignored */
5203 if (lpFindInfo->flags & LVFI_PARAM)
5205 lvItem.mask |= LVIF_PARAM;
5207 lvItem.mask &= ~LVIF_TEXT;
5211 for (; nItem < nLast; nItem++)
5213 lvItem.iItem = nItem;
5214 lvItem.iSubItem = 0;
5215 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) continue;
5217 if (lvItem.mask & LVIF_PARAM)
5219 if (lpFindInfo->lParam == lvItem.lParam)
5225 if (lvItem.mask & LVIF_TEXT)
5227 if (lpFindInfo->flags & LVFI_PARTIAL)
5229 if (strstrW(lvItem.pszText, lpFindInfo->psz) == NULL) continue;
5233 if (lstrcmpW(lvItem.pszText, lpFindInfo->psz) != 0) continue;
5237 if (!bNearest) return nItem;
5239 /* This is very inefficient. To do a good job here,
5240 * we need a sorted array of (x,y) item positions */
5241 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
5243 /* compute the distance^2 to the destination */
5244 xdist = Destination.x - Position.x;
5245 ydist = Destination.y - Position.y;
5246 dist = xdist * xdist + ydist * ydist;
5248 /* remember the distance, and item if it's closer */
5252 nNearestItem = nItem;
5259 nLast = min(nStart + 1, infoPtr->nItemCount);
5264 return nNearestItem;
5269 * Searches for an item with specific characteristics.
5272 * [I] hwnd : window handle
5273 * [I] nStart : base item index
5274 * [I] lpFindInfo : item information to look for
5277 * SUCCESS : index of item
5280 static INT LISTVIEW_FindItemA(const LISTVIEW_INFO *infoPtr, INT nStart,
5281 const LVFINDINFOA *lpFindInfo)
5283 BOOL hasText = lpFindInfo->flags & (LVFI_STRING | LVFI_PARTIAL);
5288 memcpy(&fiw, lpFindInfo, sizeof(fiw));
5289 if (hasText) fiw.psz = strW = textdupTtoW((LPCWSTR)lpFindInfo->psz, FALSE);
5290 res = LISTVIEW_FindItemW(infoPtr, nStart, &fiw);
5291 textfreeT(strW, FALSE);
5297 * Retrieves the background image of the listview control.
5300 * [I] infoPtr : valid pointer to the listview structure
5301 * [O] lpBkImage : background image attributes
5307 /* static BOOL LISTVIEW_GetBkImage(const LISTVIEW_INFO *infoPtr, LPLVBKIMAGE lpBkImage) */
5309 /* FIXME (listview, "empty stub!\n"); */
5315 * Retrieves column attributes.
5318 * [I] infoPtr : valid pointer to the listview structure
5319 * [I] nColumn : column index
5320 * [IO] lpColumn : column information
5321 * [I] isW : if TRUE, then lpColumn is a LPLVCOLUMNW
5322 * otherwise it is in fact a LPLVCOLUMNA
5328 static BOOL LISTVIEW_GetColumnT(const LISTVIEW_INFO *infoPtr, INT nColumn, LPLVCOLUMNW lpColumn, BOOL isW)
5330 COLUMN_INFO *lpColumnInfo;
5333 if (!lpColumn || nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
5334 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nColumn);
5336 /* initialize memory */
5337 ZeroMemory(&hdi, sizeof(hdi));
5339 if (lpColumn->mask & LVCF_TEXT)
5341 hdi.mask |= HDI_TEXT;
5342 hdi.pszText = lpColumn->pszText;
5343 hdi.cchTextMax = lpColumn->cchTextMax;
5346 if (lpColumn->mask & LVCF_IMAGE)
5347 hdi.mask |= HDI_IMAGE;
5349 if (lpColumn->mask & LVCF_ORDER)
5350 hdi.mask |= HDI_ORDER;
5352 if (lpColumn->mask & LVCF_SUBITEM)
5353 hdi.mask |= HDI_LPARAM;
5355 if (!SendMessageW(infoPtr->hwndHeader, isW ? HDM_GETITEMW : HDM_GETITEMA, nColumn, (LPARAM)&hdi)) return FALSE;
5357 if (lpColumn->mask & LVCF_FMT)
5358 lpColumn->fmt = lpColumnInfo->fmt;
5360 if (lpColumn->mask & LVCF_WIDTH)
5361 lpColumn->cx = lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left;
5363 if (lpColumn->mask & LVCF_IMAGE)
5364 lpColumn->iImage = hdi.iImage;
5366 if (lpColumn->mask & LVCF_ORDER)
5367 lpColumn->iOrder = hdi.iOrder;
5369 if (lpColumn->mask & LVCF_SUBITEM)
5370 lpColumn->iSubItem = hdi.lParam;
5376 static BOOL LISTVIEW_GetColumnOrderArray(const LISTVIEW_INFO *infoPtr, INT iCount, LPINT lpiArray)
5383 /* FIXME: little hack */
5384 for (i = 0; i < iCount; i++)
5392 * Retrieves the column width.
5395 * [I] infoPtr : valid pointer to the listview structure
5396 * [I] int : column index
5399 * SUCCESS : column width
5402 static INT LISTVIEW_GetColumnWidth(const LISTVIEW_INFO *infoPtr, INT nColumn)
5404 INT nColumnWidth = 0;
5407 TRACE("nColumn=%d\n", nColumn);
5409 /* we have a 'column' in LIST and REPORT mode only */
5410 switch(infoPtr->dwStyle & LVS_TYPEMASK)
5413 nColumnWidth = infoPtr->nItemWidth;
5416 /* We are not using LISTVIEW_GetHeaderRect as this data is updated only after a HDM_ITEMCHANGED.
5417 * There is an application that subclasses the listview, calls LVM_GETCOLUMNWIDTH in the
5418 * HDM_ITEMCHANGED handler and goes into infinite recursion if it receives old data.
5420 * TODO: should we do the same in LVM_GETCOLUMN?
5422 hdItem.mask = HDI_WIDTH;
5423 if (!SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nColumn, (LPARAM)&hdItem))
5425 WARN("(%p): HDM_GETITEMW failed for item %d\n", infoPtr->hwndSelf, nColumn);
5428 nColumnWidth = hdItem.cxy;
5432 TRACE("nColumnWidth=%d\n", nColumnWidth);
5433 return nColumnWidth;
5438 * In list or report display mode, retrieves the number of items that can fit
5439 * vertically in the visible area. In icon or small icon display mode,
5440 * retrieves the total number of visible items.
5443 * [I] infoPtr : valid pointer to the listview structure
5446 * Number of fully visible items.
5448 static INT LISTVIEW_GetCountPerPage(const LISTVIEW_INFO *infoPtr)
5450 switch (infoPtr->dwStyle & LVS_TYPEMASK)
5454 return infoPtr->nItemCount;
5456 return LISTVIEW_GetCountPerColumn(infoPtr);
5458 return LISTVIEW_GetCountPerRow(infoPtr) * LISTVIEW_GetCountPerColumn(infoPtr);
5466 * Retrieves an image list handle.
5469 * [I] infoPtr : valid pointer to the listview structure
5470 * [I] nImageList : image list identifier
5473 * SUCCESS : image list handle
5476 static HIMAGELIST LISTVIEW_GetImageList(const LISTVIEW_INFO *infoPtr, INT nImageList)
5480 case LVSIL_NORMAL: return infoPtr->himlNormal;
5481 case LVSIL_SMALL: return infoPtr->himlSmall;
5482 case LVSIL_STATE: return infoPtr->himlState;
5487 /* LISTVIEW_GetISearchString */
5491 * Retrieves item attributes.
5494 * [I] hwnd : window handle
5495 * [IO] lpLVItem : item info
5496 * [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
5497 * if FALSE, then lpLVItem is a LPLVITEMA.
5500 * This is the internal 'GetItem' interface -- it tries to
5501 * be smart and avoid text copies, if possible, by modifying
5502 * lpLVItem->pszText to point to the text string. Please note
5503 * that this is not always possible (e.g. OWNERDATA), so on
5504 * entry you *must* supply valid values for pszText, and cchTextMax.
5505 * The only difference to the documented interface is that upon
5506 * return, you should use *only* the lpLVItem->pszText, rather than
5507 * the buffer pointer you provided on input. Most code already does
5508 * that, so it's not a problem.
5509 * For the two cases when the text must be copied (that is,
5510 * for LVM_GETITEM, and LVM_GETITEMTEXT), use LISTVIEW_GetItemExtT.
5516 static BOOL LISTVIEW_GetItemT(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL isW)
5518 ITEMHDR callbackHdr = { LPSTR_TEXTCALLBACKW, I_IMAGECALLBACK };
5519 NMLVDISPINFOW dispInfo;
5525 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
5527 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
5530 if (lpLVItem->mask == 0) return TRUE;
5532 /* make a local copy */
5533 isubitem = lpLVItem->iSubItem;
5535 /* a quick optimization if all we're asked is the focus state
5536 * these queries are worth optimising since they are common,
5537 * and can be answered in constant time, without the heavy accesses */
5538 if ( (lpLVItem->mask == LVIF_STATE) && (lpLVItem->stateMask == LVIS_FOCUSED) &&
5539 !(infoPtr->uCallbackMask & LVIS_FOCUSED) )
5541 lpLVItem->state = 0;
5542 if (infoPtr->nFocusedItem == lpLVItem->iItem)
5543 lpLVItem->state |= LVIS_FOCUSED;
5547 ZeroMemory(&dispInfo, sizeof(dispInfo));
5549 /* if the app stores all the data, handle it separately */
5550 if (infoPtr->dwStyle & LVS_OWNERDATA)
5552 dispInfo.item.state = 0;
5554 /* apparently, we should not callback for lParam in LVS_OWNERDATA */
5555 if ((lpLVItem->mask & ~(LVIF_STATE | LVIF_PARAM)) || infoPtr->uCallbackMask)
5557 /* NOTE: copy only fields which we _know_ are initialized, some apps
5558 * depend on the uninitialized fields being 0 */
5559 dispInfo.item.mask = lpLVItem->mask & ~LVIF_PARAM;
5560 dispInfo.item.iItem = lpLVItem->iItem;
5561 dispInfo.item.iSubItem = isubitem;
5562 if (lpLVItem->mask & LVIF_TEXT)
5564 dispInfo.item.pszText = lpLVItem->pszText;
5565 dispInfo.item.cchTextMax = lpLVItem->cchTextMax;
5567 if (lpLVItem->mask & LVIF_STATE)
5568 dispInfo.item.stateMask = lpLVItem->stateMask & infoPtr->uCallbackMask;
5569 notify_dispinfoT(infoPtr, LVN_GETDISPINFOW, &dispInfo, isW);
5570 dispInfo.item.stateMask = lpLVItem->stateMask;
5571 if (lpLVItem->mask & (LVIF_GROUPID|LVIF_COLUMNS))
5573 /* full size structure expected - _WIN32IE >= 0x560 */
5574 *lpLVItem = dispInfo.item;
5576 else if (lpLVItem->mask & LVIF_INDENT)
5578 /* indent member expected - _WIN32IE >= 0x300 */
5579 memcpy(lpLVItem, &dispInfo.item, offsetof( LVITEMW, iGroupId ));
5583 /* minimal structure expected */
5584 memcpy(lpLVItem, &dispInfo.item, offsetof( LVITEMW, iIndent ));
5586 TRACE(" getdispinfo(1):lpLVItem=%s\n", debuglvitem_t(lpLVItem, isW));
5589 /* make sure lParam is zeroed out */
5590 if (lpLVItem->mask & LVIF_PARAM) lpLVItem->lParam = 0;
5592 /* we store only a little state, so if we're not asked, we're done */
5593 if (!(lpLVItem->mask & LVIF_STATE) || isubitem) return TRUE;
5595 /* if focus is handled by us, report it */
5596 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED )
5598 lpLVItem->state &= ~LVIS_FOCUSED;
5599 if (infoPtr->nFocusedItem == lpLVItem->iItem)
5600 lpLVItem->state |= LVIS_FOCUSED;
5603 /* and do the same for selection, if we handle it */
5604 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED )
5606 lpLVItem->state &= ~LVIS_SELECTED;
5607 if (ranges_contain(infoPtr->selectionRanges, lpLVItem->iItem))
5608 lpLVItem->state |= LVIS_SELECTED;
5614 /* find the item and subitem structures before we proceed */
5615 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
5616 lpItem = DPA_GetPtr(hdpaSubItems, 0);
5621 SUBITEM_INFO *lpSubItem = LISTVIEW_GetSubItemPtr(hdpaSubItems, isubitem);
5622 pItemHdr = lpSubItem ? &lpSubItem->hdr : &callbackHdr;
5625 WARN(" iSubItem invalid (%08x), ignored.\n", isubitem);
5630 pItemHdr = &lpItem->hdr;
5632 /* Do we need to query the state from the app? */
5633 if ((lpLVItem->mask & LVIF_STATE) && infoPtr->uCallbackMask && isubitem == 0)
5635 dispInfo.item.mask |= LVIF_STATE;
5636 dispInfo.item.stateMask = infoPtr->uCallbackMask;
5639 /* Do we need to enquire about the image? */
5640 if ((lpLVItem->mask & LVIF_IMAGE) && pItemHdr->iImage == I_IMAGECALLBACK &&
5641 (isubitem == 0 || (infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES)))
5643 dispInfo.item.mask |= LVIF_IMAGE;
5644 dispInfo.item.iImage = I_IMAGECALLBACK;
5647 /* Apps depend on calling back for text if it is NULL or LPSTR_TEXTCALLBACKW */
5648 if ((lpLVItem->mask & LVIF_TEXT) && !is_textW(pItemHdr->pszText))
5650 dispInfo.item.mask |= LVIF_TEXT;
5651 dispInfo.item.pszText = lpLVItem->pszText;
5652 dispInfo.item.cchTextMax = lpLVItem->cchTextMax;
5653 if (dispInfo.item.pszText && dispInfo.item.cchTextMax > 0)
5654 *dispInfo.item.pszText = '\0';
5657 /* If we don't have all the requested info, query the application */
5658 if (dispInfo.item.mask != 0)
5660 dispInfo.item.iItem = lpLVItem->iItem;
5661 dispInfo.item.iSubItem = lpLVItem->iSubItem; /* yes: the original subitem */
5662 dispInfo.item.lParam = lpItem->lParam;
5663 notify_dispinfoT(infoPtr, LVN_GETDISPINFOW, &dispInfo, isW);
5664 TRACE(" getdispinfo(2):item=%s\n", debuglvitem_t(&dispInfo.item, isW));
5667 /* we should not store values for subitems */
5668 if (isubitem) dispInfo.item.mask &= ~LVIF_DI_SETITEM;
5670 /* Now, handle the iImage field */
5671 if (dispInfo.item.mask & LVIF_IMAGE)
5673 lpLVItem->iImage = dispInfo.item.iImage;
5674 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && pItemHdr->iImage == I_IMAGECALLBACK)
5675 pItemHdr->iImage = dispInfo.item.iImage;
5677 else if (lpLVItem->mask & LVIF_IMAGE)
5679 if(isubitem == 0 || (infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES))
5680 lpLVItem->iImage = pItemHdr->iImage;
5682 lpLVItem->iImage = 0;
5685 /* The pszText field */
5686 if (dispInfo.item.mask & LVIF_TEXT)
5688 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && pItemHdr->pszText)
5689 textsetptrT(&pItemHdr->pszText, dispInfo.item.pszText, isW);
5691 lpLVItem->pszText = dispInfo.item.pszText;
5693 else if (lpLVItem->mask & LVIF_TEXT)
5695 if (isW) lpLVItem->pszText = pItemHdr->pszText;
5696 else textcpynT(lpLVItem->pszText, isW, pItemHdr->pszText, TRUE, lpLVItem->cchTextMax);
5699 /* Next is the lParam field */
5700 if (dispInfo.item.mask & LVIF_PARAM)
5702 lpLVItem->lParam = dispInfo.item.lParam;
5703 if ((dispInfo.item.mask & LVIF_DI_SETITEM))
5704 lpItem->lParam = dispInfo.item.lParam;
5706 else if (lpLVItem->mask & LVIF_PARAM)
5707 lpLVItem->lParam = lpItem->lParam;
5709 /* if this is a subitem, we're done */
5710 if (isubitem) return TRUE;
5712 /* ... the state field (this one is different due to uCallbackmask) */
5713 if (lpLVItem->mask & LVIF_STATE)
5715 lpLVItem->state = lpItem->state & lpLVItem->stateMask;
5716 if (dispInfo.item.mask & LVIF_STATE)
5718 lpLVItem->state &= ~dispInfo.item.stateMask;
5719 lpLVItem->state |= (dispInfo.item.state & dispInfo.item.stateMask);
5721 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED )
5723 lpLVItem->state &= ~LVIS_FOCUSED;
5724 if (infoPtr->nFocusedItem == lpLVItem->iItem)
5725 lpLVItem->state |= LVIS_FOCUSED;
5727 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED )
5729 lpLVItem->state &= ~LVIS_SELECTED;
5730 if (ranges_contain(infoPtr->selectionRanges, lpLVItem->iItem))
5731 lpLVItem->state |= LVIS_SELECTED;
5735 /* and last, but not least, the indent field */
5736 if (lpLVItem->mask & LVIF_INDENT)
5737 lpLVItem->iIndent = lpItem->iIndent;
5744 * Retrieves item attributes.
5747 * [I] hwnd : window handle
5748 * [IO] lpLVItem : item info
5749 * [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
5750 * if FALSE, then lpLVItem is a LPLVITEMA.
5753 * This is the external 'GetItem' interface -- it properly copies
5754 * the text in the provided buffer.
5760 static BOOL LISTVIEW_GetItemExtT(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL isW)
5765 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
5768 pszText = lpLVItem->pszText;
5769 bResult = LISTVIEW_GetItemT(infoPtr, lpLVItem, isW);
5770 if (bResult && lpLVItem->pszText != pszText)
5771 textcpynT(pszText, isW, lpLVItem->pszText, isW, lpLVItem->cchTextMax);
5772 lpLVItem->pszText = pszText;
5780 * Retrieves the position (upper-left) of the listview control item.
5781 * Note that for LVS_ICON style, the upper-left is that of the icon
5782 * and not the bounding box.
5785 * [I] infoPtr : valid pointer to the listview structure
5786 * [I] nItem : item index
5787 * [O] lpptPosition : coordinate information
5793 static BOOL LISTVIEW_GetItemPosition(const LISTVIEW_INFO *infoPtr, INT nItem, LPPOINT lpptPosition)
5795 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
5798 TRACE("(nItem=%d, lpptPosition=%p)\n", nItem, lpptPosition);
5800 if (!lpptPosition || nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
5802 LISTVIEW_GetOrigin(infoPtr, &Origin);
5803 LISTVIEW_GetItemOrigin(infoPtr, nItem, lpptPosition);
5805 if (uView == LVS_ICON)
5807 lpptPosition->x += (infoPtr->nItemWidth - infoPtr->iconSize.cx) / 2;
5808 lpptPosition->y += ICON_TOP_PADDING;
5810 lpptPosition->x += Origin.x;
5811 lpptPosition->y += Origin.y;
5813 TRACE (" lpptPosition=%s\n", wine_dbgstr_point(lpptPosition));
5820 * Retrieves the bounding rectangle for a listview control item.
5823 * [I] infoPtr : valid pointer to the listview structure
5824 * [I] nItem : item index
5825 * [IO] lprc : bounding rectangle coordinates
5826 * lprc->left specifies the portion of the item for which the bounding
5827 * rectangle will be retrieved.
5829 * LVIR_BOUNDS Returns the bounding rectangle of the entire item,
5830 * including the icon and label.
5833 * * Experiment shows that native control returns:
5834 * * width = min (48, length of text line)
5835 * * .left = position.x - (width - iconsize.cx)/2
5836 * * .right = .left + width
5837 * * height = #lines of text * ntmHeight + icon height + 8
5838 * * .top = position.y - 2
5839 * * .bottom = .top + height
5840 * * separation between items .y = itemSpacing.cy - height
5841 * * .x = itemSpacing.cx - width
5842 * LVIR_ICON Returns the bounding rectangle of the icon or small icon.
5845 * * Experiment shows that native control returns:
5846 * * width = iconSize.cx + 16
5847 * * .left = position.x - (width - iconsize.cx)/2
5848 * * .right = .left + width
5849 * * height = iconSize.cy + 4
5850 * * .top = position.y - 2
5851 * * .bottom = .top + height
5852 * * separation between items .y = itemSpacing.cy - height
5853 * * .x = itemSpacing.cx - width
5854 * LVIR_LABEL Returns the bounding rectangle of the item text.
5857 * * Experiment shows that native control returns:
5858 * * width = text length
5859 * * .left = position.x - width/2
5860 * * .right = .left + width
5861 * * height = ntmH * linecount + 2
5862 * * .top = position.y + iconSize.cy + 6
5863 * * .bottom = .top + height
5864 * * separation between items .y = itemSpacing.cy - height
5865 * * .x = itemSpacing.cx - width
5866 * LVIR_SELECTBOUNDS Returns the union of the LVIR_ICON and LVIR_LABEL
5867 * rectangles, but excludes columns in report view.
5874 * Note that the bounding rectangle of the label in the LVS_ICON view depends
5875 * upon whether the window has the focus currently and on whether the item
5876 * is the one with the focus. Ensure that the control's record of which
5877 * item has the focus agrees with the items' records.
5879 static BOOL LISTVIEW_GetItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprc)
5881 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
5882 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
5883 BOOL doLabel = TRUE, oversizedBox = FALSE;
5884 POINT Position, Origin;
5887 TRACE("(hwnd=%p, nItem=%d, lprc=%p)\n", infoPtr->hwndSelf, nItem, lprc);
5889 if (!lprc || nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
5891 LISTVIEW_GetOrigin(infoPtr, &Origin);
5892 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
5894 /* Be smart and try to figure out the minimum we have to do */
5895 if (lprc->left == LVIR_ICON) doLabel = FALSE;
5896 if (uView == LVS_REPORT && lprc->left == LVIR_BOUNDS) doLabel = FALSE;
5897 if (uView == LVS_ICON && lprc->left != LVIR_ICON &&
5898 infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, nItem, LVIS_FOCUSED))
5899 oversizedBox = TRUE;
5901 /* get what we need from the item before hand, so we make
5902 * only one request. This can speed up things, if data
5903 * is stored on the app side */
5905 if (uView == LVS_REPORT) lvItem.mask |= LVIF_INDENT;
5906 if (doLabel) lvItem.mask |= LVIF_TEXT;
5907 lvItem.iItem = nItem;
5908 lvItem.iSubItem = 0;
5909 lvItem.pszText = szDispText;
5910 lvItem.cchTextMax = DISP_TEXT_SIZE;
5911 if (lvItem.mask && !LISTVIEW_GetItemW(infoPtr, &lvItem)) return FALSE;
5912 /* we got the state already up, simulate it here, to avoid a reget */
5913 if (uView == LVS_ICON && (lprc->left != LVIR_ICON))
5915 lvItem.mask |= LVIF_STATE;
5916 lvItem.stateMask = LVIS_FOCUSED;
5917 lvItem.state = (oversizedBox ? LVIS_FOCUSED : 0);
5920 if (uView == LVS_REPORT && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) && lprc->left == LVIR_SELECTBOUNDS)
5921 lprc->left = LVIR_BOUNDS;
5925 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, lprc, NULL, NULL);
5929 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, NULL, NULL, lprc);
5933 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprc, NULL, NULL, NULL, NULL);
5936 case LVIR_SELECTBOUNDS:
5937 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, lprc, NULL, NULL, NULL);
5941 WARN("Unknown value: %d\n", lprc->left);
5945 OffsetRect(lprc, Position.x + Origin.x, Position.y + Origin.y);
5947 TRACE(" rect=%s\n", wine_dbgstr_rect(lprc));
5954 * Retrieves the spacing between listview control items.
5957 * [I] infoPtr : valid pointer to the listview structure
5958 * [IO] lprc : rectangle to receive the output
5959 * on input, lprc->top = nSubItem
5960 * lprc->left = LVIR_ICON | LVIR_BOUNDS | LVIR_LABEL
5962 * NOTE: for subItem = 0, we should return the bounds of the _entire_ item,
5963 * not only those of the first column.
5964 * Fortunately, LISTVIEW_GetItemMetrics does the right thing.
5970 static BOOL LISTVIEW_GetSubItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprc)
5976 if (!lprc) return FALSE;
5978 nColumn = lprc->top;
5980 TRACE("(nItem=%d, nSubItem=%d)\n", nItem, lprc->top);
5981 /* On WinNT, a subitem of '0' calls LISTVIEW_GetItemRect */
5983 return LISTVIEW_GetItemRect(infoPtr, nItem, lprc);
5985 if ((infoPtr->dwStyle & LVS_TYPEMASK) != LVS_REPORT) return FALSE;
5987 /* special case for header items */
5990 if (lprc->left != LVIR_BOUNDS)
5992 FIXME("Only LVIR_BOUNDS is implemented for header, got %d\n", lprc->left);
5996 if (infoPtr->hwndHeader)
5997 return Header_GetItemRect(infoPtr->hwndHeader, lprc->top, lprc);
6000 memset(lprc, 0, sizeof(RECT));
6005 if (!LISTVIEW_GetItemPosition(infoPtr, nItem, &Position)) return FALSE;
6007 if (nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
6010 lvItem.iItem = nItem;
6011 lvItem.iSubItem = nColumn;
6013 if (lvItem.mask && !LISTVIEW_GetItemW(infoPtr, &lvItem)) return FALSE;
6017 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, lprc, NULL, NULL);
6022 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprc, NULL, NULL, NULL, NULL);
6026 ERR("Unknown bounds=%d\n", lprc->left);
6030 OffsetRect(lprc, Position.x, Position.y);
6037 * Retrieves the width of a label.
6040 * [I] infoPtr : valid pointer to the listview structure
6043 * SUCCESS : string width (in pixels)
6046 static INT LISTVIEW_GetLabelWidth(const LISTVIEW_INFO *infoPtr, INT nItem)
6048 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
6051 TRACE("(nItem=%d)\n", nItem);
6053 lvItem.mask = LVIF_TEXT;
6054 lvItem.iItem = nItem;
6055 lvItem.iSubItem = 0;
6056 lvItem.pszText = szDispText;
6057 lvItem.cchTextMax = DISP_TEXT_SIZE;
6058 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return 0;
6060 return LISTVIEW_GetStringWidthT(infoPtr, lvItem.pszText, TRUE);
6065 * Retrieves the spacing between listview control items.
6068 * [I] infoPtr : valid pointer to the listview structure
6069 * [I] bSmall : flag for small or large icon
6072 * Horizontal + vertical spacing
6074 static LONG LISTVIEW_GetItemSpacing(const LISTVIEW_INFO *infoPtr, BOOL bSmall)
6080 lResult = MAKELONG(infoPtr->iconSpacing.cx, infoPtr->iconSpacing.cy);
6084 if ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_ICON)
6085 lResult = MAKELONG(DEFAULT_COLUMN_WIDTH, GetSystemMetrics(SM_CXSMICON)+HEIGHT_PADDING);
6087 lResult = MAKELONG(infoPtr->nItemWidth, infoPtr->nItemHeight);
6094 * Retrieves the state of a listview control item.
6097 * [I] infoPtr : valid pointer to the listview structure
6098 * [I] nItem : item index
6099 * [I] uMask : state mask
6102 * State specified by the mask.
6104 static UINT LISTVIEW_GetItemState(const LISTVIEW_INFO *infoPtr, INT nItem, UINT uMask)
6108 if (nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
6110 lvItem.iItem = nItem;
6111 lvItem.iSubItem = 0;
6112 lvItem.mask = LVIF_STATE;
6113 lvItem.stateMask = uMask;
6114 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return 0;
6116 return lvItem.state & uMask;
6121 * Retrieves the text of a listview control item or subitem.
6124 * [I] hwnd : window handle
6125 * [I] nItem : item index
6126 * [IO] lpLVItem : item information
6127 * [I] isW : TRUE if lpLVItem is Unicode
6130 * SUCCESS : string length
6133 static INT LISTVIEW_GetItemTextT(const LISTVIEW_INFO *infoPtr, INT nItem, LPLVITEMW lpLVItem, BOOL isW)
6135 if (!lpLVItem || nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
6137 lpLVItem->mask = LVIF_TEXT;
6138 lpLVItem->iItem = nItem;
6139 if (!LISTVIEW_GetItemExtT(infoPtr, lpLVItem, isW)) return 0;
6141 return textlenT(lpLVItem->pszText, isW);
6146 * Searches for an item based on properties + relationships.
6149 * [I] infoPtr : valid pointer to the listview structure
6150 * [I] nItem : item index
6151 * [I] uFlags : relationship flag
6154 * SUCCESS : item index
6157 static INT LISTVIEW_GetNextItem(const LISTVIEW_INFO *infoPtr, INT nItem, UINT uFlags)
6159 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
6161 LVFINDINFOW lvFindInfo;
6162 INT nCountPerColumn;
6166 TRACE("nItem=%d, uFlags=%x, nItemCount=%d\n", nItem, uFlags, infoPtr->nItemCount);
6167 if (nItem < -1 || nItem >= infoPtr->nItemCount) return -1;
6169 ZeroMemory(&lvFindInfo, sizeof(lvFindInfo));
6171 if (uFlags & LVNI_CUT)
6174 if (uFlags & LVNI_DROPHILITED)
6175 uMask |= LVIS_DROPHILITED;
6177 if (uFlags & LVNI_FOCUSED)
6178 uMask |= LVIS_FOCUSED;
6180 if (uFlags & LVNI_SELECTED)
6181 uMask |= LVIS_SELECTED;
6183 /* if we're asked for the focused item, that's only one,
6184 * so it's worth optimizing */
6185 if (uFlags & LVNI_FOCUSED)
6187 if ((LISTVIEW_GetItemState(infoPtr, infoPtr->nFocusedItem, uMask) & uMask) != uMask) return -1;
6188 return (infoPtr->nFocusedItem == nItem) ? -1 : infoPtr->nFocusedItem;
6191 if (uFlags & LVNI_ABOVE)
6193 if ((uView == LVS_LIST) || (uView == LVS_REPORT))
6198 if ((ListView_GetItemState(infoPtr->hwndSelf, nItem, uMask) & uMask) == uMask)
6204 /* Special case for autoarrange - move 'til the top of a list */
6205 if (is_autoarrange(infoPtr))
6207 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
6208 while (nItem - nCountPerRow >= 0)
6210 nItem -= nCountPerRow;
6211 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6216 lvFindInfo.flags = LVFI_NEARESTXY;
6217 lvFindInfo.vkDirection = VK_UP;
6218 SendMessageW( infoPtr->hwndSelf, LVM_GETITEMPOSITION, nItem, (LPARAM)&lvFindInfo.pt );
6219 while ((nItem = ListView_FindItemW(infoPtr->hwndSelf, nItem, &lvFindInfo)) != -1)
6221 if ((ListView_GetItemState(infoPtr->hwndSelf, nItem, uMask) & uMask) == uMask)
6226 else if (uFlags & LVNI_BELOW)
6228 if ((uView == LVS_LIST) || (uView == LVS_REPORT))
6230 while (nItem < infoPtr->nItemCount)
6233 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6239 /* Special case for autoarrange - move 'til the bottom of a list */
6240 if (is_autoarrange(infoPtr))
6242 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
6243 while (nItem + nCountPerRow < infoPtr->nItemCount )
6245 nItem += nCountPerRow;
6246 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6251 lvFindInfo.flags = LVFI_NEARESTXY;
6252 lvFindInfo.vkDirection = VK_DOWN;
6253 SendMessageW( infoPtr->hwndSelf, LVM_GETITEMPOSITION, nItem, (LPARAM)&lvFindInfo.pt );
6254 while ((nItem = ListView_FindItemW(infoPtr->hwndSelf, nItem, &lvFindInfo)) != -1)
6256 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6261 else if (uFlags & LVNI_TOLEFT)
6263 if (uView == LVS_LIST)
6265 nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
6266 while (nItem - nCountPerColumn >= 0)
6268 nItem -= nCountPerColumn;
6269 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6273 else if ((uView == LVS_SMALLICON) || (uView == LVS_ICON))
6275 /* Special case for autoarrange - move 'til the beginning of a row */
6276 if (is_autoarrange(infoPtr))
6278 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
6279 while (nItem % nCountPerRow > 0)
6282 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6287 lvFindInfo.flags = LVFI_NEARESTXY;
6288 lvFindInfo.vkDirection = VK_LEFT;
6289 SendMessageW( infoPtr->hwndSelf, LVM_GETITEMPOSITION, nItem, (LPARAM)&lvFindInfo.pt );
6290 while ((nItem = ListView_FindItemW(infoPtr->hwndSelf, nItem, &lvFindInfo)) != -1)
6292 if ((ListView_GetItemState(infoPtr->hwndSelf, nItem, uMask) & uMask) == uMask)
6297 else if (uFlags & LVNI_TORIGHT)
6299 if (uView == LVS_LIST)
6301 nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
6302 while (nItem + nCountPerColumn < infoPtr->nItemCount)
6304 nItem += nCountPerColumn;
6305 if ((ListView_GetItemState(infoPtr->hwndSelf, nItem, uMask) & uMask) == uMask)
6309 else if ((uView == LVS_SMALLICON) || (uView == LVS_ICON))
6311 /* Special case for autoarrange - move 'til the end of a row */
6312 if (is_autoarrange(infoPtr))
6314 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
6315 while (nItem % nCountPerRow < nCountPerRow - 1 )
6318 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6323 lvFindInfo.flags = LVFI_NEARESTXY;
6324 lvFindInfo.vkDirection = VK_RIGHT;
6325 SendMessageW( infoPtr->hwndSelf, LVM_GETITEMPOSITION, nItem, (LPARAM)&lvFindInfo.pt );
6326 while ((nItem = ListView_FindItemW(infoPtr->hwndSelf, nItem, &lvFindInfo)) != -1)
6328 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
6337 /* search by index */
6338 for (i = nItem; i < infoPtr->nItemCount; i++)
6340 if ((LISTVIEW_GetItemState(infoPtr, i, uMask) & uMask) == uMask)
6348 /* LISTVIEW_GetNumberOfWorkAreas */
6352 * Retrieves the origin coordinates when in icon or small icon display mode.
6355 * [I] infoPtr : valid pointer to the listview structure
6356 * [O] lpptOrigin : coordinate information
6361 static void LISTVIEW_GetOrigin(const LISTVIEW_INFO *infoPtr, LPPOINT lpptOrigin)
6363 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
6364 INT nHorzPos = 0, nVertPos = 0;
6365 SCROLLINFO scrollInfo;
6367 scrollInfo.cbSize = sizeof(SCROLLINFO);
6368 scrollInfo.fMask = SIF_POS;
6370 if (GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo))
6371 nHorzPos = scrollInfo.nPos;
6372 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
6373 nVertPos = scrollInfo.nPos;
6375 TRACE("nHorzPos=%d, nVertPos=%d\n", nHorzPos, nVertPos);
6377 lpptOrigin->x = infoPtr->rcList.left;
6378 lpptOrigin->y = infoPtr->rcList.top;
6379 if (uView == LVS_LIST)
6380 nHorzPos *= infoPtr->nItemWidth;
6381 else if (uView == LVS_REPORT)
6382 nVertPos *= infoPtr->nItemHeight;
6384 lpptOrigin->x -= nHorzPos;
6385 lpptOrigin->y -= nVertPos;
6387 TRACE(" origin=%s\n", wine_dbgstr_point(lpptOrigin));
6392 * Retrieves the width of a string.
6395 * [I] hwnd : window handle
6396 * [I] lpszText : text string to process
6397 * [I] isW : TRUE if lpszText is Unicode, FALSE otherwise
6400 * SUCCESS : string width (in pixels)
6403 static INT LISTVIEW_GetStringWidthT(const LISTVIEW_INFO *infoPtr, LPCWSTR lpszText, BOOL isW)
6408 if (is_textT(lpszText, isW))
6410 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
6411 HDC hdc = GetDC(infoPtr->hwndSelf);
6412 HFONT hOldFont = SelectObject(hdc, hFont);
6415 GetTextExtentPointW(hdc, lpszText, lstrlenW(lpszText), &stringSize);
6417 GetTextExtentPointA(hdc, (LPCSTR)lpszText, lstrlenA((LPCSTR)lpszText), &stringSize);
6418 SelectObject(hdc, hOldFont);
6419 ReleaseDC(infoPtr->hwndSelf, hdc);
6421 return stringSize.cx;
6426 * Determines which listview item is located at the specified position.
6429 * [I] infoPtr : valid pointer to the listview structure
6430 * [IO] lpht : hit test information
6431 * [I] subitem : fill out iSubItem.
6432 * [I] select : return the index only if the hit selects the item
6435 * (mm 20001022): We must not allow iSubItem to be touched, for
6436 * an app might pass only a structure with space up to iItem!
6437 * (MS Office 97 does that for instance in the file open dialog)
6440 * SUCCESS : item index
6443 static INT LISTVIEW_HitTest(const LISTVIEW_INFO *infoPtr, LPLVHITTESTINFO lpht, BOOL subitem, BOOL select)
6445 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
6446 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
6447 RECT rcBox, rcBounds, rcState, rcIcon, rcLabel, rcSearch;
6448 POINT Origin, Position, opt;
6453 TRACE("(pt=%s, subitem=%d, select=%d)\n", wine_dbgstr_point(&lpht->pt), subitem, select);
6457 if (subitem) lpht->iSubItem = 0;
6459 if (infoPtr->rcList.left > lpht->pt.x)
6460 lpht->flags |= LVHT_TOLEFT;
6461 else if (infoPtr->rcList.right < lpht->pt.x)
6462 lpht->flags |= LVHT_TORIGHT;
6464 if (infoPtr->rcList.top > lpht->pt.y)
6465 lpht->flags |= LVHT_ABOVE;
6466 else if (infoPtr->rcList.bottom < lpht->pt.y)
6467 lpht->flags |= LVHT_BELOW;
6469 TRACE("lpht->flags=0x%x\n", lpht->flags);
6470 if (lpht->flags) return -1;
6472 lpht->flags |= LVHT_NOWHERE;
6474 LISTVIEW_GetOrigin(infoPtr, &Origin);
6476 /* first deal with the large items */
6477 rcSearch.left = lpht->pt.x;
6478 rcSearch.top = lpht->pt.y;
6479 rcSearch.right = rcSearch.left + 1;
6480 rcSearch.bottom = rcSearch.top + 1;
6482 iterator_frameditems(&i, infoPtr, &rcSearch);
6483 iterator_next(&i); /* go to first item in the sequence */
6485 iterator_destroy(&i);
6487 TRACE("lpht->iItem=%d\n", iItem);
6488 if (iItem == -1) return -1;
6490 lvItem.mask = LVIF_STATE | LVIF_TEXT;
6491 if (uView == LVS_REPORT) lvItem.mask |= LVIF_INDENT;
6492 lvItem.stateMask = LVIS_STATEIMAGEMASK;
6493 if (uView == LVS_ICON) lvItem.stateMask |= LVIS_FOCUSED;
6494 lvItem.iItem = iItem;
6495 lvItem.iSubItem = 0;
6496 lvItem.pszText = szDispText;
6497 lvItem.cchTextMax = DISP_TEXT_SIZE;
6498 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return -1;
6499 if (!infoPtr->bFocus) lvItem.state &= ~LVIS_FOCUSED;
6501 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, &rcBox, NULL, &rcIcon, &rcState, &rcLabel);
6502 LISTVIEW_GetItemOrigin(infoPtr, iItem, &Position);
6503 opt.x = lpht->pt.x - Position.x - Origin.x;
6504 opt.y = lpht->pt.y - Position.y - Origin.y;
6506 if (uView == LVS_REPORT)
6510 UnionRect(&rcBounds, &rcIcon, &rcLabel);
6511 UnionRect(&rcBounds, &rcBounds, &rcState);
6513 TRACE("rcBounds=%s\n", wine_dbgstr_rect(&rcBounds));
6514 if (!PtInRect(&rcBounds, opt)) return -1;
6516 if (PtInRect(&rcIcon, opt))
6517 lpht->flags |= LVHT_ONITEMICON;
6518 else if (PtInRect(&rcLabel, opt))
6519 lpht->flags |= LVHT_ONITEMLABEL;
6520 else if (infoPtr->himlState && STATEIMAGEINDEX(lvItem.state) && PtInRect(&rcState, opt))
6521 lpht->flags |= LVHT_ONITEMSTATEICON;
6522 if (lpht->flags & LVHT_ONITEM)
6523 lpht->flags &= ~LVHT_NOWHERE;
6525 TRACE("lpht->flags=0x%x\n", lpht->flags);
6526 if (uView == LVS_REPORT && subitem)
6530 rcBounds.right = rcBounds.left;
6531 for (j = 0; j < DPA_GetPtrCount(infoPtr->hdpaColumns); j++)
6533 rcBounds.left = rcBounds.right;
6534 rcBounds.right += LISTVIEW_GetColumnWidth(infoPtr, j);
6535 if (PtInRect(&rcBounds, opt))
6543 if (select && !(uView == LVS_REPORT &&
6544 ((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) ||
6545 (infoPtr->dwStyle & LVS_OWNERDRAWFIXED))))
6547 if (uView == LVS_REPORT)
6549 UnionRect(&rcBounds, &rcIcon, &rcLabel);
6550 UnionRect(&rcBounds, &rcBounds, &rcState);
6552 if (!PtInRect(&rcBounds, opt)) iItem = -1;
6554 return lpht->iItem = iItem;
6558 /* LISTVIEW_InsertCompare: callback routine for comparing pszText members of the LV_ITEMS
6559 in a LISTVIEW on insert. Passed to DPA_Sort in LISTVIEW_InsertItem.
6560 This function should only be used for inserting items into a sorted list (LVM_INSERTITEM)
6561 and not during the processing of a LVM_SORTITEMS message. Applications should provide
6562 their own sort proc. when sending LVM_SORTITEMS.
6565 (remarks on LVITEM: LVM_INSERTITEM will insert the new item in the proper sort postion...
6567 LVS_SORTXXX must be specified,
6568 LVS_OWNERDRAW is not set,
6569 <item>.pszText is not LPSTR_TEXTCALLBACK.
6571 (LVS_SORT* flags): "For the LVS_SORTASCENDING... styles, item indices
6572 are sorted based on item text..."
6574 static INT WINAPI LISTVIEW_InsertCompare( LPVOID first, LPVOID second, LPARAM lParam)
6576 ITEM_INFO* lv_first = DPA_GetPtr( first, 0 );
6577 ITEM_INFO* lv_second = DPA_GetPtr( second, 0 );
6578 INT cmpv = textcmpWT(lv_first->hdr.pszText, lv_second->hdr.pszText, TRUE);
6580 /* if we're sorting descending, negate the return value */
6581 return (((const LISTVIEW_INFO *)lParam)->dwStyle & LVS_SORTDESCENDING) ? -cmpv : cmpv;
6586 * Inserts a new item in the listview control.
6589 * [I] infoPtr : valid pointer to the listview structure
6590 * [I] lpLVItem : item information
6591 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
6594 * SUCCESS : new item index
6597 static INT LISTVIEW_InsertItemT(LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isW)
6599 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
6604 BOOL is_sorted, has_changed;
6606 HWND hwndSelf = infoPtr->hwndSelf;
6608 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
6610 if (infoPtr->dwStyle & LVS_OWNERDATA) return infoPtr->nItemCount++;
6612 /* make sure it's an item, and not a subitem; cannot insert a subitem */
6613 if (!lpLVItem || lpLVItem->iSubItem) return -1;
6615 if (!is_assignable_item(lpLVItem, infoPtr->dwStyle)) return -1;
6617 if (!(lpItem = Alloc(sizeof(ITEM_INFO)))) return -1;
6619 /* insert item in listview control data structure */
6620 if ( !(hdpaSubItems = DPA_Create(8)) ) goto fail;
6621 if ( !DPA_SetPtr(hdpaSubItems, 0, lpItem) ) assert (FALSE);
6623 is_sorted = (infoPtr->dwStyle & (LVS_SORTASCENDING | LVS_SORTDESCENDING)) &&
6624 !(infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (LPSTR_TEXTCALLBACKW != lpLVItem->pszText);
6626 if (lpLVItem->iItem < 0 && !is_sorted) return -1;
6628 nItem = is_sorted ? infoPtr->nItemCount : min(lpLVItem->iItem, infoPtr->nItemCount);
6629 TRACE(" inserting at %d, sorted=%d, count=%d, iItem=%d\n", nItem, is_sorted, infoPtr->nItemCount, lpLVItem->iItem);
6630 nItem = DPA_InsertPtr( infoPtr->hdpaItems, nItem, hdpaSubItems );
6631 if (nItem == -1) goto fail;
6632 infoPtr->nItemCount++;
6634 /* shift indices first so they don't get tangled */
6635 LISTVIEW_ShiftIndices(infoPtr, nItem, 1);
6637 /* set the item attributes */
6638 if (lpLVItem->mask & (LVIF_GROUPID|LVIF_COLUMNS))
6640 /* full size structure expected - _WIN32IE >= 0x560 */
6643 else if (lpLVItem->mask & LVIF_INDENT)
6645 /* indent member expected - _WIN32IE >= 0x300 */
6646 memcpy(&item, lpLVItem, offsetof( LVITEMW, iGroupId ));
6650 /* minimal structure expected */
6651 memcpy(&item, lpLVItem, offsetof( LVITEMW, iIndent ));
6654 if (infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
6656 item.mask |= LVIF_STATE;
6657 item.stateMask |= LVIS_STATEIMAGEMASK;
6658 item.state &= ~LVIS_STATEIMAGEMASK;
6659 item.state |= INDEXTOSTATEIMAGEMASK(1);
6661 if (!set_main_item(infoPtr, &item, TRUE, isW, &has_changed)) goto undo;
6663 /* if we're sorted, sort the list, and update the index */
6666 DPA_Sort( infoPtr->hdpaItems, LISTVIEW_InsertCompare, (LPARAM)infoPtr );
6667 nItem = DPA_GetPtrIndex( infoPtr->hdpaItems, hdpaSubItems );
6668 assert(nItem != -1);
6671 /* make room for the position, if we are in the right mode */
6672 if ((uView == LVS_SMALLICON) || (uView == LVS_ICON))
6674 if (DPA_InsertPtr(infoPtr->hdpaPosX, nItem, 0) == -1)
6676 if (DPA_InsertPtr(infoPtr->hdpaPosY, nItem, 0) == -1)
6678 DPA_DeletePtr(infoPtr->hdpaPosX, nItem);
6683 /* send LVN_INSERTITEM notification */
6684 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
6686 nmlv.lParam = lpItem->lParam;
6687 notify_listview(infoPtr, LVN_INSERTITEM, &nmlv);
6688 if (!IsWindow(hwndSelf))
6691 /* align items (set position of each item) */
6692 if ((uView == LVS_SMALLICON || uView == LVS_ICON))
6696 if (infoPtr->dwStyle & LVS_ALIGNLEFT)
6697 LISTVIEW_NextIconPosLeft(infoPtr, &pt);
6699 LISTVIEW_NextIconPosTop(infoPtr, &pt);
6701 LISTVIEW_MoveIconTo(infoPtr, nItem, &pt, TRUE);
6704 /* now is the invalidation fun */
6705 LISTVIEW_ScrollOnInsert(infoPtr, nItem, 1);
6709 LISTVIEW_ShiftIndices(infoPtr, nItem, -1);
6710 DPA_DeletePtr(infoPtr->hdpaItems, nItem);
6711 infoPtr->nItemCount--;
6713 DPA_DeletePtr(hdpaSubItems, 0);
6714 DPA_Destroy (hdpaSubItems);
6721 * Redraws a range of items.
6724 * [I] infoPtr : valid pointer to the listview structure
6725 * [I] nFirst : first item
6726 * [I] nLast : last item
6732 static BOOL LISTVIEW_RedrawItems(const LISTVIEW_INFO *infoPtr, INT nFirst, INT nLast)
6736 if (nLast < nFirst || min(nFirst, nLast) < 0 ||
6737 max(nFirst, nLast) >= infoPtr->nItemCount)
6740 for (i = nFirst; i <= nLast; i++)
6741 LISTVIEW_InvalidateItem(infoPtr, i);
6748 * Scroll the content of a listview.
6751 * [I] infoPtr : valid pointer to the listview structure
6752 * [I] dx : horizontal scroll amount in pixels
6753 * [I] dy : vertical scroll amount in pixels
6760 * If the control is in report mode (LVS_REPORT) the control can
6761 * be scrolled only in line increments. "dy" will be rounded to the
6762 * nearest number of pixels that are a whole line. Ex: if line height
6763 * is 16 and an 8 is passed, the list will be scrolled by 16. If a 7
6764 * is passed, then the scroll will be 0. (per MSDN 7/2002)
6766 * For: (per experimentation with native control and CSpy ListView)
6767 * LVS_ICON dy=1 = 1 pixel (vertical only)
6769 * LVS_SMALLICON dy=1 = 1 pixel (vertical only)
6771 * LVS_LIST dx=1 = 1 column (horizontal only)
6772 * but will only scroll 1 column per message
6773 * no matter what the value.
6774 * dy must be 0 or FALSE returned.
6775 * LVS_REPORT dx=1 = 1 pixel
6779 static BOOL LISTVIEW_Scroll(LISTVIEW_INFO *infoPtr, INT dx, INT dy)
6781 switch(infoPtr->dwStyle & LVS_TYPEMASK) {
6783 dy += (dy < 0 ? -1 : 1) * infoPtr->nItemHeight/2;
6784 dy /= infoPtr->nItemHeight;
6787 if (dy != 0) return FALSE;
6794 if (dx != 0) LISTVIEW_HScroll(infoPtr, SB_INTERNAL, dx, 0);
6795 if (dy != 0) LISTVIEW_VScroll(infoPtr, SB_INTERNAL, dy, 0);
6802 * Sets the background color.
6805 * [I] infoPtr : valid pointer to the listview structure
6806 * [I] clrBk : background color
6812 static BOOL LISTVIEW_SetBkColor(LISTVIEW_INFO *infoPtr, COLORREF clrBk)
6814 TRACE("(clrBk=%x)\n", clrBk);
6816 if(infoPtr->clrBk != clrBk) {
6817 if (infoPtr->clrBk != CLR_NONE) DeleteObject(infoPtr->hBkBrush);
6818 infoPtr->clrBk = clrBk;
6819 if (clrBk == CLR_NONE)
6820 infoPtr->hBkBrush = (HBRUSH)GetClassLongPtrW(infoPtr->hwndSelf, GCLP_HBRBACKGROUND);
6822 infoPtr->hBkBrush = CreateSolidBrush(clrBk);
6823 LISTVIEW_InvalidateList(infoPtr);
6829 /* LISTVIEW_SetBkImage */
6831 /*** Helper for {Insert,Set}ColumnT *only* */
6832 static void column_fill_hditem(const LISTVIEW_INFO *infoPtr, HDITEMW *lphdi, INT nColumn,
6833 const LVCOLUMNW *lpColumn, BOOL isW)
6835 if (lpColumn->mask & LVCF_FMT)
6837 /* format member is valid */
6838 lphdi->mask |= HDI_FORMAT;
6840 /* set text alignment (leftmost column must be left-aligned) */
6841 if (nColumn == 0 || (lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_LEFT)
6842 lphdi->fmt |= HDF_LEFT;
6843 else if ((lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_RIGHT)
6844 lphdi->fmt |= HDF_RIGHT;
6845 else if ((lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_CENTER)
6846 lphdi->fmt |= HDF_CENTER;
6848 if (lpColumn->fmt & LVCFMT_BITMAP_ON_RIGHT)
6849 lphdi->fmt |= HDF_BITMAP_ON_RIGHT;
6851 if (lpColumn->fmt & LVCFMT_COL_HAS_IMAGES)
6853 lphdi->fmt |= HDF_IMAGE;
6854 lphdi->iImage = I_IMAGECALLBACK;
6858 if (lpColumn->mask & LVCF_WIDTH)
6860 lphdi->mask |= HDI_WIDTH;
6861 if(lpColumn->cx == LVSCW_AUTOSIZE_USEHEADER)
6863 /* make it fill the remainder of the controls width */
6867 for(item_index = 0; item_index < (nColumn - 1); item_index++)
6869 LISTVIEW_GetHeaderRect(infoPtr, item_index, &rcHeader);
6870 lphdi->cxy += rcHeader.right - rcHeader.left;
6873 /* retrieve the layout of the header */
6874 GetClientRect(infoPtr->hwndSelf, &rcHeader);
6875 TRACE("start cxy=%d rcHeader=%s\n", lphdi->cxy, wine_dbgstr_rect(&rcHeader));
6877 lphdi->cxy = (rcHeader.right - rcHeader.left) - lphdi->cxy;
6880 lphdi->cxy = lpColumn->cx;
6883 if (lpColumn->mask & LVCF_TEXT)
6885 lphdi->mask |= HDI_TEXT | HDI_FORMAT;
6886 lphdi->fmt |= HDF_STRING;
6887 lphdi->pszText = lpColumn->pszText;
6888 lphdi->cchTextMax = textlenT(lpColumn->pszText, isW);
6891 if (lpColumn->mask & LVCF_IMAGE)
6893 lphdi->mask |= HDI_IMAGE;
6894 lphdi->iImage = lpColumn->iImage;
6897 if (lpColumn->mask & LVCF_ORDER)
6899 lphdi->mask |= HDI_ORDER;
6900 lphdi->iOrder = lpColumn->iOrder;
6907 * Inserts a new column.
6910 * [I] infoPtr : valid pointer to the listview structure
6911 * [I] nColumn : column index
6912 * [I] lpColumn : column information
6913 * [I] isW : TRUE if lpColumn is Unicode, FALSE otherwise
6916 * SUCCESS : new column index
6919 static INT LISTVIEW_InsertColumnT(LISTVIEW_INFO *infoPtr, INT nColumn,
6920 const LVCOLUMNW *lpColumn, BOOL isW)
6922 COLUMN_INFO *lpColumnInfo;
6925 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
6927 TRACE("(nColumn=%d, lpColumn=%s, isW=%d)\n", nColumn, debuglvcolumn_t(lpColumn, isW), isW);
6929 if (!lpColumn || nColumn < 0) return -1;
6930 nColumn = min(nColumn, DPA_GetPtrCount(infoPtr->hdpaColumns));
6932 ZeroMemory(&hdi, sizeof(HDITEMW));
6933 column_fill_hditem(infoPtr, &hdi, nColumn, lpColumn, isW);
6936 * A mask not including LVCF_WIDTH turns into a mask of width, width 10
6937 * (can be seen in SPY) otherwise column never gets added.
6939 if (!(lpColumn->mask & LVCF_WIDTH)) {
6940 hdi.mask |= HDI_WIDTH;
6945 * when the iSubItem is available Windows copies it to the header lParam. It seems
6946 * to happen only in LVM_INSERTCOLUMN - not in LVM_SETCOLUMN
6948 if (lpColumn->mask & LVCF_SUBITEM)
6950 hdi.mask |= HDI_LPARAM;
6951 hdi.lParam = lpColumn->iSubItem;
6954 /* create header if not present */
6955 LISTVIEW_CreateHeader(infoPtr);
6956 if (!(LVS_NOCOLUMNHEADER & infoPtr->dwStyle) &&
6957 (LVS_REPORT == uView) && (WS_VISIBLE & infoPtr->dwStyle))
6959 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
6962 /* insert item in header control */
6963 nNewColumn = SendMessageW(infoPtr->hwndHeader,
6964 isW ? HDM_INSERTITEMW : HDM_INSERTITEMA,
6965 (WPARAM)nColumn, (LPARAM)&hdi);
6966 if (nNewColumn == -1) return -1;
6967 if (nNewColumn != nColumn) ERR("nColumn=%d, nNewColumn=%d\n", nColumn, nNewColumn);
6969 /* create our own column info */
6970 if (!(lpColumnInfo = Alloc(sizeof(COLUMN_INFO)))) goto fail;
6971 if (DPA_InsertPtr(infoPtr->hdpaColumns, nNewColumn, lpColumnInfo) == -1) goto fail;
6973 if (lpColumn->mask & LVCF_FMT) lpColumnInfo->fmt = lpColumn->fmt;
6974 if (!Header_GetItemRect(infoPtr->hwndHeader, nNewColumn, &lpColumnInfo->rcHeader)) goto fail;
6976 /* now we have to actually adjust the data */
6977 if (!(infoPtr->dwStyle & LVS_OWNERDATA) && infoPtr->nItemCount > 0)
6979 SUBITEM_INFO *lpSubItem;
6983 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
6985 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, nItem);
6986 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
6988 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
6989 if (lpSubItem->iSubItem >= nNewColumn)
6990 lpSubItem->iSubItem++;
6995 /* make space for the new column */
6996 LISTVIEW_ScrollColumns(infoPtr, nNewColumn + 1, lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left);
6997 LISTVIEW_UpdateItemSize(infoPtr);
7002 if (nNewColumn != -1) SendMessageW(infoPtr->hwndHeader, HDM_DELETEITEM, nNewColumn, 0);
7005 DPA_DeletePtr(infoPtr->hdpaColumns, nNewColumn);
7013 * Sets the attributes of a header item.
7016 * [I] infoPtr : valid pointer to the listview structure
7017 * [I] nColumn : column index
7018 * [I] lpColumn : column attributes
7019 * [I] isW: if TRUE, then lpColumn is a LPLVCOLUMNW, else it is a LPLVCOLUMNA
7025 static BOOL LISTVIEW_SetColumnT(const LISTVIEW_INFO *infoPtr, INT nColumn,
7026 const LVCOLUMNW *lpColumn, BOOL isW)
7028 HDITEMW hdi, hdiget;
7031 TRACE("(nColumn=%d, lpColumn=%s, isW=%d)\n", nColumn, debuglvcolumn_t(lpColumn, isW), isW);
7033 if (!lpColumn || nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
7035 ZeroMemory(&hdi, sizeof(HDITEMW));
7036 if (lpColumn->mask & LVCF_FMT)
7038 hdi.mask |= HDI_FORMAT;
7039 hdiget.mask = HDI_FORMAT;
7040 if (Header_GetItemW(infoPtr->hwndHeader, nColumn, &hdiget))
7041 hdi.fmt = hdiget.fmt & HDF_STRING;
7043 column_fill_hditem(infoPtr, &hdi, nColumn, lpColumn, isW);
7045 /* set header item attributes */
7046 bResult = SendMessageW(infoPtr->hwndHeader, isW ? HDM_SETITEMW : HDM_SETITEMA, (WPARAM)nColumn, (LPARAM)&hdi);
7047 if (!bResult) return FALSE;
7049 if (lpColumn->mask & LVCF_FMT)
7051 COLUMN_INFO *lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nColumn);
7052 int oldFmt = lpColumnInfo->fmt;
7054 lpColumnInfo->fmt = lpColumn->fmt;
7055 if ((oldFmt ^ lpColumn->fmt) & (LVCFMT_JUSTIFYMASK | LVCFMT_IMAGE))
7057 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7058 if (uView == LVS_REPORT) LISTVIEW_InvalidateColumn(infoPtr, nColumn);
7067 * Sets the column order array
7070 * [I] infoPtr : valid pointer to the listview structure
7071 * [I] iCount : number of elements in column order array
7072 * [I] lpiArray : pointer to column order array
7078 static BOOL LISTVIEW_SetColumnOrderArray(const LISTVIEW_INFO *infoPtr, INT iCount, const INT *lpiArray)
7080 FIXME("iCount %d lpiArray %p\n", iCount, lpiArray);
7091 * Sets the width of a column
7094 * [I] infoPtr : valid pointer to the listview structure
7095 * [I] nColumn : column index
7096 * [I] cx : column width
7102 static BOOL LISTVIEW_SetColumnWidth(LISTVIEW_INFO *infoPtr, INT nColumn, INT cx)
7104 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7105 WCHAR szDispText[DISP_TEXT_SIZE] = { 0 };
7109 TRACE("(nColumn=%d, cx=%d\n", nColumn, cx);
7111 /* set column width only if in report or list mode */
7112 if (uView != LVS_REPORT && uView != LVS_LIST) return FALSE;
7114 /* take care of invalid cx values */
7115 if(uView == LVS_REPORT && cx < -2) cx = LVSCW_AUTOSIZE;
7116 else if (uView == LVS_LIST && cx < 1) return FALSE;
7118 /* resize all columns if in LVS_LIST mode */
7119 if(uView == LVS_LIST)
7121 infoPtr->nItemWidth = cx;
7122 LISTVIEW_InvalidateList(infoPtr);
7126 if (nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
7128 if (cx == LVSCW_AUTOSIZE || (cx == LVSCW_AUTOSIZE_USEHEADER && nColumn < DPA_GetPtrCount(infoPtr->hdpaColumns) -1))
7133 lvItem.mask = LVIF_TEXT;
7135 lvItem.iSubItem = nColumn;
7136 lvItem.pszText = szDispText;
7137 lvItem.cchTextMax = DISP_TEXT_SIZE;
7138 for (; lvItem.iItem < infoPtr->nItemCount; lvItem.iItem++)
7140 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) continue;
7141 nLabelWidth = LISTVIEW_GetStringWidthT(infoPtr, lvItem.pszText, TRUE);
7142 if (max_cx < nLabelWidth) max_cx = nLabelWidth;
7144 if (infoPtr->himlSmall && (nColumn == 0 || (LISTVIEW_GetColumnInfo(infoPtr, nColumn)->fmt & LVCFMT_IMAGE)))
7145 max_cx += infoPtr->iconSize.cx;
7146 max_cx += TRAILING_LABEL_PADDING;
7149 /* autosize based on listview items width */
7150 if(cx == LVSCW_AUTOSIZE)
7152 else if(cx == LVSCW_AUTOSIZE_USEHEADER)
7154 /* if iCol is the last column make it fill the remainder of the controls width */
7155 if(nColumn == DPA_GetPtrCount(infoPtr->hdpaColumns) - 1)
7160 LISTVIEW_GetOrigin(infoPtr, &Origin);
7161 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcHeader);
7163 cx = infoPtr->rcList.right - Origin.x - rcHeader.left;
7167 /* Despite what the MS docs say, if this is not the last
7168 column, then MS resizes the column to the width of the
7169 largest text string in the column, including headers
7170 and items. This is different from LVSCW_AUTOSIZE in that
7171 LVSCW_AUTOSIZE ignores the header string length. */
7174 /* retrieve header text */
7175 hdi.mask = HDI_TEXT;
7176 hdi.cchTextMax = DISP_TEXT_SIZE;
7177 hdi.pszText = szDispText;
7178 if (Header_GetItemW(infoPtr->hwndHeader, nColumn, &hdi))
7180 HDC hdc = GetDC(infoPtr->hwndSelf);
7181 HFONT old_font = SelectObject(hdc, (HFONT)SendMessageW(infoPtr->hwndHeader, WM_GETFONT, 0, 0));
7184 if (GetTextExtentPoint32W(hdc, hdi.pszText, lstrlenW(hdi.pszText), &size))
7185 cx = size.cx + TRAILING_HEADER_PADDING;
7186 /* FIXME: Take into account the header image, if one is present */
7187 SelectObject(hdc, old_font);
7188 ReleaseDC(infoPtr->hwndSelf, hdc);
7190 cx = max (cx, max_cx);
7194 if (cx < 0) return FALSE;
7196 /* call header to update the column change */
7197 hdi.mask = HDI_WIDTH;
7199 TRACE("hdi.cxy=%d\n", hdi.cxy);
7200 return Header_SetItemW(infoPtr->hwndHeader, nColumn, &hdi);
7204 * Creates the checkbox imagelist. Helper for LISTVIEW_SetExtendedListViewStyle
7207 static HIMAGELIST LISTVIEW_CreateCheckBoxIL(const LISTVIEW_INFO *infoPtr)
7210 HBITMAP hbm_im, hbm_mask, hbm_orig;
7212 HBRUSH hbr_white = GetStockObject(WHITE_BRUSH);
7213 HBRUSH hbr_black = GetStockObject(BLACK_BRUSH);
7216 himl = ImageList_Create(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON),
7217 ILC_COLOR | ILC_MASK, 2, 2);
7218 hdc_wnd = GetDC(infoPtr->hwndSelf);
7219 hdc = CreateCompatibleDC(hdc_wnd);
7220 hbm_im = CreateCompatibleBitmap(hdc_wnd, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON));
7221 hbm_mask = CreateBitmap(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), 1, 1, NULL);
7222 ReleaseDC(infoPtr->hwndSelf, hdc_wnd);
7224 rc.left = rc.top = 0;
7225 rc.right = GetSystemMetrics(SM_CXSMICON);
7226 rc.bottom = GetSystemMetrics(SM_CYSMICON);
7228 hbm_orig = SelectObject(hdc, hbm_mask);
7229 FillRect(hdc, &rc, hbr_white);
7230 InflateRect(&rc, -2, -2);
7231 FillRect(hdc, &rc, hbr_black);
7233 SelectObject(hdc, hbm_im);
7234 DrawFrameControl(hdc, &rc, DFC_BUTTON, DFCS_BUTTONCHECK | DFCS_MONO);
7235 SelectObject(hdc, hbm_orig);
7236 ImageList_Add(himl, hbm_im, hbm_mask);
7238 SelectObject(hdc, hbm_im);
7239 DrawFrameControl(hdc, &rc, DFC_BUTTON, DFCS_BUTTONCHECK | DFCS_MONO | DFCS_CHECKED);
7240 SelectObject(hdc, hbm_orig);
7241 ImageList_Add(himl, hbm_im, hbm_mask);
7243 DeleteObject(hbm_mask);
7244 DeleteObject(hbm_im);
7252 * Sets the extended listview style.
7255 * [I] infoPtr : valid pointer to the listview structure
7257 * [I] dwStyle : style
7260 * SUCCESS : previous style
7263 static DWORD LISTVIEW_SetExtendedListViewStyle(LISTVIEW_INFO *infoPtr, DWORD dwMask, DWORD dwExStyle)
7265 DWORD dwOldExStyle = infoPtr->dwLvExStyle;
7269 infoPtr->dwLvExStyle = (dwOldExStyle & ~dwMask) | (dwExStyle & dwMask);
7271 infoPtr->dwLvExStyle = dwExStyle;
7273 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_CHECKBOXES)
7275 HIMAGELIST himl = 0;
7276 if(infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
7279 item.mask = LVIF_STATE;
7280 item.stateMask = LVIS_STATEIMAGEMASK;
7281 item.state = INDEXTOSTATEIMAGEMASK(1);
7282 LISTVIEW_SetItemState(infoPtr, -1, &item);
7284 himl = LISTVIEW_CreateCheckBoxIL(infoPtr);
7286 LISTVIEW_SetImageList(infoPtr, LVSIL_STATE, himl);
7289 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_HEADERDRAGDROP)
7293 /* if not already created */
7294 LISTVIEW_CreateHeader(infoPtr);
7296 dwStyle = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE);
7297 if (infoPtr->dwLvExStyle & LVS_EX_HEADERDRAGDROP)
7298 dwStyle |= HDS_DRAGDROP;
7300 dwStyle &= ~HDS_DRAGDROP;
7301 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, dwStyle);
7304 /* GRIDLINES adds decoration at top so changes sizes */
7305 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_GRIDLINES)
7307 LISTVIEW_UpdateSize(infoPtr);
7311 LISTVIEW_InvalidateList(infoPtr);
7312 return dwOldExStyle;
7317 * Sets the new hot cursor used during hot tracking and hover selection.
7320 * [I] infoPtr : valid pointer to the listview structure
7321 * [I] hCursor : the new hot cursor handle
7324 * Returns the previous hot cursor
7326 static HCURSOR LISTVIEW_SetHotCursor(LISTVIEW_INFO *infoPtr, HCURSOR hCursor)
7328 HCURSOR oldCursor = infoPtr->hHotCursor;
7330 infoPtr->hHotCursor = hCursor;
7338 * Sets the hot item index.
7341 * [I] infoPtr : valid pointer to the listview structure
7342 * [I] iIndex : index
7345 * SUCCESS : previous hot item index
7346 * FAILURE : -1 (no hot item)
7348 static INT LISTVIEW_SetHotItem(LISTVIEW_INFO *infoPtr, INT iIndex)
7350 INT iOldIndex = infoPtr->nHotItem;
7352 infoPtr->nHotItem = iIndex;
7360 * Sets the amount of time the cursor must hover over an item before it is selected.
7363 * [I] infoPtr : valid pointer to the listview structure
7364 * [I] dwHoverTime : hover time, if -1 the hover time is set to the default
7367 * Returns the previous hover time
7369 static DWORD LISTVIEW_SetHoverTime(LISTVIEW_INFO *infoPtr, DWORD dwHoverTime)
7371 DWORD oldHoverTime = infoPtr->dwHoverTime;
7373 infoPtr->dwHoverTime = dwHoverTime;
7375 return oldHoverTime;
7380 * Sets spacing for icons of LVS_ICON style.
7383 * [I] infoPtr : valid pointer to the listview structure
7384 * [I] cx : horizontal spacing (-1 = system spacing, 0 = autosize)
7385 * [I] cy : vertical spacing (-1 = system spacing, 0 = autosize)
7388 * MAKELONG(oldcx, oldcy)
7390 static DWORD LISTVIEW_SetIconSpacing(LISTVIEW_INFO *infoPtr, INT cx, INT cy)
7392 DWORD oldspacing = MAKELONG(infoPtr->iconSpacing.cx, infoPtr->iconSpacing.cy);
7393 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7395 TRACE("requested=(%d,%d)\n", cx, cy);
7397 /* this is supported only for LVS_ICON style */
7398 if (uView != LVS_ICON) return oldspacing;
7400 /* set to defaults, if instructed to */
7401 if (cx == -1) cx = GetSystemMetrics(SM_CXICONSPACING);
7402 if (cy == -1) cy = GetSystemMetrics(SM_CYICONSPACING);
7404 /* if 0 then compute width
7405 * FIXME: Should scan each item and determine max width of
7406 * icon or label, then make that the width */
7408 cx = infoPtr->iconSpacing.cx;
7410 /* if 0 then compute height */
7412 cy = infoPtr->iconSize.cy + 2 * infoPtr->ntmHeight +
7413 ICON_BOTTOM_PADDING + ICON_TOP_PADDING + LABEL_VERT_PADDING;
7416 infoPtr->iconSpacing.cx = cx;
7417 infoPtr->iconSpacing.cy = cy;
7419 TRACE("old=(%d,%d), new=(%d,%d), iconSize=(%d,%d), ntmH=%d\n",
7420 LOWORD(oldspacing), HIWORD(oldspacing), cx, cy,
7421 infoPtr->iconSize.cx, infoPtr->iconSize.cy,
7422 infoPtr->ntmHeight);
7424 /* these depend on the iconSpacing */
7425 LISTVIEW_UpdateItemSize(infoPtr);
7430 static inline void set_icon_size(SIZE *size, HIMAGELIST himl, BOOL small)
7434 if (himl && ImageList_GetIconSize(himl, &cx, &cy))
7441 size->cx = GetSystemMetrics(small ? SM_CXSMICON : SM_CXICON);
7442 size->cy = GetSystemMetrics(small ? SM_CYSMICON : SM_CYICON);
7451 * [I] infoPtr : valid pointer to the listview structure
7452 * [I] nType : image list type
7453 * [I] himl : image list handle
7456 * SUCCESS : old image list
7459 static HIMAGELIST LISTVIEW_SetImageList(LISTVIEW_INFO *infoPtr, INT nType, HIMAGELIST himl)
7461 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7462 INT oldHeight = infoPtr->nItemHeight;
7463 HIMAGELIST himlOld = 0;
7465 TRACE("(nType=%d, himl=%p\n", nType, himl);
7470 himlOld = infoPtr->himlNormal;
7471 infoPtr->himlNormal = himl;
7472 if (uView == LVS_ICON) set_icon_size(&infoPtr->iconSize, himl, FALSE);
7473 LISTVIEW_SetIconSpacing(infoPtr, 0, 0);
7477 himlOld = infoPtr->himlSmall;
7478 infoPtr->himlSmall = himl;
7479 if (uView != LVS_ICON) set_icon_size(&infoPtr->iconSize, himl, TRUE);
7483 himlOld = infoPtr->himlState;
7484 infoPtr->himlState = himl;
7485 set_icon_size(&infoPtr->iconStateSize, himl, TRUE);
7486 ImageList_SetBkColor(infoPtr->himlState, CLR_NONE);
7490 ERR("Unknown icon type=%d\n", nType);
7494 infoPtr->nItemHeight = LISTVIEW_CalculateItemHeight(infoPtr);
7495 if (infoPtr->nItemHeight != oldHeight)
7496 LISTVIEW_UpdateScroll(infoPtr);
7503 * Preallocates memory (does *not* set the actual count of items !)
7506 * [I] infoPtr : valid pointer to the listview structure
7507 * [I] nItems : item count (projected number of items to allocate)
7508 * [I] dwFlags : update flags
7514 static BOOL LISTVIEW_SetItemCount(LISTVIEW_INFO *infoPtr, INT nItems, DWORD dwFlags)
7516 TRACE("(nItems=%d, dwFlags=%x)\n", nItems, dwFlags);
7518 if (infoPtr->dwStyle & LVS_OWNERDATA)
7520 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7521 INT nOldCount = infoPtr->nItemCount;
7523 if (nItems < nOldCount)
7525 RANGE range = { nItems, nOldCount };
7526 ranges_del(infoPtr->selectionRanges, range);
7527 if (infoPtr->nFocusedItem >= nItems)
7529 LISTVIEW_SetItemFocus(infoPtr, -1);
7530 SetRectEmpty(&infoPtr->rcFocus);
7534 infoPtr->nItemCount = nItems;
7535 LISTVIEW_UpdateScroll(infoPtr);
7537 /* the flags are valid only in ownerdata report and list modes */
7538 if (uView == LVS_ICON || uView == LVS_SMALLICON) dwFlags = 0;
7540 if (!(dwFlags & LVSICF_NOSCROLL) && infoPtr->nFocusedItem != -1)
7541 LISTVIEW_EnsureVisible(infoPtr, infoPtr->nFocusedItem, FALSE);
7543 if (!(dwFlags & LVSICF_NOINVALIDATEALL))
7544 LISTVIEW_InvalidateList(infoPtr);
7551 LISTVIEW_GetOrigin(infoPtr, &Origin);
7552 nFrom = min(nOldCount, nItems);
7553 nTo = max(nOldCount, nItems);
7555 if (uView == LVS_REPORT)
7558 rcErase.top = nFrom * infoPtr->nItemHeight;
7559 rcErase.right = infoPtr->nItemWidth;
7560 rcErase.bottom = nTo * infoPtr->nItemHeight;
7561 OffsetRect(&rcErase, Origin.x, Origin.y);
7562 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
7563 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
7567 INT nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
7569 rcErase.left = (nFrom / nPerCol) * infoPtr->nItemWidth;
7570 rcErase.top = (nFrom % nPerCol) * infoPtr->nItemHeight;
7571 rcErase.right = rcErase.left + infoPtr->nItemWidth;
7572 rcErase.bottom = nPerCol * infoPtr->nItemHeight;
7573 OffsetRect(&rcErase, Origin.x, Origin.y);
7574 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
7575 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
7577 rcErase.left = (nFrom / nPerCol + 1) * infoPtr->nItemWidth;
7579 rcErase.right = (nTo / nPerCol + 1) * infoPtr->nItemWidth;
7580 rcErase.bottom = nPerCol * infoPtr->nItemHeight;
7581 OffsetRect(&rcErase, Origin.x, Origin.y);
7582 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
7583 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
7589 /* According to MSDN for non-LVS_OWNERDATA this is just
7590 * a performance issue. The control allocates its internal
7591 * data structures for the number of items specified. It
7592 * cuts down on the number of memory allocations. Therefore
7593 * we will just issue a WARN here
7595 WARN("for non-ownerdata performance option not implemented.\n");
7603 * Sets the position of an item.
7606 * [I] infoPtr : valid pointer to the listview structure
7607 * [I] nItem : item index
7608 * [I] pt : coordinate
7614 static BOOL LISTVIEW_SetItemPosition(LISTVIEW_INFO *infoPtr, INT nItem, POINT pt)
7616 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7619 TRACE("(nItem=%d, &pt=%s\n", nItem, wine_dbgstr_point(&pt));
7621 if (nItem < 0 || nItem >= infoPtr->nItemCount ||
7622 !(uView == LVS_ICON || uView == LVS_SMALLICON)) return FALSE;
7624 LISTVIEW_GetOrigin(infoPtr, &Origin);
7626 /* This point value seems to be an undocumented feature.
7627 * The best guess is that it means either at the origin,
7628 * or at true beginning of the list. I will assume the origin. */
7629 if ((pt.x == -1) && (pt.y == -1))
7632 if (uView == LVS_ICON)
7634 pt.x -= (infoPtr->nItemWidth - infoPtr->iconSize.cx) / 2;
7635 pt.y -= ICON_TOP_PADDING;
7640 infoPtr->bAutoarrange = FALSE;
7642 return LISTVIEW_MoveIconTo(infoPtr, nItem, &pt, FALSE);
7647 * Sets the state of one or many items.
7650 * [I] infoPtr : valid pointer to the listview structure
7651 * [I] nItem : item index
7652 * [I] lpLVItem : item or subitem info
7658 static BOOL LISTVIEW_SetItemState(LISTVIEW_INFO *infoPtr, INT nItem, const LVITEMW *lpLVItem)
7660 BOOL bResult = TRUE;
7663 lvItem.iItem = nItem;
7664 lvItem.iSubItem = 0;
7665 lvItem.mask = LVIF_STATE;
7666 lvItem.state = lpLVItem->state;
7667 lvItem.stateMask = lpLVItem->stateMask;
7668 TRACE("lvItem=%s\n", debuglvitem_t(&lvItem, TRUE));
7672 /* apply to all items */
7673 for (lvItem.iItem = 0; lvItem.iItem < infoPtr->nItemCount; lvItem.iItem++)
7674 if (!LISTVIEW_SetItemT(infoPtr, &lvItem, TRUE)) bResult = FALSE;
7677 bResult = LISTVIEW_SetItemT(infoPtr, &lvItem, TRUE);
7680 * Update selection mark
7682 * Investigation on windows 2k showed that selection mark was updated
7683 * whenever a new selection was made, but if the selected item was
7684 * unselected it was not updated.
7686 * we are probably still not 100% accurate, but this at least sets the
7687 * proper selection mark when it is needed
7690 if (bResult && (lvItem.state & lvItem.stateMask & LVIS_SELECTED) &&
7691 (infoPtr->nSelectionMark == -1))
7694 for (i = 0; i < infoPtr->nItemCount; i++)
7696 if (infoPtr->uCallbackMask & LVIS_SELECTED)
7698 if (LISTVIEW_GetItemState(infoPtr, i, LVIS_SELECTED))
7700 infoPtr->nSelectionMark = i;
7704 else if (ranges_contain(infoPtr->selectionRanges, i))
7706 infoPtr->nSelectionMark = i;
7717 * Sets the text of an item or subitem.
7720 * [I] hwnd : window handle
7721 * [I] nItem : item index
7722 * [I] lpLVItem : item or subitem info
7723 * [I] isW : TRUE if input is Unicode
7729 static BOOL LISTVIEW_SetItemTextT(LISTVIEW_INFO *infoPtr, INT nItem, const LVITEMW *lpLVItem, BOOL isW)
7733 if (nItem < 0 && nItem >= infoPtr->nItemCount) return FALSE;
7735 lvItem.iItem = nItem;
7736 lvItem.iSubItem = lpLVItem->iSubItem;
7737 lvItem.mask = LVIF_TEXT;
7738 lvItem.pszText = lpLVItem->pszText;
7739 lvItem.cchTextMax = lpLVItem->cchTextMax;
7741 TRACE("(nItem=%d, lpLVItem=%s, isW=%d)\n", nItem, debuglvitem_t(&lvItem, isW), isW);
7743 return LISTVIEW_SetItemT(infoPtr, &lvItem, isW);
7748 * Set item index that marks the start of a multiple selection.
7751 * [I] infoPtr : valid pointer to the listview structure
7752 * [I] nIndex : index
7755 * Index number or -1 if there is no selection mark.
7757 static INT LISTVIEW_SetSelectionMark(LISTVIEW_INFO *infoPtr, INT nIndex)
7759 INT nOldIndex = infoPtr->nSelectionMark;
7761 TRACE("(nIndex=%d)\n", nIndex);
7763 infoPtr->nSelectionMark = nIndex;
7770 * Sets the text background color.
7773 * [I] infoPtr : valid pointer to the listview structure
7774 * [I] clrTextBk : text background color
7780 static BOOL LISTVIEW_SetTextBkColor(LISTVIEW_INFO *infoPtr, COLORREF clrTextBk)
7782 TRACE("(clrTextBk=%x)\n", clrTextBk);
7784 if (infoPtr->clrTextBk != clrTextBk)
7786 infoPtr->clrTextBk = clrTextBk;
7787 LISTVIEW_InvalidateList(infoPtr);
7795 * Sets the text foreground color.
7798 * [I] infoPtr : valid pointer to the listview structure
7799 * [I] clrText : text color
7805 static BOOL LISTVIEW_SetTextColor (LISTVIEW_INFO *infoPtr, COLORREF clrText)
7807 TRACE("(clrText=%x)\n", clrText);
7809 if (infoPtr->clrText != clrText)
7811 infoPtr->clrText = clrText;
7812 LISTVIEW_InvalidateList(infoPtr);
7820 * Determines which listview item is located at the specified position.
7823 * [I] infoPtr : valid pointer to the listview structure
7824 * [I] hwndNewToolTip : handle to new ToolTip
7829 static HWND LISTVIEW_SetToolTips( LISTVIEW_INFO *infoPtr, HWND hwndNewToolTip)
7831 HWND hwndOldToolTip = infoPtr->hwndToolTip;
7832 infoPtr->hwndToolTip = hwndNewToolTip;
7833 return hwndOldToolTip;
7838 * sets the Unicode character format flag for the control
7840 * [I] infoPtr :valid pointer to the listview structure
7841 * [I] fUnicode :true to switch to UNICODE false to switch to ANSI
7844 * Old Unicode Format
7846 static BOOL LISTVIEW_SetUnicodeFormat( LISTVIEW_INFO *infoPtr, BOOL fUnicode)
7848 BOOL rc = infoPtr->notifyFormat;
7849 infoPtr->notifyFormat = (fUnicode)?NFR_UNICODE:NFR_ANSI;
7853 /* LISTVIEW_SetWorkAreas */
7857 * Callback internally used by LISTVIEW_SortItems() in response of LVM_SORTITEMS
7860 * [I] first : pointer to first ITEM_INFO to compare
7861 * [I] second : pointer to second ITEM_INFO to compare
7862 * [I] lParam : HWND of control
7865 * if first comes before second : negative
7866 * if first comes after second : positive
7867 * if first and second are equivalent : zero
7869 static INT WINAPI LISTVIEW_CallBackCompare(LPVOID first, LPVOID second, LPARAM lParam)
7871 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)lParam;
7872 ITEM_INFO* lv_first = DPA_GetPtr( first, 0 );
7873 ITEM_INFO* lv_second = DPA_GetPtr( second, 0 );
7875 /* Forward the call to the client defined callback */
7876 return (infoPtr->pfnCompare)( lv_first->lParam , lv_second->lParam, infoPtr->lParamSort );
7881 * Callback internally used by LISTVIEW_SortItems() in response of LVM_SORTITEMSEX
7884 * [I] first : pointer to first ITEM_INFO to compare
7885 * [I] second : pointer to second ITEM_INFO to compare
7886 * [I] lParam : HWND of control
7889 * if first comes before second : negative
7890 * if first comes after second : positive
7891 * if first and second are equivalent : zero
7893 static INT WINAPI LISTVIEW_CallBackCompareEx(LPVOID first, LPVOID second, LPARAM lParam)
7895 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)lParam;
7896 INT first_idx = DPA_GetPtrIndex( infoPtr->hdpaItems, first );
7897 INT second_idx = DPA_GetPtrIndex( infoPtr->hdpaItems, second );
7899 /* Forward the call to the client defined callback */
7900 return (infoPtr->pfnCompare)( first_idx, second_idx, infoPtr->lParamSort );
7905 * Sorts the listview items.
7908 * [I] infoPtr : valid pointer to the listview structure
7909 * [I] pfnCompare : application-defined value
7910 * [I] lParamSort : pointer to comparison callback
7911 * [I] IsEx : TRUE when LVM_SORTITEMSEX used
7917 static BOOL LISTVIEW_SortItems(LISTVIEW_INFO *infoPtr, PFNLVCOMPARE pfnCompare,
7918 LPARAM lParamSort, BOOL IsEx)
7920 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
7923 LPVOID selectionMarkItem = NULL;
7924 LPVOID focusedItem = NULL;
7927 TRACE("(pfnCompare=%p, lParamSort=%lx)\n", pfnCompare, lParamSort);
7929 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
7931 if (!pfnCompare) return FALSE;
7932 if (!infoPtr->hdpaItems) return FALSE;
7934 /* if there are 0 or 1 items, there is no need to sort */
7935 if (infoPtr->nItemCount < 2) return TRUE;
7937 /* clear selection */
7938 ranges_clear(infoPtr->selectionRanges);
7940 /* save selection mark and focused item */
7941 if (infoPtr->nSelectionMark >= 0)
7942 selectionMarkItem = DPA_GetPtr(infoPtr->hdpaItems, infoPtr->nSelectionMark);
7943 if (infoPtr->nFocusedItem >= 0)
7944 focusedItem = DPA_GetPtr(infoPtr->hdpaItems, infoPtr->nFocusedItem);
7946 infoPtr->pfnCompare = pfnCompare;
7947 infoPtr->lParamSort = lParamSort;
7949 DPA_Sort(infoPtr->hdpaItems, LISTVIEW_CallBackCompareEx, (LPARAM)infoPtr);
7951 DPA_Sort(infoPtr->hdpaItems, LISTVIEW_CallBackCompare, (LPARAM)infoPtr);
7953 /* restore selection ranges */
7954 for (i=0; i < infoPtr->nItemCount; i++)
7956 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, i);
7957 lpItem = DPA_GetPtr(hdpaSubItems, 0);
7959 if (lpItem->state & LVIS_SELECTED)
7960 ranges_additem(infoPtr->selectionRanges, i);
7962 /* restore selection mark and focused item */
7963 infoPtr->nSelectionMark = DPA_GetPtrIndex(infoPtr->hdpaItems, selectionMarkItem);
7964 infoPtr->nFocusedItem = DPA_GetPtrIndex(infoPtr->hdpaItems, focusedItem);
7966 /* I believe nHotItem should be left alone, see LISTVIEW_ShiftIndices */
7968 /* refresh the display */
7969 if (uView != LVS_ICON && uView != LVS_SMALLICON)
7970 LISTVIEW_InvalidateList(infoPtr);
7977 * Update theme handle after a theme change.
7980 * [I] infoPtr : valid pointer to the listview structure
7984 * FAILURE : something else
7986 static LRESULT LISTVIEW_ThemeChanged(const LISTVIEW_INFO *infoPtr)
7988 HTHEME theme = GetWindowTheme(infoPtr->hwndSelf);
7989 CloseThemeData(theme);
7990 OpenThemeData(infoPtr->hwndSelf, themeClass);
7996 * Updates an items or rearranges the listview control.
7999 * [I] infoPtr : valid pointer to the listview structure
8000 * [I] nItem : item index
8006 static BOOL LISTVIEW_Update(LISTVIEW_INFO *infoPtr, INT nItem)
8008 TRACE("(nItem=%d)\n", nItem);
8010 if (nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
8012 /* rearrange with default alignment style */
8013 if (is_autoarrange(infoPtr))
8014 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
8016 LISTVIEW_InvalidateItem(infoPtr, nItem);
8023 * Draw the track line at the place defined in the infoPtr structure.
8024 * The line is drawn with a XOR pen so drawing the line for the second time
8025 * in the same place erases the line.
8028 * [I] infoPtr : valid pointer to the listview structure
8034 static BOOL LISTVIEW_DrawTrackLine(const LISTVIEW_INFO *infoPtr)
8040 if (infoPtr->xTrackLine == -1)
8043 if (!(hdc = GetDC(infoPtr->hwndSelf)))
8045 hOldPen = SelectObject(hdc, GetStockObject(BLACK_PEN));
8046 oldROP = SetROP2(hdc, R2_XORPEN);
8047 MoveToEx(hdc, infoPtr->xTrackLine, infoPtr->rcList.top, NULL);
8048 LineTo(hdc, infoPtr->xTrackLine, infoPtr->rcList.bottom);
8049 SetROP2(hdc, oldROP);
8050 SelectObject(hdc, hOldPen);
8051 ReleaseDC(infoPtr->hwndSelf, hdc);
8057 * Called when an edit control should be displayed. This function is called after
8058 * we are sure that there was a single click - not a double click (this is a TIMERPROC).
8061 * [I] hwnd : Handle to the listview
8062 * [I] uMsg : WM_TIMER (ignored)
8063 * [I] idEvent : The timer ID interpreted as a pointer to a DELAYED_EDIT_ITEM struct
8064 * [I] dwTimer : The elapsed time (ignored)
8069 static VOID CALLBACK LISTVIEW_DelayedEditItem(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
8071 DELAYED_ITEM_EDIT *editItem = (DELAYED_ITEM_EDIT *)idEvent;
8072 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
8074 KillTimer(hwnd, idEvent);
8075 editItem->fEnabled = FALSE;
8076 /* check if the item is still selected */
8077 if (infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, editItem->iItem, LVIS_SELECTED))
8078 LISTVIEW_EditLabelT(infoPtr, editItem->iItem, TRUE);
8083 * Creates the listview control - the WM_NCCREATE phase.
8086 * [I] hwnd : window handle
8087 * [I] lpcs : the create parameters
8093 static LRESULT LISTVIEW_NCCreate(HWND hwnd, const CREATESTRUCTW *lpcs)
8095 LISTVIEW_INFO *infoPtr;
8098 TRACE("(lpcs=%p)\n", lpcs);
8100 /* initialize info pointer */
8101 infoPtr = Alloc(sizeof(LISTVIEW_INFO));
8102 if (!infoPtr) return FALSE;
8104 SetWindowLongPtrW(hwnd, 0, (DWORD_PTR)infoPtr);
8106 infoPtr->hwndSelf = hwnd;
8107 infoPtr->dwStyle = lpcs->style; /* Note: may be changed in WM_CREATE */
8108 /* determine the type of structures to use */
8109 infoPtr->hwndNotify = lpcs->hwndParent;
8110 /* infoPtr->notifyFormat will be filled in WM_CREATE */
8112 /* initialize color information */
8113 infoPtr->clrBk = CLR_NONE;
8114 infoPtr->clrText = CLR_DEFAULT;
8115 infoPtr->clrTextBk = CLR_DEFAULT;
8116 LISTVIEW_SetBkColor(infoPtr, comctl32_color.clrWindow);
8118 /* set default values */
8119 infoPtr->nFocusedItem = -1;
8120 infoPtr->nSelectionMark = -1;
8121 infoPtr->nHotItem = -1;
8122 infoPtr->bRedraw = TRUE;
8123 infoPtr->bNoItemMetrics = TRUE;
8124 infoPtr->bDoChangeNotify = TRUE;
8125 infoPtr->iconSpacing.cx = GetSystemMetrics(SM_CXICONSPACING);
8126 infoPtr->iconSpacing.cy = GetSystemMetrics(SM_CYICONSPACING);
8127 infoPtr->nEditLabelItem = -1;
8128 infoPtr->dwHoverTime = -1; /* default system hover time */
8129 infoPtr->nMeasureItemHeight = 0;
8130 infoPtr->xTrackLine = -1; /* no track line */
8131 infoPtr->itemEdit.fEnabled = FALSE;
8133 /* get default font (icon title) */
8134 SystemParametersInfoW(SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
8135 infoPtr->hDefaultFont = CreateFontIndirectW(&logFont);
8136 infoPtr->hFont = infoPtr->hDefaultFont;
8137 LISTVIEW_SaveTextMetrics(infoPtr);
8139 /* allocate memory for the data structure */
8140 if (!(infoPtr->selectionRanges = ranges_create(10))) goto fail;
8141 if (!(infoPtr->hdpaItems = DPA_Create(10))) goto fail;
8142 if (!(infoPtr->hdpaPosX = DPA_Create(10))) goto fail;
8143 if (!(infoPtr->hdpaPosY = DPA_Create(10))) goto fail;
8144 if (!(infoPtr->hdpaColumns = DPA_Create(10))) goto fail;
8148 DestroyWindow(infoPtr->hwndHeader);
8149 ranges_destroy(infoPtr->selectionRanges);
8150 DPA_Destroy(infoPtr->hdpaItems);
8151 DPA_Destroy(infoPtr->hdpaPosX);
8152 DPA_Destroy(infoPtr->hdpaPosY);
8153 DPA_Destroy(infoPtr->hdpaColumns);
8160 * Creates the listview control - the WM_CREATE phase. Most of the data is
8161 * already set up in LISTVIEW_NCCreate
8164 * [I] hwnd : window handle
8165 * [I] lpcs : the create parameters
8171 static LRESULT LISTVIEW_Create(HWND hwnd, const CREATESTRUCTW *lpcs)
8173 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
8174 UINT uView = lpcs->style & LVS_TYPEMASK;
8176 TRACE("(lpcs=%p)\n", lpcs);
8178 infoPtr->dwStyle = lpcs->style;
8179 infoPtr->notifyFormat = SendMessageW(infoPtr->hwndNotify, WM_NOTIFYFORMAT,
8180 (WPARAM)infoPtr->hwndSelf, (LPARAM)NF_QUERY);
8182 if ((uView == LVS_REPORT) && (lpcs->style & WS_VISIBLE))
8184 if (LISTVIEW_CreateHeader(infoPtr) < 0) return -1;
8187 infoPtr->hwndHeader = 0;
8189 /* init item size to avoid division by 0 */
8190 LISTVIEW_UpdateItemSize (infoPtr);
8192 if (uView == LVS_REPORT)
8194 if (!(LVS_NOCOLUMNHEADER & lpcs->style) && (WS_VISIBLE & lpcs->style))
8196 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
8198 LISTVIEW_UpdateScroll(infoPtr);
8201 OpenThemeData(hwnd, themeClass);
8203 /* initialize the icon sizes */
8204 set_icon_size(&infoPtr->iconSize, infoPtr->himlNormal, uView != LVS_ICON);
8205 set_icon_size(&infoPtr->iconStateSize, infoPtr->himlState, TRUE);
8211 * Destroys the listview control.
8214 * [I] infoPtr : valid pointer to the listview structure
8220 static LRESULT LISTVIEW_Destroy(const LISTVIEW_INFO *infoPtr)
8222 HTHEME theme = GetWindowTheme(infoPtr->hwndSelf);
8223 CloseThemeData(theme);
8229 * Enables the listview control.
8232 * [I] infoPtr : valid pointer to the listview structure
8233 * [I] bEnable : specifies whether to enable or disable the window
8239 static BOOL LISTVIEW_Enable(const LISTVIEW_INFO *infoPtr, BOOL bEnable)
8241 if (infoPtr->dwStyle & LVS_OWNERDRAWFIXED)
8242 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
8248 * Erases the background of the listview control.
8251 * [I] infoPtr : valid pointer to the listview structure
8252 * [I] hdc : device context handle
8258 static inline BOOL LISTVIEW_EraseBkgnd(const LISTVIEW_INFO *infoPtr, HDC hdc)
8262 TRACE("(hdc=%p)\n", hdc);
8264 if (!GetClipBox(hdc, &rc)) return FALSE;
8266 /* for double buffered controls we need to do this during refresh */
8267 if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) return FALSE;
8269 return LISTVIEW_FillBkgnd(infoPtr, hdc, &rc);
8275 * Helper function for LISTVIEW_[HV]Scroll *only*.
8276 * Performs vertical/horizontal scrolling by a give amount.
8279 * [I] infoPtr : valid pointer to the listview structure
8280 * [I] dx : amount of horizontal scroll
8281 * [I] dy : amount of vertical scroll
8283 static void scroll_list(LISTVIEW_INFO *infoPtr, INT dx, INT dy)
8285 /* now we can scroll the list */
8286 ScrollWindowEx(infoPtr->hwndSelf, dx, dy, &infoPtr->rcList,
8287 &infoPtr->rcList, 0, 0, SW_ERASE | SW_INVALIDATE);
8288 /* if we have focus, adjust rect */
8289 OffsetRect(&infoPtr->rcFocus, dx, dy);
8290 UpdateWindow(infoPtr->hwndSelf);
8295 * Performs vertical scrolling.
8298 * [I] infoPtr : valid pointer to the listview structure
8299 * [I] nScrollCode : scroll code
8300 * [I] nScrollDiff : units to scroll in SB_INTERNAL mode, 0 otherwise
8301 * [I] hScrollWnd : scrollbar control window handle
8307 * SB_LINEUP/SB_LINEDOWN:
8308 * for LVS_ICON, LVS_SMALLICON is 37 by experiment
8309 * for LVS_REPORT is 1 line
8310 * for LVS_LIST cannot occur
8313 static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
8314 INT nScrollDiff, HWND hScrollWnd)
8316 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
8317 INT nOldScrollPos, nNewScrollPos;
8318 SCROLLINFO scrollInfo;
8321 TRACE("(nScrollCode=%d(%s), nScrollDiff=%d)\n", nScrollCode,
8322 debugscrollcode(nScrollCode), nScrollDiff);
8324 if (infoPtr->hwndEdit) SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
8326 scrollInfo.cbSize = sizeof(SCROLLINFO);
8327 scrollInfo.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_TRACKPOS;
8329 is_an_icon = ((uView == LVS_ICON) || (uView == LVS_SMALLICON));
8331 if (!GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo)) return 1;
8333 nOldScrollPos = scrollInfo.nPos;
8334 switch (nScrollCode)
8340 nScrollDiff = (is_an_icon) ? -LISTVIEW_SCROLL_ICON_LINE_SIZE : -1;
8344 nScrollDiff = (is_an_icon) ? LISTVIEW_SCROLL_ICON_LINE_SIZE : 1;
8348 nScrollDiff = -scrollInfo.nPage;
8352 nScrollDiff = scrollInfo.nPage;
8355 case SB_THUMBPOSITION:
8357 nScrollDiff = scrollInfo.nTrackPos - scrollInfo.nPos;
8364 /* quit right away if pos isn't changing */
8365 if (nScrollDiff == 0) return 0;
8367 /* calculate new position, and handle overflows */
8368 nNewScrollPos = scrollInfo.nPos + nScrollDiff;
8369 if (nScrollDiff > 0) {
8370 if (nNewScrollPos < nOldScrollPos ||
8371 nNewScrollPos > scrollInfo.nMax)
8372 nNewScrollPos = scrollInfo.nMax;
8374 if (nNewScrollPos > nOldScrollPos ||
8375 nNewScrollPos < scrollInfo.nMin)
8376 nNewScrollPos = scrollInfo.nMin;
8379 /* set the new position, and reread in case it changed */
8380 scrollInfo.fMask = SIF_POS;
8381 scrollInfo.nPos = nNewScrollPos;
8382 nNewScrollPos = SetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo, TRUE);
8384 /* carry on only if it really changed */
8385 if (nNewScrollPos == nOldScrollPos) return 0;
8387 /* now adjust to client coordinates */
8388 nScrollDiff = nOldScrollPos - nNewScrollPos;
8389 if (uView == LVS_REPORT) nScrollDiff *= infoPtr->nItemHeight;
8391 /* and scroll the window */
8392 scroll_list(infoPtr, 0, nScrollDiff);
8399 * Performs horizontal scrolling.
8402 * [I] infoPtr : valid pointer to the listview structure
8403 * [I] nScrollCode : scroll code
8404 * [I] nScrollDiff : units to scroll in SB_INTERNAL mode, 0 otherwise
8405 * [I] hScrollWnd : scrollbar control window handle
8411 * SB_LINELEFT/SB_LINERIGHT:
8412 * for LVS_ICON, LVS_SMALLICON 1 pixel
8413 * for LVS_REPORT is 1 pixel
8414 * for LVS_LIST is 1 column --> which is a 1 because the
8415 * scroll is based on columns not pixels
8418 static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
8419 INT nScrollDiff, HWND hScrollWnd)
8421 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
8422 INT nOldScrollPos, nNewScrollPos;
8423 SCROLLINFO scrollInfo;
8425 TRACE("(nScrollCode=%d(%s), nScrollDiff=%d)\n", nScrollCode,
8426 debugscrollcode(nScrollCode), nScrollDiff);
8428 if (infoPtr->hwndEdit) SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
8430 scrollInfo.cbSize = sizeof(SCROLLINFO);
8431 scrollInfo.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_TRACKPOS;
8433 if (!GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo)) return 1;
8435 nOldScrollPos = scrollInfo.nPos;
8437 switch (nScrollCode)
8451 nScrollDiff = -scrollInfo.nPage;
8455 nScrollDiff = scrollInfo.nPage;
8458 case SB_THUMBPOSITION:
8460 nScrollDiff = scrollInfo.nTrackPos - scrollInfo.nPos;
8467 /* quit right away if pos isn't changing */
8468 if (nScrollDiff == 0) return 0;
8470 /* calculate new position, and handle overflows */
8471 nNewScrollPos = scrollInfo.nPos + nScrollDiff;
8472 if (nScrollDiff > 0) {
8473 if (nNewScrollPos < nOldScrollPos ||
8474 nNewScrollPos > scrollInfo.nMax)
8475 nNewScrollPos = scrollInfo.nMax;
8477 if (nNewScrollPos > nOldScrollPos ||
8478 nNewScrollPos < scrollInfo.nMin)
8479 nNewScrollPos = scrollInfo.nMin;
8482 /* set the new position, and reread in case it changed */
8483 scrollInfo.fMask = SIF_POS;
8484 scrollInfo.nPos = nNewScrollPos;
8485 nNewScrollPos = SetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo, TRUE);
8487 /* carry on only if it really changed */
8488 if (nNewScrollPos == nOldScrollPos) return 0;
8490 if(uView == LVS_REPORT)
8491 LISTVIEW_UpdateHeaderSize(infoPtr, nNewScrollPos);
8493 /* now adjust to client coordinates */
8494 nScrollDiff = nOldScrollPos - nNewScrollPos;
8495 if (uView == LVS_LIST) nScrollDiff *= infoPtr->nItemWidth;
8497 /* and scroll the window */
8498 scroll_list(infoPtr, nScrollDiff, 0);
8503 static LRESULT LISTVIEW_MouseWheel(LISTVIEW_INFO *infoPtr, INT wheelDelta)
8505 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
8506 INT gcWheelDelta = 0;
8507 INT pulScrollLines = 3;
8508 SCROLLINFO scrollInfo;
8510 TRACE("(wheelDelta=%d)\n", wheelDelta);
8512 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
8513 gcWheelDelta -= wheelDelta;
8515 scrollInfo.cbSize = sizeof(SCROLLINFO);
8516 scrollInfo.fMask = SIF_POS;
8523 * listview should be scrolled by a multiple of 37 dependently on its dimension or its visible item number
8524 * should be fixed in the future.
8526 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, (gcWheelDelta < 0) ?
8527 -LISTVIEW_SCROLL_ICON_LINE_SIZE : LISTVIEW_SCROLL_ICON_LINE_SIZE, 0);
8531 if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
8533 int cLineScroll = min(LISTVIEW_GetCountPerColumn(infoPtr), pulScrollLines);
8534 cLineScroll *= (gcWheelDelta / WHEEL_DELTA);
8535 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, cLineScroll, 0);
8540 LISTVIEW_HScroll(infoPtr, (gcWheelDelta < 0) ? SB_LINELEFT : SB_LINERIGHT, 0, 0);
8551 * [I] infoPtr : valid pointer to the listview structure
8552 * [I] nVirtualKey : virtual key
8553 * [I] lKeyData : key data
8558 static LRESULT LISTVIEW_KeyDown(LISTVIEW_INFO *infoPtr, INT nVirtualKey, LONG lKeyData)
8560 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
8561 HWND hwndSelf = infoPtr->hwndSelf;
8563 NMLVKEYDOWN nmKeyDown;
8565 TRACE("(nVirtualKey=%d, lKeyData=%d)\n", nVirtualKey, lKeyData);
8567 /* send LVN_KEYDOWN notification */
8568 nmKeyDown.wVKey = nVirtualKey;
8569 nmKeyDown.flags = 0;
8570 notify_hdr(infoPtr, LVN_KEYDOWN, &nmKeyDown.hdr);
8571 if (!IsWindow(hwndSelf))
8574 switch (nVirtualKey)
8577 nItem = infoPtr->nFocusedItem;
8578 if (infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
8579 toggle_checkbox_state(infoPtr, infoPtr->nFocusedItem);
8583 if ((infoPtr->nItemCount > 0) && (infoPtr->nFocusedItem != -1))
8585 if (!notify(infoPtr, NM_RETURN)) return 0;
8586 if (!notify(infoPtr, LVN_ITEMACTIVATE)) return 0;
8591 if (infoPtr->nItemCount > 0)
8596 if (infoPtr->nItemCount > 0)
8597 nItem = infoPtr->nItemCount - 1;
8601 nItem = ListView_GetNextItem(infoPtr->hwndSelf, infoPtr->nFocusedItem, LVNI_TOLEFT);
8605 nItem = ListView_GetNextItem(infoPtr->hwndSelf, infoPtr->nFocusedItem, LVNI_ABOVE);
8609 nItem = ListView_GetNextItem(infoPtr->hwndSelf, infoPtr->nFocusedItem, LVNI_TORIGHT);
8613 nItem = ListView_GetNextItem(infoPtr->hwndSelf, infoPtr->nFocusedItem, LVNI_BELOW);
8617 if (uView == LVS_REPORT)
8619 INT topidx = LISTVIEW_GetTopIndex(infoPtr);
8620 if (infoPtr->nFocusedItem == topidx)
8621 nItem = topidx - LISTVIEW_GetCountPerColumn(infoPtr) + 1;
8626 nItem = infoPtr->nFocusedItem - LISTVIEW_GetCountPerColumn(infoPtr)
8627 * LISTVIEW_GetCountPerRow(infoPtr);
8628 if(nItem < 0) nItem = 0;
8632 if (uView == LVS_REPORT)
8634 INT topidx = LISTVIEW_GetTopIndex(infoPtr);
8635 INT cnt = LISTVIEW_GetCountPerColumn(infoPtr);
8636 if (infoPtr->nFocusedItem == topidx + cnt - 1)
8637 nItem = infoPtr->nFocusedItem + cnt - 1;
8639 nItem = topidx + cnt - 1;
8642 nItem = infoPtr->nFocusedItem + LISTVIEW_GetCountPerColumn(infoPtr)
8643 * LISTVIEW_GetCountPerRow(infoPtr);
8644 if(nItem >= infoPtr->nItemCount) nItem = infoPtr->nItemCount - 1;
8648 if ((nItem != -1) && (nItem != infoPtr->nFocusedItem || nVirtualKey == VK_SPACE))
8649 LISTVIEW_KeySelection(infoPtr, nItem, nVirtualKey == VK_SPACE);
8659 * [I] infoPtr : valid pointer to the listview structure
8664 static LRESULT LISTVIEW_KillFocus(LISTVIEW_INFO *infoPtr)
8668 /* if we did not have the focus, there's nothing to do */
8669 if (!infoPtr->bFocus) return 0;
8671 /* send NM_KILLFOCUS notification */
8672 if (!notify(infoPtr, NM_KILLFOCUS)) return 0;
8674 /* if we have a focus rectangle, get rid of it */
8675 LISTVIEW_ShowFocusRect(infoPtr, FALSE);
8677 /* set window focus flag */
8678 infoPtr->bFocus = FALSE;
8680 /* invalidate the selected items before resetting focus flag */
8681 LISTVIEW_InvalidateSelectedItems(infoPtr);
8688 * Processes double click messages (left mouse button).
8691 * [I] infoPtr : valid pointer to the listview structure
8692 * [I] wKey : key flag
8693 * [I] x,y : mouse coordinate
8698 static LRESULT LISTVIEW_LButtonDblClk(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
8700 LVHITTESTINFO htInfo;
8702 TRACE("(key=%hu, X=%hu, Y=%hu)\n", wKey, x, y);
8704 /* Cancel the item edition if any */
8705 if (infoPtr->itemEdit.fEnabled)
8707 KillTimer(infoPtr->hwndSelf, (UINT_PTR)&infoPtr->itemEdit);
8708 infoPtr->itemEdit.fEnabled = FALSE;
8711 /* send NM_RELEASEDCAPTURE notification */
8712 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
8717 /* send NM_DBLCLK notification */
8718 LISTVIEW_HitTest(infoPtr, &htInfo, TRUE, FALSE);
8719 if (!notify_click(infoPtr, NM_DBLCLK, &htInfo)) return 0;
8721 /* To send the LVN_ITEMACTIVATE, it must be on an Item */
8722 if(htInfo.iItem != -1) notify_itemactivate(infoPtr,&htInfo);
8729 * Processes mouse down messages (left mouse button).
8732 * infoPtr [I ] valid pointer to the listview structure
8733 * wKey [I ] key flag
8734 * x,y [I ] mouse coordinate
8739 static LRESULT LISTVIEW_LButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
8741 LVHITTESTINFO lvHitTestInfo;
8742 static BOOL bGroupSelect = TRUE;
8743 POINT pt = { x, y };
8746 TRACE("(key=%hu, X=%hu, Y=%hu)\n", wKey, x, y);
8748 /* send NM_RELEASEDCAPTURE notification */
8749 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
8751 /* set left button down flag and record the click position */
8752 infoPtr->bLButtonDown = TRUE;
8753 infoPtr->ptClickPos = pt;
8754 infoPtr->bDragging = FALSE;
8756 lvHitTestInfo.pt.x = x;
8757 lvHitTestInfo.pt.y = y;
8759 nItem = LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
8760 TRACE("at %s, nItem=%d\n", wine_dbgstr_point(&pt), nItem);
8761 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
8763 if ((infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES) && (lvHitTestInfo.flags & LVHT_ONITEMSTATEICON))
8765 toggle_checkbox_state(infoPtr, nItem);
8769 if (infoPtr->dwStyle & LVS_SINGLESEL)
8771 if (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
8772 infoPtr->nEditLabelItem = nItem;
8774 LISTVIEW_SetSelection(infoPtr, nItem);
8778 if ((wKey & MK_CONTROL) && (wKey & MK_SHIFT))
8782 if (!LISTVIEW_AddGroupSelection(infoPtr, nItem)) return 0;
8783 LISTVIEW_SetItemFocus(infoPtr, nItem);
8784 infoPtr->nSelectionMark = nItem;
8790 item.state = LVIS_SELECTED | LVIS_FOCUSED;
8791 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
8793 LISTVIEW_SetItemState(infoPtr,nItem,&item);
8794 infoPtr->nSelectionMark = nItem;
8797 else if (wKey & MK_CONTROL)
8801 bGroupSelect = (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED) == 0);
8803 item.state = (bGroupSelect ? LVIS_SELECTED : 0) | LVIS_FOCUSED;
8804 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
8805 LISTVIEW_SetItemState(infoPtr, nItem, &item);
8806 infoPtr->nSelectionMark = nItem;
8808 else if (wKey & MK_SHIFT)
8810 LISTVIEW_SetGroupSelection(infoPtr, nItem);
8814 if (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
8815 infoPtr->nEditLabelItem = nItem;
8817 /* set selection (clears other pre-existing selections) */
8818 LISTVIEW_SetSelection(infoPtr, nItem);
8822 if (infoPtr->dwLvExStyle & LVS_EX_ONECLICKACTIVATE)
8823 if(lvHitTestInfo.iItem != -1) notify_itemactivate(infoPtr,&lvHitTestInfo);
8827 /* remove all selections */
8828 LISTVIEW_DeselectAll(infoPtr);
8837 * Processes mouse up messages (left mouse button).
8840 * infoPtr [I ] valid pointer to the listview structure
8841 * wKey [I ] key flag
8842 * x,y [I ] mouse coordinate
8847 static LRESULT LISTVIEW_LButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
8849 LVHITTESTINFO lvHitTestInfo;
8851 TRACE("(key=%hu, X=%hu, Y=%hu)\n", wKey, x, y);
8853 if (!infoPtr->bLButtonDown) return 0;
8855 lvHitTestInfo.pt.x = x;
8856 lvHitTestInfo.pt.y = y;
8858 /* send NM_CLICK notification */
8859 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
8860 if (!notify_click(infoPtr, NM_CLICK, &lvHitTestInfo)) return 0;
8862 /* set left button flag */
8863 infoPtr->bLButtonDown = FALSE;
8865 if (infoPtr->bDragging)
8867 infoPtr->bDragging = FALSE;
8871 /* if we clicked on a selected item, edit the label */
8872 if(lvHitTestInfo.iItem == infoPtr->nEditLabelItem && (lvHitTestInfo.flags & LVHT_ONITEMLABEL))
8874 /* we want to make sure the user doesn't want to do a double click. So we will
8875 * delay the edit. WM_LBUTTONDBLCLICK will cancel the timer
8877 infoPtr->itemEdit.fEnabled = TRUE;
8878 infoPtr->itemEdit.iItem = lvHitTestInfo.iItem;
8879 SetTimer(infoPtr->hwndSelf,
8880 (UINT_PTR)&infoPtr->itemEdit,
8881 GetDoubleClickTime(),
8882 LISTVIEW_DelayedEditItem);
8885 if (!infoPtr->bFocus)
8886 SetFocus(infoPtr->hwndSelf);
8893 * Destroys the listview control (called after WM_DESTROY).
8896 * [I] infoPtr : valid pointer to the listview structure
8901 static LRESULT LISTVIEW_NCDestroy(LISTVIEW_INFO *infoPtr)
8905 /* delete all items */
8906 LISTVIEW_DeleteAllItems(infoPtr, TRUE);
8908 /* destroy data structure */
8909 DPA_Destroy(infoPtr->hdpaItems);
8910 DPA_Destroy(infoPtr->hdpaPosX);
8911 DPA_Destroy(infoPtr->hdpaPosY);
8912 DPA_Destroy(infoPtr->hdpaColumns);
8913 ranges_destroy(infoPtr->selectionRanges);
8915 /* destroy image lists */
8916 if (!(infoPtr->dwStyle & LVS_SHAREIMAGELISTS))
8918 if (infoPtr->himlNormal)
8919 ImageList_Destroy(infoPtr->himlNormal);
8920 if (infoPtr->himlSmall)
8921 ImageList_Destroy(infoPtr->himlSmall);
8922 if (infoPtr->himlState)
8923 ImageList_Destroy(infoPtr->himlState);
8926 /* destroy font, bkgnd brush */
8928 if (infoPtr->hDefaultFont) DeleteObject(infoPtr->hDefaultFont);
8929 if (infoPtr->clrBk != CLR_NONE) DeleteObject(infoPtr->hBkBrush);
8931 SetWindowLongPtrW(infoPtr->hwndSelf, 0, 0);
8933 /* free listview info pointer*/
8941 * Handles notifications from header.
8944 * [I] infoPtr : valid pointer to the listview structure
8945 * [I] nCtrlId : control identifier
8946 * [I] lpnmh : notification information
8951 static LRESULT LISTVIEW_HeaderNotification(LISTVIEW_INFO *infoPtr, const NMHEADERW *lpnmh)
8953 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
8954 HWND hwndSelf = infoPtr->hwndSelf;
8956 TRACE("(lpnmh=%p)\n", lpnmh);
8958 if (!lpnmh || lpnmh->iItem < 0 || lpnmh->iItem >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return 0;
8960 switch (lpnmh->hdr.code)
8965 COLUMN_INFO *lpColumnInfo;
8969 if (!lpnmh->pitem || !(lpnmh->pitem->mask & HDI_WIDTH))
8972 /* remove the old line (if any) */
8973 LISTVIEW_DrawTrackLine(infoPtr);
8975 /* compute & draw the new line */
8976 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpnmh->iItem);
8977 x = lpColumnInfo->rcHeader.left + lpnmh->pitem->cxy;
8978 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
8979 infoPtr->xTrackLine = x + ptOrigin.x;
8980 LISTVIEW_DrawTrackLine(infoPtr);
8986 /* remove the track line (if any) */
8987 LISTVIEW_DrawTrackLine(infoPtr);
8988 infoPtr->xTrackLine = -1;
8992 FIXME("Changing column order not implemented\n");
8995 case HDN_ITEMCHANGINGW:
8996 case HDN_ITEMCHANGINGA:
8997 return notify_forward_header(infoPtr, lpnmh);
8999 case HDN_ITEMCHANGEDW:
9000 case HDN_ITEMCHANGEDA:
9002 COLUMN_INFO *lpColumnInfo;
9005 notify_forward_header(infoPtr, lpnmh);
9006 if (!IsWindow(hwndSelf))
9009 if (!lpnmh->pitem || !(lpnmh->pitem->mask & HDI_WIDTH))
9013 hdi.mask = HDI_WIDTH;
9014 if (!Header_GetItemW(infoPtr->hwndHeader, lpnmh->iItem, &hdi)) return 0;
9018 cxy = lpnmh->pitem->cxy;
9020 /* determine how much we change since the last know position */
9021 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpnmh->iItem);
9022 dx = cxy - (lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left);
9025 lpColumnInfo->rcHeader.right += dx;
9026 if (lpnmh->iItem + 1 < DPA_GetPtrCount(infoPtr->hdpaColumns))
9027 LISTVIEW_ScrollColumns(infoPtr, lpnmh->iItem + 1, dx);
9030 /* only needs to update the scrolls */
9031 infoPtr->nItemWidth += dx;
9032 LISTVIEW_UpdateScroll(infoPtr);
9034 LISTVIEW_UpdateItemSize(infoPtr);
9035 if (uView == LVS_REPORT && is_redrawing(infoPtr))
9038 RECT rcCol = lpColumnInfo->rcHeader;
9040 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
9041 OffsetRect(&rcCol, ptOrigin.x, 0);
9043 rcCol.top = infoPtr->rcList.top;
9044 rcCol.bottom = infoPtr->rcList.bottom;
9046 /* resizing left-aligned columns leaves most of the left side untouched */
9047 if ((lpColumnInfo->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_LEFT)
9049 INT nMaxDirty = infoPtr->nEllipsisWidth + infoPtr->ntmMaxCharWidth;
9052 rcCol.left = max (rcCol.left, rcCol.right - nMaxDirty);
9055 /* when shrinking the last column clear the now unused field */
9056 if (lpnmh->iItem == DPA_GetPtrCount(infoPtr->hdpaColumns) - 1 && dx < 0)
9059 LISTVIEW_InvalidateRect(infoPtr, &rcCol);
9065 case HDN_ITEMCLICKW:
9066 case HDN_ITEMCLICKA:
9068 /* Handle sorting by Header Column */
9071 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
9073 nmlv.iSubItem = lpnmh->iItem;
9074 notify_listview(infoPtr, LVN_COLUMNCLICK, &nmlv);
9075 notify_forward_header(infoPtr, lpnmh);
9079 case HDN_DIVIDERDBLCLICKW:
9080 case HDN_DIVIDERDBLCLICKA:
9081 LISTVIEW_SetColumnWidth(infoPtr, lpnmh->iItem, LVSCW_AUTOSIZE);
9090 * Paint non-client area of control.
9093 * [I] infoPtr : valid pointer to the listview structureof the sender
9094 * [I] region : update region
9097 * TRUE - frame was painted
9098 * FALSE - call default window proc
9100 static BOOL LISTVIEW_NCPaint(const LISTVIEW_INFO *infoPtr, HRGN region)
9102 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
9106 int cxEdge = GetSystemMetrics (SM_CXEDGE),
9107 cyEdge = GetSystemMetrics (SM_CYEDGE);
9109 if (!theme) return FALSE;
9111 GetWindowRect(infoPtr->hwndSelf, &r);
9113 cliprgn = CreateRectRgn (r.left + cxEdge, r.top + cyEdge,
9114 r.right - cxEdge, r.bottom - cyEdge);
9115 if (region != (HRGN)1)
9116 CombineRgn (cliprgn, cliprgn, region, RGN_AND);
9117 OffsetRect(&r, -r.left, -r.top);
9119 dc = GetDCEx(infoPtr->hwndSelf, region, DCX_WINDOW|DCX_INTERSECTRGN);
9120 OffsetRect(&r, -r.left, -r.top);
9122 if (IsThemeBackgroundPartiallyTransparent (theme, 0, 0))
9123 DrawThemeParentBackground(infoPtr->hwndSelf, dc, &r);
9124 DrawThemeBackground (theme, dc, 0, 0, &r, 0);
9125 ReleaseDC(infoPtr->hwndSelf, dc);
9127 /* Call default proc to get the scrollbars etc. painted */
9128 DefWindowProcW (infoPtr->hwndSelf, WM_NCPAINT, (WPARAM)cliprgn, 0);
9135 * Determines the type of structure to use.
9138 * [I] infoPtr : valid pointer to the listview structureof the sender
9139 * [I] hwndFrom : listview window handle
9140 * [I] nCommand : command specifying the nature of the WM_NOTIFYFORMAT
9145 static LRESULT LISTVIEW_NotifyFormat(LISTVIEW_INFO *infoPtr, HWND hwndFrom, INT nCommand)
9147 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom, nCommand);
9149 if (nCommand == NF_REQUERY)
9150 infoPtr->notifyFormat = SendMessageW(hwndFrom, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
9152 return infoPtr->notifyFormat;
9157 * Paints/Repaints the listview control.
9160 * [I] infoPtr : valid pointer to the listview structure
9161 * [I] hdc : device context handle
9166 static LRESULT LISTVIEW_Paint(LISTVIEW_INFO *infoPtr, HDC hdc)
9168 TRACE("(hdc=%p)\n", hdc);
9170 if (infoPtr->bNoItemMetrics && infoPtr->nItemCount)
9172 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
9174 infoPtr->bNoItemMetrics = FALSE;
9175 LISTVIEW_UpdateItemSize(infoPtr);
9176 if (uView == LVS_ICON || uView == LVS_SMALLICON)
9177 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
9178 LISTVIEW_UpdateScroll(infoPtr);
9181 if (infoPtr->hwndHeader) UpdateWindow(infoPtr->hwndHeader);
9184 LISTVIEW_Refresh(infoPtr, hdc, NULL);
9189 hdc = BeginPaint(infoPtr->hwndSelf, &ps);
9191 LISTVIEW_Refresh(infoPtr, hdc, ps.fErase ? &ps.rcPaint : NULL);
9192 EndPaint(infoPtr->hwndSelf, &ps);
9201 * Paints/Repaints the listview control.
9204 * [I] infoPtr : valid pointer to the listview structure
9205 * [I] hdc : device context handle
9206 * [I] options : drawing options
9211 static LRESULT LISTVIEW_PrintClient(LISTVIEW_INFO *infoPtr, HDC hdc, DWORD options)
9213 FIXME("Partial Stub: (hdc=%p options=0x%08x)\n", hdc, options);
9215 if ((options & PRF_CHECKVISIBLE) && !IsWindowVisible(infoPtr->hwndSelf))
9218 if (options & PRF_ERASEBKGND)
9219 LISTVIEW_EraseBkgnd(infoPtr, hdc);
9221 if (options & PRF_CLIENT)
9222 LISTVIEW_Paint(infoPtr, hdc);
9230 * Processes double click messages (right mouse button).
9233 * [I] infoPtr : valid pointer to the listview structure
9234 * [I] wKey : key flag
9235 * [I] x,y : mouse coordinate
9240 static LRESULT LISTVIEW_RButtonDblClk(const LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
9242 LVHITTESTINFO lvHitTestInfo;
9244 TRACE("(key=%hu,X=%hu,Y=%hu)\n", wKey, x, y);
9246 /* send NM_RELEASEDCAPTURE notification */
9247 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
9249 /* send NM_RDBLCLK notification */
9250 lvHitTestInfo.pt.x = x;
9251 lvHitTestInfo.pt.y = y;
9252 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
9253 notify_click(infoPtr, NM_RDBLCLK, &lvHitTestInfo);
9260 * Processes mouse down messages (right mouse button).
9263 * [I] infoPtr : valid pointer to the listview structure
9264 * [I] wKey : key flag
9265 * [I] x,y : mouse coordinate
9270 static LRESULT LISTVIEW_RButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
9272 LVHITTESTINFO lvHitTestInfo;
9275 TRACE("(key=%hu,X=%hu,Y=%hu)\n", wKey, x, y);
9277 /* send NM_RELEASEDCAPTURE notification */
9278 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
9280 /* make sure the listview control window has the focus */
9281 if (!infoPtr->bFocus) SetFocus(infoPtr->hwndSelf);
9283 /* set right button down flag */
9284 infoPtr->bRButtonDown = TRUE;
9286 /* determine the index of the selected item */
9287 lvHitTestInfo.pt.x = x;
9288 lvHitTestInfo.pt.y = y;
9289 nItem = LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
9291 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
9293 LISTVIEW_SetItemFocus(infoPtr, nItem);
9294 if (!((wKey & MK_SHIFT) || (wKey & MK_CONTROL)) &&
9295 !LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
9296 LISTVIEW_SetSelection(infoPtr, nItem);
9300 LISTVIEW_DeselectAll(infoPtr);
9308 * Processes mouse up messages (right mouse button).
9311 * [I] infoPtr : valid pointer to the listview structure
9312 * [I] wKey : key flag
9313 * [I] x,y : mouse coordinate
9318 static LRESULT LISTVIEW_RButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
9320 LVHITTESTINFO lvHitTestInfo;
9323 TRACE("(key=%hu,X=%hu,Y=%hu)\n", wKey, x, y);
9325 if (!infoPtr->bRButtonDown) return 0;
9327 /* set button flag */
9328 infoPtr->bRButtonDown = FALSE;
9330 /* Send NM_RCLICK notification */
9331 lvHitTestInfo.pt.x = x;
9332 lvHitTestInfo.pt.y = y;
9333 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
9334 if (!notify_click(infoPtr, NM_RCLICK, &lvHitTestInfo)) return 0;
9336 /* Change to screen coordinate for WM_CONTEXTMENU */
9337 pt = lvHitTestInfo.pt;
9338 ClientToScreen(infoPtr->hwndSelf, &pt);
9340 /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
9341 SendMessageW(infoPtr->hwndSelf, WM_CONTEXTMENU,
9342 (WPARAM)infoPtr->hwndSelf, MAKELPARAM(pt.x, pt.y));
9353 * [I] infoPtr : valid pointer to the listview structure
9354 * [I] hwnd : window handle of window containing the cursor
9355 * [I] nHittest : hit-test code
9356 * [I] wMouseMsg : ideintifier of the mouse message
9359 * TRUE if cursor is set
9362 static BOOL LISTVIEW_SetCursor(const LISTVIEW_INFO *infoPtr, HWND hwnd, UINT nHittest, UINT wMouseMsg)
9364 LVHITTESTINFO lvHitTestInfo;
9366 if(!(LISTVIEW_isHotTracking(infoPtr))) return FALSE;
9368 if(!infoPtr->hHotCursor) return FALSE;
9370 GetCursorPos(&lvHitTestInfo.pt);
9371 if (LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, FALSE, FALSE) < 0) return FALSE;
9373 SetCursor(infoPtr->hHotCursor);
9383 * [I] infoPtr : valid pointer to the listview structure
9384 * [I] hwndLoseFocus : handle of previously focused window
9389 static LRESULT LISTVIEW_SetFocus(LISTVIEW_INFO *infoPtr, HWND hwndLoseFocus)
9391 TRACE("(hwndLoseFocus=%p)\n", hwndLoseFocus);
9393 /* if we have the focus already, there's nothing to do */
9394 if (infoPtr->bFocus) return 0;
9396 /* send NM_SETFOCUS notification */
9397 if (!notify(infoPtr, NM_SETFOCUS)) return 0;
9399 /* set window focus flag */
9400 infoPtr->bFocus = TRUE;
9402 /* put the focus rect back on */
9403 LISTVIEW_ShowFocusRect(infoPtr, TRUE);
9405 /* redraw all visible selected items */
9406 LISTVIEW_InvalidateSelectedItems(infoPtr);
9416 * [I] infoPtr : valid pointer to the listview structure
9417 * [I] fRedraw : font handle
9418 * [I] fRedraw : redraw flag
9423 static LRESULT LISTVIEW_SetFont(LISTVIEW_INFO *infoPtr, HFONT hFont, WORD fRedraw)
9425 HFONT oldFont = infoPtr->hFont;
9427 TRACE("(hfont=%p,redraw=%hu)\n", hFont, fRedraw);
9429 infoPtr->hFont = hFont ? hFont : infoPtr->hDefaultFont;
9430 if (infoPtr->hFont == oldFont) return 0;
9432 LISTVIEW_SaveTextMetrics(infoPtr);
9434 if ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_REPORT)
9436 SendMessageW(infoPtr->hwndHeader, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(fRedraw, 0));
9437 LISTVIEW_UpdateSize(infoPtr);
9438 LISTVIEW_UpdateScroll(infoPtr);
9441 if (fRedraw) LISTVIEW_InvalidateList(infoPtr);
9448 * Message handling for WM_SETREDRAW.
9449 * For the Listview, it invalidates the entire window (the doc specifies otherwise)
9452 * [I] infoPtr : valid pointer to the listview structure
9453 * [I] bRedraw: state of redraw flag
9456 * DefWinProc return value
9458 static LRESULT LISTVIEW_SetRedraw(LISTVIEW_INFO *infoPtr, BOOL bRedraw)
9460 TRACE("infoPtr->bRedraw=%d, bRedraw=%d\n", infoPtr->bRedraw, bRedraw);
9462 /* we cannot use straight equality here because _any_ non-zero value is TRUE */
9463 if ((infoPtr->bRedraw && bRedraw) || (!infoPtr->bRedraw && !bRedraw)) return 0;
9465 infoPtr->bRedraw = bRedraw;
9467 if(!bRedraw) return 0;
9469 if (is_autoarrange(infoPtr))
9470 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
9471 LISTVIEW_UpdateScroll(infoPtr);
9473 /* despite what the WM_SETREDRAW docs says, apps expect us
9474 * to invalidate the listview here... stupid! */
9475 LISTVIEW_InvalidateList(infoPtr);
9482 * Resizes the listview control. This function processes WM_SIZE
9483 * messages. At this time, the width and height are not used.
9486 * [I] infoPtr : valid pointer to the listview structure
9487 * [I] Width : new width
9488 * [I] Height : new height
9493 static LRESULT LISTVIEW_Size(LISTVIEW_INFO *infoPtr, int Width, int Height)
9495 RECT rcOld = infoPtr->rcList;
9497 TRACE("(width=%d, height=%d)\n", Width, Height);
9499 LISTVIEW_UpdateSize(infoPtr);
9500 if (EqualRect(&rcOld, &infoPtr->rcList)) return 0;
9502 /* do not bother with display related stuff if we're not redrawing */
9503 if (!is_redrawing(infoPtr)) return 0;
9505 if (is_autoarrange(infoPtr))
9506 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
9508 LISTVIEW_UpdateScroll(infoPtr);
9510 /* refresh all only for lists whose height changed significantly */
9511 if ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_LIST &&
9512 (rcOld.bottom - rcOld.top) / infoPtr->nItemHeight !=
9513 (infoPtr->rcList.bottom - infoPtr->rcList.top) / infoPtr->nItemHeight)
9514 LISTVIEW_InvalidateList(infoPtr);
9521 * Sets the size information.
9524 * [I] infoPtr : valid pointer to the listview structure
9529 static void LISTVIEW_UpdateSize(LISTVIEW_INFO *infoPtr)
9531 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
9533 TRACE("uView=%d, rcList(old)=%s\n", uView, wine_dbgstr_rect(&infoPtr->rcList));
9535 GetClientRect(infoPtr->hwndSelf, &infoPtr->rcList);
9537 if (uView == LVS_LIST)
9539 /* Apparently the "LIST" style is supposed to have the same
9540 * number of items in a column even if there is no scroll bar.
9541 * Since if a scroll bar already exists then the bottom is already
9542 * reduced, only reduce if the scroll bar does not currently exist.
9543 * The "2" is there to mimic the native control. I think it may be
9544 * related to either padding or edges. (GLA 7/2002)
9546 if (!(GetWindowLongW(infoPtr->hwndSelf, GWL_STYLE) & WS_HSCROLL))
9547 infoPtr->rcList.bottom -= GetSystemMetrics(SM_CYHSCROLL);
9548 infoPtr->rcList.bottom = max (infoPtr->rcList.bottom - 2, 0);
9550 else if (uView == LVS_REPORT)
9555 hl.prc = &infoPtr->rcList;
9557 SendMessageW( infoPtr->hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hl );
9558 TRACE(" wp.flags=0x%08x, wp=%d,%d (%dx%d)\n", wp.flags, wp.x, wp.y, wp.cx, wp.cy);
9559 SetWindowPos(wp.hwnd, wp.hwndInsertAfter, wp.x, wp.y, wp.cx, wp.cy,
9560 wp.flags | ((infoPtr->dwStyle & LVS_NOCOLUMNHEADER)
9561 ? SWP_HIDEWINDOW : SWP_SHOWWINDOW));
9562 TRACE(" after SWP wp=%d,%d (%dx%d)\n", wp.x, wp.y, wp.cx, wp.cy);
9564 infoPtr->rcList.top = max(wp.cy, 0);
9565 infoPtr->rcList.top += (infoPtr->dwLvExStyle & LVS_EX_GRIDLINES) ? 2 : 0;
9568 TRACE(" rcList=%s\n", wine_dbgstr_rect(&infoPtr->rcList));
9573 * Processes WM_STYLECHANGED messages.
9576 * [I] infoPtr : valid pointer to the listview structure
9577 * [I] wStyleType : window style type (normal or extended)
9578 * [I] lpss : window style information
9583 static INT LISTVIEW_StyleChanged(LISTVIEW_INFO *infoPtr, WPARAM wStyleType,
9584 const STYLESTRUCT *lpss)
9586 UINT uNewView = lpss->styleNew & LVS_TYPEMASK;
9587 UINT uOldView = lpss->styleOld & LVS_TYPEMASK;
9590 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
9591 wStyleType, lpss->styleOld, lpss->styleNew);
9593 if (wStyleType != GWL_STYLE) return 0;
9595 /* FIXME: if LVS_NOSORTHEADER changed, update header */
9596 /* or LVS_SORT{AS,DES}CENDING */
9598 infoPtr->dwStyle = lpss->styleNew;
9600 if (((lpss->styleOld & WS_HSCROLL) != 0)&&
9601 ((lpss->styleNew & WS_HSCROLL) == 0))
9602 ShowScrollBar(infoPtr->hwndSelf, SB_HORZ, FALSE);
9604 if (((lpss->styleOld & WS_VSCROLL) != 0)&&
9605 ((lpss->styleNew & WS_VSCROLL) == 0))
9606 ShowScrollBar(infoPtr->hwndSelf, SB_VERT, FALSE);
9608 if (uNewView != uOldView)
9610 SIZE oldIconSize = infoPtr->iconSize;
9613 SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
9614 ShowWindow(infoPtr->hwndHeader, SW_HIDE);
9616 ShowScrollBar(infoPtr->hwndSelf, SB_BOTH, FALSE);
9617 SetRectEmpty(&infoPtr->rcFocus);
9619 himl = (uNewView == LVS_ICON ? infoPtr->himlNormal : infoPtr->himlSmall);
9620 set_icon_size(&infoPtr->iconSize, himl, uNewView != LVS_ICON);
9622 if (uNewView == LVS_ICON)
9624 if ((infoPtr->iconSize.cx != oldIconSize.cx) || (infoPtr->iconSize.cy != oldIconSize.cy))
9626 TRACE("icon old size=(%d,%d), new size=(%d,%d)\n",
9627 oldIconSize.cx, oldIconSize.cy, infoPtr->iconSize.cx, infoPtr->iconSize.cy);
9628 LISTVIEW_SetIconSpacing(infoPtr, 0, 0);
9631 else if (uNewView == LVS_REPORT)
9636 LISTVIEW_CreateHeader( infoPtr );
9638 hl.prc = &infoPtr->rcList;
9640 SendMessageW( infoPtr->hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hl );
9641 SetWindowPos(infoPtr->hwndHeader, infoPtr->hwndSelf, wp.x, wp.y, wp.cx, wp.cy,
9642 wp.flags | ((infoPtr->dwStyle & LVS_NOCOLUMNHEADER)
9643 ? SWP_HIDEWINDOW : SWP_SHOWWINDOW));
9646 LISTVIEW_UpdateItemSize(infoPtr);
9649 if (uNewView == LVS_REPORT)
9651 if ((lpss->styleOld ^ lpss->styleNew) & LVS_NOCOLUMNHEADER)
9653 if (lpss->styleNew & LVS_NOCOLUMNHEADER)
9655 /* Turn off the header control */
9656 style = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE);
9657 TRACE("Hide header control, was 0x%08x\n", style);
9658 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, style | HDS_HIDDEN);
9660 /* Turn on the header control */
9661 if ((style = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE)) & HDS_HIDDEN)
9663 TRACE("Show header control, was 0x%08x\n", style);
9664 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, (style & ~HDS_HIDDEN) | WS_VISIBLE);
9670 if ( (uNewView == LVS_ICON || uNewView == LVS_SMALLICON) &&
9671 (uNewView != uOldView || ((lpss->styleNew ^ lpss->styleOld) & LVS_ALIGNMASK)) )
9672 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
9674 /* update the size of the client area */
9675 LISTVIEW_UpdateSize(infoPtr);
9677 /* add scrollbars if needed */
9678 LISTVIEW_UpdateScroll(infoPtr);
9680 /* invalidate client area + erase background */
9681 LISTVIEW_InvalidateList(infoPtr);
9688 * Processes WM_STYLECHANGING messages.
9691 * [I] infoPtr : valid pointer to the listview structure
9692 * [I] wStyleType : window style type (normal or extended)
9693 * [I0] lpss : window style information
9698 static INT LISTVIEW_StyleChanging(LISTVIEW_INFO *infoPtr, WPARAM wStyleType,
9701 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
9702 wStyleType, lpss->styleOld, lpss->styleNew);
9704 /* don't forward LVS_OWNERDATA only if not already set to */
9705 if ((lpss->styleNew ^ lpss->styleOld) & LVS_OWNERDATA)
9707 if (lpss->styleOld & LVS_OWNERDATA)
9708 lpss->styleNew |= LVS_OWNERDATA;
9710 lpss->styleNew &= ~LVS_OWNERDATA;
9718 * Processes WM_SHOWWINDOW messages.
9721 * [I] infoPtr : valid pointer to the listview structure
9722 * [I] bShown : window is being shown (FALSE when hidden)
9723 * [I] iStatus : window show status
9728 static LRESULT LISTVIEW_ShowWindow(LISTVIEW_INFO *infoPtr, BOOL bShown, INT iStatus)
9730 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
9732 /* header delayed creation */
9733 if ((uView == LVS_REPORT) && bShown)
9735 LISTVIEW_CreateHeader(infoPtr);
9737 if (!(LVS_NOCOLUMNHEADER & infoPtr->dwStyle))
9738 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
9746 * Window procedure of the listview control.
9749 static LRESULT WINAPI
9750 LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
9752 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
9754 TRACE("(uMsg=%x wParam=%lx lParam=%lx)\n", uMsg, wParam, lParam);
9756 if (!infoPtr && (uMsg != WM_NCCREATE))
9757 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
9761 case LVM_APPROXIMATEVIEWRECT:
9762 return LISTVIEW_ApproximateViewRect(infoPtr, (INT)wParam,
9763 LOWORD(lParam), HIWORD(lParam));
9765 return LISTVIEW_Arrange(infoPtr, (INT)wParam);
9767 /* case LVM_CANCELEDITLABEL: */
9769 case LVM_CREATEDRAGIMAGE:
9770 return (LRESULT)LISTVIEW_CreateDragImage(infoPtr, (INT)wParam, (LPPOINT)lParam);
9772 case LVM_DELETEALLITEMS:
9773 return LISTVIEW_DeleteAllItems(infoPtr, FALSE);
9775 case LVM_DELETECOLUMN:
9776 return LISTVIEW_DeleteColumn(infoPtr, (INT)wParam);
9778 case LVM_DELETEITEM:
9779 return LISTVIEW_DeleteItem(infoPtr, (INT)wParam);
9781 case LVM_EDITLABELW:
9782 return (LRESULT)LISTVIEW_EditLabelT(infoPtr, (INT)wParam, TRUE);
9784 case LVM_EDITLABELA:
9785 return (LRESULT)LISTVIEW_EditLabelT(infoPtr, (INT)wParam, FALSE);
9787 /* case LVM_ENABLEGROUPVIEW: */
9789 case LVM_ENSUREVISIBLE:
9790 return LISTVIEW_EnsureVisible(infoPtr, (INT)wParam, (BOOL)lParam);
9793 return LISTVIEW_FindItemW(infoPtr, (INT)wParam, (LPLVFINDINFOW)lParam);
9796 return LISTVIEW_FindItemA(infoPtr, (INT)wParam, (LPLVFINDINFOA)lParam);
9798 case LVM_GETBKCOLOR:
9799 return infoPtr->clrBk;
9801 /* case LVM_GETBKIMAGE: */
9803 case LVM_GETCALLBACKMASK:
9804 return infoPtr->uCallbackMask;
9806 case LVM_GETCOLUMNA:
9807 return LISTVIEW_GetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, FALSE);
9809 case LVM_GETCOLUMNW:
9810 return LISTVIEW_GetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, TRUE);
9812 case LVM_GETCOLUMNORDERARRAY:
9813 return LISTVIEW_GetColumnOrderArray(infoPtr, (INT)wParam, (LPINT)lParam);
9815 case LVM_GETCOLUMNWIDTH:
9816 return LISTVIEW_GetColumnWidth(infoPtr, (INT)wParam);
9818 case LVM_GETCOUNTPERPAGE:
9819 return LISTVIEW_GetCountPerPage(infoPtr);
9821 case LVM_GETEDITCONTROL:
9822 return (LRESULT)infoPtr->hwndEdit;
9824 case LVM_GETEXTENDEDLISTVIEWSTYLE:
9825 return infoPtr->dwLvExStyle;
9827 /* case LVM_GETGROUPINFO: */
9829 /* case LVM_GETGROUPMETRICS: */
9832 return (LRESULT)infoPtr->hwndHeader;
9834 case LVM_GETHOTCURSOR:
9835 return (LRESULT)infoPtr->hHotCursor;
9837 case LVM_GETHOTITEM:
9838 return infoPtr->nHotItem;
9840 case LVM_GETHOVERTIME:
9841 return infoPtr->dwHoverTime;
9843 case LVM_GETIMAGELIST:
9844 return (LRESULT)LISTVIEW_GetImageList(infoPtr, (INT)wParam);
9846 /* case LVM_GETINSERTMARK: */
9848 /* case LVM_GETINSERTMARKCOLOR: */
9850 /* case LVM_GETINSERTMARKRECT: */
9852 case LVM_GETISEARCHSTRINGA:
9853 case LVM_GETISEARCHSTRINGW:
9854 FIXME("LVM_GETISEARCHSTRING: unimplemented\n");
9858 return LISTVIEW_GetItemExtT(infoPtr, (LPLVITEMW)lParam, FALSE);
9861 return LISTVIEW_GetItemExtT(infoPtr, (LPLVITEMW)lParam, TRUE);
9863 case LVM_GETITEMCOUNT:
9864 return infoPtr->nItemCount;
9866 case LVM_GETITEMPOSITION:
9867 return LISTVIEW_GetItemPosition(infoPtr, (INT)wParam, (LPPOINT)lParam);
9869 case LVM_GETITEMRECT:
9870 return LISTVIEW_GetItemRect(infoPtr, (INT)wParam, (LPRECT)lParam);
9872 case LVM_GETITEMSPACING:
9873 return LISTVIEW_GetItemSpacing(infoPtr, (BOOL)wParam);
9875 case LVM_GETITEMSTATE:
9876 return LISTVIEW_GetItemState(infoPtr, (INT)wParam, (UINT)lParam);
9878 case LVM_GETITEMTEXTA:
9879 return LISTVIEW_GetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam, FALSE);
9881 case LVM_GETITEMTEXTW:
9882 return LISTVIEW_GetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam, TRUE);
9884 case LVM_GETNEXTITEM:
9885 return LISTVIEW_GetNextItem(infoPtr, (INT)wParam, LOWORD(lParam));
9887 case LVM_GETNUMBEROFWORKAREAS:
9888 FIXME("LVM_GETNUMBEROFWORKAREAS: unimplemented\n");
9892 if (!lParam) return FALSE;
9893 if ((infoPtr->dwStyle & LVS_TYPEMASK) == LVS_REPORT ||
9894 (infoPtr->dwStyle & LVS_TYPEMASK) == LVS_LIST) return FALSE;
9895 LISTVIEW_GetOrigin(infoPtr, (LPPOINT)lParam);
9898 /* case LVM_GETOUTLINECOLOR: */
9900 /* case LVM_GETSELECTEDCOLUMN: */
9902 case LVM_GETSELECTEDCOUNT:
9903 return LISTVIEW_GetSelectedCount(infoPtr);
9905 case LVM_GETSELECTIONMARK:
9906 return infoPtr->nSelectionMark;
9908 case LVM_GETSTRINGWIDTHA:
9909 return LISTVIEW_GetStringWidthT(infoPtr, (LPCWSTR)lParam, FALSE);
9911 case LVM_GETSTRINGWIDTHW:
9912 return LISTVIEW_GetStringWidthT(infoPtr, (LPCWSTR)lParam, TRUE);
9914 case LVM_GETSUBITEMRECT:
9915 return LISTVIEW_GetSubItemRect(infoPtr, (UINT)wParam, (LPRECT)lParam);
9917 case LVM_GETTEXTBKCOLOR:
9918 return infoPtr->clrTextBk;
9920 case LVM_GETTEXTCOLOR:
9921 return infoPtr->clrText;
9923 /* case LVM_GETTILEINFO: */
9925 /* case LVM_GETTILEVIEWINFO: */
9927 case LVM_GETTOOLTIPS:
9928 if( !infoPtr->hwndToolTip )
9929 infoPtr->hwndToolTip = COMCTL32_CreateToolTip( hwnd );
9930 return (LRESULT)infoPtr->hwndToolTip;
9932 case LVM_GETTOPINDEX:
9933 return LISTVIEW_GetTopIndex(infoPtr);
9935 case LVM_GETUNICODEFORMAT:
9936 return (infoPtr->notifyFormat == NFR_UNICODE);
9938 /* case LVM_GETVIEW: */
9940 case LVM_GETVIEWRECT:
9941 return LISTVIEW_GetViewRect(infoPtr, (LPRECT)lParam);
9943 case LVM_GETWORKAREAS:
9944 FIXME("LVM_GETWORKAREAS: unimplemented\n");
9947 /* case LVM_HASGROUP: */
9950 return LISTVIEW_HitTest(infoPtr, (LPLVHITTESTINFO)lParam, FALSE, FALSE);
9952 case LVM_INSERTCOLUMNA:
9953 return LISTVIEW_InsertColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, FALSE);
9955 case LVM_INSERTCOLUMNW:
9956 return LISTVIEW_InsertColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, TRUE);
9958 /* case LVM_INSERTGROUP: */
9960 /* case LVM_INSERTGROUPSORTED: */
9962 case LVM_INSERTITEMA:
9963 return LISTVIEW_InsertItemT(infoPtr, (LPLVITEMW)lParam, FALSE);
9965 case LVM_INSERTITEMW:
9966 return LISTVIEW_InsertItemT(infoPtr, (LPLVITEMW)lParam, TRUE);
9968 /* case LVM_INSERTMARKHITTEST: */
9970 /* case LVM_ISGROUPVIEWENABLED: */
9972 /* case LVM_MAPIDTOINDEX: */
9974 /* case LVM_MAPINDEXTOID: */
9976 /* case LVM_MOVEGROUP: */
9978 /* case LVM_MOVEITEMTOGROUP: */
9980 case LVM_REDRAWITEMS:
9981 return LISTVIEW_RedrawItems(infoPtr, (INT)wParam, (INT)lParam);
9983 /* case LVM_REMOVEALLGROUPS: */
9985 /* case LVM_REMOVEGROUP: */
9988 return LISTVIEW_Scroll(infoPtr, (INT)wParam, (INT)lParam);
9990 case LVM_SETBKCOLOR:
9991 return LISTVIEW_SetBkColor(infoPtr, (COLORREF)lParam);
9993 /* case LVM_SETBKIMAGE: */
9995 case LVM_SETCALLBACKMASK:
9996 infoPtr->uCallbackMask = (UINT)wParam;
9999 case LVM_SETCOLUMNA:
10000 return LISTVIEW_SetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, FALSE);
10002 case LVM_SETCOLUMNW:
10003 return LISTVIEW_SetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam, TRUE);
10005 case LVM_SETCOLUMNORDERARRAY:
10006 return LISTVIEW_SetColumnOrderArray(infoPtr, (INT)wParam, (LPINT)lParam);
10008 case LVM_SETCOLUMNWIDTH:
10009 return LISTVIEW_SetColumnWidth(infoPtr, (INT)wParam, (short)LOWORD(lParam));
10011 case LVM_SETEXTENDEDLISTVIEWSTYLE:
10012 return LISTVIEW_SetExtendedListViewStyle(infoPtr, (DWORD)wParam, (DWORD)lParam);
10014 /* case LVM_SETGROUPINFO: */
10016 /* case LVM_SETGROUPMETRICS: */
10018 case LVM_SETHOTCURSOR:
10019 return (LRESULT)LISTVIEW_SetHotCursor(infoPtr, (HCURSOR)lParam);
10021 case LVM_SETHOTITEM:
10022 return LISTVIEW_SetHotItem(infoPtr, (INT)wParam);
10024 case LVM_SETHOVERTIME:
10025 return LISTVIEW_SetHoverTime(infoPtr, (DWORD)wParam);
10027 case LVM_SETICONSPACING:
10028 return LISTVIEW_SetIconSpacing(infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
10030 case LVM_SETIMAGELIST:
10031 return (LRESULT)LISTVIEW_SetImageList(infoPtr, (INT)wParam, (HIMAGELIST)lParam);
10033 /* case LVM_SETINFOTIP: */
10035 /* case LVM_SETINSERTMARK: */
10037 /* case LVM_SETINSERTMARKCOLOR: */
10042 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
10043 return LISTVIEW_SetItemT(infoPtr, (LPLVITEMW)lParam, (uMsg == LVM_SETITEMW));
10046 case LVM_SETITEMCOUNT:
10047 return LISTVIEW_SetItemCount(infoPtr, (INT)wParam, (DWORD)lParam);
10049 case LVM_SETITEMPOSITION:
10052 pt.x = (short)LOWORD(lParam);
10053 pt.y = (short)HIWORD(lParam);
10054 return LISTVIEW_SetItemPosition(infoPtr, (INT)wParam, pt);
10057 case LVM_SETITEMPOSITION32:
10058 if (lParam == 0) return FALSE;
10059 return LISTVIEW_SetItemPosition(infoPtr, (INT)wParam, *((POINT*)lParam));
10061 case LVM_SETITEMSTATE:
10062 return LISTVIEW_SetItemState(infoPtr, (INT)wParam, (LPLVITEMW)lParam);
10064 case LVM_SETITEMTEXTA:
10065 return LISTVIEW_SetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam, FALSE);
10067 case LVM_SETITEMTEXTW:
10068 return LISTVIEW_SetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam, TRUE);
10070 /* case LVM_SETOUTLINECOLOR: */
10072 /* case LVM_SETSELECTEDCOLUMN: */
10074 case LVM_SETSELECTIONMARK:
10075 return LISTVIEW_SetSelectionMark(infoPtr, (INT)lParam);
10077 case LVM_SETTEXTBKCOLOR:
10078 return LISTVIEW_SetTextBkColor(infoPtr, (COLORREF)lParam);
10080 case LVM_SETTEXTCOLOR:
10081 return LISTVIEW_SetTextColor(infoPtr, (COLORREF)lParam);
10083 /* case LVM_SETTILEINFO: */
10085 /* case LVM_SETTILEVIEWINFO: */
10087 /* case LVM_SETTILEWIDTH: */
10089 case LVM_SETTOOLTIPS:
10090 return (LRESULT)LISTVIEW_SetToolTips(infoPtr, (HWND)lParam);
10092 case LVM_SETUNICODEFORMAT:
10093 return LISTVIEW_SetUnicodeFormat(infoPtr, wParam);
10095 /* case LVM_SETVIEW: */
10097 /* case LVM_SETWORKAREAS: */
10099 /* case LVM_SORTGROUPS: */
10101 case LVM_SORTITEMS:
10102 return LISTVIEW_SortItems(infoPtr, (PFNLVCOMPARE)lParam, (LPARAM)wParam, FALSE);
10104 case LVM_SORTITEMSEX:
10105 return LISTVIEW_SortItems(infoPtr, (PFNLVCOMPARE)lParam, (LPARAM)wParam, TRUE);
10107 case LVM_SUBITEMHITTEST:
10108 return LISTVIEW_HitTest(infoPtr, (LPLVHITTESTINFO)lParam, TRUE, FALSE);
10111 return LISTVIEW_Update(infoPtr, (INT)wParam);
10114 return LISTVIEW_ProcessLetterKeys( infoPtr, wParam, lParam );
10117 return LISTVIEW_Command(infoPtr, wParam, lParam);
10120 return LISTVIEW_NCCreate(hwnd, (LPCREATESTRUCTW)lParam);
10123 return LISTVIEW_Create(hwnd, (LPCREATESTRUCTW)lParam);
10126 return LISTVIEW_Destroy(infoPtr);
10129 return LISTVIEW_Enable(infoPtr, (BOOL)wParam);
10131 case WM_ERASEBKGND:
10132 return LISTVIEW_EraseBkgnd(infoPtr, (HDC)wParam);
10134 case WM_GETDLGCODE:
10135 return DLGC_WANTCHARS | DLGC_WANTARROWS;
10138 return (LRESULT)infoPtr->hFont;
10141 return LISTVIEW_HScroll(infoPtr, (INT)LOWORD(wParam), 0, (HWND)lParam);
10144 return LISTVIEW_KeyDown(infoPtr, (INT)wParam, (LONG)lParam);
10147 return LISTVIEW_KillFocus(infoPtr);
10149 case WM_LBUTTONDBLCLK:
10150 return LISTVIEW_LButtonDblClk(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10152 case WM_LBUTTONDOWN:
10153 return LISTVIEW_LButtonDown(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10156 return LISTVIEW_LButtonUp(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10159 return LISTVIEW_MouseMove (infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10161 case WM_MOUSEHOVER:
10162 return LISTVIEW_MouseHover(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10165 return LISTVIEW_NCDestroy(infoPtr);
10168 if (LISTVIEW_NCPaint(infoPtr, (HRGN)wParam))
10173 if (lParam && ((LPNMHDR)lParam)->hwndFrom == infoPtr->hwndHeader)
10174 return LISTVIEW_HeaderNotification(infoPtr, (LPNMHEADERW)lParam);
10177 case WM_NOTIFYFORMAT:
10178 return LISTVIEW_NotifyFormat(infoPtr, (HWND)wParam, (INT)lParam);
10180 case WM_PRINTCLIENT:
10181 return LISTVIEW_PrintClient(infoPtr, (HDC)wParam, (DWORD)lParam);
10184 return LISTVIEW_Paint(infoPtr, (HDC)wParam);
10186 case WM_RBUTTONDBLCLK:
10187 return LISTVIEW_RButtonDblClk(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10189 case WM_RBUTTONDOWN:
10190 return LISTVIEW_RButtonDown(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10193 return LISTVIEW_RButtonUp(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
10196 if(LISTVIEW_SetCursor(infoPtr, (HWND)wParam, LOWORD(lParam), HIWORD(lParam)))
10201 return LISTVIEW_SetFocus(infoPtr, (HWND)wParam);
10204 return LISTVIEW_SetFont(infoPtr, (HFONT)wParam, (WORD)lParam);
10207 return LISTVIEW_SetRedraw(infoPtr, (BOOL)wParam);
10209 case WM_SHOWWINDOW:
10210 LISTVIEW_ShowWindow(infoPtr, (BOOL)wParam, (INT)lParam);
10211 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
10214 return LISTVIEW_Size(infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
10216 case WM_STYLECHANGED:
10217 return LISTVIEW_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
10219 case WM_STYLECHANGING:
10220 return LISTVIEW_StyleChanging(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
10222 case WM_SYSCOLORCHANGE:
10223 COMCTL32_RefreshSysColors();
10226 /* case WM_TIMER: */
10227 case WM_THEMECHANGED:
10228 return LISTVIEW_ThemeChanged(infoPtr);
10231 return LISTVIEW_VScroll(infoPtr, (INT)LOWORD(wParam), 0, (HWND)lParam);
10233 case WM_MOUSEWHEEL:
10234 if (wParam & (MK_SHIFT | MK_CONTROL))
10235 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
10236 return LISTVIEW_MouseWheel(infoPtr, (short int)HIWORD(wParam));
10238 case WM_WINDOWPOSCHANGED:
10239 if (!(((WINDOWPOS *)lParam)->flags & SWP_NOSIZE))
10241 UINT uView = infoPtr->dwStyle & LVS_TYPEMASK;
10242 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOACTIVATE |
10243 SWP_NOZORDER | SWP_NOMOVE | SWP_NOSIZE);
10245 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (uView == LVS_REPORT))
10247 MEASUREITEMSTRUCT mis;
10248 mis.CtlType = ODT_LISTVIEW;
10249 mis.CtlID = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
10253 mis.itemHeight= infoPtr->nItemHeight;
10254 SendMessageW(infoPtr->hwndNotify, WM_MEASUREITEM, mis.CtlID, (LPARAM)&mis);
10255 if (infoPtr->nItemHeight != max(mis.itemHeight, 1))
10256 infoPtr->nMeasureItemHeight = infoPtr->nItemHeight = max(mis.itemHeight, 1);
10259 LISTVIEW_UpdateSize(infoPtr);
10260 LISTVIEW_UpdateScroll(infoPtr);
10262 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
10264 /* case WM_WININICHANGE: */
10267 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
10268 ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
10271 /* call default window procedure */
10272 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
10279 * Registers the window class.
10287 void LISTVIEW_Register(void)
10289 WNDCLASSW wndClass;
10291 ZeroMemory(&wndClass, sizeof(WNDCLASSW));
10292 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
10293 wndClass.lpfnWndProc = LISTVIEW_WindowProc;
10294 wndClass.cbClsExtra = 0;
10295 wndClass.cbWndExtra = sizeof(LISTVIEW_INFO *);
10296 wndClass.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
10297 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
10298 wndClass.lpszClassName = WC_LISTVIEWW;
10299 RegisterClassW(&wndClass);
10304 * Unregisters the window class.
10312 void LISTVIEW_Unregister(void)
10314 UnregisterClassW(WC_LISTVIEWW, NULL);
10319 * Handle any WM_COMMAND messages
10322 * [I] infoPtr : valid pointer to the listview structure
10323 * [I] wParam : the first message parameter
10324 * [I] lParam : the second message parameter
10329 static LRESULT LISTVIEW_Command(const LISTVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
10331 switch (HIWORD(wParam))
10336 * Adjust the edit window size
10338 WCHAR buffer[1024];
10339 HDC hdc = GetDC(infoPtr->hwndEdit);
10340 HFONT hFont, hOldFont = 0;
10344 if (!infoPtr->hwndEdit || !hdc) return 0;
10345 GetWindowTextW(infoPtr->hwndEdit, buffer, sizeof(buffer)/sizeof(buffer[0]));
10346 GetWindowRect(infoPtr->hwndEdit, &rect);
10348 /* Select font to get the right dimension of the string */
10349 hFont = (HFONT)SendMessageW(infoPtr->hwndEdit, WM_GETFONT, 0, 0);
10352 hOldFont = SelectObject(hdc, hFont);
10355 if (GetTextExtentPoint32W(hdc, buffer, lstrlenW(buffer), &sz))
10357 TEXTMETRICW textMetric;
10359 /* Add Extra spacing for the next character */
10360 GetTextMetricsW(hdc, &textMetric);
10361 sz.cx += (textMetric.tmMaxCharWidth * 2);
10369 rect.bottom - rect.top,
10370 SWP_DRAWFRAME|SWP_NOMOVE);
10373 SelectObject(hdc, hOldFont);
10375 ReleaseDC(infoPtr->hwndEdit, hdc);
10381 return SendMessageW (infoPtr->hwndNotify, WM_COMMAND, wParam, lParam);
10390 * Subclassed edit control windproc function
10393 * [I] hwnd : the edit window handle
10394 * [I] uMsg : the message that is to be processed
10395 * [I] wParam : first message parameter
10396 * [I] lParam : second message parameter
10397 * [I] isW : TRUE if input is Unicode
10402 static LRESULT EditLblWndProcT(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL isW)
10404 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(GetParent(hwnd), 0);
10405 BOOL cancel = FALSE;
10407 TRACE("(hwnd=%p, uMsg=%x, wParam=%lx, lParam=%lx, isW=%d)\n",
10408 hwnd, uMsg, wParam, lParam, isW);
10412 case WM_GETDLGCODE:
10413 return DLGC_WANTARROWS | DLGC_WANTALLKEYS;
10420 WNDPROC editProc = infoPtr->EditWndProc;
10421 infoPtr->EditWndProc = 0;
10422 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (DWORD_PTR)editProc);
10423 return CallWindowProcT(editProc, hwnd, uMsg, wParam, lParam, isW);
10427 if (VK_ESCAPE == (INT)wParam)
10432 else if (VK_RETURN == (INT)wParam)
10436 return CallWindowProcT(infoPtr->EditWndProc, hwnd, uMsg, wParam, lParam, isW);
10439 /* kill the edit */
10440 if (infoPtr->hwndEdit)
10442 LPWSTR buffer = NULL;
10444 infoPtr->hwndEdit = 0;
10447 DWORD len = isW ? GetWindowTextLengthW(hwnd) : GetWindowTextLengthA(hwnd);
10451 if ( (buffer = Alloc((len+1) * (isW ? sizeof(WCHAR) : sizeof(CHAR)))) )
10453 if (isW) GetWindowTextW(hwnd, buffer, len+1);
10454 else GetWindowTextA(hwnd, (CHAR*)buffer, len+1);
10458 LISTVIEW_EndEditLabelT(infoPtr, buffer, isW);
10463 SendMessageW(hwnd, WM_CLOSE, 0, 0);
10469 * Subclassed edit control Unicode windproc function
10472 * [I] hwnd : the edit window handle
10473 * [I] uMsg : the message that is to be processed
10474 * [I] wParam : first message parameter
10475 * [I] lParam : second message parameter
10479 static LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
10481 return EditLblWndProcT(hwnd, uMsg, wParam, lParam, TRUE);
10486 * Subclassed edit control ANSI windproc function
10489 * [I] hwnd : the edit window handle
10490 * [I] uMsg : the message that is to be processed
10491 * [I] wParam : first message parameter
10492 * [I] lParam : second message parameter
10496 static LRESULT CALLBACK EditLblWndProcA(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
10498 return EditLblWndProcT(hwnd, uMsg, wParam, lParam, FALSE);
10503 * Creates a subclassed edit control
10506 * [I] infoPtr : valid pointer to the listview structure
10507 * [I] text : initial text for the edit
10508 * [I] style : the window style
10509 * [I] isW : TRUE if input is Unicode
10513 static HWND CreateEditLabelT(LISTVIEW_INFO *infoPtr, LPCWSTR text, DWORD style,
10514 INT x, INT y, INT width, INT height, BOOL isW)
10516 WCHAR editName[5] = { 'E', 'd', 'i', 't', '\0' };
10521 TEXTMETRICW textMetric;
10522 HINSTANCE hinst = (HINSTANCE)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_HINSTANCE);
10524 TRACE("(text=%s, ..., isW=%d)\n", debugtext_t(text, isW), isW);
10526 style |= WS_CHILDWINDOW|WS_CLIPSIBLINGS|ES_LEFT|ES_AUTOHSCROLL|WS_BORDER;
10527 hdc = GetDC(infoPtr->hwndSelf);
10529 /* Select the font to get appropriate metric dimensions */
10530 if(infoPtr->hFont != 0)
10531 hOldFont = SelectObject(hdc, infoPtr->hFont);
10533 /*Get String Length in pixels */
10534 GetTextExtentPoint32W(hdc, text, lstrlenW(text), &sz);
10536 /*Add Extra spacing for the next character */
10537 GetTextMetricsW(hdc, &textMetric);
10538 sz.cx += (textMetric.tmMaxCharWidth * 2);
10540 if(infoPtr->hFont != 0)
10541 SelectObject(hdc, hOldFont);
10543 ReleaseDC(infoPtr->hwndSelf, hdc);
10545 hedit = CreateWindowW(editName, text, style, x, y, sz.cx, height, infoPtr->hwndSelf, 0, hinst, 0);
10547 hedit = CreateWindowA("Edit", (LPCSTR)text, style, x, y, sz.cx, height, infoPtr->hwndSelf, 0, hinst, 0);
10549 if (!hedit) return 0;
10551 infoPtr->EditWndProc = (WNDPROC)
10552 (isW ? SetWindowLongPtrW(hedit, GWLP_WNDPROC, (DWORD_PTR)EditLblWndProcW) :
10553 SetWindowLongPtrA(hedit, GWLP_WNDPROC, (DWORD_PTR)EditLblWndProcA) );
10555 SendMessageW(hedit, WM_SETFONT, (WPARAM)infoPtr->hFont, FALSE);