mmsystem.dll16: Fix the pointer arithmetic and memory leak issues when unmapping.
[wine.git] / dlls / comctl32 / listview.c
blob1f64cbeebddac376ce200b43625fc91a254b40e0
1 /*
2 * Listview control
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
9 * Copyright 2009-2011 Nikolay Sivov
10 * Copyright 2009 Owen Rudge for CodeWeavers
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 * NOTES
28 * This code was audited for completeness against the documented features
29 * of Comctl32.dll version 6.0 on May. 20, 2005, by James Hawkins.
31 * Unless otherwise noted, we believe this code to be complete, as per
32 * the specification mentioned above.
33 * If you discover missing features, or bugs, please note them below.
35 * TODO:
37 * Default Message Processing
38 * -- WM_CREATE: create the icon and small icon image lists at this point only if
39 * the LVS_SHAREIMAGELISTS style is not specified.
40 * -- WM_WINDOWPOSCHANGED: arrange the list items if the current view is icon
41 * or small icon and the LVS_AUTOARRANGE style is specified.
42 * -- WM_TIMER
43 * -- WM_WININICHANGE
45 * Features
46 * -- Hot item handling, mouse hovering
47 * -- Workareas support
48 * -- Tilemode support
49 * -- Groups support
51 * Bugs
52 * -- Expand large item in ICON mode when the cursor is flying over the icon or text.
53 * -- Support CustomDraw options for _WIN32_IE >= 0x560 (see NMLVCUSTOMDRAW docs).
54 * -- LVA_SNAPTOGRID not implemented
55 * -- LISTVIEW_ApproximateViewRect partially implemented
56 * -- LISTVIEW_SetColumnWidth ignores header images & bitmap
57 * -- LISTVIEW_SetIconSpacing is incomplete
58 * -- LISTVIEW_StyleChanged doesn't handle some changes too well
60 * Speedups
61 * -- LISTVIEW_GetNextItem needs to be rewritten. It is currently
62 * linear in the number of items in the list, and this is
63 * unacceptable for large lists.
64 * -- if list is sorted by item text LISTVIEW_InsertItemT could use
65 * binary search to calculate item index (e.g. DPA_Search()).
66 * This requires sorted state to be reliably tracked in item modifiers.
67 * -- we should keep an ordered array of coordinates in iconic mode
68 * this would allow to frame items (iterator_frameditems),
69 * and find nearest item (LVFI_NEARESTXY) a lot more efficiently
71 * Flags
72 * -- LVIF_COLUMNS
73 * -- LVIF_GROUPID
75 * States
76 * -- LVIS_ACTIVATING (not currently supported by comctl32.dll version 6.0)
77 * -- LVIS_DROPHILITED
78 * -- LVIS_OVERLAYMASK
80 * Styles
81 * -- LVS_NOLABELWRAP
82 * -- LVS_NOSCROLL (see Q137520)
83 * -- LVS_ALIGNTOP
85 * Extended Styles
86 * -- LVS_EX_BORDERSELECT
87 * -- LVS_EX_FLATSB
88 * -- LVS_EX_INFOTIP
89 * -- LVS_EX_LABELTIP
90 * -- LVS_EX_MULTIWORKAREAS
91 * -- LVS_EX_REGIONAL
92 * -- LVS_EX_SIMPLESELECT
93 * -- LVS_EX_TWOCLICKACTIVATE
94 * -- LVS_EX_UNDERLINECOLD
95 * -- LVS_EX_UNDERLINEHOT
97 * Notifications:
98 * -- LVN_BEGINSCROLL, LVN_ENDSCROLL
99 * -- LVN_GETINFOTIP
100 * -- LVN_HOTTRACK
101 * -- LVN_SETDISPINFO
102 * -- LVN_BEGINRDRAG
104 * Messages:
105 * -- LVM_ENABLEGROUPVIEW
106 * -- LVM_GETBKIMAGE, LVM_SETBKIMAGE
107 * -- LVM_GETGROUPINFO, LVM_SETGROUPINFO
108 * -- LVM_GETGROUPMETRICS, LVM_SETGROUPMETRICS
109 * -- LVM_GETINSERTMARK, LVM_SETINSERTMARK
110 * -- LVM_GETINSERTMARKCOLOR, LVM_SETINSERTMARKCOLOR
111 * -- LVM_GETINSERTMARKRECT
112 * -- LVM_GETNUMBEROFWORKAREAS
113 * -- LVM_GETOUTLINECOLOR, LVM_SETOUTLINECOLOR
114 * -- LVM_GETSELECTEDCOLUMN, LVM_SETSELECTEDCOLUMN
115 * -- LVM_GETISEARCHSTRINGW, LVM_GETISEARCHSTRINGA
116 * -- LVM_GETTILEINFO, LVM_SETTILEINFO
117 * -- LVM_GETTILEVIEWINFO, LVM_SETTILEVIEWINFO
118 * -- LVM_GETWORKAREAS, LVM_SETWORKAREAS
119 * -- LVM_HASGROUP, LVM_INSERTGROUP, LVM_REMOVEGROUP, LVM_REMOVEALLGROUPS
120 * -- LVM_INSERTGROUPSORTED
121 * -- LVM_INSERTMARKHITTEST
122 * -- LVM_ISGROUPVIEWENABLED
123 * -- LVM_MOVEGROUP
124 * -- LVM_MOVEITEMTOGROUP
125 * -- LVM_SETINFOTIP
126 * -- LVM_SETTILEWIDTH
127 * -- LVM_SORTGROUPS
129 * Macros:
130 * -- ListView_GetHoverTime, ListView_SetHoverTime
131 * -- ListView_GetISearchString
132 * -- ListView_GetNumberOfWorkAreas
133 * -- ListView_GetWorkAreas, ListView_SetWorkAreas
135 * Functions:
136 * -- LVGroupComparE
138 * Known differences in message stream from native control (not known if
139 * these differences cause problems):
140 * LVM_INSERTITEM issues LVM_SETITEMSTATE and LVM_SETITEM in certain cases.
141 * LVM_SETITEM does not always issue LVN_ITEMCHANGING/LVN_ITEMCHANGED.
142 * WM_CREATE does not issue WM_QUERYUISTATE and associated registry
143 * processing for "USEDOUBLECLICKTIME".
146 #include "config.h"
147 #include "wine/port.h"
149 #include <assert.h>
150 #include <ctype.h>
151 #include <string.h>
152 #include <stdlib.h>
153 #include <stdarg.h>
154 #include <stdio.h>
156 #include "windef.h"
157 #include "winbase.h"
158 #include "winnt.h"
159 #include "wingdi.h"
160 #include "winuser.h"
161 #include "winnls.h"
162 #include "commctrl.h"
163 #include "comctl32.h"
164 #include "uxtheme.h"
166 #include "wine/debug.h"
167 #include "wine/unicode.h"
169 WINE_DEFAULT_DEBUG_CHANNEL(listview);
171 typedef struct tagCOLUMN_INFO
173 RECT rcHeader; /* tracks the header's rectangle */
174 INT fmt; /* same as LVCOLUMN.fmt */
175 INT cxMin;
176 } COLUMN_INFO;
178 typedef struct tagITEMHDR
180 LPWSTR pszText;
181 INT iImage;
182 } ITEMHDR, *LPITEMHDR;
184 typedef struct tagSUBITEM_INFO
186 ITEMHDR hdr;
187 INT iSubItem;
188 } SUBITEM_INFO;
190 typedef struct tagITEM_ID ITEM_ID;
192 typedef struct tagITEM_INFO
194 ITEMHDR hdr;
195 UINT state;
196 LPARAM lParam;
197 INT iIndent;
198 ITEM_ID *id;
199 } ITEM_INFO;
201 struct tagITEM_ID
203 UINT id; /* item id */
204 HDPA item; /* link to item data */
207 typedef struct tagRANGE
209 INT lower;
210 INT upper;
211 } RANGE;
213 typedef struct tagRANGES
215 HDPA hdpa;
216 } *RANGES;
218 typedef struct tagITERATOR
220 INT nItem;
221 INT nSpecial;
222 RANGE range;
223 RANGES ranges;
224 INT index;
225 } ITERATOR;
227 typedef struct tagDELAYED_ITEM_EDIT
229 BOOL fEnabled;
230 INT iItem;
231 } DELAYED_ITEM_EDIT;
233 typedef struct tagLISTVIEW_INFO
235 /* control window */
236 HWND hwndSelf;
237 RECT rcList; /* This rectangle is really the window
238 * client rectangle possibly reduced by the
239 * horizontal scroll bar and/or header - see
240 * LISTVIEW_UpdateSize. This rectangle offset
241 * by the LISTVIEW_GetOrigin value is in
242 * client coordinates */
244 /* notification window */
245 SHORT notifyFormat;
246 HWND hwndNotify;
247 BOOL bDoChangeNotify; /* send change notification messages? */
248 UINT uCallbackMask;
250 /* tooltips */
251 HWND hwndToolTip;
253 /* items */
254 INT nItemCount; /* the number of items in the list */
255 HDPA hdpaItems; /* array ITEM_INFO pointers */
256 HDPA hdpaItemIds; /* array of ITEM_ID pointers */
257 HDPA hdpaPosX; /* maintains the (X, Y) coordinates of the */
258 HDPA hdpaPosY; /* items in LVS_ICON, and LVS_SMALLICON modes */
259 RANGES selectionRanges;
260 INT nSelectionMark; /* item to start next multiselection from */
261 INT nHotItem;
262 BOOL bAutoarrange; /* Autoarrange flag when NOT in LVS_AUTOARRANGE */
264 /* columns */
265 HDPA hdpaColumns; /* array of COLUMN_INFO pointers */
266 BOOL colRectsDirty; /* trigger column rectangles requery from header */
268 /* item metrics */
269 BOOL bNoItemMetrics; /* flags if item metrics are not yet computed */
270 INT nItemHeight;
271 INT nItemWidth;
273 /* sorting */
274 PFNLVCOMPARE pfnCompare; /* sorting callback pointer */
275 LPARAM lParamSort;
277 /* style */
278 DWORD dwStyle; /* the cached window GWL_STYLE */
279 DWORD dwLvExStyle; /* extended listview style */
280 DWORD uView; /* current view available through LVM_[G,S]ETVIEW */
282 /* edit item */
283 HWND hwndEdit;
284 WNDPROC EditWndProc;
285 INT nEditLabelItem;
286 DELAYED_ITEM_EDIT itemEdit; /* Pointer to this structure will be the timer ID */
288 /* icons */
289 HIMAGELIST himlNormal;
290 HIMAGELIST himlSmall;
291 HIMAGELIST himlState;
292 SIZE iconSize;
293 SIZE iconSpacing;
294 SIZE iconStateSize;
295 POINT currIconPos; /* this is the position next icon will be placed */
297 /* header */
298 HWND hwndHeader;
299 INT xTrackLine; /* The x coefficient of the track line or -1 if none */
301 /* marquee selection */
302 BOOL bMarqueeSelect; /* marquee selection/highlight underway */
303 BOOL bScrolling;
304 RECT marqueeRect; /* absolute coordinates of marquee selection */
305 RECT marqueeDrawRect; /* relative coordinates for drawing marquee */
306 POINT marqueeOrigin; /* absolute coordinates of marquee click origin */
308 /* focus drawing */
309 BOOL bFocus; /* control has focus */
310 INT nFocusedItem;
311 RECT rcFocus; /* focus bounds */
313 /* colors */
314 HBRUSH hBkBrush;
315 COLORREF clrBk;
316 COLORREF clrText;
317 COLORREF clrTextBk;
319 /* font */
320 HFONT hDefaultFont;
321 HFONT hFont;
322 INT ntmHeight; /* Some cached metrics of the font used */
323 INT ntmMaxCharWidth; /* by the listview to draw items */
324 INT nEllipsisWidth;
326 /* mouse operation */
327 BOOL bLButtonDown;
328 BOOL bRButtonDown;
329 BOOL bDragging;
330 POINT ptClickPos; /* point where the user clicked */
331 INT nLButtonDownItem; /* tracks item to reset multiselection on WM_LBUTTONUP */
332 DWORD dwHoverTime;
333 HCURSOR hHotCursor;
335 /* keyboard operation */
336 DWORD lastKeyPressTimestamp;
337 WPARAM charCode;
338 INT nSearchParamLength;
339 WCHAR szSearchParam[ MAX_PATH ];
341 /* painting */
342 DWORD cditemmode; /* Keep the custom draw flags for an item/row */
343 BOOL bIsDrawing; /* Drawing in progress */
344 INT nMeasureItemHeight; /* WM_MEASUREITEM result */
345 BOOL bRedraw; /* WM_SETREDRAW switch */
347 /* misc */
348 DWORD iVersion; /* CCM_[G,S]ETVERSION */
349 } LISTVIEW_INFO;
352 * constants
354 /* How many we debug buffer to allocate */
355 #define DEBUG_BUFFERS 20
356 /* The size of a single debug buffer */
357 #define DEBUG_BUFFER_SIZE 256
359 /* Internal interface to LISTVIEW_HScroll and LISTVIEW_VScroll */
360 #define SB_INTERNAL -1
362 /* maximum size of a label */
363 #define DISP_TEXT_SIZE 260
365 /* padding for items in list and small icon display modes */
366 #define WIDTH_PADDING 12
368 /* padding for items in list, report and small icon display modes */
369 #define HEIGHT_PADDING 1
371 /* offset of items in report display mode */
372 #define REPORT_MARGINX 2
374 /* padding for icon in large icon display mode
375 * ICON_TOP_PADDING_NOTHITABLE - space between top of box and area
376 * that HITTEST will see.
377 * ICON_TOP_PADDING_HITABLE - spacing between above and icon.
378 * ICON_TOP_PADDING - sum of the two above.
379 * ICON_BOTTOM_PADDING - between bottom of icon and top of text
380 * LABEL_HOR_PADDING - between text and sides of box
381 * LABEL_VERT_PADDING - between bottom of text and end of box
383 * ICON_LR_PADDING - additional width above icon size.
384 * ICON_LR_HALF - half of the above value
386 #define ICON_TOP_PADDING_NOTHITABLE 2
387 #define ICON_TOP_PADDING_HITABLE 2
388 #define ICON_TOP_PADDING (ICON_TOP_PADDING_NOTHITABLE + ICON_TOP_PADDING_HITABLE)
389 #define ICON_BOTTOM_PADDING 4
390 #define LABEL_HOR_PADDING 5
391 #define LABEL_VERT_PADDING 7
392 #define ICON_LR_PADDING 16
393 #define ICON_LR_HALF (ICON_LR_PADDING/2)
395 /* default label width for items in list and small icon display modes */
396 #define DEFAULT_LABEL_WIDTH 40
397 /* maximum select rectangle width for empty text item in LV_VIEW_DETAILS */
398 #define MAX_EMPTYTEXT_SELECT_WIDTH 80
400 /* default column width for items in list display mode */
401 #define DEFAULT_COLUMN_WIDTH 128
403 /* Size of "line" scroll for V & H scrolls */
404 #define LISTVIEW_SCROLL_ICON_LINE_SIZE 37
406 /* Padding between image and label */
407 #define IMAGE_PADDING 2
409 /* Padding behind the label */
410 #define TRAILING_LABEL_PADDING 12
411 #define TRAILING_HEADER_PADDING 11
413 /* Border for the icon caption */
414 #define CAPTION_BORDER 2
416 /* Standard DrawText flags */
417 #define LV_ML_DT_FLAGS (DT_TOP | DT_NOPREFIX | DT_EDITCONTROL | DT_CENTER | DT_WORDBREAK | DT_WORD_ELLIPSIS | DT_END_ELLIPSIS)
418 #define LV_FL_DT_FLAGS (DT_TOP | DT_NOPREFIX | DT_EDITCONTROL | DT_CENTER | DT_WORDBREAK | DT_NOCLIP)
419 #define LV_SL_DT_FLAGS (DT_VCENTER | DT_NOPREFIX | DT_EDITCONTROL | DT_SINGLELINE | DT_WORD_ELLIPSIS | DT_END_ELLIPSIS)
421 /* Image index from state */
422 #define STATEIMAGEINDEX(x) (((x) & LVIS_STATEIMAGEMASK) >> 12)
424 /* The time in milliseconds to reset the search in the list */
425 #define KEY_DELAY 450
427 /* Dump the LISTVIEW_INFO structure to the debug channel */
428 #define LISTVIEW_DUMP(iP) do { \
429 TRACE("hwndSelf=%p, clrBk=0x%06x, clrText=0x%06x, clrTextBk=0x%06x, ItemHeight=%d, ItemWidth=%d, Style=0x%08x\n", \
430 iP->hwndSelf, iP->clrBk, iP->clrText, iP->clrTextBk, \
431 iP->nItemHeight, iP->nItemWidth, iP->dwStyle); \
432 TRACE("hwndSelf=%p, himlNor=%p, himlSml=%p, himlState=%p, Focused=%d, Hot=%d, exStyle=0x%08x, Focus=%d\n", \
433 iP->hwndSelf, iP->himlNormal, iP->himlSmall, iP->himlState, \
434 iP->nFocusedItem, iP->nHotItem, iP->dwLvExStyle, iP->bFocus ); \
435 TRACE("hwndSelf=%p, ntmH=%d, icSz.cx=%d, icSz.cy=%d, icSp.cx=%d, icSp.cy=%d, notifyFmt=%d\n", \
436 iP->hwndSelf, iP->ntmHeight, iP->iconSize.cx, iP->iconSize.cy, \
437 iP->iconSpacing.cx, iP->iconSpacing.cy, iP->notifyFormat); \
438 TRACE("hwndSelf=%p, rcList=%s\n", iP->hwndSelf, wine_dbgstr_rect(&iP->rcList)); \
439 } while(0)
441 static const WCHAR themeClass[] = {'L','i','s','t','V','i','e','w',0};
444 * forward declarations
446 static BOOL LISTVIEW_GetItemT(const LISTVIEW_INFO *, LPLVITEMW, BOOL);
447 static void LISTVIEW_GetItemBox(const LISTVIEW_INFO *, INT, LPRECT);
448 static void LISTVIEW_GetItemOrigin(const LISTVIEW_INFO *, INT, LPPOINT);
449 static BOOL LISTVIEW_GetItemPosition(const LISTVIEW_INFO *, INT, LPPOINT);
450 static BOOL LISTVIEW_GetItemRect(const LISTVIEW_INFO *, INT, LPRECT);
451 static void LISTVIEW_GetOrigin(const LISTVIEW_INFO *, LPPOINT);
452 static BOOL LISTVIEW_GetViewRect(const LISTVIEW_INFO *, LPRECT);
453 static void LISTVIEW_UpdateSize(LISTVIEW_INFO *);
454 static LRESULT LISTVIEW_Command(LISTVIEW_INFO *, WPARAM, LPARAM);
455 static INT LISTVIEW_GetStringWidthT(const LISTVIEW_INFO *, LPCWSTR, BOOL);
456 static BOOL LISTVIEW_KeySelection(LISTVIEW_INFO *, INT, BOOL);
457 static UINT LISTVIEW_GetItemState(const LISTVIEW_INFO *, INT, UINT);
458 static BOOL LISTVIEW_SetItemState(LISTVIEW_INFO *, INT, const LVITEMW *);
459 static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *, INT, INT);
460 static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *, INT, INT);
461 static BOOL LISTVIEW_EnsureVisible(LISTVIEW_INFO *, INT, BOOL);
462 static HIMAGELIST LISTVIEW_SetImageList(LISTVIEW_INFO *, INT, HIMAGELIST);
463 static INT LISTVIEW_HitTest(const LISTVIEW_INFO *, LPLVHITTESTINFO, BOOL, BOOL);
464 static BOOL LISTVIEW_EndEditLabelT(LISTVIEW_INFO *, BOOL, BOOL);
465 static BOOL LISTVIEW_Scroll(LISTVIEW_INFO *, INT, INT);
467 /******** Text handling functions *************************************/
469 /* A text pointer is either NULL, LPSTR_TEXTCALLBACK, or points to a
470 * text string. The string may be ANSI or Unicode, in which case
471 * the boolean isW tells us the type of the string.
473 * The name of the function tell what type of strings it expects:
474 * W: Unicode, T: ANSI/Unicode - function of isW
477 static inline BOOL is_text(LPCWSTR text)
479 return text != NULL && text != LPSTR_TEXTCALLBACKW;
482 static inline int textlenT(LPCWSTR text, BOOL isW)
484 return !is_text(text) ? 0 :
485 isW ? lstrlenW(text) : lstrlenA((LPCSTR)text);
488 static inline void textcpynT(LPWSTR dest, BOOL isDestW, LPCWSTR src, BOOL isSrcW, INT max)
490 if (isDestW)
491 if (isSrcW) lstrcpynW(dest, src, max);
492 else MultiByteToWideChar(CP_ACP, 0, (LPCSTR)src, -1, dest, max);
493 else
494 if (isSrcW) WideCharToMultiByte(CP_ACP, 0, src, -1, (LPSTR)dest, max, NULL, NULL);
495 else lstrcpynA((LPSTR)dest, (LPCSTR)src, max);
498 static inline LPWSTR textdupTtoW(LPCWSTR text, BOOL isW)
500 LPWSTR wstr = (LPWSTR)text;
502 if (!isW && is_text(text))
504 INT len = MultiByteToWideChar(CP_ACP, 0, (LPCSTR)text, -1, NULL, 0);
505 wstr = Alloc(len * sizeof(WCHAR));
506 if (wstr) MultiByteToWideChar(CP_ACP, 0, (LPCSTR)text, -1, wstr, len);
508 TRACE(" wstr=%s\n", text == LPSTR_TEXTCALLBACKW ? "(callback)" : debugstr_w(wstr));
509 return wstr;
512 static inline void textfreeT(LPWSTR wstr, BOOL isW)
514 if (!isW && is_text(wstr)) Free (wstr);
518 * dest is a pointer to a Unicode string
519 * src is a pointer to a string (Unicode if isW, ANSI if !isW)
521 static BOOL textsetptrT(LPWSTR *dest, LPCWSTR src, BOOL isW)
523 BOOL bResult = TRUE;
525 if (src == LPSTR_TEXTCALLBACKW)
527 if (is_text(*dest)) Free(*dest);
528 *dest = LPSTR_TEXTCALLBACKW;
530 else
532 LPWSTR pszText = textdupTtoW(src, isW);
533 if (*dest == LPSTR_TEXTCALLBACKW) *dest = NULL;
534 bResult = Str_SetPtrW(dest, pszText);
535 textfreeT(pszText, isW);
537 return bResult;
541 * compares a Unicode to a Unicode/ANSI text string
543 static inline int textcmpWT(LPCWSTR aw, LPCWSTR bt, BOOL isW)
545 if (!aw) return bt ? -1 : 0;
546 if (!bt) return 1;
547 if (aw == LPSTR_TEXTCALLBACKW)
548 return bt == LPSTR_TEXTCALLBACKW ? 1 : -1;
549 if (bt != LPSTR_TEXTCALLBACKW)
551 LPWSTR bw = textdupTtoW(bt, isW);
552 int r = bw ? lstrcmpW(aw, bw) : 1;
553 textfreeT(bw, isW);
554 return r;
557 return 1;
560 static inline int lstrncmpiW(LPCWSTR s1, LPCWSTR s2, int n)
562 int res;
564 n = min(min(n, lstrlenW(s1)), lstrlenW(s2));
565 res = CompareStringW(LOCALE_USER_DEFAULT, NORM_IGNORECASE, s1, n, s2, n);
566 return res ? res - sizeof(WCHAR) : res;
569 /******** Debugging functions *****************************************/
571 static inline LPCSTR debugtext_t(LPCWSTR text, BOOL isW)
573 if (text == LPSTR_TEXTCALLBACKW) return "(callback)";
574 return isW ? debugstr_w(text) : debugstr_a((LPCSTR)text);
577 static inline LPCSTR debugtext_tn(LPCWSTR text, BOOL isW, INT n)
579 if (text == LPSTR_TEXTCALLBACKW) return "(callback)";
580 n = min(textlenT(text, isW), n);
581 return isW ? debugstr_wn(text, n) : debugstr_an((LPCSTR)text, n);
584 static char* debug_getbuf(void)
586 static int index = 0;
587 static char buffers[DEBUG_BUFFERS][DEBUG_BUFFER_SIZE];
588 return buffers[index++ % DEBUG_BUFFERS];
591 static inline const char* debugrange(const RANGE *lprng)
593 if (!lprng) return "(null)";
594 return wine_dbg_sprintf("[%d, %d]", lprng->lower, lprng->upper);
597 static const char* debugscrollinfo(const SCROLLINFO *pScrollInfo)
599 char* buf = debug_getbuf(), *text = buf;
600 int len, size = DEBUG_BUFFER_SIZE;
602 if (pScrollInfo == NULL) return "(null)";
603 len = snprintf(buf, size, "{cbSize=%d, ", pScrollInfo->cbSize);
604 if (len == -1) goto end; buf += len; size -= len;
605 if (pScrollInfo->fMask & SIF_RANGE)
606 len = snprintf(buf, size, "nMin=%d, nMax=%d, ", pScrollInfo->nMin, pScrollInfo->nMax);
607 else len = 0;
608 if (len == -1) goto end; buf += len; size -= len;
609 if (pScrollInfo->fMask & SIF_PAGE)
610 len = snprintf(buf, size, "nPage=%u, ", pScrollInfo->nPage);
611 else len = 0;
612 if (len == -1) goto end; buf += len; size -= len;
613 if (pScrollInfo->fMask & SIF_POS)
614 len = snprintf(buf, size, "nPos=%d, ", pScrollInfo->nPos);
615 else len = 0;
616 if (len == -1) goto end; buf += len; size -= len;
617 if (pScrollInfo->fMask & SIF_TRACKPOS)
618 len = snprintf(buf, size, "nTrackPos=%d, ", pScrollInfo->nTrackPos);
619 else len = 0;
620 if (len == -1) goto end; buf += len;
621 goto undo;
622 end:
623 buf = text + strlen(text);
624 undo:
625 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
626 return text;
629 static const char* debugnmlistview(const NMLISTVIEW *plvnm)
631 if (!plvnm) return "(null)";
632 return wine_dbg_sprintf("iItem=%d, iSubItem=%d, uNewState=0x%x,"
633 " uOldState=0x%x, uChanged=0x%x, ptAction=%s, lParam=%ld",
634 plvnm->iItem, plvnm->iSubItem, plvnm->uNewState, plvnm->uOldState,
635 plvnm->uChanged, wine_dbgstr_point(&plvnm->ptAction), plvnm->lParam);
638 static const char* debuglvitem_t(const LVITEMW *lpLVItem, BOOL isW)
640 char* buf = debug_getbuf(), *text = buf;
641 int len, size = DEBUG_BUFFER_SIZE;
643 if (lpLVItem == NULL) return "(null)";
644 len = snprintf(buf, size, "{iItem=%d, iSubItem=%d, ", lpLVItem->iItem, lpLVItem->iSubItem);
645 if (len == -1) goto end; buf += len; size -= len;
646 if (lpLVItem->mask & LVIF_STATE)
647 len = snprintf(buf, size, "state=%x, stateMask=%x, ", lpLVItem->state, lpLVItem->stateMask);
648 else len = 0;
649 if (len == -1) goto end; buf += len; size -= len;
650 if (lpLVItem->mask & LVIF_TEXT)
651 len = snprintf(buf, size, "pszText=%s, cchTextMax=%d, ", debugtext_tn(lpLVItem->pszText, isW, 80), lpLVItem->cchTextMax);
652 else len = 0;
653 if (len == -1) goto end; buf += len; size -= len;
654 if (lpLVItem->mask & LVIF_IMAGE)
655 len = snprintf(buf, size, "iImage=%d, ", lpLVItem->iImage);
656 else len = 0;
657 if (len == -1) goto end; buf += len; size -= len;
658 if (lpLVItem->mask & LVIF_PARAM)
659 len = snprintf(buf, size, "lParam=%lx, ", lpLVItem->lParam);
660 else len = 0;
661 if (len == -1) goto end; buf += len; size -= len;
662 if (lpLVItem->mask & LVIF_INDENT)
663 len = snprintf(buf, size, "iIndent=%d, ", lpLVItem->iIndent);
664 else len = 0;
665 if (len == -1) goto end; buf += len;
666 goto undo;
667 end:
668 buf = text + strlen(text);
669 undo:
670 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
671 return text;
674 static const char* debuglvcolumn_t(const LVCOLUMNW *lpColumn, BOOL isW)
676 char* buf = debug_getbuf(), *text = buf;
677 int len, size = DEBUG_BUFFER_SIZE;
679 if (lpColumn == NULL) return "(null)";
680 len = snprintf(buf, size, "{");
681 if (len == -1) goto end; buf += len; size -= len;
682 if (lpColumn->mask & LVCF_SUBITEM)
683 len = snprintf(buf, size, "iSubItem=%d, ", lpColumn->iSubItem);
684 else len = 0;
685 if (len == -1) goto end; buf += len; size -= len;
686 if (lpColumn->mask & LVCF_FMT)
687 len = snprintf(buf, size, "fmt=%x, ", lpColumn->fmt);
688 else len = 0;
689 if (len == -1) goto end; buf += len; size -= len;
690 if (lpColumn->mask & LVCF_WIDTH)
691 len = snprintf(buf, size, "cx=%d, ", lpColumn->cx);
692 else len = 0;
693 if (len == -1) goto end; buf += len; size -= len;
694 if (lpColumn->mask & LVCF_TEXT)
695 len = snprintf(buf, size, "pszText=%s, cchTextMax=%d, ", debugtext_tn(lpColumn->pszText, isW, 80), lpColumn->cchTextMax);
696 else len = 0;
697 if (len == -1) goto end; buf += len; size -= len;
698 if (lpColumn->mask & LVCF_IMAGE)
699 len = snprintf(buf, size, "iImage=%d, ", lpColumn->iImage);
700 else len = 0;
701 if (len == -1) goto end; buf += len; size -= len;
702 if (lpColumn->mask & LVCF_ORDER)
703 len = snprintf(buf, size, "iOrder=%d, ", lpColumn->iOrder);
704 else len = 0;
705 if (len == -1) goto end; buf += len;
706 goto undo;
707 end:
708 buf = text + strlen(text);
709 undo:
710 if (buf - text > 2) { buf[-2] = '}'; buf[-1] = 0; }
711 return text;
714 static const char* debuglvhittestinfo(const LVHITTESTINFO *lpht)
716 if (!lpht) return "(null)";
718 return wine_dbg_sprintf("{pt=%s, flags=0x%x, iItem=%d, iSubItem=%d}",
719 wine_dbgstr_point(&lpht->pt), lpht->flags, lpht->iItem, lpht->iSubItem);
722 /* Return the corresponding text for a given scroll value */
723 static inline LPCSTR debugscrollcode(int nScrollCode)
725 switch(nScrollCode)
727 case SB_LINELEFT: return "SB_LINELEFT";
728 case SB_LINERIGHT: return "SB_LINERIGHT";
729 case SB_PAGELEFT: return "SB_PAGELEFT";
730 case SB_PAGERIGHT: return "SB_PAGERIGHT";
731 case SB_THUMBPOSITION: return "SB_THUMBPOSITION";
732 case SB_THUMBTRACK: return "SB_THUMBTRACK";
733 case SB_ENDSCROLL: return "SB_ENDSCROLL";
734 case SB_INTERNAL: return "SB_INTERNAL";
735 default: return "unknown";
740 /******** Notification functions ************************************/
742 static int get_ansi_notification(UINT unicodeNotificationCode)
744 switch (unicodeNotificationCode)
746 case LVN_BEGINLABELEDITA:
747 case LVN_BEGINLABELEDITW: return LVN_BEGINLABELEDITA;
748 case LVN_ENDLABELEDITA:
749 case LVN_ENDLABELEDITW: return LVN_ENDLABELEDITA;
750 case LVN_GETDISPINFOA:
751 case LVN_GETDISPINFOW: return LVN_GETDISPINFOA;
752 case LVN_SETDISPINFOA:
753 case LVN_SETDISPINFOW: return LVN_SETDISPINFOA;
754 case LVN_ODFINDITEMA:
755 case LVN_ODFINDITEMW: return LVN_ODFINDITEMA;
756 case LVN_GETINFOTIPA:
757 case LVN_GETINFOTIPW: return LVN_GETINFOTIPA;
758 /* header forwards */
759 case HDN_TRACKA:
760 case HDN_TRACKW: return HDN_TRACKA;
761 case HDN_ENDTRACKA:
762 case HDN_ENDTRACKW: return HDN_ENDTRACKA;
763 case HDN_BEGINDRAG: return HDN_BEGINDRAG;
764 case HDN_ENDDRAG: return HDN_ENDDRAG;
765 case HDN_ITEMCHANGINGA:
766 case HDN_ITEMCHANGINGW: return HDN_ITEMCHANGINGA;
767 case HDN_ITEMCHANGEDA:
768 case HDN_ITEMCHANGEDW: return HDN_ITEMCHANGEDA;
769 case HDN_ITEMCLICKA:
770 case HDN_ITEMCLICKW: return HDN_ITEMCLICKA;
771 case HDN_DIVIDERDBLCLICKA:
772 case HDN_DIVIDERDBLCLICKW: return HDN_DIVIDERDBLCLICKA;
773 default: break;
775 FIXME("unknown notification %x\n", unicodeNotificationCode);
776 return unicodeNotificationCode;
779 /* forwards header notifications to listview parent */
780 static LRESULT notify_forward_header(const LISTVIEW_INFO *infoPtr, const NMHEADERW *lpnmh)
782 NMHEADERA nmhA;
783 HDITEMA hditema;
784 HD_TEXTFILTERA textfilter;
785 LPSTR text = NULL, filter = NULL;
786 LRESULT ret;
788 /* on unicode format exit earlier */
789 if (infoPtr->notifyFormat == NFR_UNICODE)
790 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, lpnmh->hdr.idFrom,
791 (LPARAM)lpnmh);
793 /* header always supplies unicode notifications,
794 all we have to do is to convert strings to ANSI */
795 nmhA = *(const NMHEADERA*)lpnmh;
796 if (lpnmh->pitem)
798 hditema = *(HDITEMA*)lpnmh->pitem;
799 nmhA.pitem = &hditema;
800 /* convert item text */
801 if (lpnmh->pitem->mask & HDI_TEXT)
803 hditema.pszText = NULL;
804 Str_SetPtrWtoA(&hditema.pszText, lpnmh->pitem->pszText);
805 text = hditema.pszText;
807 /* convert filter text */
808 if ((lpnmh->pitem->mask & HDI_FILTER) && (lpnmh->pitem->type == HDFT_ISSTRING) &&
809 lpnmh->pitem->pvFilter)
811 hditema.pvFilter = &textfilter;
812 textfilter = *(HD_TEXTFILTERA*)(lpnmh->pitem->pvFilter);
813 textfilter.pszText = NULL;
814 Str_SetPtrWtoA(&textfilter.pszText, ((HD_TEXTFILTERW*)lpnmh->pitem->pvFilter)->pszText);
815 filter = textfilter.pszText;
818 nmhA.hdr.code = get_ansi_notification(lpnmh->hdr.code);
820 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, nmhA.hdr.idFrom,
821 (LPARAM)&nmhA);
823 /* cleanup */
824 Free(text);
825 Free(filter);
827 return ret;
830 static LRESULT notify_hdr(const LISTVIEW_INFO *infoPtr, INT code, LPNMHDR pnmh)
832 LRESULT result;
834 TRACE("(code=%d)\n", code);
836 pnmh->hwndFrom = infoPtr->hwndSelf;
837 pnmh->idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
838 pnmh->code = code;
839 result = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, pnmh->idFrom, (LPARAM)pnmh);
841 TRACE(" <= %ld\n", result);
843 return result;
846 static inline BOOL notify(const LISTVIEW_INFO *infoPtr, INT code)
848 NMHDR nmh;
849 HWND hwnd = infoPtr->hwndSelf;
850 notify_hdr(infoPtr, code, &nmh);
851 return IsWindow(hwnd);
854 static inline void notify_itemactivate(const LISTVIEW_INFO *infoPtr, const LVHITTESTINFO *htInfo)
856 NMITEMACTIVATE nmia;
857 LVITEMW item;
859 if (htInfo) {
860 nmia.uNewState = 0;
861 nmia.uOldState = 0;
862 nmia.uChanged = 0;
863 nmia.uKeyFlags = 0;
865 item.mask = LVIF_PARAM|LVIF_STATE;
866 item.iItem = htInfo->iItem;
867 item.iSubItem = 0;
868 item.stateMask = (UINT)-1;
869 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) {
870 nmia.lParam = item.lParam;
871 nmia.uOldState = item.state;
872 nmia.uNewState = item.state | LVIS_ACTIVATING;
873 nmia.uChanged = LVIF_STATE;
876 nmia.iItem = htInfo->iItem;
877 nmia.iSubItem = htInfo->iSubItem;
878 nmia.ptAction = htInfo->pt;
880 if (GetKeyState(VK_SHIFT) & 0x8000) nmia.uKeyFlags |= LVKF_SHIFT;
881 if (GetKeyState(VK_CONTROL) & 0x8000) nmia.uKeyFlags |= LVKF_CONTROL;
882 if (GetKeyState(VK_MENU) & 0x8000) nmia.uKeyFlags |= LVKF_ALT;
884 notify_hdr(infoPtr, LVN_ITEMACTIVATE, (LPNMHDR)&nmia);
887 static inline LRESULT notify_listview(const LISTVIEW_INFO *infoPtr, INT code, LPNMLISTVIEW plvnm)
889 TRACE("(code=%d, plvnm=%s)\n", code, debugnmlistview(plvnm));
890 return notify_hdr(infoPtr, code, (LPNMHDR)plvnm);
893 static BOOL notify_click(const LISTVIEW_INFO *infoPtr, INT code, const LVHITTESTINFO *lvht)
895 NMITEMACTIVATE nmia;
896 LVITEMW item;
897 HWND hwnd = infoPtr->hwndSelf;
899 TRACE("code=%d, lvht=%s\n", code, debuglvhittestinfo(lvht));
900 ZeroMemory(&nmia, sizeof(nmia));
901 nmia.iItem = lvht->iItem;
902 nmia.iSubItem = lvht->iSubItem;
903 nmia.ptAction = lvht->pt;
904 item.mask = LVIF_PARAM;
905 item.iItem = lvht->iItem;
906 item.iSubItem = 0;
907 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) nmia.lParam = item.lParam;
908 notify_hdr(infoPtr, code, (LPNMHDR)&nmia);
909 return IsWindow(hwnd);
912 static BOOL notify_deleteitem(const LISTVIEW_INFO *infoPtr, INT nItem)
914 NMLISTVIEW nmlv;
915 LVITEMW item;
916 HWND hwnd = infoPtr->hwndSelf;
918 ZeroMemory(&nmlv, sizeof (NMLISTVIEW));
919 nmlv.iItem = nItem;
920 item.mask = LVIF_PARAM;
921 item.iItem = nItem;
922 item.iSubItem = 0;
923 if (LISTVIEW_GetItemT(infoPtr, &item, TRUE)) nmlv.lParam = item.lParam;
924 notify_listview(infoPtr, LVN_DELETEITEM, &nmlv);
925 return IsWindow(hwnd);
929 Send notification. depends on dispinfoW having same
930 structure as dispinfoA.
931 infoPtr : listview struct
932 code : *Unicode* notification code
933 pdi : dispinfo structure (can be unicode or ansi)
934 isW : TRUE if dispinfo is Unicode
936 static BOOL notify_dispinfoT(const LISTVIEW_INFO *infoPtr, UINT code, LPNMLVDISPINFOW pdi, BOOL isW)
938 INT length = 0, ret_length;
939 LPWSTR buffer = NULL, ret_text;
940 BOOL return_ansi = FALSE;
941 BOOL return_unicode = FALSE;
942 BOOL ret;
944 if ((pdi->item.mask & LVIF_TEXT) && is_text(pdi->item.pszText))
946 return_unicode = ( isW && infoPtr->notifyFormat == NFR_ANSI);
947 return_ansi = (!isW && infoPtr->notifyFormat == NFR_UNICODE);
950 ret_length = pdi->item.cchTextMax;
951 ret_text = pdi->item.pszText;
953 if (return_unicode || return_ansi)
955 if (code != LVN_GETDISPINFOW)
957 length = return_ansi ?
958 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pdi->item.pszText, -1, NULL, 0):
959 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, NULL, 0, NULL, NULL);
961 else
963 length = pdi->item.cchTextMax;
964 *pdi->item.pszText = 0; /* make sure we don't process garbage */
967 buffer = Alloc( (return_ansi ? sizeof(WCHAR) : sizeof(CHAR)) * length);
968 if (!buffer) return FALSE;
970 if (return_ansi)
971 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)pdi->item.pszText, -1,
972 buffer, length);
973 else
974 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, (LPSTR) buffer,
975 length, NULL, NULL);
977 pdi->item.pszText = buffer;
978 pdi->item.cchTextMax = length;
981 if (infoPtr->notifyFormat == NFR_ANSI)
982 code = get_ansi_notification(code);
984 TRACE(" pdi->item=%s\n", debuglvitem_t(&pdi->item, infoPtr->notifyFormat != NFR_ANSI));
985 ret = notify_hdr(infoPtr, code, &pdi->hdr);
986 TRACE(" resulting code=%d\n", pdi->hdr.code);
988 if (return_ansi || return_unicode)
990 if (return_ansi && (pdi->hdr.code == LVN_GETDISPINFOA))
992 strcpy((char*)ret_text, (char*)pdi->item.pszText);
994 else if (return_unicode && (pdi->hdr.code == LVN_GETDISPINFOW))
996 strcpyW(ret_text, pdi->item.pszText);
998 else if (return_ansi) /* note : pointer can be changed by app ! */
1000 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, (LPSTR) ret_text,
1001 ret_length, NULL, NULL);
1003 else
1004 MultiByteToWideChar(CP_ACP, 0, (LPSTR) pdi->item.pszText, -1,
1005 ret_text, ret_length);
1007 pdi->item.pszText = ret_text; /* restores our buffer */
1008 pdi->item.cchTextMax = ret_length;
1010 Free(buffer);
1011 return ret;
1014 /* if dipsinfo holder changed notification code then convert */
1015 if (!isW && (pdi->hdr.code == LVN_GETDISPINFOW) && (pdi->item.mask & LVIF_TEXT))
1017 length = WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, NULL, 0, NULL, NULL);
1019 buffer = Alloc(length * sizeof(CHAR));
1020 if (!buffer) return FALSE;
1022 WideCharToMultiByte(CP_ACP, 0, pdi->item.pszText, -1, (LPSTR) buffer,
1023 ret_length, NULL, NULL);
1025 strcpy((LPSTR)pdi->item.pszText, (LPSTR)buffer);
1026 Free(buffer);
1029 return ret;
1032 static void customdraw_fill(NMLVCUSTOMDRAW *lpnmlvcd, const LISTVIEW_INFO *infoPtr, HDC hdc,
1033 const RECT *rcBounds, const LVITEMW *lplvItem)
1035 ZeroMemory(lpnmlvcd, sizeof(NMLVCUSTOMDRAW));
1036 lpnmlvcd->nmcd.hdc = hdc;
1037 lpnmlvcd->nmcd.rc = *rcBounds;
1038 lpnmlvcd->clrTextBk = infoPtr->clrTextBk;
1039 lpnmlvcd->clrText = infoPtr->clrText;
1040 if (!lplvItem) return;
1041 lpnmlvcd->nmcd.dwItemSpec = lplvItem->iItem + 1;
1042 lpnmlvcd->iSubItem = lplvItem->iSubItem;
1043 if (lplvItem->state & LVIS_SELECTED) lpnmlvcd->nmcd.uItemState |= CDIS_SELECTED;
1044 if (lplvItem->state & LVIS_FOCUSED) lpnmlvcd->nmcd.uItemState |= CDIS_FOCUS;
1045 if (lplvItem->iItem == infoPtr->nHotItem) lpnmlvcd->nmcd.uItemState |= CDIS_HOT;
1046 lpnmlvcd->nmcd.lItemlParam = lplvItem->lParam;
1049 static inline DWORD notify_customdraw (const LISTVIEW_INFO *infoPtr, DWORD dwDrawStage, NMLVCUSTOMDRAW *lpnmlvcd)
1051 BOOL isForItem = (lpnmlvcd->nmcd.dwItemSpec != 0);
1052 DWORD result;
1054 lpnmlvcd->nmcd.dwDrawStage = dwDrawStage;
1055 if (isForItem) lpnmlvcd->nmcd.dwDrawStage |= CDDS_ITEM;
1056 if (lpnmlvcd->iSubItem) lpnmlvcd->nmcd.dwDrawStage |= CDDS_SUBITEM;
1057 if (isForItem) lpnmlvcd->nmcd.dwItemSpec--;
1058 result = notify_hdr(infoPtr, NM_CUSTOMDRAW, &lpnmlvcd->nmcd.hdr);
1059 if (isForItem) lpnmlvcd->nmcd.dwItemSpec++;
1060 return result;
1063 static void prepaint_setup (const LISTVIEW_INFO *infoPtr, HDC hdc, NMLVCUSTOMDRAW *lpnmlvcd, BOOL SubItem)
1065 if (lpnmlvcd->clrTextBk == CLR_DEFAULT)
1066 lpnmlvcd->clrTextBk = comctl32_color.clrWindow;
1067 if (lpnmlvcd->clrText == CLR_DEFAULT)
1068 lpnmlvcd->clrText = comctl32_color.clrWindowText;
1070 /* apparently, for selected items, we have to override the returned values */
1071 if (!SubItem)
1073 if (lpnmlvcd->nmcd.uItemState & CDIS_SELECTED)
1075 if (infoPtr->bFocus)
1077 lpnmlvcd->clrTextBk = comctl32_color.clrHighlight;
1078 lpnmlvcd->clrText = comctl32_color.clrHighlightText;
1080 else if (infoPtr->dwStyle & LVS_SHOWSELALWAYS)
1082 lpnmlvcd->clrTextBk = comctl32_color.clr3dFace;
1083 lpnmlvcd->clrText = comctl32_color.clrBtnText;
1088 /* Set the text attributes */
1089 if (lpnmlvcd->clrTextBk != CLR_NONE)
1091 SetBkMode(hdc, OPAQUE);
1092 SetBkColor(hdc,lpnmlvcd->clrTextBk);
1094 else
1095 SetBkMode(hdc, TRANSPARENT);
1096 SetTextColor(hdc, lpnmlvcd->clrText);
1099 static inline DWORD notify_postpaint (const LISTVIEW_INFO *infoPtr, NMLVCUSTOMDRAW *lpnmlvcd)
1101 return notify_customdraw(infoPtr, CDDS_POSTPAINT, lpnmlvcd);
1104 /* returns TRUE when repaint needed, FALSE otherwise */
1105 static BOOL notify_measureitem(LISTVIEW_INFO *infoPtr)
1107 MEASUREITEMSTRUCT mis;
1108 mis.CtlType = ODT_LISTVIEW;
1109 mis.CtlID = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
1110 mis.itemID = -1;
1111 mis.itemWidth = 0;
1112 mis.itemData = 0;
1113 mis.itemHeight= infoPtr->nItemHeight;
1114 SendMessageW(infoPtr->hwndNotify, WM_MEASUREITEM, mis.CtlID, (LPARAM)&mis);
1115 if (infoPtr->nItemHeight != max(mis.itemHeight, 1))
1117 infoPtr->nMeasureItemHeight = infoPtr->nItemHeight = max(mis.itemHeight, 1);
1118 return TRUE;
1120 return FALSE;
1123 /******** Item iterator functions **********************************/
1125 static RANGES ranges_create(int count);
1126 static void ranges_destroy(RANGES ranges);
1127 static BOOL ranges_add(RANGES ranges, RANGE range);
1128 static BOOL ranges_del(RANGES ranges, RANGE range);
1129 static void ranges_dump(RANGES ranges);
1131 static inline BOOL ranges_additem(RANGES ranges, INT nItem)
1133 RANGE range = { nItem, nItem + 1 };
1135 return ranges_add(ranges, range);
1138 static inline BOOL ranges_delitem(RANGES ranges, INT nItem)
1140 RANGE range = { nItem, nItem + 1 };
1142 return ranges_del(ranges, range);
1145 /***
1146 * ITERATOR DOCUMENTATION
1148 * The iterator functions allow for easy, and convenient iteration
1149 * over items of interest in the list. Typically, you create a
1150 * iterator, use it, and destroy it, as such:
1151 * ITERATOR i;
1153 * iterator_xxxitems(&i, ...);
1154 * while (iterator_{prev,next}(&i)
1156 * //code which uses i.nItem
1158 * iterator_destroy(&i);
1160 * where xxx is either: framed, or visible.
1161 * Note that it is important that the code destroys the iterator
1162 * after it's done with it, as the creation of the iterator may
1163 * allocate memory, which thus needs to be freed.
1165 * You can iterate both forwards, and backwards through the list,
1166 * by using iterator_next or iterator_prev respectively.
1168 * Lower numbered items are draw on top of higher number items in
1169 * LVS_ICON, and LVS_SMALLICON (which are the only modes where
1170 * items may overlap). So, to test items, you should use
1171 * iterator_next
1172 * which lists the items top to bottom (in Z-order).
1173 * For drawing items, you should use
1174 * iterator_prev
1175 * which lists the items bottom to top (in Z-order).
1176 * If you keep iterating over the items after the end-of-items
1177 * marker (-1) is returned, the iterator will start from the
1178 * beginning. Typically, you don't need to test for -1,
1179 * because iterator_{next,prev} will return TRUE if more items
1180 * are to be iterated over, or FALSE otherwise.
1182 * Note: the iterator is defined to be bidirectional. That is,
1183 * any number of prev followed by any number of next, or
1184 * five versa, should leave the iterator at the same item:
1185 * prev * n, next * n = next * n, prev * n
1187 * The iterator has a notion of an out-of-order, special item,
1188 * which sits at the start of the list. This is used in
1189 * LVS_ICON, and LVS_SMALLICON mode to handle the focused item,
1190 * which needs to be first, as it may overlap other items.
1192 * The code is a bit messy because we have:
1193 * - a special item to deal with
1194 * - simple range, or composite range
1195 * - empty range.
1196 * If you find bugs, or want to add features, please make sure you
1197 * always check/modify *both* iterator_prev, and iterator_next.
1200 /****
1201 * This function iterates through the items in increasing order,
1202 * but prefixed by the special item, then -1. That is:
1203 * special, 1, 2, 3, ..., n, -1.
1204 * Each item is listed only once.
1206 static inline BOOL iterator_next(ITERATOR* i)
1208 if (i->nItem == -1)
1210 i->nItem = i->nSpecial;
1211 if (i->nItem != -1) return TRUE;
1213 if (i->nItem == i->nSpecial)
1215 if (i->ranges) i->index = 0;
1216 goto pickarange;
1219 i->nItem++;
1220 testitem:
1221 if (i->nItem == i->nSpecial) i->nItem++;
1222 if (i->nItem < i->range.upper) return TRUE;
1224 pickarange:
1225 if (i->ranges)
1227 if (i->index < DPA_GetPtrCount(i->ranges->hdpa))
1228 i->range = *(RANGE*)DPA_GetPtr(i->ranges->hdpa, i->index++);
1229 else goto end;
1231 else if (i->nItem >= i->range.upper) goto end;
1233 i->nItem = i->range.lower;
1234 if (i->nItem >= 0) goto testitem;
1235 end:
1236 i->nItem = -1;
1237 return FALSE;
1240 /****
1241 * This function iterates through the items in decreasing order,
1242 * followed by the special item, then -1. That is:
1243 * n, n-1, ..., 3, 2, 1, special, -1.
1244 * Each item is listed only once.
1246 static inline BOOL iterator_prev(ITERATOR* i)
1248 BOOL start = FALSE;
1250 if (i->nItem == -1)
1252 start = TRUE;
1253 if (i->ranges) i->index = DPA_GetPtrCount(i->ranges->hdpa);
1254 goto pickarange;
1256 if (i->nItem == i->nSpecial)
1258 i->nItem = -1;
1259 return FALSE;
1262 testitem:
1263 i->nItem--;
1264 if (i->nItem == i->nSpecial) i->nItem--;
1265 if (i->nItem >= i->range.lower) return TRUE;
1267 pickarange:
1268 if (i->ranges)
1270 if (i->index > 0)
1271 i->range = *(RANGE*)DPA_GetPtr(i->ranges->hdpa, --i->index);
1272 else goto end;
1274 else if (!start && i->nItem < i->range.lower) goto end;
1276 i->nItem = i->range.upper;
1277 if (i->nItem > 0) goto testitem;
1278 end:
1279 return (i->nItem = i->nSpecial) != -1;
1282 static RANGE iterator_range(const ITERATOR *i)
1284 RANGE range;
1286 if (!i->ranges) return i->range;
1288 if (DPA_GetPtrCount(i->ranges->hdpa) > 0)
1290 range.lower = (*(RANGE*)DPA_GetPtr(i->ranges->hdpa, 0)).lower;
1291 range.upper = (*(RANGE*)DPA_GetPtr(i->ranges->hdpa, DPA_GetPtrCount(i->ranges->hdpa) - 1)).upper;
1293 else range.lower = range.upper = 0;
1295 return range;
1298 /***
1299 * Releases resources associated with this ierator.
1301 static inline void iterator_destroy(const ITERATOR *i)
1303 ranges_destroy(i->ranges);
1306 /***
1307 * Create an empty iterator.
1309 static inline BOOL iterator_empty(ITERATOR* i)
1311 ZeroMemory(i, sizeof(*i));
1312 i->nItem = i->nSpecial = i->range.lower = i->range.upper = -1;
1313 return TRUE;
1316 /***
1317 * Create an iterator over a range.
1319 static inline BOOL iterator_rangeitems(ITERATOR* i, RANGE range)
1321 iterator_empty(i);
1322 i->range = range;
1323 return TRUE;
1326 /***
1327 * Create an iterator over a bunch of ranges.
1328 * Please note that the iterator will take ownership of the ranges,
1329 * and will free them upon destruction.
1331 static inline BOOL iterator_rangesitems(ITERATOR* i, RANGES ranges)
1333 iterator_empty(i);
1334 i->ranges = ranges;
1335 return TRUE;
1338 /***
1339 * Creates an iterator over the items which intersect frame.
1340 * Uses absolute coordinates rather than compensating for the current offset.
1342 static BOOL iterator_frameditems_absolute(ITERATOR* i, const LISTVIEW_INFO* infoPtr, const RECT *frame)
1344 RECT rcItem, rcTemp;
1346 /* in case we fail, we want to return an empty iterator */
1347 if (!iterator_empty(i)) return FALSE;
1349 TRACE("(frame=%s)\n", wine_dbgstr_rect(frame));
1351 if (infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON)
1353 INT nItem;
1355 if (infoPtr->uView == LV_VIEW_ICON && infoPtr->nFocusedItem != -1)
1357 LISTVIEW_GetItemBox(infoPtr, infoPtr->nFocusedItem, &rcItem);
1358 if (IntersectRect(&rcTemp, &rcItem, frame))
1359 i->nSpecial = infoPtr->nFocusedItem;
1361 if (!(iterator_rangesitems(i, ranges_create(50)))) return FALSE;
1362 /* to do better here, we need to have PosX, and PosY sorted */
1363 TRACE("building icon ranges:\n");
1364 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
1366 rcItem.left = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
1367 rcItem.top = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
1368 rcItem.right = rcItem.left + infoPtr->nItemWidth;
1369 rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
1370 if (IntersectRect(&rcTemp, &rcItem, frame))
1371 ranges_additem(i->ranges, nItem);
1373 return TRUE;
1375 else if (infoPtr->uView == LV_VIEW_DETAILS)
1377 RANGE range;
1379 if (frame->left >= infoPtr->nItemWidth) return TRUE;
1380 if (frame->top >= infoPtr->nItemHeight * infoPtr->nItemCount) return TRUE;
1382 range.lower = max(frame->top / infoPtr->nItemHeight, 0);
1383 range.upper = min((frame->bottom - 1) / infoPtr->nItemHeight, infoPtr->nItemCount - 1) + 1;
1384 if (range.upper <= range.lower) return TRUE;
1385 if (!iterator_rangeitems(i, range)) return FALSE;
1386 TRACE(" report=%s\n", debugrange(&i->range));
1388 else
1390 INT nPerCol = max((infoPtr->rcList.bottom - infoPtr->rcList.top) / infoPtr->nItemHeight, 1);
1391 INT nFirstRow = max(frame->top / infoPtr->nItemHeight, 0);
1392 INT nLastRow = min((frame->bottom - 1) / infoPtr->nItemHeight, nPerCol - 1);
1393 INT nFirstCol;
1394 INT nLastCol;
1395 INT lower;
1396 RANGE item_range;
1397 INT nCol;
1399 if (infoPtr->nItemWidth)
1401 nFirstCol = max(frame->left / infoPtr->nItemWidth, 0);
1402 nLastCol = min((frame->right - 1) / infoPtr->nItemWidth, (infoPtr->nItemCount + nPerCol - 1) / nPerCol);
1404 else
1406 nFirstCol = max(frame->left, 0);
1407 nLastCol = min(frame->right - 1, (infoPtr->nItemCount + nPerCol - 1) / nPerCol);
1410 lower = nFirstCol * nPerCol + nFirstRow;
1412 TRACE("nPerCol=%d, nFirstRow=%d, nLastRow=%d, nFirstCol=%d, nLastCol=%d, lower=%d\n",
1413 nPerCol, nFirstRow, nLastRow, nFirstCol, nLastCol, lower);
1415 if (nLastCol < nFirstCol || nLastRow < nFirstRow) return TRUE;
1417 if (!(iterator_rangesitems(i, ranges_create(nLastCol - nFirstCol + 1)))) return FALSE;
1418 TRACE("building list ranges:\n");
1419 for (nCol = nFirstCol; nCol <= nLastCol; nCol++)
1421 item_range.lower = nCol * nPerCol + nFirstRow;
1422 if(item_range.lower >= infoPtr->nItemCount) break;
1423 item_range.upper = min(nCol * nPerCol + nLastRow + 1, infoPtr->nItemCount);
1424 TRACE(" list=%s\n", debugrange(&item_range));
1425 ranges_add(i->ranges, item_range);
1429 return TRUE;
1432 /***
1433 * Creates an iterator over the items which intersect lprc.
1435 static BOOL iterator_frameditems(ITERATOR* i, const LISTVIEW_INFO* infoPtr, const RECT *lprc)
1437 RECT frame = *lprc;
1438 POINT Origin;
1440 TRACE("(lprc=%s)\n", wine_dbgstr_rect(lprc));
1442 LISTVIEW_GetOrigin(infoPtr, &Origin);
1443 OffsetRect(&frame, -Origin.x, -Origin.y);
1445 return iterator_frameditems_absolute(i, infoPtr, &frame);
1448 /***
1449 * Creates an iterator over the items which intersect the visible region of hdc.
1451 static BOOL iterator_visibleitems(ITERATOR *i, const LISTVIEW_INFO *infoPtr, HDC hdc)
1453 POINT Origin, Position;
1454 RECT rcItem, rcClip;
1455 INT rgntype;
1457 rgntype = GetClipBox(hdc, &rcClip);
1458 if (rgntype == NULLREGION) return iterator_empty(i);
1459 if (!iterator_frameditems(i, infoPtr, &rcClip)) return FALSE;
1460 if (rgntype == SIMPLEREGION) return TRUE;
1462 /* first deal with the special item */
1463 if (i->nSpecial != -1)
1465 LISTVIEW_GetItemBox(infoPtr, i->nSpecial, &rcItem);
1466 if (!RectVisible(hdc, &rcItem)) i->nSpecial = -1;
1469 /* if we can't deal with the region, we'll just go with the simple range */
1470 LISTVIEW_GetOrigin(infoPtr, &Origin);
1471 TRACE("building visible range:\n");
1472 if (!i->ranges && i->range.lower < i->range.upper)
1474 if (!(i->ranges = ranges_create(50))) return TRUE;
1475 if (!ranges_add(i->ranges, i->range))
1477 ranges_destroy(i->ranges);
1478 i->ranges = 0;
1479 return TRUE;
1483 /* now delete the invisible items from the list */
1484 while(iterator_next(i))
1486 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
1487 rcItem.left = (infoPtr->uView == LV_VIEW_DETAILS) ? Origin.x : Position.x + Origin.x;
1488 rcItem.top = Position.y + Origin.y;
1489 rcItem.right = rcItem.left + infoPtr->nItemWidth;
1490 rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
1491 if (!RectVisible(hdc, &rcItem))
1492 ranges_delitem(i->ranges, i->nItem);
1494 /* the iterator should restart on the next iterator_next */
1495 TRACE("done\n");
1497 return TRUE;
1500 /******** Misc helper functions ************************************/
1502 static inline LRESULT CallWindowProcT(WNDPROC proc, HWND hwnd, UINT uMsg,
1503 WPARAM wParam, LPARAM lParam, BOOL isW)
1505 if (isW) return CallWindowProcW(proc, hwnd, uMsg, wParam, lParam);
1506 else return CallWindowProcA(proc, hwnd, uMsg, wParam, lParam);
1509 static inline BOOL is_autoarrange(const LISTVIEW_INFO *infoPtr)
1511 return ((infoPtr->dwStyle & LVS_AUTOARRANGE) || infoPtr->bAutoarrange) &&
1512 (infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON);
1515 static void toggle_checkbox_state(LISTVIEW_INFO *infoPtr, INT nItem)
1517 DWORD state = STATEIMAGEINDEX(LISTVIEW_GetItemState(infoPtr, nItem, LVIS_STATEIMAGEMASK));
1518 if(state == 1 || state == 2)
1520 LVITEMW lvitem;
1521 state ^= 3;
1522 lvitem.state = INDEXTOSTATEIMAGEMASK(state);
1523 lvitem.stateMask = LVIS_STATEIMAGEMASK;
1524 LISTVIEW_SetItemState(infoPtr, nItem, &lvitem);
1528 /* this should be called after window style got updated,
1529 it used to reset view state to match current window style */
1530 static inline void map_style_view(LISTVIEW_INFO *infoPtr)
1532 switch (infoPtr->dwStyle & LVS_TYPEMASK)
1534 case LVS_ICON:
1535 infoPtr->uView = LV_VIEW_ICON;
1536 break;
1537 case LVS_REPORT:
1538 infoPtr->uView = LV_VIEW_DETAILS;
1539 break;
1540 case LVS_SMALLICON:
1541 infoPtr->uView = LV_VIEW_SMALLICON;
1542 break;
1543 case LVS_LIST:
1544 infoPtr->uView = LV_VIEW_LIST;
1548 /* computes next item id value */
1549 static DWORD get_next_itemid(const LISTVIEW_INFO *infoPtr)
1551 INT count = DPA_GetPtrCount(infoPtr->hdpaItemIds);
1553 if (count > 0)
1555 ITEM_ID *lpID = DPA_GetPtr(infoPtr->hdpaItemIds, count - 1);
1556 return lpID->id + 1;
1558 return 0;
1561 /******** Internal API functions ************************************/
1563 static inline COLUMN_INFO * LISTVIEW_GetColumnInfo(const LISTVIEW_INFO *infoPtr, INT nSubItem)
1565 static COLUMN_INFO mainItem;
1567 if (nSubItem == 0 && DPA_GetPtrCount(infoPtr->hdpaColumns) == 0) return &mainItem;
1568 assert (nSubItem >= 0 && nSubItem < DPA_GetPtrCount(infoPtr->hdpaColumns));
1570 /* update cached column rectangles */
1571 if (infoPtr->colRectsDirty)
1573 COLUMN_INFO *info;
1574 LISTVIEW_INFO *Ptr = (LISTVIEW_INFO*)infoPtr;
1575 INT i;
1577 for (i = 0; i < DPA_GetPtrCount(infoPtr->hdpaColumns); i++) {
1578 info = DPA_GetPtr(infoPtr->hdpaColumns, i);
1579 SendMessageW(infoPtr->hwndHeader, HDM_GETITEMRECT, i, (LPARAM)&info->rcHeader);
1581 Ptr->colRectsDirty = FALSE;
1584 return DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
1587 static INT LISTVIEW_CreateHeader(LISTVIEW_INFO *infoPtr)
1589 DWORD dFlags = WS_CHILD | HDS_HORZ | HDS_FULLDRAG | HDS_DRAGDROP;
1590 HINSTANCE hInst;
1592 if (infoPtr->hwndHeader) return 0;
1594 TRACE("Creating header for list %p\n", infoPtr->hwndSelf);
1596 /* setup creation flags */
1597 dFlags |= (LVS_NOSORTHEADER & infoPtr->dwStyle) ? 0 : HDS_BUTTONS;
1598 dFlags |= (LVS_NOCOLUMNHEADER & infoPtr->dwStyle) ? HDS_HIDDEN : 0;
1600 hInst = (HINSTANCE)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_HINSTANCE);
1602 /* create header */
1603 infoPtr->hwndHeader = CreateWindowW(WC_HEADERW, NULL, dFlags,
1604 0, 0, 0, 0, infoPtr->hwndSelf, NULL, hInst, NULL);
1605 if (!infoPtr->hwndHeader) return -1;
1607 /* set header unicode format */
1608 SendMessageW(infoPtr->hwndHeader, HDM_SETUNICODEFORMAT, TRUE, 0);
1610 /* set header font */
1611 SendMessageW(infoPtr->hwndHeader, WM_SETFONT, (WPARAM)infoPtr->hFont, TRUE);
1613 LISTVIEW_UpdateSize(infoPtr);
1615 return 0;
1618 static inline void LISTVIEW_GetHeaderRect(const LISTVIEW_INFO *infoPtr, INT nSubItem, LPRECT lprc)
1620 *lprc = LISTVIEW_GetColumnInfo(infoPtr, nSubItem)->rcHeader;
1623 static inline BOOL LISTVIEW_IsHeaderEnabled(const LISTVIEW_INFO *infoPtr)
1625 return (infoPtr->uView == LV_VIEW_DETAILS ||
1626 infoPtr->dwLvExStyle & LVS_EX_HEADERINALLVIEWS) &&
1627 !(infoPtr->dwStyle & LVS_NOCOLUMNHEADER);
1630 static inline BOOL LISTVIEW_GetItemW(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem)
1632 return LISTVIEW_GetItemT(infoPtr, lpLVItem, TRUE);
1635 /* used to handle collapse main item column case */
1636 static inline BOOL LISTVIEW_DrawFocusRect(const LISTVIEW_INFO *infoPtr, HDC hdc)
1638 return (infoPtr->rcFocus.left < infoPtr->rcFocus.right) ?
1639 DrawFocusRect(hdc, &infoPtr->rcFocus) : FALSE;
1642 /* Listview invalidation functions: use _only_ these functions to invalidate */
1644 static inline BOOL is_redrawing(const LISTVIEW_INFO *infoPtr)
1646 return infoPtr->bRedraw;
1649 static inline void LISTVIEW_InvalidateRect(const LISTVIEW_INFO *infoPtr, const RECT* rect)
1651 if(!is_redrawing(infoPtr)) return;
1652 TRACE(" invalidating rect=%s\n", wine_dbgstr_rect(rect));
1653 InvalidateRect(infoPtr->hwndSelf, rect, TRUE);
1656 static inline void LISTVIEW_InvalidateItem(const LISTVIEW_INFO *infoPtr, INT nItem)
1658 RECT rcBox;
1660 if(!is_redrawing(infoPtr)) return;
1661 LISTVIEW_GetItemBox(infoPtr, nItem, &rcBox);
1662 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
1665 static inline void LISTVIEW_InvalidateSubItem(const LISTVIEW_INFO *infoPtr, INT nItem, INT nSubItem)
1667 POINT Origin, Position;
1668 RECT rcBox;
1670 if(!is_redrawing(infoPtr)) return;
1671 assert (infoPtr->uView == LV_VIEW_DETAILS);
1672 LISTVIEW_GetOrigin(infoPtr, &Origin);
1673 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
1674 LISTVIEW_GetHeaderRect(infoPtr, nSubItem, &rcBox);
1675 rcBox.top = 0;
1676 rcBox.bottom = infoPtr->nItemHeight;
1677 OffsetRect(&rcBox, Origin.x + Position.x, Origin.y + Position.y);
1678 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
1681 static inline void LISTVIEW_InvalidateList(const LISTVIEW_INFO *infoPtr)
1683 LISTVIEW_InvalidateRect(infoPtr, NULL);
1686 static inline void LISTVIEW_InvalidateColumn(const LISTVIEW_INFO *infoPtr, INT nColumn)
1688 RECT rcCol;
1690 if(!is_redrawing(infoPtr)) return;
1691 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcCol);
1692 rcCol.top = infoPtr->rcList.top;
1693 rcCol.bottom = infoPtr->rcList.bottom;
1694 LISTVIEW_InvalidateRect(infoPtr, &rcCol);
1697 /***
1698 * DESCRIPTION:
1699 * Retrieves the number of items that can fit vertically in the client area.
1701 * PARAMETER(S):
1702 * [I] infoPtr : valid pointer to the listview structure
1704 * RETURN:
1705 * Number of items per row.
1707 static inline INT LISTVIEW_GetCountPerRow(const LISTVIEW_INFO *infoPtr)
1709 INT nListWidth = infoPtr->rcList.right - infoPtr->rcList.left;
1711 return max(nListWidth/(infoPtr->nItemWidth ? infoPtr->nItemWidth : 1), 1);
1714 /***
1715 * DESCRIPTION:
1716 * Retrieves the number of items that can fit horizontally in the client
1717 * area.
1719 * PARAMETER(S):
1720 * [I] infoPtr : valid pointer to the listview structure
1722 * RETURN:
1723 * Number of items per column.
1725 static inline INT LISTVIEW_GetCountPerColumn(const LISTVIEW_INFO *infoPtr)
1727 INT nListHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
1729 return max(nListHeight / infoPtr->nItemHeight, 1);
1733 /*************************************************************************
1734 * LISTVIEW_ProcessLetterKeys
1736 * Processes keyboard messages generated by pressing the letter keys
1737 * on the keyboard.
1738 * What this does is perform a case insensitive search from the
1739 * current position with the following quirks:
1740 * - If two chars or more are pressed in quick succession we search
1741 * for the corresponding string (e.g. 'abc').
1742 * - If there is a delay we wipe away the current search string and
1743 * restart with just that char.
1744 * - If the user keeps pressing the same character, whether slowly or
1745 * fast, so that the search string is entirely composed of this
1746 * character ('aaaaa' for instance), then we search for first item
1747 * that starting with that character.
1748 * - If the user types the above character in quick succession, then
1749 * we must also search for the corresponding string ('aaaaa'), and
1750 * go to that string if there is a match.
1752 * PARAMETERS
1753 * [I] hwnd : handle to the window
1754 * [I] charCode : the character code, the actual character
1755 * [I] keyData : key data
1757 * RETURNS
1759 * Zero.
1761 * BUGS
1763 * - The current implementation has a list of characters it will
1764 * accept and it ignores everything else. In particular it will
1765 * ignore accentuated characters which seems to match what
1766 * Windows does. But I'm not sure it makes sense to follow
1767 * Windows there.
1768 * - We don't sound a beep when the search fails.
1770 * SEE ALSO
1772 * TREEVIEW_ProcessLetterKeys
1774 static INT LISTVIEW_ProcessLetterKeys(LISTVIEW_INFO *infoPtr, WPARAM charCode, LPARAM keyData)
1776 WCHAR buffer[MAX_PATH];
1777 INT endidx, startidx;
1778 DWORD prevTime;
1779 LVITEMW item;
1780 INT nItem;
1781 INT diff;
1783 /* simple parameter checking */
1784 if (!charCode || !keyData || infoPtr->nItemCount == 0) return 0;
1786 /* only allow the valid WM_CHARs through */
1787 if (!isalnumW(charCode) &&
1788 charCode != '.' && charCode != '`' && charCode != '!' &&
1789 charCode != '@' && charCode != '#' && charCode != '$' &&
1790 charCode != '%' && charCode != '^' && charCode != '&' &&
1791 charCode != '*' && charCode != '(' && charCode != ')' &&
1792 charCode != '-' && charCode != '_' && charCode != '+' &&
1793 charCode != '=' && charCode != '\\'&& charCode != ']' &&
1794 charCode != '}' && charCode != '[' && charCode != '{' &&
1795 charCode != '/' && charCode != '?' && charCode != '>' &&
1796 charCode != '<' && charCode != ',' && charCode != '~')
1797 return 0;
1799 /* update the search parameters */
1800 prevTime = infoPtr->lastKeyPressTimestamp;
1801 infoPtr->lastKeyPressTimestamp = GetTickCount();
1802 diff = infoPtr->lastKeyPressTimestamp - prevTime;
1804 if (diff >= 0 && diff < KEY_DELAY)
1806 if (infoPtr->nSearchParamLength < MAX_PATH - 1)
1807 infoPtr->szSearchParam[infoPtr->nSearchParamLength++] = charCode;
1809 if (infoPtr->charCode != charCode)
1810 infoPtr->charCode = charCode = 0;
1812 else
1814 infoPtr->charCode = charCode;
1815 infoPtr->szSearchParam[0] = charCode;
1816 infoPtr->nSearchParamLength = 1;
1819 /* and search from the current position */
1820 nItem = -1;
1821 endidx = infoPtr->nItemCount;
1823 /* should start from next after focused item, so next item that matches
1824 will be selected, if there isn't any and focused matches it will be selected
1825 on second search stage from beginning of the list */
1826 if (infoPtr->nFocusedItem >= 0 && infoPtr->nItemCount > 1)
1827 startidx = infoPtr->nFocusedItem + 1;
1828 else
1829 startidx = 0;
1831 /* let application handle this for virtual listview */
1832 if (infoPtr->dwStyle & LVS_OWNERDATA)
1834 NMLVFINDITEMW nmlv;
1836 memset(&nmlv.lvfi, 0, sizeof(nmlv.lvfi));
1837 nmlv.lvfi.flags = (LVFI_WRAP | LVFI_PARTIAL);
1838 nmlv.lvfi.psz = infoPtr->szSearchParam;
1839 nmlv.iStart = startidx;
1841 infoPtr->szSearchParam[infoPtr->nSearchParamLength] = 0;
1843 nItem = notify_hdr(infoPtr, LVN_ODFINDITEMW, (LPNMHDR)&nmlv.hdr);
1845 else
1847 INT i = startidx;
1849 /* first search in [startidx, endidx), on failure continue in [0, startidx) */
1850 while (1)
1852 /* start from first item if not found with >= startidx */
1853 if (i == infoPtr->nItemCount && startidx > 0)
1855 endidx = startidx;
1856 startidx = 0;
1859 for (i = startidx; i < endidx; i++)
1861 /* retrieve text */
1862 item.mask = LVIF_TEXT;
1863 item.iItem = i;
1864 item.iSubItem = 0;
1865 item.pszText = buffer;
1866 item.cchTextMax = MAX_PATH;
1867 if (!LISTVIEW_GetItemW(infoPtr, &item)) return 0;
1869 if (lstrncmpiW(item.pszText, infoPtr->szSearchParam, infoPtr->nSearchParamLength) == 0)
1871 nItem = i;
1872 break;
1874 else if (nItem == -1 && lstrncmpiW(item.pszText, infoPtr->szSearchParam, 1) == 0)
1876 /* this would work but we must keep looking for a longer match */
1877 nItem = i;
1881 if ( nItem != -1 || /* found something */
1882 endidx != infoPtr->nItemCount || /* second search done */
1883 (startidx == 0 && endidx == infoPtr->nItemCount) /* full range for first search */ )
1884 break;
1888 if (nItem != -1)
1889 LISTVIEW_KeySelection(infoPtr, nItem, FALSE);
1891 return 0;
1894 /*************************************************************************
1895 * LISTVIEW_UpdateHeaderSize [Internal]
1897 * Function to resize the header control
1899 * PARAMS
1900 * [I] hwnd : handle to a window
1901 * [I] nNewScrollPos : scroll pos to set
1903 * RETURNS
1904 * None.
1906 static void LISTVIEW_UpdateHeaderSize(const LISTVIEW_INFO *infoPtr, INT nNewScrollPos)
1908 RECT winRect;
1909 POINT point[2];
1911 TRACE("nNewScrollPos=%d\n", nNewScrollPos);
1913 if (!infoPtr->hwndHeader) return;
1915 GetWindowRect(infoPtr->hwndHeader, &winRect);
1916 point[0].x = winRect.left;
1917 point[0].y = winRect.top;
1918 point[1].x = winRect.right;
1919 point[1].y = winRect.bottom;
1921 MapWindowPoints(HWND_DESKTOP, infoPtr->hwndSelf, point, 2);
1922 point[0].x = -nNewScrollPos;
1923 point[1].x += nNewScrollPos;
1925 SetWindowPos(infoPtr->hwndHeader,0,
1926 point[0].x,point[0].y,point[1].x,point[1].y,
1927 (infoPtr->dwStyle & LVS_NOCOLUMNHEADER) ? SWP_HIDEWINDOW : SWP_SHOWWINDOW |
1928 SWP_NOZORDER | SWP_NOACTIVATE);
1931 /***
1932 * DESCRIPTION:
1933 * Update the scrollbars. This functions should be called whenever
1934 * the content, size or view changes.
1936 * PARAMETER(S):
1937 * [I] infoPtr : valid pointer to the listview structure
1939 * RETURN:
1940 * None
1942 static void LISTVIEW_UpdateScroll(const LISTVIEW_INFO *infoPtr)
1944 SCROLLINFO horzInfo, vertInfo;
1945 INT dx, dy;
1947 if ((infoPtr->dwStyle & LVS_NOSCROLL) || !is_redrawing(infoPtr)) return;
1949 ZeroMemory(&horzInfo, sizeof(SCROLLINFO));
1950 horzInfo.cbSize = sizeof(SCROLLINFO);
1951 horzInfo.nPage = infoPtr->rcList.right - infoPtr->rcList.left;
1953 /* for now, we'll set info.nMax to the _count_, and adjust it later */
1954 if (infoPtr->uView == LV_VIEW_LIST)
1956 INT nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
1957 horzInfo.nMax = (infoPtr->nItemCount + nPerCol - 1) / nPerCol;
1959 /* scroll by at least one column per page */
1960 if(horzInfo.nPage < infoPtr->nItemWidth)
1961 horzInfo.nPage = infoPtr->nItemWidth;
1963 if (infoPtr->nItemWidth)
1964 horzInfo.nPage /= infoPtr->nItemWidth;
1966 else if (infoPtr->uView == LV_VIEW_DETAILS)
1968 horzInfo.nMax = infoPtr->nItemWidth;
1970 else /* LV_VIEW_ICON, or LV_VIEW_SMALLICON */
1972 RECT rcView;
1974 if (LISTVIEW_GetViewRect(infoPtr, &rcView)) horzInfo.nMax = rcView.right - rcView.left;
1977 if (LISTVIEW_IsHeaderEnabled(infoPtr))
1979 if (DPA_GetPtrCount(infoPtr->hdpaColumns))
1981 RECT rcHeader;
1982 INT index;
1984 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX,
1985 DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, 0);
1987 LISTVIEW_GetHeaderRect(infoPtr, index, &rcHeader);
1988 horzInfo.nMax = rcHeader.right;
1989 TRACE("horzInfo.nMax=%d\n", horzInfo.nMax);
1993 horzInfo.fMask = SIF_RANGE | SIF_PAGE;
1994 horzInfo.nMax = max(horzInfo.nMax - 1, 0);
1995 dx = GetScrollPos(infoPtr->hwndSelf, SB_HORZ);
1996 dx -= SetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &horzInfo, TRUE);
1997 TRACE("horzInfo=%s\n", debugscrollinfo(&horzInfo));
1999 /* Setting the horizontal scroll can change the listview size
2000 * (and potentially everything else) so we need to recompute
2001 * everything again for the vertical scroll
2004 ZeroMemory(&vertInfo, sizeof(SCROLLINFO));
2005 vertInfo.cbSize = sizeof(SCROLLINFO);
2006 vertInfo.nPage = infoPtr->rcList.bottom - infoPtr->rcList.top;
2008 if (infoPtr->uView == LV_VIEW_DETAILS)
2010 vertInfo.nMax = infoPtr->nItemCount;
2012 /* scroll by at least one page */
2013 if(vertInfo.nPage < infoPtr->nItemHeight)
2014 vertInfo.nPage = infoPtr->nItemHeight;
2016 if (infoPtr->nItemHeight > 0)
2017 vertInfo.nPage /= infoPtr->nItemHeight;
2019 else if (infoPtr->uView != LV_VIEW_LIST) /* LV_VIEW_ICON, or LV_VIEW_SMALLICON */
2021 RECT rcView;
2023 if (LISTVIEW_GetViewRect(infoPtr, &rcView)) vertInfo.nMax = rcView.bottom - rcView.top;
2026 vertInfo.fMask = SIF_RANGE | SIF_PAGE;
2027 vertInfo.nMax = max(vertInfo.nMax - 1, 0);
2028 dy = GetScrollPos(infoPtr->hwndSelf, SB_VERT);
2029 dy -= SetScrollInfo(infoPtr->hwndSelf, SB_VERT, &vertInfo, TRUE);
2030 TRACE("vertInfo=%s\n", debugscrollinfo(&vertInfo));
2032 /* Change of the range may have changed the scroll pos. If so move the content */
2033 if (dx != 0 || dy != 0)
2035 RECT listRect;
2036 listRect = infoPtr->rcList;
2037 ScrollWindowEx(infoPtr->hwndSelf, dx, dy, &listRect, &listRect, 0, 0,
2038 SW_ERASE | SW_INVALIDATE);
2041 /* Update the Header Control */
2042 if (infoPtr->hwndHeader)
2044 horzInfo.fMask = SIF_POS;
2045 GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &horzInfo);
2046 LISTVIEW_UpdateHeaderSize(infoPtr, horzInfo.nPos);
2051 /***
2052 * DESCRIPTION:
2053 * Shows/hides the focus rectangle.
2055 * PARAMETER(S):
2056 * [I] infoPtr : valid pointer to the listview structure
2057 * [I] fShow : TRUE to show the focus, FALSE to hide it.
2059 * RETURN:
2060 * None
2062 static void LISTVIEW_ShowFocusRect(const LISTVIEW_INFO *infoPtr, BOOL fShow)
2064 HDC hdc;
2066 TRACE("fShow=%d, nItem=%d\n", fShow, infoPtr->nFocusedItem);
2068 if (infoPtr->nFocusedItem < 0) return;
2070 /* we need some gymnastics in ICON mode to handle large items */
2071 if (infoPtr->uView == LV_VIEW_ICON)
2073 RECT rcBox;
2075 LISTVIEW_GetItemBox(infoPtr, infoPtr->nFocusedItem, &rcBox);
2076 if ((rcBox.bottom - rcBox.top) > infoPtr->nItemHeight)
2078 LISTVIEW_InvalidateRect(infoPtr, &rcBox);
2079 return;
2083 if (!(hdc = GetDC(infoPtr->hwndSelf))) return;
2085 /* for some reason, owner draw should work only in report mode */
2086 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (infoPtr->uView == LV_VIEW_DETAILS))
2088 DRAWITEMSTRUCT dis;
2089 LVITEMW item;
2091 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
2092 HFONT hOldFont = SelectObject(hdc, hFont);
2094 item.iItem = infoPtr->nFocusedItem;
2095 item.iSubItem = 0;
2096 item.mask = LVIF_PARAM;
2097 if (!LISTVIEW_GetItemW(infoPtr, &item)) goto done;
2099 ZeroMemory(&dis, sizeof(dis));
2100 dis.CtlType = ODT_LISTVIEW;
2101 dis.CtlID = (UINT)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
2102 dis.itemID = item.iItem;
2103 dis.itemAction = ODA_FOCUS;
2104 if (fShow) dis.itemState |= ODS_FOCUS;
2105 dis.hwndItem = infoPtr->hwndSelf;
2106 dis.hDC = hdc;
2107 LISTVIEW_GetItemBox(infoPtr, dis.itemID, &dis.rcItem);
2108 dis.itemData = item.lParam;
2110 SendMessageW(infoPtr->hwndNotify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
2112 SelectObject(hdc, hOldFont);
2114 else
2116 LISTVIEW_DrawFocusRect(infoPtr, hdc);
2118 done:
2119 ReleaseDC(infoPtr->hwndSelf, hdc);
2122 /***
2123 * Invalidates all visible selected items.
2125 static void LISTVIEW_InvalidateSelectedItems(const LISTVIEW_INFO *infoPtr)
2127 ITERATOR i;
2129 iterator_frameditems(&i, infoPtr, &infoPtr->rcList);
2130 while(iterator_next(&i))
2132 if (LISTVIEW_GetItemState(infoPtr, i.nItem, LVIS_SELECTED))
2133 LISTVIEW_InvalidateItem(infoPtr, i.nItem);
2135 iterator_destroy(&i);
2139 /***
2140 * DESCRIPTION: [INTERNAL]
2141 * Computes an item's (left,top) corner, relative to rcView.
2142 * That is, the position has NOT been made relative to the Origin.
2143 * This is deliberate, to avoid computing the Origin over, and
2144 * over again, when this function is called in a loop. Instead,
2145 * one can factor the computation of the Origin before the loop,
2146 * and offset the value returned by this function, on every iteration.
2148 * PARAMETER(S):
2149 * [I] infoPtr : valid pointer to the listview structure
2150 * [I] nItem : item number
2151 * [O] lpptOrig : item top, left corner
2153 * RETURN:
2154 * None.
2156 static void LISTVIEW_GetItemOrigin(const LISTVIEW_INFO *infoPtr, INT nItem, LPPOINT lpptPosition)
2158 assert(nItem >= 0 && nItem < infoPtr->nItemCount);
2160 if ((infoPtr->uView == LV_VIEW_SMALLICON) || (infoPtr->uView == LV_VIEW_ICON))
2162 lpptPosition->x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
2163 lpptPosition->y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
2165 else if (infoPtr->uView == LV_VIEW_LIST)
2167 INT nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
2168 lpptPosition->x = nItem / nCountPerColumn * infoPtr->nItemWidth;
2169 lpptPosition->y = nItem % nCountPerColumn * infoPtr->nItemHeight;
2171 else /* LV_VIEW_DETAILS */
2173 lpptPosition->x = REPORT_MARGINX;
2174 /* item is always at zero indexed column */
2175 if (DPA_GetPtrCount(infoPtr->hdpaColumns) > 0)
2176 lpptPosition->x += LISTVIEW_GetColumnInfo(infoPtr, 0)->rcHeader.left;
2177 lpptPosition->y = nItem * infoPtr->nItemHeight;
2181 /***
2182 * DESCRIPTION: [INTERNAL]
2183 * Compute the rectangles of an item. This is to localize all
2184 * the computations in one place. If you are not interested in some
2185 * of these values, simply pass in a NULL -- the function is smart
2186 * enough to compute only what's necessary. The function computes
2187 * the standard rectangles (BOUNDS, ICON, LABEL) plus a non-standard
2188 * one, the BOX rectangle. This rectangle is very cheap to compute,
2189 * and is guaranteed to contain all the other rectangles. Computing
2190 * the ICON rect is also cheap, but all the others are potentially
2191 * expensive. This gives an easy and effective optimization when
2192 * searching (like point inclusion, or rectangle intersection):
2193 * first test against the BOX, and if TRUE, test against the desired
2194 * rectangle.
2195 * If the function does not have all the necessary information
2196 * to computed the requested rectangles, will crash with a
2197 * failed assertion. This is done so we catch all programming
2198 * errors, given that the function is called only from our code.
2200 * We have the following 'special' meanings for a few fields:
2201 * * If LVIS_FOCUSED is set, we assume the item has the focus
2202 * This is important in ICON mode, where it might get a larger
2203 * then usual rectangle
2205 * Please note that subitem support works only in REPORT mode.
2207 * PARAMETER(S):
2208 * [I] infoPtr : valid pointer to the listview structure
2209 * [I] lpLVItem : item to compute the measures for
2210 * [O] lprcBox : ptr to Box rectangle
2211 * Same as LVM_GETITEMRECT with LVIR_BOUNDS
2212 * [0] lprcSelectBox : ptr to select box rectangle
2213 * Same as LVM_GETITEMRECT with LVIR_SELECTEDBOUNDS
2214 * [O] lprcIcon : ptr to Icon rectangle
2215 * Same as LVM_GETITEMRECT with LVIR_ICON
2216 * [O] lprcStateIcon: ptr to State Icon rectangle
2217 * [O] lprcLabel : ptr to Label rectangle
2218 * Same as LVM_GETITEMRECT with LVIR_LABEL
2220 * RETURN:
2221 * None.
2223 static void LISTVIEW_GetItemMetrics(const LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem,
2224 LPRECT lprcBox, LPRECT lprcSelectBox,
2225 LPRECT lprcIcon, LPRECT lprcStateIcon, LPRECT lprcLabel)
2227 BOOL doSelectBox = FALSE, doIcon = FALSE, doLabel = FALSE, oversizedBox = FALSE;
2228 RECT Box, SelectBox, Icon, Label;
2229 COLUMN_INFO *lpColumnInfo = NULL;
2230 SIZE labelSize = { 0, 0 };
2232 TRACE("(lpLVItem=%s)\n", debuglvitem_t(lpLVItem, TRUE));
2234 /* Be smart and try to figure out the minimum we have to do */
2235 if (lpLVItem->iSubItem) assert(infoPtr->uView == LV_VIEW_DETAILS);
2236 if (infoPtr->uView == LV_VIEW_ICON && (lprcBox || lprcLabel))
2238 assert((lpLVItem->mask & LVIF_STATE) && (lpLVItem->stateMask & LVIS_FOCUSED));
2239 if (lpLVItem->state & LVIS_FOCUSED) oversizedBox = doLabel = TRUE;
2241 if (lprcSelectBox) doSelectBox = TRUE;
2242 if (lprcLabel) doLabel = TRUE;
2243 if (doLabel || lprcIcon || lprcStateIcon) doIcon = TRUE;
2244 if (doSelectBox)
2246 doIcon = TRUE;
2247 doLabel = TRUE;
2250 /************************************************************/
2251 /* compute the box rectangle (it should be cheap to do) */
2252 /************************************************************/
2253 if (lpLVItem->iSubItem || infoPtr->uView == LV_VIEW_DETAILS)
2254 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpLVItem->iSubItem);
2256 if (lpLVItem->iSubItem)
2258 Box = lpColumnInfo->rcHeader;
2260 else
2262 Box.left = 0;
2263 Box.right = infoPtr->nItemWidth;
2265 Box.top = 0;
2266 Box.bottom = infoPtr->nItemHeight;
2268 /******************************************************************/
2269 /* compute ICON bounding box (ala LVM_GETITEMRECT) and STATEICON */
2270 /******************************************************************/
2271 if (doIcon)
2273 LONG state_width = 0;
2275 if (infoPtr->himlState && lpLVItem->iSubItem == 0)
2276 state_width = infoPtr->iconStateSize.cx;
2278 if (infoPtr->uView == LV_VIEW_ICON)
2280 Icon.left = Box.left + state_width;
2281 if (infoPtr->himlNormal)
2282 Icon.left += (infoPtr->nItemWidth - infoPtr->iconSize.cx - state_width) / 2;
2283 Icon.top = Box.top + ICON_TOP_PADDING;
2284 Icon.right = Icon.left;
2285 Icon.bottom = Icon.top;
2286 if (infoPtr->himlNormal)
2288 Icon.right += infoPtr->iconSize.cx;
2289 Icon.bottom += infoPtr->iconSize.cy;
2292 else /* LV_VIEW_SMALLICON, LV_VIEW_LIST or LV_VIEW_DETAILS */
2294 Icon.left = Box.left + state_width;
2296 if (infoPtr->uView == LV_VIEW_DETAILS && lpLVItem->iSubItem == 0)
2298 /* we need the indent in report mode */
2299 assert(lpLVItem->mask & LVIF_INDENT);
2300 Icon.left += infoPtr->iconSize.cx * lpLVItem->iIndent + REPORT_MARGINX;
2303 Icon.top = Box.top;
2304 Icon.right = Icon.left;
2305 if (infoPtr->himlSmall &&
2306 (!lpColumnInfo || lpLVItem->iSubItem == 0 || (lpColumnInfo->fmt & LVCFMT_IMAGE) ||
2307 ((infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES) && lpLVItem->iImage != I_IMAGECALLBACK)))
2308 Icon.right += infoPtr->iconSize.cx;
2309 Icon.bottom = Icon.top + infoPtr->iconSize.cy;
2311 if(lprcIcon) *lprcIcon = Icon;
2312 TRACE(" - icon=%s\n", wine_dbgstr_rect(&Icon));
2314 /* TODO: is this correct? */
2315 if (lprcStateIcon)
2317 lprcStateIcon->left = Icon.left - state_width;
2318 lprcStateIcon->right = Icon.left;
2319 lprcStateIcon->top = Icon.top;
2320 lprcStateIcon->bottom = lprcStateIcon->top + infoPtr->iconSize.cy;
2321 TRACE(" - state icon=%s\n", wine_dbgstr_rect(lprcStateIcon));
2324 else Icon.right = 0;
2326 /************************************************************/
2327 /* compute LABEL bounding box (ala LVM_GETITEMRECT) */
2328 /************************************************************/
2329 if (doLabel)
2331 /* calculate how far to the right can the label stretch */
2332 Label.right = Box.right;
2333 if (infoPtr->uView == LV_VIEW_DETAILS)
2335 if (lpLVItem->iSubItem == 0)
2337 /* we need a zero based rect here */
2338 Label = lpColumnInfo->rcHeader;
2339 OffsetRect(&Label, -Label.left, 0);
2343 if (lpLVItem->iSubItem || ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && infoPtr->uView == LV_VIEW_DETAILS))
2345 labelSize.cx = infoPtr->nItemWidth;
2346 labelSize.cy = infoPtr->nItemHeight;
2347 goto calc_label;
2350 /* we need the text in non owner draw mode */
2351 assert(lpLVItem->mask & LVIF_TEXT);
2352 if (is_text(lpLVItem->pszText))
2354 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
2355 HDC hdc = GetDC(infoPtr->hwndSelf);
2356 HFONT hOldFont = SelectObject(hdc, hFont);
2357 UINT uFormat;
2358 RECT rcText;
2360 /* compute rough rectangle where the label will go */
2361 SetRectEmpty(&rcText);
2362 rcText.right = infoPtr->nItemWidth - TRAILING_LABEL_PADDING;
2363 rcText.bottom = infoPtr->nItemHeight;
2364 if (infoPtr->uView == LV_VIEW_ICON)
2365 rcText.bottom -= ICON_TOP_PADDING + infoPtr->iconSize.cy + ICON_BOTTOM_PADDING;
2367 /* now figure out the flags */
2368 if (infoPtr->uView == LV_VIEW_ICON)
2369 uFormat = oversizedBox ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS;
2370 else
2371 uFormat = LV_SL_DT_FLAGS;
2373 DrawTextW (hdc, lpLVItem->pszText, -1, &rcText, uFormat | DT_CALCRECT);
2375 if (rcText.right != rcText.left)
2376 labelSize.cx = min(rcText.right - rcText.left + TRAILING_LABEL_PADDING, infoPtr->nItemWidth);
2378 labelSize.cy = rcText.bottom - rcText.top;
2380 SelectObject(hdc, hOldFont);
2381 ReleaseDC(infoPtr->hwndSelf, hdc);
2384 calc_label:
2385 if (infoPtr->uView == LV_VIEW_ICON)
2387 Label.left = Box.left + (infoPtr->nItemWidth - labelSize.cx) / 2;
2388 Label.top = Box.top + ICON_TOP_PADDING_HITABLE +
2389 infoPtr->iconSize.cy + ICON_BOTTOM_PADDING;
2390 Label.right = Label.left + labelSize.cx;
2391 Label.bottom = Label.top + infoPtr->nItemHeight;
2392 if (!oversizedBox && labelSize.cy > infoPtr->ntmHeight)
2394 labelSize.cy = min(Box.bottom - Label.top, labelSize.cy);
2395 labelSize.cy /= infoPtr->ntmHeight;
2396 labelSize.cy = max(labelSize.cy, 1);
2397 labelSize.cy *= infoPtr->ntmHeight;
2399 Label.bottom = Label.top + labelSize.cy + HEIGHT_PADDING;
2401 else if (infoPtr->uView == LV_VIEW_DETAILS)
2403 Label.left = Icon.right;
2404 Label.top = Box.top;
2405 Label.right = lpLVItem->iSubItem ? lpColumnInfo->rcHeader.right :
2406 lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left;
2407 Label.bottom = Label.top + infoPtr->nItemHeight;
2409 else /* LV_VIEW_SMALLICON or LV_VIEW_LIST */
2411 Label.left = Icon.right;
2412 Label.top = Box.top;
2413 Label.right = min(Label.left + labelSize.cx, Label.right);
2414 Label.bottom = Label.top + infoPtr->nItemHeight;
2417 if (lprcLabel) *lprcLabel = Label;
2418 TRACE(" - label=%s\n", wine_dbgstr_rect(&Label));
2421 /************************************************************/
2422 /* compute SELECT bounding box */
2423 /************************************************************/
2424 if (doSelectBox)
2426 if (infoPtr->uView == LV_VIEW_DETAILS)
2428 SelectBox.left = Icon.left;
2429 SelectBox.top = Box.top;
2430 SelectBox.bottom = Box.bottom;
2432 if (labelSize.cx)
2433 SelectBox.right = min(Label.left + labelSize.cx, Label.right);
2434 else
2435 SelectBox.right = min(Label.left + MAX_EMPTYTEXT_SELECT_WIDTH, Label.right);
2437 else
2439 UnionRect(&SelectBox, &Icon, &Label);
2441 if (lprcSelectBox) *lprcSelectBox = SelectBox;
2442 TRACE(" - select box=%s\n", wine_dbgstr_rect(&SelectBox));
2445 /* Fix the Box if necessary */
2446 if (lprcBox)
2448 if (oversizedBox) UnionRect(lprcBox, &Box, &Label);
2449 else *lprcBox = Box;
2451 TRACE(" - box=%s\n", wine_dbgstr_rect(&Box));
2454 /***
2455 * DESCRIPTION: [INTERNAL]
2457 * PARAMETER(S):
2458 * [I] infoPtr : valid pointer to the listview structure
2459 * [I] nItem : item number
2460 * [O] lprcBox : ptr to Box rectangle
2462 * RETURN:
2463 * None.
2465 static void LISTVIEW_GetItemBox(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprcBox)
2467 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
2468 POINT Position, Origin;
2469 LVITEMW lvItem;
2471 LISTVIEW_GetOrigin(infoPtr, &Origin);
2472 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
2474 /* Be smart and try to figure out the minimum we have to do */
2475 lvItem.mask = 0;
2476 if (infoPtr->uView == LV_VIEW_ICON && infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, nItem, LVIS_FOCUSED))
2477 lvItem.mask |= LVIF_TEXT;
2478 lvItem.iItem = nItem;
2479 lvItem.iSubItem = 0;
2480 lvItem.pszText = szDispText;
2481 lvItem.cchTextMax = DISP_TEXT_SIZE;
2482 if (lvItem.mask) LISTVIEW_GetItemW(infoPtr, &lvItem);
2483 if (infoPtr->uView == LV_VIEW_ICON)
2485 lvItem.mask |= LVIF_STATE;
2486 lvItem.stateMask = LVIS_FOCUSED;
2487 lvItem.state = (lvItem.mask & LVIF_TEXT ? LVIS_FOCUSED : 0);
2489 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprcBox, 0, 0, 0, 0);
2491 if (infoPtr->uView == LV_VIEW_DETAILS && infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT &&
2492 SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX, 0, 0))
2494 OffsetRect(lprcBox, Origin.x, Position.y + Origin.y);
2496 else
2497 OffsetRect(lprcBox, Position.x + Origin.x, Position.y + Origin.y);
2500 /* LISTVIEW_MapIdToIndex helper */
2501 static INT CALLBACK MapIdSearchCompare(LPVOID p1, LPVOID p2, LPARAM lParam)
2503 ITEM_ID *id1 = (ITEM_ID*)p1;
2504 ITEM_ID *id2 = (ITEM_ID*)p2;
2506 if (id1->id == id2->id) return 0;
2508 return (id1->id < id2->id) ? -1 : 1;
2511 /***
2512 * DESCRIPTION:
2513 * Returns the item index for id specified.
2515 * PARAMETER(S):
2516 * [I] infoPtr : valid pointer to the listview structure
2517 * [I] iID : item id to get index for
2519 * RETURN:
2520 * Item index, or -1 on failure.
2522 static INT LISTVIEW_MapIdToIndex(const LISTVIEW_INFO *infoPtr, UINT iID)
2524 ITEM_ID ID;
2525 INT index;
2527 TRACE("iID=%d\n", iID);
2529 if (infoPtr->dwStyle & LVS_OWNERDATA) return -1;
2530 if (infoPtr->nItemCount == 0) return -1;
2532 ID.id = iID;
2533 index = DPA_Search(infoPtr->hdpaItemIds, &ID, -1, &MapIdSearchCompare, 0, DPAS_SORTED);
2535 if (index != -1)
2537 ITEM_ID *lpID = DPA_GetPtr(infoPtr->hdpaItemIds, index);
2538 return DPA_GetPtrIndex(infoPtr->hdpaItems, lpID->item);
2541 return -1;
2544 /***
2545 * DESCRIPTION:
2546 * Returns the item id for index given.
2548 * PARAMETER(S):
2549 * [I] infoPtr : valid pointer to the listview structure
2550 * [I] iItem : item index to get id for
2552 * RETURN:
2553 * Item id.
2555 static DWORD LISTVIEW_MapIndexToId(const LISTVIEW_INFO *infoPtr, INT iItem)
2557 ITEM_INFO *lpItem;
2558 HDPA hdpaSubItems;
2560 TRACE("iItem=%d\n", iItem);
2562 if (infoPtr->dwStyle & LVS_OWNERDATA) return -1;
2563 if (iItem < 0 || iItem >= infoPtr->nItemCount) return -1;
2565 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, iItem);
2566 lpItem = DPA_GetPtr(hdpaSubItems, 0);
2568 return lpItem->id->id;
2571 /***
2572 * DESCRIPTION:
2573 * Returns the current icon position, and advances it along the top.
2574 * The returned position is not offset by Origin.
2576 * PARAMETER(S):
2577 * [I] infoPtr : valid pointer to the listview structure
2578 * [O] lpPos : will get the current icon position
2580 * RETURN:
2581 * None
2583 static void LISTVIEW_NextIconPosTop(LISTVIEW_INFO *infoPtr, LPPOINT lpPos)
2585 INT nListWidth = infoPtr->rcList.right - infoPtr->rcList.left;
2587 *lpPos = infoPtr->currIconPos;
2589 infoPtr->currIconPos.x += infoPtr->nItemWidth;
2590 if (infoPtr->currIconPos.x + infoPtr->nItemWidth <= nListWidth) return;
2592 infoPtr->currIconPos.x = 0;
2593 infoPtr->currIconPos.y += infoPtr->nItemHeight;
2597 /***
2598 * DESCRIPTION:
2599 * Returns the current icon position, and advances it down the left edge.
2600 * The returned position is not offset by Origin.
2602 * PARAMETER(S):
2603 * [I] infoPtr : valid pointer to the listview structure
2604 * [O] lpPos : will get the current icon position
2606 * RETURN:
2607 * None
2609 static void LISTVIEW_NextIconPosLeft(LISTVIEW_INFO *infoPtr, LPPOINT lpPos)
2611 INT nListHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
2613 *lpPos = infoPtr->currIconPos;
2615 infoPtr->currIconPos.y += infoPtr->nItemHeight;
2616 if (infoPtr->currIconPos.y + infoPtr->nItemHeight <= nListHeight) return;
2618 infoPtr->currIconPos.x += infoPtr->nItemWidth;
2619 infoPtr->currIconPos.y = 0;
2623 /***
2624 * DESCRIPTION:
2625 * Moves an icon to the specified position.
2626 * It takes care of invalidating the item, etc.
2628 * PARAMETER(S):
2629 * [I] infoPtr : valid pointer to the listview structure
2630 * [I] nItem : the item to move
2631 * [I] lpPos : the new icon position
2632 * [I] isNew : flags the item as being new
2634 * RETURN:
2635 * Success: TRUE
2636 * Failure: FALSE
2638 static BOOL LISTVIEW_MoveIconTo(const LISTVIEW_INFO *infoPtr, INT nItem, const POINT *lppt, BOOL isNew)
2640 POINT old;
2642 if (!isNew)
2644 old.x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, nItem);
2645 old.y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, nItem);
2647 if (lppt->x == old.x && lppt->y == old.y) return TRUE;
2648 LISTVIEW_InvalidateItem(infoPtr, nItem);
2651 /* Allocating a POINTER for every item is too resource intensive,
2652 * so we'll keep the (x,y) in different arrays */
2653 if (!DPA_SetPtr(infoPtr->hdpaPosX, nItem, (void *)(LONG_PTR)lppt->x)) return FALSE;
2654 if (!DPA_SetPtr(infoPtr->hdpaPosY, nItem, (void *)(LONG_PTR)lppt->y)) return FALSE;
2656 LISTVIEW_InvalidateItem(infoPtr, nItem);
2658 return TRUE;
2661 /***
2662 * DESCRIPTION:
2663 * Arranges listview items in icon display mode.
2665 * PARAMETER(S):
2666 * [I] infoPtr : valid pointer to the listview structure
2667 * [I] nAlignCode : alignment code
2669 * RETURN:
2670 * SUCCESS : TRUE
2671 * FAILURE : FALSE
2673 static BOOL LISTVIEW_Arrange(LISTVIEW_INFO *infoPtr, INT nAlignCode)
2675 void (*next_pos)(LISTVIEW_INFO *, LPPOINT);
2676 POINT pos;
2677 INT i;
2679 if (infoPtr->uView != LV_VIEW_ICON && infoPtr->uView != LV_VIEW_SMALLICON) return FALSE;
2681 TRACE("nAlignCode=%d\n", nAlignCode);
2683 if (nAlignCode == LVA_DEFAULT)
2685 if (infoPtr->dwStyle & LVS_ALIGNLEFT) nAlignCode = LVA_ALIGNLEFT;
2686 else nAlignCode = LVA_ALIGNTOP;
2689 switch (nAlignCode)
2691 case LVA_ALIGNLEFT: next_pos = LISTVIEW_NextIconPosLeft; break;
2692 case LVA_ALIGNTOP: next_pos = LISTVIEW_NextIconPosTop; break;
2693 case LVA_SNAPTOGRID: next_pos = LISTVIEW_NextIconPosTop; break; /* FIXME */
2694 default: return FALSE;
2697 infoPtr->bAutoarrange = TRUE;
2698 infoPtr->currIconPos.x = infoPtr->currIconPos.y = 0;
2699 for (i = 0; i < infoPtr->nItemCount; i++)
2701 next_pos(infoPtr, &pos);
2702 LISTVIEW_MoveIconTo(infoPtr, i, &pos, FALSE);
2705 return TRUE;
2708 /***
2709 * DESCRIPTION:
2710 * Retrieves the bounding rectangle of all the items, not offset by Origin.
2711 * For LVS_REPORT always returns empty rectangle.
2713 * PARAMETER(S):
2714 * [I] infoPtr : valid pointer to the listview structure
2715 * [O] lprcView : bounding rectangle
2717 * RETURN:
2718 * SUCCESS : TRUE
2719 * FAILURE : FALSE
2721 static void LISTVIEW_GetAreaRect(const LISTVIEW_INFO *infoPtr, LPRECT lprcView)
2723 INT i, x, y;
2725 SetRectEmpty(lprcView);
2727 switch (infoPtr->uView)
2729 case LV_VIEW_ICON:
2730 case LV_VIEW_SMALLICON:
2731 for (i = 0; i < infoPtr->nItemCount; i++)
2733 x = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosX, i);
2734 y = (LONG_PTR)DPA_GetPtr(infoPtr->hdpaPosY, i);
2735 lprcView->right = max(lprcView->right, x);
2736 lprcView->bottom = max(lprcView->bottom, y);
2738 if (infoPtr->nItemCount > 0)
2740 lprcView->right += infoPtr->nItemWidth;
2741 lprcView->bottom += infoPtr->nItemHeight;
2743 break;
2745 case LV_VIEW_LIST:
2746 y = LISTVIEW_GetCountPerColumn(infoPtr);
2747 x = infoPtr->nItemCount / y;
2748 if (infoPtr->nItemCount % y) x++;
2749 lprcView->right = x * infoPtr->nItemWidth;
2750 lprcView->bottom = y * infoPtr->nItemHeight;
2751 break;
2755 /***
2756 * DESCRIPTION:
2757 * Retrieves the bounding rectangle of all the items.
2759 * PARAMETER(S):
2760 * [I] infoPtr : valid pointer to the listview structure
2761 * [O] lprcView : bounding rectangle
2763 * RETURN:
2764 * SUCCESS : TRUE
2765 * FAILURE : FALSE
2767 static BOOL LISTVIEW_GetViewRect(const LISTVIEW_INFO *infoPtr, LPRECT lprcView)
2769 POINT ptOrigin;
2771 TRACE("(lprcView=%p)\n", lprcView);
2773 if (!lprcView) return FALSE;
2775 LISTVIEW_GetAreaRect(infoPtr, lprcView);
2777 if (infoPtr->uView != LV_VIEW_DETAILS)
2779 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
2780 OffsetRect(lprcView, ptOrigin.x, ptOrigin.y);
2783 TRACE("lprcView=%s\n", wine_dbgstr_rect(lprcView));
2785 return TRUE;
2788 /***
2789 * DESCRIPTION:
2790 * Retrieves the subitem pointer associated with the subitem index.
2792 * PARAMETER(S):
2793 * [I] hdpaSubItems : DPA handle for a specific item
2794 * [I] nSubItem : index of subitem
2796 * RETURN:
2797 * SUCCESS : subitem pointer
2798 * FAILURE : NULL
2800 static SUBITEM_INFO* LISTVIEW_GetSubItemPtr(HDPA hdpaSubItems, INT nSubItem)
2802 SUBITEM_INFO *lpSubItem;
2803 INT i;
2805 /* we should binary search here if need be */
2806 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
2808 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
2809 if (lpSubItem->iSubItem == nSubItem)
2810 return lpSubItem;
2813 return NULL;
2817 /***
2818 * DESCRIPTION:
2819 * Calculates the desired item width.
2821 * PARAMETER(S):
2822 * [I] infoPtr : valid pointer to the listview structure
2824 * RETURN:
2825 * The desired item width.
2827 static INT LISTVIEW_CalculateItemWidth(const LISTVIEW_INFO *infoPtr)
2829 INT nItemWidth = 0;
2831 TRACE("uView=%d\n", infoPtr->uView);
2833 if (infoPtr->uView == LV_VIEW_ICON)
2834 nItemWidth = infoPtr->iconSpacing.cx;
2835 else if (infoPtr->uView == LV_VIEW_DETAILS)
2837 if (DPA_GetPtrCount(infoPtr->hdpaColumns) > 0)
2839 RECT rcHeader;
2840 INT index;
2842 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX,
2843 DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, 0);
2845 LISTVIEW_GetHeaderRect(infoPtr, index, &rcHeader);
2846 nItemWidth = rcHeader.right;
2849 else /* LV_VIEW_SMALLICON, or LV_VIEW_LIST */
2851 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
2852 LVITEMW lvItem;
2853 INT i;
2855 lvItem.mask = LVIF_TEXT;
2856 lvItem.iSubItem = 0;
2858 for (i = 0; i < infoPtr->nItemCount; i++)
2860 lvItem.iItem = i;
2861 lvItem.pszText = szDispText;
2862 lvItem.cchTextMax = DISP_TEXT_SIZE;
2863 if (LISTVIEW_GetItemW(infoPtr, &lvItem))
2864 nItemWidth = max(LISTVIEW_GetStringWidthT(infoPtr, lvItem.pszText, TRUE),
2865 nItemWidth);
2868 if (infoPtr->himlSmall) nItemWidth += infoPtr->iconSize.cx;
2869 if (infoPtr->himlState) nItemWidth += infoPtr->iconStateSize.cx;
2871 nItemWidth = max(DEFAULT_COLUMN_WIDTH, nItemWidth + WIDTH_PADDING);
2874 return nItemWidth;
2877 /***
2878 * DESCRIPTION:
2879 * Calculates the desired item height.
2881 * PARAMETER(S):
2882 * [I] infoPtr : valid pointer to the listview structure
2884 * RETURN:
2885 * The desired item height.
2887 static INT LISTVIEW_CalculateItemHeight(const LISTVIEW_INFO *infoPtr)
2889 INT nItemHeight;
2891 TRACE("uView=%d\n", infoPtr->uView);
2893 if (infoPtr->uView == LV_VIEW_ICON)
2894 nItemHeight = infoPtr->iconSpacing.cy;
2895 else
2897 nItemHeight = infoPtr->ntmHeight;
2898 if (infoPtr->uView == LV_VIEW_DETAILS && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
2899 nItemHeight++;
2900 if (infoPtr->himlState)
2901 nItemHeight = max(nItemHeight, infoPtr->iconStateSize.cy);
2902 if (infoPtr->himlSmall)
2903 nItemHeight = max(nItemHeight, infoPtr->iconSize.cy);
2904 if (infoPtr->himlState || infoPtr->himlSmall)
2905 nItemHeight += HEIGHT_PADDING;
2906 if (infoPtr->nMeasureItemHeight > 0)
2907 nItemHeight = infoPtr->nMeasureItemHeight;
2910 return max(nItemHeight, 1);
2913 /***
2914 * DESCRIPTION:
2915 * Updates the width, and height of an item.
2917 * PARAMETER(S):
2918 * [I] infoPtr : valid pointer to the listview structure
2920 * RETURN:
2921 * None.
2923 static inline void LISTVIEW_UpdateItemSize(LISTVIEW_INFO *infoPtr)
2925 infoPtr->nItemWidth = LISTVIEW_CalculateItemWidth(infoPtr);
2926 infoPtr->nItemHeight = LISTVIEW_CalculateItemHeight(infoPtr);
2930 /***
2931 * DESCRIPTION:
2932 * Retrieves and saves important text metrics info for the current
2933 * Listview font.
2935 * PARAMETER(S):
2936 * [I] infoPtr : valid pointer to the listview structure
2939 static void LISTVIEW_SaveTextMetrics(LISTVIEW_INFO *infoPtr)
2941 HDC hdc = GetDC(infoPtr->hwndSelf);
2942 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
2943 HFONT hOldFont = SelectObject(hdc, hFont);
2944 TEXTMETRICW tm;
2945 SIZE sz;
2947 if (GetTextMetricsW(hdc, &tm))
2949 infoPtr->ntmHeight = tm.tmHeight;
2950 infoPtr->ntmMaxCharWidth = tm.tmMaxCharWidth;
2953 if (GetTextExtentPoint32A(hdc, "...", 3, &sz))
2954 infoPtr->nEllipsisWidth = sz.cx;
2956 SelectObject(hdc, hOldFont);
2957 ReleaseDC(infoPtr->hwndSelf, hdc);
2959 TRACE("tmHeight=%d\n", infoPtr->ntmHeight);
2962 /***
2963 * DESCRIPTION:
2964 * A compare function for ranges
2966 * PARAMETER(S)
2967 * [I] range1 : pointer to range 1;
2968 * [I] range2 : pointer to range 2;
2969 * [I] flags : flags
2971 * RETURNS:
2972 * > 0 : if range 1 > range 2
2973 * < 0 : if range 2 > range 1
2974 * = 0 : if range intersects range 2
2976 static INT CALLBACK ranges_cmp(LPVOID range1, LPVOID range2, LPARAM flags)
2978 INT cmp;
2980 if (((RANGE*)range1)->upper <= ((RANGE*)range2)->lower)
2981 cmp = -1;
2982 else if (((RANGE*)range2)->upper <= ((RANGE*)range1)->lower)
2983 cmp = 1;
2984 else
2985 cmp = 0;
2987 TRACE("range1=%s, range2=%s, cmp=%d\n", debugrange(range1), debugrange(range2), cmp);
2989 return cmp;
2992 #define ranges_check(ranges, desc) if (TRACE_ON(listview)) ranges_assert(ranges, desc, __FUNCTION__, __LINE__)
2994 static void ranges_assert(RANGES ranges, LPCSTR desc, const char *func, int line)
2996 INT i;
2997 RANGE *prev, *curr;
2999 TRACE("*** Checking %s:%d:%s ***\n", func, line, desc);
3000 assert (ranges);
3001 assert (DPA_GetPtrCount(ranges->hdpa) >= 0);
3002 ranges_dump(ranges);
3003 if (DPA_GetPtrCount(ranges->hdpa) > 0)
3005 prev = DPA_GetPtr(ranges->hdpa, 0);
3006 assert (prev->lower >= 0 && prev->lower < prev->upper);
3007 for (i = 1; i < DPA_GetPtrCount(ranges->hdpa); i++)
3009 curr = DPA_GetPtr(ranges->hdpa, i);
3010 assert (prev->upper <= curr->lower);
3011 assert (curr->lower < curr->upper);
3012 prev = curr;
3015 TRACE("--- Done checking---\n");
3018 static RANGES ranges_create(int count)
3020 RANGES ranges = Alloc(sizeof(struct tagRANGES));
3021 if (!ranges) return NULL;
3022 ranges->hdpa = DPA_Create(count);
3023 if (ranges->hdpa) return ranges;
3024 Free(ranges);
3025 return NULL;
3028 static void ranges_clear(RANGES ranges)
3030 INT i;
3032 for(i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
3033 Free(DPA_GetPtr(ranges->hdpa, i));
3034 DPA_DeleteAllPtrs(ranges->hdpa);
3038 static void ranges_destroy(RANGES ranges)
3040 if (!ranges) return;
3041 ranges_clear(ranges);
3042 DPA_Destroy(ranges->hdpa);
3043 Free(ranges);
3046 static RANGES ranges_clone(RANGES ranges)
3048 RANGES clone;
3049 INT i;
3051 if (!(clone = ranges_create(DPA_GetPtrCount(ranges->hdpa)))) goto fail;
3053 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
3055 RANGE *newrng = Alloc(sizeof(RANGE));
3056 if (!newrng) goto fail;
3057 *newrng = *((RANGE*)DPA_GetPtr(ranges->hdpa, i));
3058 DPA_SetPtr(clone->hdpa, i, newrng);
3060 return clone;
3062 fail:
3063 TRACE ("clone failed\n");
3064 ranges_destroy(clone);
3065 return NULL;
3068 static RANGES ranges_diff(RANGES ranges, RANGES sub)
3070 INT i;
3072 for (i = 0; i < DPA_GetPtrCount(sub->hdpa); i++)
3073 ranges_del(ranges, *((RANGE *)DPA_GetPtr(sub->hdpa, i)));
3075 return ranges;
3078 static void ranges_dump(RANGES ranges)
3080 INT i;
3082 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
3083 TRACE(" %s\n", debugrange(DPA_GetPtr(ranges->hdpa, i)));
3086 static inline BOOL ranges_contain(RANGES ranges, INT nItem)
3088 RANGE srchrng = { nItem, nItem + 1 };
3090 TRACE("(nItem=%d)\n", nItem);
3091 ranges_check(ranges, "before contain");
3092 return DPA_Search(ranges->hdpa, &srchrng, 0, ranges_cmp, 0, DPAS_SORTED) != -1;
3095 static INT ranges_itemcount(RANGES ranges)
3097 INT i, count = 0;
3099 for (i = 0; i < DPA_GetPtrCount(ranges->hdpa); i++)
3101 RANGE *sel = DPA_GetPtr(ranges->hdpa, i);
3102 count += sel->upper - sel->lower;
3105 return count;
3108 static BOOL ranges_shift(RANGES ranges, INT nItem, INT delta, INT nUpper)
3110 RANGE srchrng = { nItem, nItem + 1 }, *chkrng;
3111 INT index;
3113 index = DPA_Search(ranges->hdpa, &srchrng, 0, ranges_cmp, 0, DPAS_SORTED | DPAS_INSERTAFTER);
3114 if (index == -1) return TRUE;
3116 for (; index < DPA_GetPtrCount(ranges->hdpa); index++)
3118 chkrng = DPA_GetPtr(ranges->hdpa, index);
3119 if (chkrng->lower >= nItem)
3120 chkrng->lower = max(min(chkrng->lower + delta, nUpper - 1), 0);
3121 if (chkrng->upper > nItem)
3122 chkrng->upper = max(min(chkrng->upper + delta, nUpper), 0);
3124 return TRUE;
3127 static BOOL ranges_add(RANGES ranges, RANGE range)
3129 RANGE srchrgn;
3130 INT index;
3132 TRACE("(%s)\n", debugrange(&range));
3133 ranges_check(ranges, "before add");
3135 /* try find overlapping regions first */
3136 srchrgn.lower = range.lower - 1;
3137 srchrgn.upper = range.upper + 1;
3138 index = DPA_Search(ranges->hdpa, &srchrgn, 0, ranges_cmp, 0, DPAS_SORTED);
3140 if (index == -1)
3142 RANGE *newrgn;
3144 TRACE("Adding new range\n");
3146 /* create the brand new range to insert */
3147 newrgn = Alloc(sizeof(RANGE));
3148 if(!newrgn) goto fail;
3149 *newrgn = range;
3151 /* figure out where to insert it */
3152 index = DPA_Search(ranges->hdpa, newrgn, 0, ranges_cmp, 0, DPAS_SORTED | DPAS_INSERTAFTER);
3153 TRACE("index=%d\n", index);
3154 if (index == -1) index = 0;
3156 /* and get it over with */
3157 if (DPA_InsertPtr(ranges->hdpa, index, newrgn) == -1)
3159 Free(newrgn);
3160 goto fail;
3163 else
3165 RANGE *chkrgn, *mrgrgn;
3166 INT fromindex, mergeindex;
3168 chkrgn = DPA_GetPtr(ranges->hdpa, index);
3169 TRACE("Merge with %s @%d\n", debugrange(chkrgn), index);
3171 chkrgn->lower = min(range.lower, chkrgn->lower);
3172 chkrgn->upper = max(range.upper, chkrgn->upper);
3174 TRACE("New range %s @%d\n", debugrange(chkrgn), index);
3176 /* merge now common ranges */
3177 fromindex = 0;
3178 srchrgn.lower = chkrgn->lower - 1;
3179 srchrgn.upper = chkrgn->upper + 1;
3183 mergeindex = DPA_Search(ranges->hdpa, &srchrgn, fromindex, ranges_cmp, 0, 0);
3184 if (mergeindex == -1) break;
3185 if (mergeindex == index)
3187 fromindex = index + 1;
3188 continue;
3191 TRACE("Merge with index %i\n", mergeindex);
3193 mrgrgn = DPA_GetPtr(ranges->hdpa, mergeindex);
3194 chkrgn->lower = min(chkrgn->lower, mrgrgn->lower);
3195 chkrgn->upper = max(chkrgn->upper, mrgrgn->upper);
3196 Free(mrgrgn);
3197 DPA_DeletePtr(ranges->hdpa, mergeindex);
3198 if (mergeindex < index) index --;
3199 } while(1);
3202 ranges_check(ranges, "after add");
3203 return TRUE;
3205 fail:
3206 ranges_check(ranges, "failed add");
3207 return FALSE;
3210 static BOOL ranges_del(RANGES ranges, RANGE range)
3212 RANGE *chkrgn;
3213 INT index;
3215 TRACE("(%s)\n", debugrange(&range));
3216 ranges_check(ranges, "before del");
3218 /* we don't use DPAS_SORTED here, since we need *
3219 * to find the first overlapping range */
3220 index = DPA_Search(ranges->hdpa, &range, 0, ranges_cmp, 0, 0);
3221 while(index != -1)
3223 chkrgn = DPA_GetPtr(ranges->hdpa, index);
3225 TRACE("Matches range %s @%d\n", debugrange(chkrgn), index);
3227 /* case 1: Same range */
3228 if ( (chkrgn->upper == range.upper) &&
3229 (chkrgn->lower == range.lower) )
3231 DPA_DeletePtr(ranges->hdpa, index);
3232 Free(chkrgn);
3233 break;
3235 /* case 2: engulf */
3236 else if ( (chkrgn->upper <= range.upper) &&
3237 (chkrgn->lower >= range.lower) )
3239 DPA_DeletePtr(ranges->hdpa, index);
3240 Free(chkrgn);
3242 /* case 3: overlap upper */
3243 else if ( (chkrgn->upper <= range.upper) &&
3244 (chkrgn->lower < range.lower) )
3246 chkrgn->upper = range.lower;
3248 /* case 4: overlap lower */
3249 else if ( (chkrgn->upper > range.upper) &&
3250 (chkrgn->lower >= range.lower) )
3252 chkrgn->lower = range.upper;
3253 break;
3255 /* case 5: fully internal */
3256 else
3258 RANGE *newrgn;
3260 if (!(newrgn = Alloc(sizeof(RANGE)))) goto fail;
3261 newrgn->lower = chkrgn->lower;
3262 newrgn->upper = range.lower;
3263 chkrgn->lower = range.upper;
3264 if (DPA_InsertPtr(ranges->hdpa, index, newrgn) == -1)
3266 Free(newrgn);
3267 goto fail;
3269 break;
3272 index = DPA_Search(ranges->hdpa, &range, index, ranges_cmp, 0, 0);
3275 ranges_check(ranges, "after del");
3276 return TRUE;
3278 fail:
3279 ranges_check(ranges, "failed del");
3280 return FALSE;
3283 /***
3284 * DESCRIPTION:
3285 * Removes all selection ranges
3287 * Parameters(s):
3288 * [I] infoPtr : valid pointer to the listview structure
3289 * [I] toSkip : item range to skip removing the selection
3291 * RETURNS:
3292 * SUCCESS : TRUE
3293 * FAILURE : FALSE
3295 static BOOL LISTVIEW_DeselectAllSkipItems(LISTVIEW_INFO *infoPtr, RANGES toSkip)
3297 LVITEMW lvItem;
3298 ITERATOR i;
3299 RANGES clone;
3301 TRACE("()\n");
3303 lvItem.state = 0;
3304 lvItem.stateMask = LVIS_SELECTED;
3306 /* need to clone the DPA because callbacks can change it */
3307 if (!(clone = ranges_clone(infoPtr->selectionRanges))) return FALSE;
3308 iterator_rangesitems(&i, ranges_diff(clone, toSkip));
3309 while(iterator_next(&i))
3310 LISTVIEW_SetItemState(infoPtr, i.nItem, &lvItem);
3311 /* note that the iterator destructor will free the cloned range */
3312 iterator_destroy(&i);
3314 return TRUE;
3317 static inline BOOL LISTVIEW_DeselectAllSkipItem(LISTVIEW_INFO *infoPtr, INT nItem)
3319 RANGES toSkip;
3321 if (!(toSkip = ranges_create(1))) return FALSE;
3322 if (nItem != -1) ranges_additem(toSkip, nItem);
3323 LISTVIEW_DeselectAllSkipItems(infoPtr, toSkip);
3324 ranges_destroy(toSkip);
3325 return TRUE;
3328 static inline BOOL LISTVIEW_DeselectAll(LISTVIEW_INFO *infoPtr)
3330 return LISTVIEW_DeselectAllSkipItem(infoPtr, -1);
3333 /***
3334 * DESCRIPTION:
3335 * Retrieves the number of items that are marked as selected.
3337 * PARAMETER(S):
3338 * [I] infoPtr : valid pointer to the listview structure
3340 * RETURN:
3341 * Number of items selected.
3343 static INT LISTVIEW_GetSelectedCount(const LISTVIEW_INFO *infoPtr)
3345 INT nSelectedCount = 0;
3347 if (infoPtr->uCallbackMask & LVIS_SELECTED)
3349 INT i;
3350 for (i = 0; i < infoPtr->nItemCount; i++)
3352 if (LISTVIEW_GetItemState(infoPtr, i, LVIS_SELECTED))
3353 nSelectedCount++;
3356 else
3357 nSelectedCount = ranges_itemcount(infoPtr->selectionRanges);
3359 TRACE("nSelectedCount=%d\n", nSelectedCount);
3360 return nSelectedCount;
3363 /***
3364 * DESCRIPTION:
3365 * Manages the item focus.
3367 * PARAMETER(S):
3368 * [I] infoPtr : valid pointer to the listview structure
3369 * [I] nItem : item index
3371 * RETURN:
3372 * TRUE : focused item changed
3373 * FALSE : focused item has NOT changed
3375 static inline BOOL LISTVIEW_SetItemFocus(LISTVIEW_INFO *infoPtr, INT nItem)
3377 INT oldFocus = infoPtr->nFocusedItem;
3378 LVITEMW lvItem;
3380 if (nItem == infoPtr->nFocusedItem) return FALSE;
3382 lvItem.state = nItem == -1 ? 0 : LVIS_FOCUSED;
3383 lvItem.stateMask = LVIS_FOCUSED;
3384 LISTVIEW_SetItemState(infoPtr, nItem == -1 ? infoPtr->nFocusedItem : nItem, &lvItem);
3386 return oldFocus != infoPtr->nFocusedItem;
3389 /* Helper function for LISTVIEW_ShiftIndices *only* */
3390 static INT shift_item(const LISTVIEW_INFO *infoPtr, INT nShiftItem, INT nItem, INT direction)
3392 if (nShiftItem < nItem) return nShiftItem;
3394 if (nShiftItem > nItem) return nShiftItem + direction;
3396 if (direction > 0) return nShiftItem + direction;
3398 return min(nShiftItem, infoPtr->nItemCount - 1);
3402 * DESCRIPTION:
3403 * Updates the various indices after an item has been inserted or deleted.
3405 * PARAMETER(S):
3406 * [I] infoPtr : valid pointer to the listview structure
3407 * [I] nItem : item index
3408 * [I] direction : Direction of shift, +1 or -1.
3410 * RETURN:
3411 * None
3413 static void LISTVIEW_ShiftIndices(LISTVIEW_INFO *infoPtr, INT nItem, INT direction)
3415 INT nNewFocus;
3416 BOOL bOldChange;
3418 /* temporarily disable change notification while shifting items */
3419 bOldChange = infoPtr->bDoChangeNotify;
3420 infoPtr->bDoChangeNotify = FALSE;
3422 TRACE("Shifting %iu, %i steps\n", nItem, direction);
3424 ranges_shift(infoPtr->selectionRanges, nItem, direction, infoPtr->nItemCount);
3426 assert(abs(direction) == 1);
3428 infoPtr->nSelectionMark = shift_item(infoPtr, infoPtr->nSelectionMark, nItem, direction);
3430 nNewFocus = shift_item(infoPtr, infoPtr->nFocusedItem, nItem, direction);
3431 if (nNewFocus != infoPtr->nFocusedItem)
3432 LISTVIEW_SetItemFocus(infoPtr, nNewFocus);
3434 /* But we are not supposed to modify nHotItem! */
3436 infoPtr->bDoChangeNotify = bOldChange;
3441 * DESCRIPTION:
3442 * Adds a block of selections.
3444 * PARAMETER(S):
3445 * [I] infoPtr : valid pointer to the listview structure
3446 * [I] nItem : item index
3448 * RETURN:
3449 * Whether the window is still valid.
3451 static BOOL LISTVIEW_AddGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3453 INT nFirst = min(infoPtr->nSelectionMark, nItem);
3454 INT nLast = max(infoPtr->nSelectionMark, nItem);
3455 HWND hwndSelf = infoPtr->hwndSelf;
3456 NMLVODSTATECHANGE nmlv;
3457 LVITEMW item;
3458 BOOL bOldChange;
3459 INT i;
3461 /* Temporarily disable change notification
3462 * If the control is LVS_OWNERDATA, we need to send
3463 * only one LVN_ODSTATECHANGED notification.
3464 * See MSDN documentation for LVN_ITEMCHANGED.
3466 bOldChange = infoPtr->bDoChangeNotify;
3467 if (infoPtr->dwStyle & LVS_OWNERDATA) infoPtr->bDoChangeNotify = FALSE;
3469 if (nFirst == -1) nFirst = nItem;
3471 item.state = LVIS_SELECTED;
3472 item.stateMask = LVIS_SELECTED;
3474 for (i = nFirst; i <= nLast; i++)
3475 LISTVIEW_SetItemState(infoPtr,i,&item);
3477 ZeroMemory(&nmlv, sizeof(nmlv));
3478 nmlv.iFrom = nFirst;
3479 nmlv.iTo = nLast;
3480 nmlv.uNewState = 0;
3481 nmlv.uOldState = item.state;
3483 notify_hdr(infoPtr, LVN_ODSTATECHANGED, (LPNMHDR)&nmlv);
3484 if (!IsWindow(hwndSelf))
3485 return FALSE;
3486 infoPtr->bDoChangeNotify = bOldChange;
3487 return TRUE;
3491 /***
3492 * DESCRIPTION:
3493 * Sets a single group selection.
3495 * PARAMETER(S):
3496 * [I] infoPtr : valid pointer to the listview structure
3497 * [I] nItem : item index
3499 * RETURN:
3500 * None
3502 static void LISTVIEW_SetGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3504 RANGES selection;
3505 LVITEMW item;
3506 ITERATOR i;
3507 BOOL bOldChange;
3509 if (!(selection = ranges_create(100))) return;
3511 item.state = LVIS_SELECTED;
3512 item.stateMask = LVIS_SELECTED;
3514 if ((infoPtr->uView == LV_VIEW_LIST) || (infoPtr->uView == LV_VIEW_DETAILS))
3516 if (infoPtr->nSelectionMark == -1)
3518 infoPtr->nSelectionMark = nItem;
3519 ranges_additem(selection, nItem);
3521 else
3523 RANGE sel;
3525 sel.lower = min(infoPtr->nSelectionMark, nItem);
3526 sel.upper = max(infoPtr->nSelectionMark, nItem) + 1;
3527 ranges_add(selection, sel);
3530 else
3532 RECT rcItem, rcSel, rcSelMark;
3533 POINT ptItem;
3535 rcItem.left = LVIR_BOUNDS;
3536 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) return;
3537 rcSelMark.left = LVIR_BOUNDS;
3538 if (!LISTVIEW_GetItemRect(infoPtr, infoPtr->nSelectionMark, &rcSelMark)) return;
3539 UnionRect(&rcSel, &rcItem, &rcSelMark);
3540 iterator_frameditems(&i, infoPtr, &rcSel);
3541 while(iterator_next(&i))
3543 LISTVIEW_GetItemPosition(infoPtr, i.nItem, &ptItem);
3544 if (PtInRect(&rcSel, ptItem)) ranges_additem(selection, i.nItem);
3546 iterator_destroy(&i);
3549 /* disable per item notifications on LVS_OWNERDATA style
3550 FIXME: single LVN_ODSTATECHANGED should be used */
3551 bOldChange = infoPtr->bDoChangeNotify;
3552 if (infoPtr->dwStyle & LVS_OWNERDATA) infoPtr->bDoChangeNotify = FALSE;
3554 LISTVIEW_DeselectAllSkipItems(infoPtr, selection);
3557 iterator_rangesitems(&i, selection);
3558 while(iterator_next(&i))
3559 LISTVIEW_SetItemState(infoPtr, i.nItem, &item);
3560 /* this will also destroy the selection */
3561 iterator_destroy(&i);
3563 infoPtr->bDoChangeNotify = bOldChange;
3565 LISTVIEW_SetItemFocus(infoPtr, nItem);
3568 /***
3569 * DESCRIPTION:
3570 * Sets a single selection.
3572 * PARAMETER(S):
3573 * [I] infoPtr : valid pointer to the listview structure
3574 * [I] nItem : item index
3576 * RETURN:
3577 * None
3579 static void LISTVIEW_SetSelection(LISTVIEW_INFO *infoPtr, INT nItem)
3581 LVITEMW lvItem;
3583 TRACE("nItem=%d\n", nItem);
3585 LISTVIEW_DeselectAllSkipItem(infoPtr, nItem);
3587 lvItem.state = LVIS_FOCUSED | LVIS_SELECTED;
3588 lvItem.stateMask = LVIS_FOCUSED | LVIS_SELECTED;
3589 LISTVIEW_SetItemState(infoPtr, nItem, &lvItem);
3591 infoPtr->nSelectionMark = nItem;
3594 /***
3595 * DESCRIPTION:
3596 * Set selection(s) with keyboard.
3598 * PARAMETER(S):
3599 * [I] infoPtr : valid pointer to the listview structure
3600 * [I] nItem : item index
3601 * [I] space : VK_SPACE code sent
3603 * RETURN:
3604 * SUCCESS : TRUE (needs to be repainted)
3605 * FAILURE : FALSE (nothing has changed)
3607 static BOOL LISTVIEW_KeySelection(LISTVIEW_INFO *infoPtr, INT nItem, BOOL space)
3609 /* FIXME: pass in the state */
3610 WORD wShift = HIWORD(GetKeyState(VK_SHIFT));
3611 WORD wCtrl = HIWORD(GetKeyState(VK_CONTROL));
3612 BOOL bResult = FALSE;
3614 TRACE("nItem=%d, wShift=%d, wCtrl=%d\n", nItem, wShift, wCtrl);
3615 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
3617 bResult = TRUE;
3619 if (infoPtr->dwStyle & LVS_SINGLESEL || (wShift == 0 && wCtrl == 0))
3620 LISTVIEW_SetSelection(infoPtr, nItem);
3621 else
3623 if (wShift)
3624 LISTVIEW_SetGroupSelection(infoPtr, nItem);
3625 else if (wCtrl)
3627 LVITEMW lvItem;
3628 lvItem.state = ~LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED);
3629 lvItem.stateMask = LVIS_SELECTED;
3630 if (space)
3632 LISTVIEW_SetItemState(infoPtr, nItem, &lvItem);
3633 if (lvItem.state & LVIS_SELECTED)
3634 infoPtr->nSelectionMark = nItem;
3636 bResult = LISTVIEW_SetItemFocus(infoPtr, nItem);
3639 LISTVIEW_EnsureVisible(infoPtr, nItem, FALSE);
3642 UpdateWindow(infoPtr->hwndSelf); /* update client area */
3643 return bResult;
3646 static BOOL LISTVIEW_GetItemAtPt(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, POINT pt)
3648 LVHITTESTINFO lvHitTestInfo;
3650 ZeroMemory(&lvHitTestInfo, sizeof(lvHitTestInfo));
3651 lvHitTestInfo.pt.x = pt.x;
3652 lvHitTestInfo.pt.y = pt.y;
3654 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
3656 lpLVItem->mask = LVIF_PARAM;
3657 lpLVItem->iItem = lvHitTestInfo.iItem;
3658 lpLVItem->iSubItem = 0;
3660 return LISTVIEW_GetItemT(infoPtr, lpLVItem, TRUE);
3663 static inline BOOL LISTVIEW_IsHotTracking(const LISTVIEW_INFO *infoPtr)
3665 return ((infoPtr->dwLvExStyle & LVS_EX_TRACKSELECT) ||
3666 (infoPtr->dwLvExStyle & LVS_EX_ONECLICKACTIVATE) ||
3667 (infoPtr->dwLvExStyle & LVS_EX_TWOCLICKACTIVATE));
3670 /***
3671 * DESCRIPTION:
3672 * Called when the mouse is being actively tracked and has hovered for a specified
3673 * amount of time
3675 * PARAMETER(S):
3676 * [I] infoPtr : valid pointer to the listview structure
3677 * [I] fwKeys : key indicator
3678 * [I] x,y : mouse position
3680 * RETURN:
3681 * 0 if the message was processed, non-zero if there was an error
3683 * INFO:
3684 * LVS_EX_TRACKSELECT: An item is automatically selected when the cursor remains
3685 * over the item for a certain period of time.
3688 static LRESULT LISTVIEW_MouseHover(LISTVIEW_INFO *infoPtr, INT x, INT y)
3690 NMHDR hdr;
3692 if (notify_hdr(infoPtr, NM_HOVER, &hdr)) return 0;
3694 if (LISTVIEW_IsHotTracking(infoPtr))
3696 LVITEMW item;
3697 POINT pt;
3699 pt.x = x;
3700 pt.y = y;
3702 if (LISTVIEW_GetItemAtPt(infoPtr, &item, pt))
3703 LISTVIEW_SetSelection(infoPtr, item.iItem);
3705 SetFocus(infoPtr->hwndSelf);
3708 return 0;
3711 #define SCROLL_LEFT 0x1
3712 #define SCROLL_RIGHT 0x2
3713 #define SCROLL_UP 0x4
3714 #define SCROLL_DOWN 0x8
3716 /***
3717 * DESCRIPTION:
3718 * Utility routine to draw and highlight items within a marquee selection rectangle.
3720 * PARAMETER(S):
3721 * [I] infoPtr : valid pointer to the listview structure
3722 * [I] coords_orig : original co-ordinates of the cursor
3723 * [I] coords_offs : offsetted coordinates of the cursor
3724 * [I] offset : offset amount
3725 * [I] scroll : Bitmask of which directions we should scroll, if at all
3727 * RETURN:
3728 * None.
3730 static void LISTVIEW_MarqueeHighlight(LISTVIEW_INFO *infoPtr, const POINT *coords_orig,
3731 const POINT *coords_offs, const POINT *offset,
3732 INT scroll)
3734 BOOL controlDown = FALSE;
3735 LVITEMW item;
3736 ITERATOR i;
3737 RECT rect;
3739 if (coords_offs->x > infoPtr->marqueeOrigin.x)
3741 rect.left = infoPtr->marqueeOrigin.x;
3742 rect.right = coords_offs->x;
3744 else
3746 rect.left = coords_offs->x;
3747 rect.right = infoPtr->marqueeOrigin.x;
3750 if (coords_offs->y > infoPtr->marqueeOrigin.y)
3752 rect.top = infoPtr->marqueeOrigin.y;
3753 rect.bottom = coords_offs->y;
3755 else
3757 rect.top = coords_offs->y;
3758 rect.bottom = infoPtr->marqueeOrigin.y;
3761 /* Cancel out the old marquee rectangle and draw the new one */
3762 LISTVIEW_InvalidateRect(infoPtr, &infoPtr->marqueeDrawRect);
3764 /* Scroll by the appropriate distance if applicable - speed up scrolling as
3765 the cursor is further away */
3767 if ((scroll & SCROLL_LEFT) && (coords_orig->x <= 0))
3768 LISTVIEW_Scroll(infoPtr, coords_orig->x, 0);
3770 if ((scroll & SCROLL_RIGHT) && (coords_orig->x >= infoPtr->rcList.right))
3771 LISTVIEW_Scroll(infoPtr, (coords_orig->x - infoPtr->rcList.right), 0);
3773 if ((scroll & SCROLL_UP) && (coords_orig->y <= 0))
3774 LISTVIEW_Scroll(infoPtr, 0, coords_orig->y);
3776 if ((scroll & SCROLL_DOWN) && (coords_orig->y >= infoPtr->rcList.bottom))
3777 LISTVIEW_Scroll(infoPtr, 0, (coords_orig->y - infoPtr->rcList.bottom));
3779 /* Invert the items in the old marquee rectangle */
3780 iterator_frameditems_absolute(&i, infoPtr, &infoPtr->marqueeRect);
3782 while (iterator_next(&i))
3784 if (i.nItem > -1)
3786 if (LISTVIEW_GetItemState(infoPtr, i.nItem, LVIS_SELECTED) == LVIS_SELECTED)
3787 item.state = 0;
3788 else
3789 item.state = LVIS_SELECTED;
3791 item.stateMask = LVIS_SELECTED;
3793 LISTVIEW_SetItemState(infoPtr, i.nItem, &item);
3797 iterator_destroy(&i);
3799 CopyRect(&infoPtr->marqueeRect, &rect);
3801 CopyRect(&infoPtr->marqueeDrawRect, &rect);
3802 OffsetRect(&infoPtr->marqueeDrawRect, offset->x, offset->y);
3804 /* Iterate over the items within our marquee rectangle */
3805 iterator_frameditems_absolute(&i, infoPtr, &infoPtr->marqueeRect);
3807 if (GetKeyState(VK_CONTROL) & 0x8000)
3808 controlDown = TRUE;
3810 while (iterator_next(&i))
3812 if (i.nItem > -1)
3814 /* If CTRL is pressed, invert. If not, always select the item. */
3815 if ((controlDown) && (LISTVIEW_GetItemState(infoPtr, i.nItem, LVIS_SELECTED)))
3816 item.state = 0;
3817 else
3818 item.state = LVIS_SELECTED;
3820 item.stateMask = LVIS_SELECTED;
3822 LISTVIEW_SetItemState(infoPtr, i.nItem, &item);
3826 iterator_destroy(&i);
3827 LISTVIEW_InvalidateRect(infoPtr, &rect);
3830 /***
3831 * DESCRIPTION:
3832 * Called when we are in a marquee selection that involves scrolling the listview (ie,
3833 * the cursor is outside the bounds of the client area). This is a TIMERPROC.
3835 * PARAMETER(S):
3836 * [I] hwnd : Handle to the listview
3837 * [I] uMsg : WM_TIMER (ignored)
3838 * [I] idEvent : The timer ID interpreted as a pointer to a LISTVIEW_INFO struct
3839 * [I] dwTimer : The elapsed time (ignored)
3841 * RETURN:
3842 * None.
3844 static VOID CALLBACK LISTVIEW_ScrollTimer(HWND hWnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
3846 LISTVIEW_INFO *infoPtr;
3847 SCROLLINFO scrollInfo;
3848 POINT coords_orig;
3849 POINT coords_offs;
3850 POINT offset;
3851 INT scroll = 0;
3853 infoPtr = (LISTVIEW_INFO *) idEvent;
3855 if (!infoPtr)
3856 return;
3858 /* Get the current cursor position and convert to client coordinates */
3859 GetCursorPos(&coords_orig);
3860 ScreenToClient(hWnd, &coords_orig);
3862 /* Ensure coordinates are within client bounds */
3863 coords_offs.x = max(min(coords_orig.x, infoPtr->rcList.right), 0);
3864 coords_offs.y = max(min(coords_orig.y, infoPtr->rcList.bottom), 0);
3866 /* Get offset */
3867 LISTVIEW_GetOrigin(infoPtr, &offset);
3869 /* Offset coordinates by the appropriate amount */
3870 coords_offs.x -= offset.x;
3871 coords_offs.y -= offset.y;
3873 scrollInfo.cbSize = sizeof(SCROLLINFO);
3874 scrollInfo.fMask = SIF_ALL;
3876 /* Work out in which directions we can scroll */
3877 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
3879 if (scrollInfo.nPos != scrollInfo.nMin)
3880 scroll |= SCROLL_UP;
3882 if (((scrollInfo.nPage + scrollInfo.nPos) - 1) != scrollInfo.nMax)
3883 scroll |= SCROLL_DOWN;
3886 if (GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo))
3888 if (scrollInfo.nPos != scrollInfo.nMin)
3889 scroll |= SCROLL_LEFT;
3891 if (((scrollInfo.nPage + scrollInfo.nPos) - 1) != scrollInfo.nMax)
3892 scroll |= SCROLL_RIGHT;
3895 if (((coords_orig.x <= 0) && (scroll & SCROLL_LEFT)) ||
3896 ((coords_orig.y <= 0) && (scroll & SCROLL_UP)) ||
3897 ((coords_orig.x >= infoPtr->rcList.right) && (scroll & SCROLL_RIGHT)) ||
3898 ((coords_orig.y >= infoPtr->rcList.bottom) && (scroll & SCROLL_DOWN)))
3900 LISTVIEW_MarqueeHighlight(infoPtr, &coords_orig, &coords_offs, &offset, scroll);
3904 /***
3905 * DESCRIPTION:
3906 * Called whenever WM_MOUSEMOVE is received.
3908 * PARAMETER(S):
3909 * [I] infoPtr : valid pointer to the listview structure
3910 * [I] fwKeys : key indicator
3911 * [I] x,y : mouse position
3913 * RETURN:
3914 * 0 if the message is processed, non-zero if there was an error
3916 static LRESULT LISTVIEW_MouseMove(LISTVIEW_INFO *infoPtr, WORD fwKeys, INT x, INT y)
3918 if (!(fwKeys & MK_LBUTTON))
3919 infoPtr->bLButtonDown = FALSE;
3921 if (infoPtr->bLButtonDown)
3923 POINT tmp;
3924 RECT rect;
3925 LVHITTESTINFO lvHitTestInfo;
3926 WORD wDragWidth = GetSystemMetrics(SM_CXDRAG);
3927 WORD wDragHeight= GetSystemMetrics(SM_CYDRAG);
3929 if (infoPtr->bMarqueeSelect)
3931 POINT coords_orig;
3932 POINT coords_offs;
3933 POINT offset;
3935 coords_orig.x = x;
3936 coords_orig.y = y;
3938 /* Get offset */
3939 LISTVIEW_GetOrigin(infoPtr, &offset);
3941 /* Ensure coordinates are within client bounds */
3942 coords_offs.x = max(min(x, infoPtr->rcList.right), 0);
3943 coords_offs.y = max(min(y, infoPtr->rcList.bottom), 0);
3945 /* Offset coordinates by the appropriate amount */
3946 coords_offs.x -= offset.x;
3947 coords_offs.y -= offset.y;
3949 /* Enable the timer if we're going outside our bounds, in case the user doesn't
3950 move the mouse again */
3952 if ((x <= 0) || (y <= 0) || (x >= infoPtr->rcList.right) ||
3953 (y >= infoPtr->rcList.bottom))
3955 if (!infoPtr->bScrolling)
3957 infoPtr->bScrolling = TRUE;
3958 SetTimer(infoPtr->hwndSelf, (UINT_PTR) infoPtr, 1, LISTVIEW_ScrollTimer);
3961 else
3963 infoPtr->bScrolling = FALSE;
3964 KillTimer(infoPtr->hwndSelf, (UINT_PTR) infoPtr);
3967 LISTVIEW_MarqueeHighlight(infoPtr, &coords_orig, &coords_offs, &offset, 0);
3968 return 0;
3971 rect.left = infoPtr->ptClickPos.x - wDragWidth;
3972 rect.right = infoPtr->ptClickPos.x + wDragWidth;
3973 rect.top = infoPtr->ptClickPos.y - wDragHeight;
3974 rect.bottom = infoPtr->ptClickPos.y + wDragHeight;
3976 tmp.x = x;
3977 tmp.y = y;
3979 lvHitTestInfo.pt = tmp;
3980 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
3982 /* reset item marker */
3983 if (infoPtr->nLButtonDownItem != lvHitTestInfo.iItem)
3984 infoPtr->nLButtonDownItem = -1;
3986 if (!PtInRect(&rect, tmp))
3988 /* this path covers the following:
3989 1. WM_LBUTTONDOWN over selected item (sets focus on it)
3990 2. change focus with keys
3991 3. move mouse over item from step 1 selects it and moves focus on it */
3992 if (infoPtr->nLButtonDownItem != -1 &&
3993 !LISTVIEW_GetItemState(infoPtr, infoPtr->nLButtonDownItem, LVIS_SELECTED))
3995 LVITEMW lvItem;
3997 lvItem.state = LVIS_FOCUSED | LVIS_SELECTED;
3998 lvItem.stateMask = LVIS_FOCUSED | LVIS_SELECTED;
4000 LISTVIEW_SetItemState(infoPtr, infoPtr->nLButtonDownItem, &lvItem);
4001 infoPtr->nLButtonDownItem = -1;
4004 if (!infoPtr->bDragging)
4006 lvHitTestInfo.pt = infoPtr->ptClickPos;
4007 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
4009 /* If the click is outside the range of an item, begin a
4010 highlight. If not, begin an item drag. */
4011 if (lvHitTestInfo.iItem == -1)
4013 NMHDR hdr;
4015 /* If we're allowing multiple selections, send notification.
4016 If return value is non-zero, cancel. */
4017 if (!(infoPtr->dwStyle & LVS_SINGLESEL) && (notify_hdr(infoPtr, LVN_MARQUEEBEGIN, &hdr) == 0))
4019 /* Store the absolute coordinates of the click */
4020 POINT offset;
4021 LISTVIEW_GetOrigin(infoPtr, &offset);
4023 infoPtr->marqueeOrigin.x = infoPtr->ptClickPos.x - offset.x;
4024 infoPtr->marqueeOrigin.y = infoPtr->ptClickPos.y - offset.y;
4026 /* Begin selection and capture mouse */
4027 infoPtr->bMarqueeSelect = TRUE;
4028 SetCapture(infoPtr->hwndSelf);
4031 else
4033 NMLISTVIEW nmlv;
4035 ZeroMemory(&nmlv, sizeof(nmlv));
4036 nmlv.iItem = lvHitTestInfo.iItem;
4037 nmlv.ptAction = infoPtr->ptClickPos;
4039 notify_listview(infoPtr, LVN_BEGINDRAG, &nmlv);
4040 infoPtr->bDragging = TRUE;
4044 return 0;
4048 /* see if we are supposed to be tracking mouse hovering */
4049 if (LISTVIEW_IsHotTracking(infoPtr)) {
4050 TRACKMOUSEEVENT trackinfo;
4052 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
4053 trackinfo.dwFlags = TME_QUERY;
4055 /* see if we are already tracking this hwnd */
4056 _TrackMouseEvent(&trackinfo);
4058 if(!(trackinfo.dwFlags & TME_HOVER) || trackinfo.hwndTrack != infoPtr->hwndSelf) {
4059 trackinfo.dwFlags = TME_HOVER;
4060 trackinfo.dwHoverTime = infoPtr->dwHoverTime;
4061 trackinfo.hwndTrack = infoPtr->hwndSelf;
4063 /* call TRACKMOUSEEVENT so we receive WM_MOUSEHOVER messages */
4064 _TrackMouseEvent(&trackinfo);
4068 return 0;
4072 /***
4073 * Tests whether the item is assignable to a list with style lStyle
4075 static inline BOOL is_assignable_item(const LVITEMW *lpLVItem, LONG lStyle)
4077 if ( (lpLVItem->mask & LVIF_TEXT) &&
4078 (lpLVItem->pszText == LPSTR_TEXTCALLBACKW) &&
4079 (lStyle & (LVS_SORTASCENDING | LVS_SORTDESCENDING)) ) return FALSE;
4081 return TRUE;
4085 /***
4086 * DESCRIPTION:
4087 * Helper for LISTVIEW_SetItemT *only*: sets item attributes.
4089 * PARAMETER(S):
4090 * [I] infoPtr : valid pointer to the listview structure
4091 * [I] lpLVItem : valid pointer to new item attributes
4092 * [I] isNew : the item being set is being inserted
4093 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
4094 * [O] bChanged : will be set to TRUE if the item really changed
4096 * RETURN:
4097 * SUCCESS : TRUE
4098 * FAILURE : FALSE
4100 static BOOL set_main_item(LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isNew, BOOL isW, BOOL *bChanged)
4102 ITEM_INFO *lpItem;
4103 NMLISTVIEW nmlv;
4104 UINT uChanged = 0;
4105 LVITEMW item;
4106 /* stateMask is ignored for LVM_INSERTITEM */
4107 UINT stateMask = isNew ? ~0 : lpLVItem->stateMask;
4109 TRACE("()\n");
4111 assert(lpLVItem->iItem >= 0 && lpLVItem->iItem < infoPtr->nItemCount);
4113 if (lpLVItem->mask == 0) return TRUE;
4115 if (infoPtr->dwStyle & LVS_OWNERDATA)
4117 /* a virtual listview only stores selection and focus */
4118 if (lpLVItem->mask & ~LVIF_STATE)
4119 return FALSE;
4120 lpItem = NULL;
4122 else
4124 HDPA hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
4125 lpItem = DPA_GetPtr(hdpaSubItems, 0);
4126 assert (lpItem);
4129 /* we need to get the lParam and state of the item */
4130 item.iItem = lpLVItem->iItem;
4131 item.iSubItem = lpLVItem->iSubItem;
4132 item.mask = LVIF_STATE | LVIF_PARAM;
4133 item.stateMask = (infoPtr->dwStyle & LVS_OWNERDATA) ? LVIS_FOCUSED | LVIS_SELECTED : ~0;
4135 item.state = 0;
4136 item.lParam = 0;
4137 if (!isNew && !LISTVIEW_GetItemW(infoPtr, &item)) return FALSE;
4139 TRACE("oldState=%x, newState=%x\n", item.state, lpLVItem->state);
4140 /* determine what fields will change */
4141 if ((lpLVItem->mask & LVIF_STATE) && ((item.state ^ lpLVItem->state) & stateMask & ~infoPtr->uCallbackMask))
4142 uChanged |= LVIF_STATE;
4144 if ((lpLVItem->mask & LVIF_IMAGE) && (lpItem->hdr.iImage != lpLVItem->iImage))
4145 uChanged |= LVIF_IMAGE;
4147 if ((lpLVItem->mask & LVIF_PARAM) && (lpItem->lParam != lpLVItem->lParam))
4148 uChanged |= LVIF_PARAM;
4150 if ((lpLVItem->mask & LVIF_INDENT) && (lpItem->iIndent != lpLVItem->iIndent))
4151 uChanged |= LVIF_INDENT;
4153 if ((lpLVItem->mask & LVIF_TEXT) && textcmpWT(lpItem->hdr.pszText, lpLVItem->pszText, isW))
4154 uChanged |= LVIF_TEXT;
4156 TRACE("uChanged=0x%x\n", uChanged);
4157 if (!uChanged) return TRUE;
4158 *bChanged = TRUE;
4160 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
4161 nmlv.iItem = lpLVItem->iItem;
4162 nmlv.uNewState = (item.state & ~stateMask) | (lpLVItem->state & stateMask);
4163 nmlv.uOldState = item.state;
4164 nmlv.uChanged = uChanged;
4165 nmlv.lParam = item.lParam;
4167 /* send LVN_ITEMCHANGING notification, if the item is not being inserted */
4168 /* and we are _NOT_ virtual (LVS_OWNERDATA), and change notifications */
4169 /* are enabled */
4170 if(lpItem && !isNew && infoPtr->bDoChangeNotify)
4172 HWND hwndSelf = infoPtr->hwndSelf;
4174 if (notify_listview(infoPtr, LVN_ITEMCHANGING, &nmlv))
4175 return FALSE;
4176 if (!IsWindow(hwndSelf))
4177 return FALSE;
4180 /* copy information */
4181 if (lpLVItem->mask & LVIF_TEXT)
4182 textsetptrT(&lpItem->hdr.pszText, lpLVItem->pszText, isW);
4184 if (lpLVItem->mask & LVIF_IMAGE)
4185 lpItem->hdr.iImage = lpLVItem->iImage;
4187 if (lpLVItem->mask & LVIF_PARAM)
4188 lpItem->lParam = lpLVItem->lParam;
4190 if (lpLVItem->mask & LVIF_INDENT)
4191 lpItem->iIndent = lpLVItem->iIndent;
4193 if (uChanged & LVIF_STATE)
4195 if (lpItem && (stateMask & ~infoPtr->uCallbackMask))
4197 lpItem->state &= ~stateMask;
4198 lpItem->state |= (lpLVItem->state & stateMask);
4200 if (lpLVItem->state & stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED)
4202 if (infoPtr->dwStyle & LVS_SINGLESEL) LISTVIEW_DeselectAllSkipItem(infoPtr, lpLVItem->iItem);
4203 ranges_additem(infoPtr->selectionRanges, lpLVItem->iItem);
4205 else if (stateMask & LVIS_SELECTED)
4207 ranges_delitem(infoPtr->selectionRanges, lpLVItem->iItem);
4209 /* if we are asked to change focus, and we manage it, do it */
4210 if (stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED)
4212 if (lpLVItem->state & LVIS_FOCUSED)
4214 if (infoPtr->nFocusedItem != -1)
4216 /* remove current focus */
4217 item.mask = LVIF_STATE;
4218 item.state = 0;
4219 item.stateMask = LVIS_FOCUSED;
4221 /* recurse with redrawing an item */
4222 LISTVIEW_SetItemState(infoPtr, infoPtr->nFocusedItem, &item);
4225 infoPtr->nFocusedItem = lpLVItem->iItem;
4226 LISTVIEW_EnsureVisible(infoPtr, lpLVItem->iItem, infoPtr->uView == LV_VIEW_LIST);
4228 else if (infoPtr->nFocusedItem == lpLVItem->iItem)
4230 infoPtr->nFocusedItem = -1;
4235 /* if we're inserting the item, we're done */
4236 if (isNew) return TRUE;
4238 /* send LVN_ITEMCHANGED notification */
4239 if (lpLVItem->mask & LVIF_PARAM) nmlv.lParam = lpLVItem->lParam;
4240 if (infoPtr->bDoChangeNotify) notify_listview(infoPtr, LVN_ITEMCHANGED, &nmlv);
4242 return TRUE;
4245 /***
4246 * DESCRIPTION:
4247 * Helper for LISTVIEW_{Set,Insert}ItemT *only*: sets subitem attributes.
4249 * PARAMETER(S):
4250 * [I] infoPtr : valid pointer to the listview structure
4251 * [I] lpLVItem : valid pointer to new subitem attributes
4252 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
4253 * [O] bChanged : will be set to TRUE if the item really changed
4255 * RETURN:
4256 * SUCCESS : TRUE
4257 * FAILURE : FALSE
4259 static BOOL set_sub_item(const LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isW, BOOL *bChanged)
4261 HDPA hdpaSubItems;
4262 SUBITEM_INFO *lpSubItem;
4264 /* we do not support subitems for virtual listviews */
4265 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
4267 /* set subitem only if column is present */
4268 if (lpLVItem->iSubItem >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
4270 /* First do some sanity checks */
4271 /* The LVIF_STATE flag is valid for subitems, but does not appear to be
4272 particularly useful. We currently do not actually do anything with
4273 the flag on subitems.
4275 if (lpLVItem->mask & ~(LVIF_TEXT | LVIF_IMAGE | LVIF_STATE)) return FALSE;
4276 if (!(lpLVItem->mask & (LVIF_TEXT | LVIF_IMAGE | LVIF_STATE))) return TRUE;
4278 /* get the subitem structure, and create it if not there */
4279 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
4280 assert (hdpaSubItems);
4282 lpSubItem = LISTVIEW_GetSubItemPtr(hdpaSubItems, lpLVItem->iSubItem);
4283 if (!lpSubItem)
4285 SUBITEM_INFO *tmpSubItem;
4286 INT i;
4288 lpSubItem = Alloc(sizeof(SUBITEM_INFO));
4289 if (!lpSubItem) return FALSE;
4290 /* we could binary search here, if need be...*/
4291 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
4293 tmpSubItem = DPA_GetPtr(hdpaSubItems, i);
4294 if (tmpSubItem->iSubItem > lpLVItem->iSubItem) break;
4296 if (DPA_InsertPtr(hdpaSubItems, i, lpSubItem) == -1)
4298 Free(lpSubItem);
4299 return FALSE;
4301 lpSubItem->iSubItem = lpLVItem->iSubItem;
4302 lpSubItem->hdr.iImage = I_IMAGECALLBACK;
4303 *bChanged = TRUE;
4306 if ((lpLVItem->mask & LVIF_IMAGE) && (lpSubItem->hdr.iImage != lpLVItem->iImage))
4308 lpSubItem->hdr.iImage = lpLVItem->iImage;
4309 *bChanged = TRUE;
4312 if ((lpLVItem->mask & LVIF_TEXT) && textcmpWT(lpSubItem->hdr.pszText, lpLVItem->pszText, isW))
4314 textsetptrT(&lpSubItem->hdr.pszText, lpLVItem->pszText, isW);
4315 *bChanged = TRUE;
4318 return TRUE;
4321 /***
4322 * DESCRIPTION:
4323 * Sets item attributes.
4325 * PARAMETER(S):
4326 * [I] infoPtr : valid pointer to the listview structure
4327 * [I] lpLVItem : new item attributes
4328 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
4330 * RETURN:
4331 * SUCCESS : TRUE
4332 * FAILURE : FALSE
4334 static BOOL LISTVIEW_SetItemT(LISTVIEW_INFO *infoPtr, LVITEMW *lpLVItem, BOOL isW)
4336 HWND hwndSelf = infoPtr->hwndSelf;
4337 LPWSTR pszText = NULL;
4338 BOOL bResult, bChanged = FALSE;
4340 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
4342 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
4343 return FALSE;
4345 /* For efficiency, we transform the lpLVItem->pszText to Unicode here */
4346 if ((lpLVItem->mask & LVIF_TEXT) && is_text(lpLVItem->pszText))
4348 pszText = lpLVItem->pszText;
4349 lpLVItem->pszText = textdupTtoW(lpLVItem->pszText, isW);
4352 /* actually set the fields */
4353 if (!is_assignable_item(lpLVItem, infoPtr->dwStyle)) return FALSE;
4355 if (lpLVItem->iSubItem)
4356 bResult = set_sub_item(infoPtr, lpLVItem, TRUE, &bChanged);
4357 else
4358 bResult = set_main_item(infoPtr, lpLVItem, FALSE, TRUE, &bChanged);
4359 if (!IsWindow(hwndSelf))
4360 return FALSE;
4362 /* redraw item, if necessary */
4363 if (bChanged && !infoPtr->bIsDrawing)
4365 /* this little optimization eliminates some nasty flicker */
4366 if ( infoPtr->uView == LV_VIEW_DETAILS && !(infoPtr->dwStyle & LVS_OWNERDRAWFIXED) &&
4367 !(infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) &&
4368 lpLVItem->iSubItem > 0 && lpLVItem->iSubItem <= DPA_GetPtrCount(infoPtr->hdpaColumns) )
4369 LISTVIEW_InvalidateSubItem(infoPtr, lpLVItem->iItem, lpLVItem->iSubItem);
4370 else
4371 LISTVIEW_InvalidateItem(infoPtr, lpLVItem->iItem);
4373 /* restore text */
4374 if (pszText)
4376 textfreeT(lpLVItem->pszText, isW);
4377 lpLVItem->pszText = pszText;
4380 return bResult;
4383 /***
4384 * DESCRIPTION:
4385 * Retrieves the index of the item at coordinate (0, 0) of the client area.
4387 * PARAMETER(S):
4388 * [I] infoPtr : valid pointer to the listview structure
4390 * RETURN:
4391 * item index
4393 static INT LISTVIEW_GetTopIndex(const LISTVIEW_INFO *infoPtr)
4395 INT nItem = 0;
4396 SCROLLINFO scrollInfo;
4398 scrollInfo.cbSize = sizeof(SCROLLINFO);
4399 scrollInfo.fMask = SIF_POS;
4401 if (infoPtr->uView == LV_VIEW_LIST)
4403 if (GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo))
4404 nItem = scrollInfo.nPos * LISTVIEW_GetCountPerColumn(infoPtr);
4406 else if (infoPtr->uView == LV_VIEW_DETAILS)
4408 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
4409 nItem = scrollInfo.nPos;
4411 else
4413 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
4414 nItem = LISTVIEW_GetCountPerRow(infoPtr) * (scrollInfo.nPos / infoPtr->nItemHeight);
4417 TRACE("nItem=%d\n", nItem);
4419 return nItem;
4423 /***
4424 * DESCRIPTION:
4425 * Erases the background of the given rectangle
4427 * PARAMETER(S):
4428 * [I] infoPtr : valid pointer to the listview structure
4429 * [I] hdc : device context handle
4430 * [I] lprcBox : clipping rectangle
4432 * RETURN:
4433 * Success: TRUE
4434 * Failure: FALSE
4436 static inline BOOL LISTVIEW_FillBkgnd(const LISTVIEW_INFO *infoPtr, HDC hdc, const RECT *lprcBox)
4438 if (!infoPtr->hBkBrush) return FALSE;
4440 TRACE("(hdc=%p, lprcBox=%s, hBkBrush=%p)\n", hdc, wine_dbgstr_rect(lprcBox), infoPtr->hBkBrush);
4442 return FillRect(hdc, lprcBox, infoPtr->hBkBrush);
4445 /***
4446 * DESCRIPTION:
4447 * Draws an item.
4449 * PARAMETER(S):
4450 * [I] infoPtr : valid pointer to the listview structure
4451 * [I] hdc : device context handle
4452 * [I] nItem : item index
4453 * [I] nSubItem : subitem index
4454 * [I] pos : item position in client coordinates
4455 * [I] cdmode : custom draw mode
4457 * RETURN:
4458 * Success: TRUE
4459 * Failure: FALSE
4461 static BOOL LISTVIEW_DrawItem(LISTVIEW_INFO *infoPtr, HDC hdc, INT nItem, INT nSubItem, POINT pos, DWORD cdmode)
4463 UINT uFormat;
4464 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
4465 static WCHAR szCallback[] = { '(', 'c', 'a', 'l', 'l', 'b', 'a', 'c', 'k', ')', 0 };
4466 DWORD cdsubitemmode = CDRF_DODEFAULT;
4467 LPRECT lprcFocus;
4468 RECT rcSelect, rcBox, rcIcon, rcLabel, rcStateIcon;
4469 NMLVCUSTOMDRAW nmlvcd;
4470 HIMAGELIST himl;
4471 LVITEMW lvItem;
4472 HFONT hOldFont;
4474 TRACE("(hdc=%p, nItem=%d, nSubItem=%d, pos=%s)\n", hdc, nItem, nSubItem, wine_dbgstr_point(&pos));
4476 /* get information needed for drawing the item */
4477 lvItem.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
4478 if (nSubItem == 0) lvItem.mask |= LVIF_STATE;
4479 if (infoPtr->uView == LV_VIEW_DETAILS) lvItem.mask |= LVIF_INDENT;
4480 lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED | LVIS_STATEIMAGEMASK | LVIS_CUT;
4481 lvItem.iItem = nItem;
4482 lvItem.iSubItem = nSubItem;
4483 lvItem.state = 0;
4484 lvItem.lParam = 0;
4485 lvItem.cchTextMax = DISP_TEXT_SIZE;
4486 lvItem.pszText = szDispText;
4487 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return FALSE;
4488 if (nSubItem > 0 && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
4489 lvItem.state = LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED);
4490 if (lvItem.pszText == LPSTR_TEXTCALLBACKW) lvItem.pszText = szCallback;
4491 TRACE(" lvItem=%s\n", debuglvitem_t(&lvItem, TRUE));
4493 /* now check if we need to update the focus rectangle */
4494 lprcFocus = infoPtr->bFocus && (lvItem.state & LVIS_FOCUSED) ? &infoPtr->rcFocus : 0;
4496 if (!lprcFocus) lvItem.state &= ~LVIS_FOCUSED;
4497 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, &rcBox, &rcSelect, &rcIcon, &rcStateIcon, &rcLabel);
4498 OffsetRect(&rcBox, pos.x, pos.y);
4499 OffsetRect(&rcSelect, pos.x, pos.y);
4500 OffsetRect(&rcIcon, pos.x, pos.y);
4501 OffsetRect(&rcStateIcon, pos.x, pos.y);
4502 OffsetRect(&rcLabel, pos.x, pos.y);
4503 TRACE(" rcBox=%s, rcSelect=%s, rcIcon=%s. rcLabel=%s\n",
4504 wine_dbgstr_rect(&rcBox), wine_dbgstr_rect(&rcSelect),
4505 wine_dbgstr_rect(&rcIcon), wine_dbgstr_rect(&rcLabel));
4507 /* fill in the custom draw structure */
4508 customdraw_fill(&nmlvcd, infoPtr, hdc, &rcBox, &lvItem);
4510 hOldFont = GetCurrentObject(hdc, OBJ_FONT);
4511 if (nSubItem > 0) cdmode = infoPtr->cditemmode;
4512 if (cdmode & CDRF_SKIPDEFAULT) goto postpaint;
4513 if (cdmode & CDRF_NOTIFYITEMDRAW)
4514 cdsubitemmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
4515 if (nSubItem == 0) infoPtr->cditemmode = cdsubitemmode;
4516 if (cdsubitemmode & CDRF_SKIPDEFAULT) goto postpaint;
4517 /* we have to send a CDDS_SUBITEM customdraw explicitly for subitem 0 */
4518 if (nSubItem == 0 && cdsubitemmode == CDRF_NOTIFYITEMDRAW)
4520 cdsubitemmode = notify_customdraw(infoPtr, CDDS_SUBITEM | CDDS_ITEMPREPAINT, &nmlvcd);
4521 if (cdsubitemmode & CDRF_SKIPDEFAULT) goto postpaint;
4523 if (nSubItem == 0 || (cdmode & CDRF_NOTIFYITEMDRAW))
4524 prepaint_setup(infoPtr, hdc, &nmlvcd, FALSE);
4525 else if ((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) == FALSE)
4526 prepaint_setup(infoPtr, hdc, &nmlvcd, TRUE);
4528 /* in full row select, subitems, will just use main item's colors */
4529 if (nSubItem && infoPtr->uView == LV_VIEW_DETAILS && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
4530 nmlvcd.clrTextBk = CLR_NONE;
4532 /* FIXME: temporary hack */
4533 rcSelect.left = rcLabel.left;
4535 /* draw the selection background, if we're drawing the main item */
4536 if (nSubItem == 0)
4538 /* in icon mode, the label rect is really what we want to draw the
4539 * background for */
4540 if (infoPtr->uView == LV_VIEW_ICON)
4541 rcSelect = rcLabel;
4543 if (infoPtr->uView == LV_VIEW_DETAILS && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT))
4545 /* we have to update left focus bound too if item isn't in leftmost column
4546 and reduce right box bound */
4547 if (DPA_GetPtrCount(infoPtr->hdpaColumns) > 0)
4549 INT leftmost;
4551 if ((leftmost = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX, 0, 0)))
4553 INT Originx = pos.x - LISTVIEW_GetColumnInfo(infoPtr, 0)->rcHeader.left;
4554 INT index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX,
4555 DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, 0);
4557 rcBox.right = LISTVIEW_GetColumnInfo(infoPtr, index)->rcHeader.right + Originx;
4558 rcSelect.left = LISTVIEW_GetColumnInfo(infoPtr, leftmost)->rcHeader.left + Originx;
4562 rcSelect.right = rcBox.right;
4565 if (nmlvcd.clrTextBk != CLR_NONE)
4566 ExtTextOutW(hdc, rcSelect.left, rcSelect.top, ETO_OPAQUE, &rcSelect, NULL, 0, NULL);
4567 /* store new focus rectangle */
4568 if (infoPtr->nFocusedItem == nItem) infoPtr->rcFocus = rcSelect;
4571 /* state icons */
4572 if (infoPtr->himlState && STATEIMAGEINDEX(lvItem.state) && (nSubItem == 0))
4574 UINT uStateImage = STATEIMAGEINDEX(lvItem.state);
4575 if (uStateImage)
4577 TRACE("uStateImage=%d\n", uStateImage);
4578 ImageList_Draw(infoPtr->himlState, uStateImage - 1, hdc,
4579 rcStateIcon.left, rcStateIcon.top, ILD_NORMAL);
4583 /* item icons */
4584 himl = (infoPtr->uView == LV_VIEW_ICON ? infoPtr->himlNormal : infoPtr->himlSmall);
4585 if (himl && lvItem.iImage >= 0 && !IsRectEmpty(&rcIcon))
4587 UINT style;
4589 TRACE("iImage=%d\n", lvItem.iImage);
4591 if (lvItem.state & (LVIS_SELECTED | LVIS_CUT) && infoPtr->bFocus)
4592 style = ILD_SELECTED;
4593 else
4594 style = ILD_NORMAL;
4596 ImageList_DrawEx(himl, lvItem.iImage, hdc, rcIcon.left, rcIcon.top,
4597 rcIcon.right - rcIcon.left, rcIcon.bottom - rcIcon.top, infoPtr->clrBk,
4598 lvItem.state & LVIS_CUT ? RGB(255, 255, 255) : CLR_DEFAULT,
4599 style);
4602 /* Don't bother painting item being edited */
4603 if (infoPtr->hwndEdit && nItem == infoPtr->nEditLabelItem && nSubItem == 0) goto postpaint;
4605 /* figure out the text drawing flags */
4606 uFormat = (infoPtr->uView == LV_VIEW_ICON ? (lprcFocus ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS) : LV_SL_DT_FLAGS);
4607 if (infoPtr->uView == LV_VIEW_ICON)
4608 uFormat = (lprcFocus ? LV_FL_DT_FLAGS : LV_ML_DT_FLAGS);
4609 else if (nSubItem)
4611 switch (LISTVIEW_GetColumnInfo(infoPtr, nSubItem)->fmt & LVCFMT_JUSTIFYMASK)
4613 case LVCFMT_RIGHT: uFormat |= DT_RIGHT; break;
4614 case LVCFMT_CENTER: uFormat |= DT_CENTER; break;
4615 default: uFormat |= DT_LEFT;
4618 if (!(uFormat & (DT_RIGHT | DT_CENTER)))
4620 if (himl && lvItem.iImage >= 0 && !IsRectEmpty(&rcIcon)) rcLabel.left += IMAGE_PADDING;
4621 else rcLabel.left += LABEL_HOR_PADDING;
4623 else if (uFormat & DT_RIGHT) rcLabel.right -= LABEL_HOR_PADDING;
4625 /* for GRIDLINES reduce the bottom so the text formats correctly */
4626 if (infoPtr->uView == LV_VIEW_DETAILS && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
4627 rcLabel.bottom--;
4629 DrawTextW(hdc, lvItem.pszText, -1, &rcLabel, uFormat);
4631 postpaint:
4632 if (cdsubitemmode & CDRF_NOTIFYPOSTPAINT)
4633 notify_postpaint(infoPtr, &nmlvcd);
4634 if (cdsubitemmode & CDRF_NEWFONT)
4635 SelectObject(hdc, hOldFont);
4636 return TRUE;
4639 /***
4640 * DESCRIPTION:
4641 * Draws listview items when in owner draw mode.
4643 * PARAMETER(S):
4644 * [I] infoPtr : valid pointer to the listview structure
4645 * [I] hdc : device context handle
4647 * RETURN:
4648 * None
4650 static void LISTVIEW_RefreshOwnerDraw(const LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4652 UINT uID = (UINT)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
4653 DWORD cditemmode = CDRF_DODEFAULT;
4654 NMLVCUSTOMDRAW nmlvcd;
4655 POINT Origin, Position;
4656 DRAWITEMSTRUCT dis;
4657 LVITEMW item;
4659 TRACE("()\n");
4661 ZeroMemory(&dis, sizeof(dis));
4663 /* Get scroll info once before loop */
4664 LISTVIEW_GetOrigin(infoPtr, &Origin);
4666 /* iterate through the invalidated rows */
4667 while(iterator_next(i))
4669 item.iItem = i->nItem;
4670 item.iSubItem = 0;
4671 item.mask = LVIF_PARAM | LVIF_STATE;
4672 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
4673 if (!LISTVIEW_GetItemW(infoPtr, &item)) continue;
4675 dis.CtlType = ODT_LISTVIEW;
4676 dis.CtlID = uID;
4677 dis.itemID = item.iItem;
4678 dis.itemAction = ODA_DRAWENTIRE;
4679 dis.itemState = 0;
4680 if (item.state & LVIS_SELECTED) dis.itemState |= ODS_SELECTED;
4681 if (infoPtr->bFocus && (item.state & LVIS_FOCUSED)) dis.itemState |= ODS_FOCUS;
4682 dis.hwndItem = infoPtr->hwndSelf;
4683 dis.hDC = hdc;
4684 LISTVIEW_GetItemOrigin(infoPtr, dis.itemID, &Position);
4685 dis.rcItem.left = Position.x + Origin.x;
4686 dis.rcItem.right = dis.rcItem.left + infoPtr->nItemWidth;
4687 dis.rcItem.top = Position.y + Origin.y;
4688 dis.rcItem.bottom = dis.rcItem.top + infoPtr->nItemHeight;
4689 dis.itemData = item.lParam;
4691 TRACE("item=%s, rcItem=%s\n", debuglvitem_t(&item, TRUE), wine_dbgstr_rect(&dis.rcItem));
4694 * Even if we do not send the CDRF_NOTIFYITEMDRAW we need to fill the nmlvcd
4695 * structure for the rest. of the paint cycle
4697 customdraw_fill(&nmlvcd, infoPtr, hdc, &dis.rcItem, &item);
4698 if (cdmode & CDRF_NOTIFYITEMDRAW)
4699 cditemmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
4701 if (!(cditemmode & CDRF_SKIPDEFAULT))
4703 prepaint_setup (infoPtr, hdc, &nmlvcd, FALSE);
4704 SendMessageW(infoPtr->hwndNotify, WM_DRAWITEM, dis.CtlID, (LPARAM)&dis);
4707 if (cditemmode & CDRF_NOTIFYPOSTPAINT)
4708 notify_postpaint(infoPtr, &nmlvcd);
4712 /***
4713 * DESCRIPTION:
4714 * Draws listview items when in report display mode.
4716 * PARAMETER(S):
4717 * [I] infoPtr : valid pointer to the listview structure
4718 * [I] hdc : device context handle
4719 * [I] cdmode : custom draw mode
4721 * RETURN:
4722 * None
4724 static void LISTVIEW_RefreshReport(LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4726 INT rgntype;
4727 RECT rcClip, rcItem;
4728 POINT Origin, Position;
4729 RANGES colRanges;
4730 INT col, index;
4731 ITERATOR j;
4733 TRACE("()\n");
4735 /* figure out what to draw */
4736 rgntype = GetClipBox(hdc, &rcClip);
4737 if (rgntype == NULLREGION) return;
4739 /* Get scroll info once before loop */
4740 LISTVIEW_GetOrigin(infoPtr, &Origin);
4742 colRanges = ranges_create(DPA_GetPtrCount(infoPtr->hdpaColumns));
4744 /* narrow down the columns we need to paint */
4745 for(col = 0; col < DPA_GetPtrCount(infoPtr->hdpaColumns); col++)
4747 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX, col, 0);
4749 LISTVIEW_GetHeaderRect(infoPtr, index, &rcItem);
4750 if ((rcItem.right + Origin.x >= rcClip.left) && (rcItem.left + Origin.x < rcClip.right))
4751 ranges_additem(colRanges, index);
4753 iterator_rangesitems(&j, colRanges);
4755 /* in full row select, we _have_ to draw the main item */
4756 if (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT)
4757 j.nSpecial = 0;
4759 /* iterate through the invalidated rows */
4760 while(iterator_next(i))
4762 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
4763 Position.y += Origin.y;
4765 /* iterate through the invalidated columns */
4766 while(iterator_next(&j))
4768 LISTVIEW_GetHeaderRect(infoPtr, j.nItem, &rcItem);
4769 Position.x = (j.nItem == 0) ? rcItem.left + Origin.x : Origin.x;
4771 if (rgntype == COMPLEXREGION && !((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) && j.nItem == 0))
4773 rcItem.top = 0;
4774 rcItem.bottom = infoPtr->nItemHeight;
4775 OffsetRect(&rcItem, Origin.x, Position.y);
4776 if (!RectVisible(hdc, &rcItem)) continue;
4779 LISTVIEW_DrawItem(infoPtr, hdc, i->nItem, j.nItem, Position, cdmode);
4782 iterator_destroy(&j);
4785 /***
4786 * DESCRIPTION:
4787 * Draws the gridlines if necessary when in report display mode.
4789 * PARAMETER(S):
4790 * [I] infoPtr : valid pointer to the listview structure
4791 * [I] hdc : device context handle
4793 * RETURN:
4794 * None
4796 static void LISTVIEW_RefreshReportGrid(LISTVIEW_INFO *infoPtr, HDC hdc)
4798 INT rgntype;
4799 INT y, itemheight;
4800 INT col, index;
4801 HPEN hPen, hOldPen;
4802 RECT rcClip, rcItem = {0};
4803 POINT Origin;
4804 RANGES colRanges;
4805 ITERATOR j;
4806 BOOL rmost = FALSE;
4808 TRACE("()\n");
4810 /* figure out what to draw */
4811 rgntype = GetClipBox(hdc, &rcClip);
4812 if (rgntype == NULLREGION) return;
4814 /* Get scroll info once before loop */
4815 LISTVIEW_GetOrigin(infoPtr, &Origin);
4817 colRanges = ranges_create(DPA_GetPtrCount(infoPtr->hdpaColumns));
4819 /* narrow down the columns we need to paint */
4820 for(col = 0; col < DPA_GetPtrCount(infoPtr->hdpaColumns); col++)
4822 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX, col, 0);
4824 LISTVIEW_GetHeaderRect(infoPtr, index, &rcItem);
4825 if ((rcItem.right + Origin.x >= rcClip.left) && (rcItem.left + Origin.x < rcClip.right))
4826 ranges_additem(colRanges, index);
4829 /* is right most vertical line visible? */
4830 if (DPA_GetPtrCount(infoPtr->hdpaColumns) > 0)
4832 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX, DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, 0);
4833 LISTVIEW_GetHeaderRect(infoPtr, index, &rcItem);
4834 rmost = (rcItem.right + Origin.x < rcClip.right);
4837 if ((hPen = CreatePen( PS_SOLID, 1, comctl32_color.clr3dFace )))
4839 hOldPen = SelectObject ( hdc, hPen );
4841 /* draw the vertical lines for the columns */
4842 iterator_rangesitems(&j, colRanges);
4843 while(iterator_next(&j))
4845 LISTVIEW_GetHeaderRect(infoPtr, j.nItem, &rcItem);
4846 if (rcItem.left == 0) continue; /* skip leftmost column */
4847 rcItem.left += Origin.x;
4848 rcItem.right += Origin.x;
4849 rcItem.top = infoPtr->rcList.top;
4850 rcItem.bottom = infoPtr->rcList.bottom;
4851 TRACE("vert col=%d, rcItem=%s\n", j.nItem, wine_dbgstr_rect(&rcItem));
4852 MoveToEx (hdc, rcItem.left, rcItem.top, NULL);
4853 LineTo (hdc, rcItem.left, rcItem.bottom);
4855 iterator_destroy(&j);
4856 /* draw rightmost grid line if visible */
4857 if (rmost)
4859 index = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX,
4860 DPA_GetPtrCount(infoPtr->hdpaColumns) - 1, 0);
4861 LISTVIEW_GetHeaderRect(infoPtr, index, &rcItem);
4863 rcItem.right += Origin.x;
4865 MoveToEx (hdc, rcItem.right, infoPtr->rcList.top, NULL);
4866 LineTo (hdc, rcItem.right, infoPtr->rcList.bottom);
4869 /* draw the horizontial lines for the rows */
4870 itemheight = LISTVIEW_CalculateItemHeight(infoPtr);
4871 rcItem.left = infoPtr->rcList.left;
4872 rcItem.right = infoPtr->rcList.right;
4873 rcItem.bottom = rcItem.top = Origin.y - 1;
4874 MoveToEx(hdc, rcItem.left, rcItem.top, NULL);
4875 LineTo(hdc, rcItem.right, rcItem.top);
4876 for(y=itemheight-1+Origin.y; y<=infoPtr->rcList.bottom; y+=itemheight)
4878 rcItem.bottom = rcItem.top = y;
4879 TRACE("horz rcItem=%s\n", wine_dbgstr_rect(&rcItem));
4880 MoveToEx (hdc, rcItem.left, rcItem.top, NULL);
4881 LineTo (hdc, rcItem.right, rcItem.top);
4884 SelectObject( hdc, hOldPen );
4885 DeleteObject( hPen );
4889 /***
4890 * DESCRIPTION:
4891 * Draws listview items when in list display mode.
4893 * PARAMETER(S):
4894 * [I] infoPtr : valid pointer to the listview structure
4895 * [I] hdc : device context handle
4896 * [I] cdmode : custom draw mode
4898 * RETURN:
4899 * None
4901 static void LISTVIEW_RefreshList(LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc, DWORD cdmode)
4903 POINT Origin, Position;
4905 /* Get scroll info once before loop */
4906 LISTVIEW_GetOrigin(infoPtr, &Origin);
4908 while(iterator_prev(i))
4910 LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
4911 Position.x += Origin.x;
4912 Position.y += Origin.y;
4914 LISTVIEW_DrawItem(infoPtr, hdc, i->nItem, 0, Position, cdmode);
4919 /***
4920 * DESCRIPTION:
4921 * Draws listview items.
4923 * PARAMETER(S):
4924 * [I] infoPtr : valid pointer to the listview structure
4925 * [I] hdc : device context handle
4926 * [I] prcErase : rect to be erased before refresh (may be NULL)
4928 * RETURN:
4929 * NoneX
4931 static void LISTVIEW_Refresh(LISTVIEW_INFO *infoPtr, HDC hdc, const RECT *prcErase)
4933 COLORREF oldTextColor = 0, oldBkColor = 0, oldClrTextBk, oldClrText;
4934 NMLVCUSTOMDRAW nmlvcd;
4935 HFONT hOldFont = 0;
4936 DWORD cdmode;
4937 INT oldBkMode = 0;
4938 RECT rcClient;
4939 ITERATOR i;
4940 HDC hdcOrig = hdc;
4941 HBITMAP hbmp = NULL;
4942 RANGE range;
4944 LISTVIEW_DUMP(infoPtr);
4946 if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) {
4947 TRACE("double buffering\n");
4949 hdc = CreateCompatibleDC(hdcOrig);
4950 if (!hdc) {
4951 ERR("Failed to create DC for backbuffer\n");
4952 return;
4954 hbmp = CreateCompatibleBitmap(hdcOrig, infoPtr->rcList.right,
4955 infoPtr->rcList.bottom);
4956 if (!hbmp) {
4957 ERR("Failed to create bitmap for backbuffer\n");
4958 DeleteDC(hdc);
4959 return;
4962 SelectObject(hdc, hbmp);
4963 SelectObject(hdc, infoPtr->hFont);
4964 } else {
4965 /* Save dc values we're gonna trash while drawing
4966 * FIXME: Should be done in LISTVIEW_DrawItem() */
4967 hOldFont = SelectObject(hdc, infoPtr->hFont);
4968 oldBkMode = GetBkMode(hdc);
4969 oldBkColor = GetBkColor(hdc);
4970 oldTextColor = GetTextColor(hdc);
4973 infoPtr->bIsDrawing = TRUE;
4975 if (prcErase) {
4976 LISTVIEW_FillBkgnd(infoPtr, hdc, prcErase);
4977 } else if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) {
4978 /* If no erasing was done (usually because RedrawWindow was called
4979 * with RDW_INVALIDATE only) we need to copy the old contents into
4980 * the backbuffer before continuing. */
4981 BitBlt(hdc, infoPtr->rcList.left, infoPtr->rcList.top,
4982 infoPtr->rcList.right - infoPtr->rcList.left,
4983 infoPtr->rcList.bottom - infoPtr->rcList.top,
4984 hdcOrig, infoPtr->rcList.left, infoPtr->rcList.top, SRCCOPY);
4987 /* FIXME: Shouldn't need to do this */
4988 oldClrTextBk = infoPtr->clrTextBk;
4989 oldClrText = infoPtr->clrText;
4991 infoPtr->cditemmode = CDRF_DODEFAULT;
4993 GetClientRect(infoPtr->hwndSelf, &rcClient);
4994 customdraw_fill(&nmlvcd, infoPtr, hdc, &rcClient, 0);
4995 cdmode = notify_customdraw(infoPtr, CDDS_PREPAINT, &nmlvcd);
4996 if (cdmode & CDRF_SKIPDEFAULT) goto enddraw;
4997 prepaint_setup(infoPtr, hdc, &nmlvcd, FALSE);
4999 /* Use these colors to draw the items */
5000 infoPtr->clrTextBk = nmlvcd.clrTextBk;
5001 infoPtr->clrText = nmlvcd.clrText;
5003 /* nothing to draw */
5004 if(infoPtr->nItemCount == 0) goto enddraw;
5006 /* figure out what we need to draw */
5007 iterator_visibleitems(&i, infoPtr, hdc);
5008 range = iterator_range(&i);
5010 /* send cache hint notification */
5011 if (infoPtr->dwStyle & LVS_OWNERDATA)
5013 NMLVCACHEHINT nmlv;
5015 ZeroMemory(&nmlv, sizeof(NMLVCACHEHINT));
5016 nmlv.iFrom = range.lower;
5017 nmlv.iTo = range.upper - 1;
5018 notify_hdr(infoPtr, LVN_ODCACHEHINT, &nmlv.hdr);
5021 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (infoPtr->uView == LV_VIEW_DETAILS))
5022 LISTVIEW_RefreshOwnerDraw(infoPtr, &i, hdc, cdmode);
5023 else
5025 if (infoPtr->uView == LV_VIEW_DETAILS)
5026 LISTVIEW_RefreshReport(infoPtr, &i, hdc, cdmode);
5027 else /* LV_VIEW_LIST, LV_VIEW_ICON or LV_VIEW_SMALLICON */
5028 LISTVIEW_RefreshList(infoPtr, &i, hdc, cdmode);
5030 /* if we have a focus rect and it's visible, draw it */
5031 if (infoPtr->bFocus && range.lower <= infoPtr->nFocusedItem &&
5032 (range.upper - 1) >= infoPtr->nFocusedItem)
5033 LISTVIEW_DrawFocusRect(infoPtr, hdc);
5035 iterator_destroy(&i);
5037 enddraw:
5038 /* For LVS_EX_GRIDLINES go and draw lines */
5039 /* This includes the case where there were *no* items */
5040 if ((infoPtr->uView == LV_VIEW_DETAILS) && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
5041 LISTVIEW_RefreshReportGrid(infoPtr, hdc);
5043 /* Draw marquee rectangle if appropriate */
5044 if (infoPtr->bMarqueeSelect)
5045 DrawFocusRect(hdc, &infoPtr->marqueeDrawRect);
5047 if (cdmode & CDRF_NOTIFYPOSTPAINT)
5048 notify_postpaint(infoPtr, &nmlvcd);
5050 infoPtr->clrTextBk = oldClrTextBk;
5051 infoPtr->clrText = oldClrText;
5053 if(hbmp) {
5054 BitBlt(hdcOrig, infoPtr->rcList.left, infoPtr->rcList.top,
5055 infoPtr->rcList.right - infoPtr->rcList.left,
5056 infoPtr->rcList.bottom - infoPtr->rcList.top,
5057 hdc, infoPtr->rcList.left, infoPtr->rcList.top, SRCCOPY);
5059 DeleteObject(hbmp);
5060 DeleteDC(hdc);
5061 } else {
5062 SelectObject(hdc, hOldFont);
5063 SetBkMode(hdc, oldBkMode);
5064 SetBkColor(hdc, oldBkColor);
5065 SetTextColor(hdc, oldTextColor);
5068 infoPtr->bIsDrawing = FALSE;
5072 /***
5073 * DESCRIPTION:
5074 * Calculates the approximate width and height of a given number of items.
5076 * PARAMETER(S):
5077 * [I] infoPtr : valid pointer to the listview structure
5078 * [I] nItemCount : number of items
5079 * [I] wWidth : width
5080 * [I] wHeight : height
5082 * RETURN:
5083 * Returns a DWORD. The width in the low word and the height in high word.
5085 static DWORD LISTVIEW_ApproximateViewRect(const LISTVIEW_INFO *infoPtr, INT nItemCount,
5086 WORD wWidth, WORD wHeight)
5088 DWORD dwViewRect = 0;
5090 if (nItemCount == -1)
5091 nItemCount = infoPtr->nItemCount;
5093 if (infoPtr->uView == LV_VIEW_LIST)
5095 INT nItemCountPerColumn = 1;
5096 INT nColumnCount = 0;
5098 if (wHeight == 0xFFFF)
5100 /* use current height */
5101 wHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
5104 if (wHeight < infoPtr->nItemHeight)
5105 wHeight = infoPtr->nItemHeight;
5107 if (nItemCount > 0)
5109 if (infoPtr->nItemHeight > 0)
5111 nItemCountPerColumn = wHeight / infoPtr->nItemHeight;
5112 if (nItemCountPerColumn == 0)
5113 nItemCountPerColumn = 1;
5115 if (nItemCount % nItemCountPerColumn != 0)
5116 nColumnCount = nItemCount / nItemCountPerColumn;
5117 else
5118 nColumnCount = nItemCount / nItemCountPerColumn + 1;
5122 /* Microsoft padding magic */
5123 wHeight = nItemCountPerColumn * infoPtr->nItemHeight + 2;
5124 wWidth = nColumnCount * infoPtr->nItemWidth + 2;
5126 dwViewRect = MAKELONG(wWidth, wHeight);
5128 else if (infoPtr->uView == LV_VIEW_DETAILS)
5130 RECT rcBox;
5132 if (infoPtr->nItemCount > 0)
5134 LISTVIEW_GetItemBox(infoPtr, 0, &rcBox);
5135 wWidth = rcBox.right - rcBox.left;
5136 wHeight = (rcBox.bottom - rcBox.top) * nItemCount;
5138 else
5140 /* use current height and width */
5141 if (wHeight == 0xffff)
5142 wHeight = infoPtr->rcList.bottom - infoPtr->rcList.top;
5143 if (wWidth == 0xffff)
5144 wWidth = infoPtr->rcList.right - infoPtr->rcList.left;
5147 dwViewRect = MAKELONG(wWidth, wHeight);
5149 else if (infoPtr->uView == LV_VIEW_ICON)
5151 UINT rows,cols;
5152 UINT nItemWidth;
5153 UINT nItemHeight;
5155 nItemWidth = infoPtr->iconSpacing.cx;
5156 nItemHeight = infoPtr->iconSpacing.cy;
5158 if (wWidth == 0xffff)
5159 wWidth = infoPtr->rcList.right - infoPtr->rcList.left;
5161 if (wWidth < nItemWidth)
5162 wWidth = nItemWidth;
5164 cols = wWidth / nItemWidth;
5165 if (cols > nItemCount)
5166 cols = nItemCount;
5167 if (cols < 1)
5168 cols = 1;
5170 if (nItemCount)
5172 rows = nItemCount / cols;
5173 if (nItemCount % cols)
5174 rows++;
5176 else
5177 rows = 0;
5179 wHeight = (nItemHeight * rows)+2;
5180 wWidth = (nItemWidth * cols)+2;
5182 dwViewRect = MAKELONG(wWidth, wHeight);
5184 else if (infoPtr->uView == LV_VIEW_SMALLICON)
5185 FIXME("uView == LV_VIEW_SMALLICON: not implemented\n");
5187 return dwViewRect;
5190 /***
5191 * DESCRIPTION:
5192 * Cancel edit label with saving item text.
5194 * PARAMETER(S):
5195 * [I] infoPtr : valid pointer to the listview structure
5197 * RETURN:
5198 * Always returns TRUE.
5200 static LRESULT LISTVIEW_CancelEditLabel(LISTVIEW_INFO *infoPtr)
5202 if (infoPtr->hwndEdit)
5204 /* handle value will be lost after LISTVIEW_EndEditLabelT */
5205 HWND edit = infoPtr->hwndEdit;
5207 LISTVIEW_EndEditLabelT(infoPtr, TRUE, IsWindowUnicode(infoPtr->hwndEdit));
5208 SendMessageW(edit, WM_CLOSE, 0, 0);
5211 return TRUE;
5214 /***
5215 * DESCRIPTION:
5216 * Create a drag image list for the specified item.
5218 * PARAMETER(S):
5219 * [I] infoPtr : valid pointer to the listview structure
5220 * [I] iItem : index of item
5221 * [O] lppt : Upper-left corner of the image
5223 * RETURN:
5224 * Returns a handle to the image list if successful, NULL otherwise.
5226 static HIMAGELIST LISTVIEW_CreateDragImage(LISTVIEW_INFO *infoPtr, INT iItem, LPPOINT lppt)
5228 RECT rcItem;
5229 SIZE size;
5230 POINT pos;
5231 HDC hdc, hdcOrig;
5232 HBITMAP hbmp, hOldbmp;
5233 HIMAGELIST dragList = 0;
5234 TRACE("iItem=%d Count=%d\n", iItem, infoPtr->nItemCount);
5236 if (iItem < 0 || iItem >= infoPtr->nItemCount || !lppt)
5237 return 0;
5239 rcItem.left = LVIR_BOUNDS;
5240 if (!LISTVIEW_GetItemRect(infoPtr, iItem, &rcItem))
5241 return 0;
5243 lppt->x = rcItem.left;
5244 lppt->y = rcItem.top;
5246 size.cx = rcItem.right - rcItem.left;
5247 size.cy = rcItem.bottom - rcItem.top;
5249 hdcOrig = GetDC(infoPtr->hwndSelf);
5250 hdc = CreateCompatibleDC(hdcOrig);
5251 hbmp = CreateCompatibleBitmap(hdcOrig, size.cx, size.cy);
5252 hOldbmp = SelectObject(hdc, hbmp);
5254 rcItem.left = rcItem.top = 0;
5255 rcItem.right = size.cx;
5256 rcItem.bottom = size.cy;
5257 FillRect(hdc, &rcItem, infoPtr->hBkBrush);
5259 pos.x = pos.y = 0;
5260 if (LISTVIEW_DrawItem(infoPtr, hdc, iItem, 0, pos, infoPtr->cditemmode))
5262 dragList = ImageList_Create(size.cx, size.cy, ILC_COLOR, 10, 10);
5263 SelectObject(hdc, hOldbmp);
5264 ImageList_Add(dragList, hbmp, 0);
5266 else
5267 SelectObject(hdc, hOldbmp);
5269 DeleteObject(hbmp);
5270 DeleteDC(hdc);
5271 ReleaseDC(infoPtr->hwndSelf, hdcOrig);
5273 TRACE("ret=%p\n", dragList);
5275 return dragList;
5279 /***
5280 * DESCRIPTION:
5281 * Removes all listview items and subitems.
5283 * PARAMETER(S):
5284 * [I] infoPtr : valid pointer to the listview structure
5286 * RETURN:
5287 * SUCCESS : TRUE
5288 * FAILURE : FALSE
5290 static BOOL LISTVIEW_DeleteAllItems(LISTVIEW_INFO *infoPtr, BOOL destroy)
5292 NMLISTVIEW nmlv;
5293 HDPA hdpaSubItems = NULL;
5294 BOOL bSuppress;
5295 ITEMHDR *hdrItem;
5296 ITEM_INFO *lpItem;
5297 ITEM_ID *lpID;
5298 INT i, j;
5300 TRACE("()\n");
5302 /* we do it directly, to avoid notifications */
5303 ranges_clear(infoPtr->selectionRanges);
5304 infoPtr->nSelectionMark = -1;
5305 infoPtr->nFocusedItem = -1;
5306 SetRectEmpty(&infoPtr->rcFocus);
5307 /* But we are supposed to leave nHotItem as is! */
5310 /* send LVN_DELETEALLITEMS notification */
5311 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
5312 nmlv.iItem = -1;
5313 bSuppress = notify_listview(infoPtr, LVN_DELETEALLITEMS, &nmlv);
5315 for (i = infoPtr->nItemCount - 1; i >= 0; i--)
5317 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
5319 /* send LVN_DELETEITEM notification, if not suppressed
5320 and if it is not a virtual listview */
5321 if (!bSuppress) notify_deleteitem(infoPtr, i);
5322 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, i);
5323 lpItem = DPA_GetPtr(hdpaSubItems, 0);
5324 /* free id struct */
5325 j = DPA_GetPtrIndex(infoPtr->hdpaItemIds, lpItem->id);
5326 lpID = DPA_GetPtr(infoPtr->hdpaItemIds, j);
5327 DPA_DeletePtr(infoPtr->hdpaItemIds, j);
5328 Free(lpID);
5329 /* both item and subitem start with ITEMHDR header */
5330 for (j = 0; j < DPA_GetPtrCount(hdpaSubItems); j++)
5332 hdrItem = DPA_GetPtr(hdpaSubItems, j);
5333 if (is_text(hdrItem->pszText)) Free(hdrItem->pszText);
5334 Free(hdrItem);
5336 DPA_Destroy(hdpaSubItems);
5337 DPA_DeletePtr(infoPtr->hdpaItems, i);
5339 DPA_DeletePtr(infoPtr->hdpaPosX, i);
5340 DPA_DeletePtr(infoPtr->hdpaPosY, i);
5341 infoPtr->nItemCount --;
5344 if (!destroy)
5346 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
5347 LISTVIEW_UpdateScroll(infoPtr);
5349 LISTVIEW_InvalidateList(infoPtr);
5351 return TRUE;
5354 /***
5355 * DESCRIPTION:
5356 * Scrolls, and updates the columns, when a column is changing width.
5358 * PARAMETER(S):
5359 * [I] infoPtr : valid pointer to the listview structure
5360 * [I] nColumn : column to scroll
5361 * [I] dx : amount of scroll, in pixels
5363 * RETURN:
5364 * None.
5366 static void LISTVIEW_ScrollColumns(LISTVIEW_INFO *infoPtr, INT nColumn, INT dx)
5368 COLUMN_INFO *lpColumnInfo;
5369 RECT rcOld, rcCol;
5370 POINT ptOrigin;
5371 INT nCol;
5372 HDITEMW hdi;
5374 if (nColumn < 0 || DPA_GetPtrCount(infoPtr->hdpaColumns) < 1) return;
5375 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, min(nColumn, DPA_GetPtrCount(infoPtr->hdpaColumns) - 1));
5376 rcCol = lpColumnInfo->rcHeader;
5377 if (nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns))
5378 rcCol.left = rcCol.right;
5380 /* adjust the other columns */
5381 hdi.mask = HDI_ORDER;
5382 if (SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nColumn, (LPARAM)&hdi))
5384 INT nOrder = hdi.iOrder;
5385 for (nCol = 0; nCol < DPA_GetPtrCount(infoPtr->hdpaColumns); nCol++)
5387 hdi.mask = HDI_ORDER;
5388 SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nCol, (LPARAM)&hdi);
5389 if (hdi.iOrder >= nOrder) {
5390 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nCol);
5391 lpColumnInfo->rcHeader.left += dx;
5392 lpColumnInfo->rcHeader.right += dx;
5397 /* do not update screen if not in report mode */
5398 if (!is_redrawing(infoPtr) || infoPtr->uView != LV_VIEW_DETAILS) return;
5400 /* Need to reset the item width when inserting a new column */
5401 infoPtr->nItemWidth += dx;
5403 LISTVIEW_UpdateScroll(infoPtr);
5404 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
5406 /* scroll to cover the deleted column, and invalidate for redraw */
5407 rcOld = infoPtr->rcList;
5408 rcOld.left = ptOrigin.x + rcCol.left + dx;
5409 ScrollWindowEx(infoPtr->hwndSelf, dx, 0, &rcOld, &rcOld, 0, 0, SW_ERASE | SW_INVALIDATE);
5412 /***
5413 * DESCRIPTION:
5414 * Removes a column from the listview control.
5416 * PARAMETER(S):
5417 * [I] infoPtr : valid pointer to the listview structure
5418 * [I] nColumn : column index
5420 * RETURN:
5421 * SUCCESS : TRUE
5422 * FAILURE : FALSE
5424 static BOOL LISTVIEW_DeleteColumn(LISTVIEW_INFO *infoPtr, INT nColumn)
5426 RECT rcCol;
5428 TRACE("nColumn=%d\n", nColumn);
5430 if (nColumn < 0 || DPA_GetPtrCount(infoPtr->hdpaColumns) == 0
5431 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
5433 /* While the MSDN specifically says that column zero should not be deleted,
5434 what actually happens is that the column itself is deleted but no items or subitems
5435 are removed.
5438 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcCol);
5440 if (!SendMessageW(infoPtr->hwndHeader, HDM_DELETEITEM, nColumn, 0))
5441 return FALSE;
5443 Free(DPA_GetPtr(infoPtr->hdpaColumns, nColumn));
5444 DPA_DeletePtr(infoPtr->hdpaColumns, nColumn);
5446 if (!(infoPtr->dwStyle & LVS_OWNERDATA) && nColumn)
5448 SUBITEM_INFO *lpSubItem, *lpDelItem;
5449 HDPA hdpaSubItems;
5450 INT nItem, nSubItem, i;
5452 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
5454 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, nItem);
5455 nSubItem = 0;
5456 lpDelItem = 0;
5457 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
5459 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
5460 if (lpSubItem->iSubItem == nColumn)
5462 nSubItem = i;
5463 lpDelItem = lpSubItem;
5465 else if (lpSubItem->iSubItem > nColumn)
5467 lpSubItem->iSubItem--;
5471 /* if we found our subitem, zapp it */
5472 if (nSubItem > 0)
5474 /* free string */
5475 if (is_text(lpDelItem->hdr.pszText))
5476 Free(lpDelItem->hdr.pszText);
5478 /* free item */
5479 Free(lpDelItem);
5481 /* free dpa memory */
5482 DPA_DeletePtr(hdpaSubItems, nSubItem);
5487 /* update the other column info */
5488 LISTVIEW_UpdateItemSize(infoPtr);
5489 if(DPA_GetPtrCount(infoPtr->hdpaColumns) == 0)
5490 LISTVIEW_InvalidateList(infoPtr);
5491 else
5492 LISTVIEW_ScrollColumns(infoPtr, nColumn, -(rcCol.right - rcCol.left));
5494 return TRUE;
5497 /***
5498 * DESCRIPTION:
5499 * Invalidates the listview after an item's insertion or deletion.
5501 * PARAMETER(S):
5502 * [I] infoPtr : valid pointer to the listview structure
5503 * [I] nItem : item index
5504 * [I] dir : -1 if deleting, 1 if inserting
5506 * RETURN:
5507 * None
5509 static void LISTVIEW_ScrollOnInsert(LISTVIEW_INFO *infoPtr, INT nItem, INT dir)
5511 INT nPerCol, nItemCol, nItemRow;
5512 RECT rcScroll;
5513 POINT Origin;
5515 /* if we don't refresh, what's the point of scrolling? */
5516 if (!is_redrawing(infoPtr)) return;
5518 assert (abs(dir) == 1);
5520 /* arrange icons if autoarrange is on */
5521 if (is_autoarrange(infoPtr))
5523 BOOL arrange = TRUE;
5524 if (dir < 0 && nItem >= infoPtr->nItemCount) arrange = FALSE;
5525 if (dir > 0 && nItem == infoPtr->nItemCount - 1) arrange = FALSE;
5526 if (arrange) LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
5529 /* scrollbars need updating */
5530 LISTVIEW_UpdateScroll(infoPtr);
5532 /* figure out the item's position */
5533 if (infoPtr->uView == LV_VIEW_DETAILS)
5534 nPerCol = infoPtr->nItemCount + 1;
5535 else if (infoPtr->uView == LV_VIEW_LIST)
5536 nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
5537 else /* LV_VIEW_ICON, or LV_VIEW_SMALLICON */
5538 return;
5540 nItemCol = nItem / nPerCol;
5541 nItemRow = nItem % nPerCol;
5542 LISTVIEW_GetOrigin(infoPtr, &Origin);
5544 /* move the items below up a slot */
5545 rcScroll.left = nItemCol * infoPtr->nItemWidth;
5546 rcScroll.top = nItemRow * infoPtr->nItemHeight;
5547 rcScroll.right = rcScroll.left + infoPtr->nItemWidth;
5548 rcScroll.bottom = nPerCol * infoPtr->nItemHeight;
5549 OffsetRect(&rcScroll, Origin.x, Origin.y);
5550 TRACE("rcScroll=%s, dx=%d\n", wine_dbgstr_rect(&rcScroll), dir * infoPtr->nItemHeight);
5551 if (IntersectRect(&rcScroll, &rcScroll, &infoPtr->rcList))
5553 TRACE("Scrolling rcScroll=%s, rcList=%s\n", wine_dbgstr_rect(&rcScroll), wine_dbgstr_rect(&infoPtr->rcList));
5554 ScrollWindowEx(infoPtr->hwndSelf, 0, dir * infoPtr->nItemHeight,
5555 &rcScroll, &rcScroll, 0, 0, SW_ERASE | SW_INVALIDATE);
5558 /* report has only that column, so we're done */
5559 if (infoPtr->uView == LV_VIEW_DETAILS) return;
5561 /* now for LISTs, we have to deal with the columns to the right */
5562 rcScroll.left = (nItemCol + 1) * infoPtr->nItemWidth;
5563 rcScroll.top = 0;
5564 rcScroll.right = (infoPtr->nItemCount / nPerCol + 1) * infoPtr->nItemWidth;
5565 rcScroll.bottom = nPerCol * infoPtr->nItemHeight;
5566 OffsetRect(&rcScroll, Origin.x, Origin.y);
5567 if (IntersectRect(&rcScroll, &rcScroll, &infoPtr->rcList))
5568 ScrollWindowEx(infoPtr->hwndSelf, 0, dir * infoPtr->nItemHeight,
5569 &rcScroll, &rcScroll, 0, 0, SW_ERASE | SW_INVALIDATE);
5572 /***
5573 * DESCRIPTION:
5574 * Removes an item from the listview control.
5576 * PARAMETER(S):
5577 * [I] infoPtr : valid pointer to the listview structure
5578 * [I] nItem : item index
5580 * RETURN:
5581 * SUCCESS : TRUE
5582 * FAILURE : FALSE
5584 static BOOL LISTVIEW_DeleteItem(LISTVIEW_INFO *infoPtr, INT nItem)
5586 LVITEMW item;
5587 const BOOL is_icon = (infoPtr->uView == LV_VIEW_SMALLICON || infoPtr->uView == LV_VIEW_ICON);
5589 TRACE("(nItem=%d)\n", nItem);
5591 if (nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
5593 /* remove selection, and focus */
5594 item.state = 0;
5595 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
5596 LISTVIEW_SetItemState(infoPtr, nItem, &item);
5598 /* send LVN_DELETEITEM notification. */
5599 if (!notify_deleteitem(infoPtr, nItem)) return FALSE;
5601 /* we need to do this here, because we'll be deleting stuff */
5602 if (is_icon)
5603 LISTVIEW_InvalidateItem(infoPtr, nItem);
5605 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
5607 HDPA hdpaSubItems;
5608 ITEMHDR *hdrItem;
5609 ITEM_INFO *lpItem;
5610 ITEM_ID *lpID;
5611 INT i;
5613 hdpaSubItems = DPA_DeletePtr(infoPtr->hdpaItems, nItem);
5614 lpItem = DPA_GetPtr(hdpaSubItems, 0);
5616 /* free id struct */
5617 i = DPA_GetPtrIndex(infoPtr->hdpaItemIds, lpItem->id);
5618 lpID = DPA_GetPtr(infoPtr->hdpaItemIds, i);
5619 DPA_DeletePtr(infoPtr->hdpaItemIds, i);
5620 Free(lpID);
5621 for (i = 0; i < DPA_GetPtrCount(hdpaSubItems); i++)
5623 hdrItem = DPA_GetPtr(hdpaSubItems, i);
5624 if (is_text(hdrItem->pszText)) Free(hdrItem->pszText);
5625 Free(hdrItem);
5627 DPA_Destroy(hdpaSubItems);
5630 if (is_icon)
5632 DPA_DeletePtr(infoPtr->hdpaPosX, nItem);
5633 DPA_DeletePtr(infoPtr->hdpaPosY, nItem);
5636 infoPtr->nItemCount--;
5637 LISTVIEW_ShiftIndices(infoPtr, nItem, -1);
5639 /* now is the invalidation fun */
5640 if (!is_icon)
5641 LISTVIEW_ScrollOnInsert(infoPtr, nItem, -1);
5642 return TRUE;
5646 /***
5647 * DESCRIPTION:
5648 * Callback implementation for editlabel control
5650 * PARAMETER(S):
5651 * [I] infoPtr : valid pointer to the listview structure
5652 * [I] storeText : store edit box text as item text
5653 * [I] isW : TRUE if psxText is Unicode, FALSE if it's ANSI
5655 * RETURN:
5656 * SUCCESS : TRUE
5657 * FAILURE : FALSE
5659 static BOOL LISTVIEW_EndEditLabelT(LISTVIEW_INFO *infoPtr, BOOL storeText, BOOL isW)
5661 HWND hwndSelf = infoPtr->hwndSelf;
5662 WCHAR szDispText[DISP_TEXT_SIZE] = { 0 };
5663 NMLVDISPINFOW dispInfo;
5664 INT editedItem = infoPtr->nEditLabelItem;
5665 BOOL bSame;
5666 WCHAR *pszText = NULL;
5667 BOOL res;
5669 if (storeText)
5671 DWORD len = isW ? GetWindowTextLengthW(infoPtr->hwndEdit) : GetWindowTextLengthA(infoPtr->hwndEdit);
5673 if (len)
5675 if ((pszText = Alloc((len+1) * (isW ? sizeof(WCHAR) : sizeof(CHAR)))))
5677 if (isW) GetWindowTextW(infoPtr->hwndEdit, pszText, len+1);
5678 else GetWindowTextA(infoPtr->hwndEdit, (CHAR*)pszText, len+1);
5683 TRACE("(pszText=%s, isW=%d)\n", debugtext_t(pszText, isW), isW);
5685 infoPtr->nEditLabelItem = -1;
5686 infoPtr->hwndEdit = 0;
5688 ZeroMemory(&dispInfo, sizeof(dispInfo));
5689 dispInfo.item.mask = LVIF_PARAM | LVIF_STATE | LVIF_TEXT;
5690 dispInfo.item.iItem = editedItem;
5691 dispInfo.item.iSubItem = 0;
5692 dispInfo.item.stateMask = ~0;
5693 dispInfo.item.pszText = szDispText;
5694 dispInfo.item.cchTextMax = DISP_TEXT_SIZE;
5695 if (!LISTVIEW_GetItemT(infoPtr, &dispInfo.item, isW))
5697 res = FALSE;
5698 goto cleanup;
5701 if (isW)
5702 bSame = (lstrcmpW(dispInfo.item.pszText, pszText) == 0);
5703 else
5705 LPWSTR tmp = textdupTtoW(pszText, FALSE);
5706 bSame = (lstrcmpW(dispInfo.item.pszText, tmp) == 0);
5707 textfreeT(tmp, FALSE);
5710 /* add the text from the edit in */
5711 dispInfo.item.mask |= LVIF_TEXT;
5712 dispInfo.item.pszText = bSame ? NULL : pszText;
5713 dispInfo.item.cchTextMax = bSame ? 0 : textlenT(pszText, isW);
5715 /* Do we need to update the Item Text */
5716 if (!notify_dispinfoT(infoPtr, LVN_ENDLABELEDITW, &dispInfo, isW))
5718 res = FALSE;
5719 goto cleanup;
5721 if (!IsWindow(hwndSelf))
5723 res = FALSE;
5724 goto cleanup;
5726 if (!pszText) return TRUE;
5727 if (bSame)
5729 res = TRUE;
5730 goto cleanup;
5733 if (!(infoPtr->dwStyle & LVS_OWNERDATA))
5735 HDPA hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, editedItem);
5736 ITEM_INFO* lpItem = DPA_GetPtr(hdpaSubItems, 0);
5737 if (lpItem && lpItem->hdr.pszText == LPSTR_TEXTCALLBACKW)
5739 LISTVIEW_InvalidateItem(infoPtr, editedItem);
5740 res = TRUE;
5741 goto cleanup;
5745 ZeroMemory(&dispInfo, sizeof(dispInfo));
5746 dispInfo.item.mask = LVIF_TEXT;
5747 dispInfo.item.iItem = editedItem;
5748 dispInfo.item.iSubItem = 0;
5749 dispInfo.item.pszText = pszText;
5750 dispInfo.item.cchTextMax = textlenT(pszText, isW);
5751 res = LISTVIEW_SetItemT(infoPtr, &dispInfo.item, isW);
5753 cleanup:
5754 Free(pszText);
5756 return res;
5759 /***
5760 * DESCRIPTION:
5761 * Subclassed edit control windproc function
5763 * PARAMETER(S):
5764 * [I] hwnd : the edit window handle
5765 * [I] uMsg : the message that is to be processed
5766 * [I] wParam : first message parameter
5767 * [I] lParam : second message parameter
5768 * [I] isW : TRUE if input is Unicode
5770 * RETURN:
5771 * Zero.
5773 static LRESULT EditLblWndProcT(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL isW)
5775 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(GetParent(hwnd), 0);
5776 BOOL save = TRUE;
5778 TRACE("(hwnd=%p, uMsg=%x, wParam=%lx, lParam=%lx, isW=%d)\n",
5779 hwnd, uMsg, wParam, lParam, isW);
5781 switch (uMsg)
5783 case WM_GETDLGCODE:
5784 return DLGC_WANTARROWS | DLGC_WANTALLKEYS;
5786 case WM_DESTROY:
5788 WNDPROC editProc = infoPtr->EditWndProc;
5789 infoPtr->EditWndProc = 0;
5790 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (DWORD_PTR)editProc);
5791 return CallWindowProcT(editProc, hwnd, uMsg, wParam, lParam, isW);
5794 case WM_KEYDOWN:
5795 if (VK_ESCAPE == (INT)wParam)
5797 save = FALSE;
5798 break;
5800 else if (VK_RETURN == (INT)wParam)
5801 break;
5803 default:
5804 return CallWindowProcT(infoPtr->EditWndProc, hwnd, uMsg, wParam, lParam, isW);
5807 /* kill the edit */
5808 if (infoPtr->hwndEdit)
5809 LISTVIEW_EndEditLabelT(infoPtr, save, isW);
5811 SendMessageW(hwnd, WM_CLOSE, 0, 0);
5812 return 0;
5815 /***
5816 * DESCRIPTION:
5817 * Subclassed edit control Unicode windproc function
5819 * PARAMETER(S):
5820 * [I] hwnd : the edit window handle
5821 * [I] uMsg : the message that is to be processed
5822 * [I] wParam : first message parameter
5823 * [I] lParam : second message parameter
5825 * RETURN:
5827 static LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
5829 return EditLblWndProcT(hwnd, uMsg, wParam, lParam, TRUE);
5832 /***
5833 * DESCRIPTION:
5834 * Subclassed edit control ANSI windproc function
5836 * PARAMETER(S):
5837 * [I] hwnd : the edit window handle
5838 * [I] uMsg : the message that is to be processed
5839 * [I] wParam : first message parameter
5840 * [I] lParam : second message parameter
5842 * RETURN:
5844 static LRESULT CALLBACK EditLblWndProcA(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
5846 return EditLblWndProcT(hwnd, uMsg, wParam, lParam, FALSE);
5849 /***
5850 * DESCRIPTION:
5851 * Creates a subclassed edit control
5853 * PARAMETER(S):
5854 * [I] infoPtr : valid pointer to the listview structure
5855 * [I] text : initial text for the edit
5856 * [I] style : the window style
5857 * [I] isW : TRUE if input is Unicode
5859 * RETURN:
5861 static HWND CreateEditLabelT(LISTVIEW_INFO *infoPtr, LPCWSTR text, BOOL isW)
5863 static const DWORD style = WS_CHILDWINDOW|WS_CLIPSIBLINGS|ES_LEFT|ES_AUTOHSCROLL|WS_BORDER|WS_VISIBLE;
5864 HINSTANCE hinst = (HINSTANCE)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_HINSTANCE);
5865 HWND hedit;
5867 TRACE("(%p, text=%s, isW=%d)\n", infoPtr, debugtext_t(text, isW), isW);
5869 /* window will be resized and positioned after LVN_BEGINLABELEDIT */
5870 if (isW)
5871 hedit = CreateWindowW(WC_EDITW, text, style, 0, 0, 0, 0, infoPtr->hwndSelf, 0, hinst, 0);
5872 else
5873 hedit = CreateWindowA(WC_EDITA, (LPCSTR)text, style, 0, 0, 0, 0, infoPtr->hwndSelf, 0, hinst, 0);
5875 if (!hedit) return 0;
5877 infoPtr->EditWndProc = (WNDPROC)
5878 (isW ? SetWindowLongPtrW(hedit, GWLP_WNDPROC, (DWORD_PTR)EditLblWndProcW) :
5879 SetWindowLongPtrA(hedit, GWLP_WNDPROC, (DWORD_PTR)EditLblWndProcA) );
5881 SendMessageW(hedit, WM_SETFONT, (WPARAM)infoPtr->hFont, FALSE);
5882 SendMessageW(hedit, EM_SETLIMITTEXT, DISP_TEXT_SIZE-1, 0);
5884 return hedit;
5887 /***
5888 * DESCRIPTION:
5889 * Begin in place editing of specified list view item
5891 * PARAMETER(S):
5892 * [I] infoPtr : valid pointer to the listview structure
5893 * [I] nItem : item index
5894 * [I] isW : TRUE if it's a Unicode req, FALSE if ASCII
5896 * RETURN:
5897 * SUCCESS : TRUE
5898 * FAILURE : FALSE
5900 static HWND LISTVIEW_EditLabelT(LISTVIEW_INFO *infoPtr, INT nItem, BOOL isW)
5902 WCHAR disptextW[DISP_TEXT_SIZE] = { 0 };
5903 HWND hwndSelf = infoPtr->hwndSelf;
5904 NMLVDISPINFOW dispInfo;
5905 HFONT hOldFont = NULL;
5906 TEXTMETRICW tm;
5907 RECT rect;
5908 SIZE sz;
5909 HDC hdc;
5911 TRACE("(nItem=%d, isW=%d)\n", nItem, isW);
5913 if (~infoPtr->dwStyle & LVS_EDITLABELS) return 0;
5915 /* remove existing edit box */
5916 if (infoPtr->hwndEdit)
5918 SetFocus(infoPtr->hwndSelf);
5919 infoPtr->hwndEdit = 0;
5922 if (nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
5924 infoPtr->nEditLabelItem = nItem;
5926 LISTVIEW_SetSelection(infoPtr, nItem);
5927 LISTVIEW_SetItemFocus(infoPtr, nItem);
5928 LISTVIEW_InvalidateItem(infoPtr, nItem);
5930 rect.left = LVIR_LABEL;
5931 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rect)) return 0;
5933 ZeroMemory(&dispInfo, sizeof(dispInfo));
5934 dispInfo.item.mask = LVIF_PARAM | LVIF_STATE | LVIF_TEXT;
5935 dispInfo.item.iItem = nItem;
5936 dispInfo.item.iSubItem = 0;
5937 dispInfo.item.stateMask = ~0;
5938 dispInfo.item.pszText = disptextW;
5939 dispInfo.item.cchTextMax = DISP_TEXT_SIZE;
5940 if (!LISTVIEW_GetItemT(infoPtr, &dispInfo.item, isW)) return 0;
5942 infoPtr->hwndEdit = CreateEditLabelT(infoPtr, dispInfo.item.pszText, isW);
5943 if (!infoPtr->hwndEdit) return 0;
5945 if (notify_dispinfoT(infoPtr, LVN_BEGINLABELEDITW, &dispInfo, isW))
5947 if (!IsWindow(hwndSelf))
5948 return 0;
5949 SendMessageW(infoPtr->hwndEdit, WM_CLOSE, 0, 0);
5950 infoPtr->hwndEdit = 0;
5951 return 0;
5954 TRACE("disp text=%s\n", debugtext_t(dispInfo.item.pszText, isW));
5956 /* position and display edit box */
5957 hdc = GetDC(infoPtr->hwndSelf);
5959 /* select the font to get appropriate metric dimensions */
5960 if (infoPtr->hFont)
5961 hOldFont = SelectObject(hdc, infoPtr->hFont);
5963 /* use real edit box content, it could be altered during LVN_BEGINLABELEDIT notification */
5964 GetWindowTextW(infoPtr->hwndEdit, disptextW, DISP_TEXT_SIZE);
5965 TRACE("edit box text=%s\n", debugstr_w(disptextW));
5967 /* get string length in pixels */
5968 GetTextExtentPoint32W(hdc, disptextW, lstrlenW(disptextW), &sz);
5970 /* add extra spacing for the next character */
5971 GetTextMetricsW(hdc, &tm);
5972 sz.cx += tm.tmMaxCharWidth * 2;
5974 if (infoPtr->hFont)
5975 SelectObject(hdc, hOldFont);
5977 ReleaseDC(infoPtr->hwndSelf, hdc);
5979 sz.cy = rect.bottom - rect.top + 2;
5980 rect.left -= 2;
5981 rect.top -= 1;
5982 TRACE("moving edit=(%d,%d)-(%d,%d)\n", rect.left, rect.top, sz.cx, sz.cy);
5983 MoveWindow(infoPtr->hwndEdit, rect.left, rect.top, sz.cx, sz.cy, FALSE);
5984 ShowWindow(infoPtr->hwndEdit, SW_NORMAL);
5985 SetFocus(infoPtr->hwndEdit);
5986 SendMessageW(infoPtr->hwndEdit, EM_SETSEL, 0, -1);
5987 return infoPtr->hwndEdit;
5991 /***
5992 * DESCRIPTION:
5993 * Ensures the specified item is visible, scrolling into view if necessary.
5995 * PARAMETER(S):
5996 * [I] infoPtr : valid pointer to the listview structure
5997 * [I] nItem : item index
5998 * [I] bPartial : partially or entirely visible
6000 * RETURN:
6001 * SUCCESS : TRUE
6002 * FAILURE : FALSE
6004 static BOOL LISTVIEW_EnsureVisible(LISTVIEW_INFO *infoPtr, INT nItem, BOOL bPartial)
6006 INT nScrollPosHeight = 0;
6007 INT nScrollPosWidth = 0;
6008 INT nHorzAdjust = 0;
6009 INT nVertAdjust = 0;
6010 INT nHorzDiff = 0;
6011 INT nVertDiff = 0;
6012 RECT rcItem, rcTemp;
6014 rcItem.left = LVIR_BOUNDS;
6015 if (!LISTVIEW_GetItemRect(infoPtr, nItem, &rcItem)) return FALSE;
6017 if (bPartial && IntersectRect(&rcTemp, &infoPtr->rcList, &rcItem)) return TRUE;
6019 if (rcItem.left < infoPtr->rcList.left || rcItem.right > infoPtr->rcList.right)
6021 /* scroll left/right, but in LV_VIEW_DETAILS mode */
6022 if (infoPtr->uView == LV_VIEW_LIST)
6023 nScrollPosWidth = infoPtr->nItemWidth;
6024 else if ((infoPtr->uView == LV_VIEW_SMALLICON) || (infoPtr->uView == LV_VIEW_ICON))
6025 nScrollPosWidth = 1;
6027 if (rcItem.left < infoPtr->rcList.left)
6029 nHorzAdjust = -1;
6030 if (infoPtr->uView != LV_VIEW_DETAILS) nHorzDiff = rcItem.left - infoPtr->rcList.left;
6032 else
6034 nHorzAdjust = 1;
6035 if (infoPtr->uView != LV_VIEW_DETAILS) nHorzDiff = rcItem.right - infoPtr->rcList.right;
6039 if (rcItem.top < infoPtr->rcList.top || rcItem.bottom > infoPtr->rcList.bottom)
6041 /* scroll up/down, but not in LVS_LIST mode */
6042 if (infoPtr->uView == LV_VIEW_DETAILS)
6043 nScrollPosHeight = infoPtr->nItemHeight;
6044 else if ((infoPtr->uView == LV_VIEW_ICON) || (infoPtr->uView == LV_VIEW_SMALLICON))
6045 nScrollPosHeight = 1;
6047 if (rcItem.top < infoPtr->rcList.top)
6049 nVertAdjust = -1;
6050 if (infoPtr->uView != LV_VIEW_LIST) nVertDiff = rcItem.top - infoPtr->rcList.top;
6052 else
6054 nVertAdjust = 1;
6055 if (infoPtr->uView != LV_VIEW_LIST) nVertDiff = rcItem.bottom - infoPtr->rcList.bottom;
6059 if (!nScrollPosWidth && !nScrollPosHeight) return TRUE;
6061 if (nScrollPosWidth)
6063 INT diff = nHorzDiff / nScrollPosWidth;
6064 if (nHorzDiff % nScrollPosWidth) diff += nHorzAdjust;
6065 LISTVIEW_HScroll(infoPtr, SB_INTERNAL, diff);
6068 if (nScrollPosHeight)
6070 INT diff = nVertDiff / nScrollPosHeight;
6071 if (nVertDiff % nScrollPosHeight) diff += nVertAdjust;
6072 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, diff);
6075 return TRUE;
6078 /***
6079 * DESCRIPTION:
6080 * Searches for an item with specific characteristics.
6082 * PARAMETER(S):
6083 * [I] hwnd : window handle
6084 * [I] nStart : base item index
6085 * [I] lpFindInfo : item information to look for
6087 * RETURN:
6088 * SUCCESS : index of item
6089 * FAILURE : -1
6091 static INT LISTVIEW_FindItemW(const LISTVIEW_INFO *infoPtr, INT nStart,
6092 const LVFINDINFOW *lpFindInfo)
6094 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
6095 BOOL bWrap = FALSE, bNearest = FALSE;
6096 INT nItem = nStart + 1, nLast = infoPtr->nItemCount, nNearestItem = -1;
6097 ULONG xdist, ydist, dist, mindist = 0x7fffffff;
6098 POINT Position, Destination;
6099 LVITEMW lvItem;
6101 /* Search in virtual listviews should be done by application, not by
6102 listview control, so we just send LVN_ODFINDITEMW and return the result */
6103 if (infoPtr->dwStyle & LVS_OWNERDATA)
6105 NMLVFINDITEMW nmlv;
6107 nmlv.iStart = nStart;
6108 nmlv.lvfi = *lpFindInfo;
6109 return notify_hdr(infoPtr, LVN_ODFINDITEMW, (LPNMHDR)&nmlv.hdr);
6112 if (!lpFindInfo || nItem < 0) return -1;
6114 lvItem.mask = 0;
6115 if (lpFindInfo->flags & (LVFI_STRING | LVFI_PARTIAL) ||
6116 lpFindInfo->flags & LVFI_SUBSTRING)
6118 lvItem.mask |= LVIF_TEXT;
6119 lvItem.pszText = szDispText;
6120 lvItem.cchTextMax = DISP_TEXT_SIZE;
6123 if (lpFindInfo->flags & LVFI_WRAP)
6124 bWrap = TRUE;
6126 if ((lpFindInfo->flags & LVFI_NEARESTXY) &&
6127 (infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON))
6129 POINT Origin;
6130 RECT rcArea;
6132 LISTVIEW_GetOrigin(infoPtr, &Origin);
6133 Destination.x = lpFindInfo->pt.x - Origin.x;
6134 Destination.y = lpFindInfo->pt.y - Origin.y;
6135 switch(lpFindInfo->vkDirection)
6137 case VK_DOWN: Destination.y += infoPtr->nItemHeight; break;
6138 case VK_UP: Destination.y -= infoPtr->nItemHeight; break;
6139 case VK_RIGHT: Destination.x += infoPtr->nItemWidth; break;
6140 case VK_LEFT: Destination.x -= infoPtr->nItemWidth; break;
6141 case VK_HOME: Destination.x = Destination.y = 0; break;
6142 case VK_NEXT: Destination.y += infoPtr->rcList.bottom - infoPtr->rcList.top; break;
6143 case VK_PRIOR: Destination.y -= infoPtr->rcList.bottom - infoPtr->rcList.top; break;
6144 case VK_END:
6145 LISTVIEW_GetAreaRect(infoPtr, &rcArea);
6146 Destination.x = rcArea.right;
6147 Destination.y = rcArea.bottom;
6148 break;
6149 default: ERR("Unknown vkDirection=%d\n", lpFindInfo->vkDirection);
6151 bNearest = TRUE;
6153 else Destination.x = Destination.y = 0;
6155 /* if LVFI_PARAM is specified, all other flags are ignored */
6156 if (lpFindInfo->flags & LVFI_PARAM)
6158 lvItem.mask |= LVIF_PARAM;
6159 bNearest = FALSE;
6160 lvItem.mask &= ~LVIF_TEXT;
6163 again:
6164 for (; nItem < nLast; nItem++)
6166 lvItem.iItem = nItem;
6167 lvItem.iSubItem = 0;
6168 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) continue;
6170 if (lvItem.mask & LVIF_PARAM)
6172 if (lpFindInfo->lParam == lvItem.lParam)
6173 return nItem;
6174 else
6175 continue;
6178 if (lvItem.mask & LVIF_TEXT)
6180 if (lpFindInfo->flags & (LVFI_PARTIAL | LVFI_SUBSTRING))
6182 WCHAR *p = strstrW(lvItem.pszText, lpFindInfo->psz);
6183 if (!p || p != lvItem.pszText) continue;
6185 else
6187 if (lstrcmpW(lvItem.pszText, lpFindInfo->psz) != 0) continue;
6191 if (!bNearest) return nItem;
6193 /* This is very inefficient. To do a good job here,
6194 * we need a sorted array of (x,y) item positions */
6195 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
6197 /* compute the distance^2 to the destination */
6198 xdist = Destination.x - Position.x;
6199 ydist = Destination.y - Position.y;
6200 dist = xdist * xdist + ydist * ydist;
6202 /* remember the distance, and item if it's closer */
6203 if (dist < mindist)
6205 mindist = dist;
6206 nNearestItem = nItem;
6210 if (bWrap)
6212 nItem = 0;
6213 nLast = min(nStart + 1, infoPtr->nItemCount);
6214 bWrap = FALSE;
6215 goto again;
6218 return nNearestItem;
6221 /***
6222 * DESCRIPTION:
6223 * Searches for an item with specific characteristics.
6225 * PARAMETER(S):
6226 * [I] hwnd : window handle
6227 * [I] nStart : base item index
6228 * [I] lpFindInfo : item information to look for
6230 * RETURN:
6231 * SUCCESS : index of item
6232 * FAILURE : -1
6234 static INT LISTVIEW_FindItemA(const LISTVIEW_INFO *infoPtr, INT nStart,
6235 const LVFINDINFOA *lpFindInfo)
6237 BOOL hasText = lpFindInfo->flags & (LVFI_STRING | LVFI_PARTIAL) ||
6238 lpFindInfo->flags & LVFI_SUBSTRING;
6239 LVFINDINFOW fiw;
6240 INT res;
6241 LPWSTR strW = NULL;
6243 memcpy(&fiw, lpFindInfo, sizeof(fiw));
6244 if (hasText) fiw.psz = strW = textdupTtoW((LPCWSTR)lpFindInfo->psz, FALSE);
6245 res = LISTVIEW_FindItemW(infoPtr, nStart, &fiw);
6246 textfreeT(strW, FALSE);
6247 return res;
6250 /***
6251 * DESCRIPTION:
6252 * Retrieves column attributes.
6254 * PARAMETER(S):
6255 * [I] infoPtr : valid pointer to the listview structure
6256 * [I] nColumn : column index
6257 * [IO] lpColumn : column information
6258 * [I] isW : if TRUE, then lpColumn is a LPLVCOLUMNW
6259 * otherwise it is in fact a LPLVCOLUMNA
6261 * RETURN:
6262 * SUCCESS : TRUE
6263 * FAILURE : FALSE
6265 static BOOL LISTVIEW_GetColumnT(const LISTVIEW_INFO *infoPtr, INT nColumn, LPLVCOLUMNW lpColumn, BOOL isW)
6267 COLUMN_INFO *lpColumnInfo;
6268 HDITEMW hdi;
6270 if (!lpColumn || nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
6271 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nColumn);
6273 /* initialize memory */
6274 ZeroMemory(&hdi, sizeof(hdi));
6276 if (lpColumn->mask & LVCF_TEXT)
6278 hdi.mask |= HDI_TEXT;
6279 hdi.pszText = lpColumn->pszText;
6280 hdi.cchTextMax = lpColumn->cchTextMax;
6283 if (lpColumn->mask & LVCF_IMAGE)
6284 hdi.mask |= HDI_IMAGE;
6286 if (lpColumn->mask & LVCF_ORDER)
6287 hdi.mask |= HDI_ORDER;
6289 if (lpColumn->mask & LVCF_SUBITEM)
6290 hdi.mask |= HDI_LPARAM;
6292 if (!SendMessageW(infoPtr->hwndHeader, isW ? HDM_GETITEMW : HDM_GETITEMA, nColumn, (LPARAM)&hdi)) return FALSE;
6294 if (lpColumn->mask & LVCF_FMT)
6295 lpColumn->fmt = lpColumnInfo->fmt;
6297 if (lpColumn->mask & LVCF_WIDTH)
6298 lpColumn->cx = lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left;
6300 if (lpColumn->mask & LVCF_IMAGE)
6301 lpColumn->iImage = hdi.iImage;
6303 if (lpColumn->mask & LVCF_ORDER)
6304 lpColumn->iOrder = hdi.iOrder;
6306 if (lpColumn->mask & LVCF_SUBITEM)
6307 lpColumn->iSubItem = hdi.lParam;
6309 if (lpColumn->mask & LVCF_MINWIDTH)
6310 lpColumn->cxMin = lpColumnInfo->cxMin;
6312 return TRUE;
6316 static BOOL LISTVIEW_GetColumnOrderArray(const LISTVIEW_INFO *infoPtr, INT iCount, LPINT lpiArray)
6318 TRACE("iCount=%d, lpiArray=%p\n", iCount, lpiArray);
6320 if (!lpiArray)
6321 return FALSE;
6323 return SendMessageW(infoPtr->hwndHeader, HDM_GETORDERARRAY, iCount, (LPARAM)lpiArray);
6326 /***
6327 * DESCRIPTION:
6328 * Retrieves the column width.
6330 * PARAMETER(S):
6331 * [I] infoPtr : valid pointer to the listview structure
6332 * [I] int : column index
6334 * RETURN:
6335 * SUCCESS : column width
6336 * FAILURE : zero
6338 static INT LISTVIEW_GetColumnWidth(const LISTVIEW_INFO *infoPtr, INT nColumn)
6340 INT nColumnWidth = 0;
6341 HDITEMW hdItem;
6343 TRACE("nColumn=%d\n", nColumn);
6345 /* we have a 'column' in LIST and REPORT mode only */
6346 switch(infoPtr->uView)
6348 case LV_VIEW_LIST:
6349 nColumnWidth = infoPtr->nItemWidth;
6350 break;
6351 case LV_VIEW_DETAILS:
6352 /* We are not using LISTVIEW_GetHeaderRect as this data is updated only after a HDN_ITEMCHANGED.
6353 * There is an application that subclasses the listview, calls LVM_GETCOLUMNWIDTH in the
6354 * HDN_ITEMCHANGED handler and goes into infinite recursion if it receives old data.
6356 * TODO: should we do the same in LVM_GETCOLUMN?
6358 hdItem.mask = HDI_WIDTH;
6359 if (!SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nColumn, (LPARAM)&hdItem))
6361 WARN("(%p): HDM_GETITEMW failed for item %d\n", infoPtr->hwndSelf, nColumn);
6362 return 0;
6364 nColumnWidth = hdItem.cxy;
6365 break;
6368 TRACE("nColumnWidth=%d\n", nColumnWidth);
6369 return nColumnWidth;
6372 /***
6373 * DESCRIPTION:
6374 * In list or report display mode, retrieves the number of items that can fit
6375 * vertically in the visible area. In icon or small icon display mode,
6376 * retrieves the total number of visible items.
6378 * PARAMETER(S):
6379 * [I] infoPtr : valid pointer to the listview structure
6381 * RETURN:
6382 * Number of fully visible items.
6384 static INT LISTVIEW_GetCountPerPage(const LISTVIEW_INFO *infoPtr)
6386 switch (infoPtr->uView)
6388 case LV_VIEW_ICON:
6389 case LV_VIEW_SMALLICON:
6390 return infoPtr->nItemCount;
6391 case LV_VIEW_DETAILS:
6392 return LISTVIEW_GetCountPerColumn(infoPtr);
6393 case LV_VIEW_LIST:
6394 return LISTVIEW_GetCountPerRow(infoPtr) * LISTVIEW_GetCountPerColumn(infoPtr);
6396 assert(FALSE);
6397 return 0;
6400 /***
6401 * DESCRIPTION:
6402 * Retrieves an image list handle.
6404 * PARAMETER(S):
6405 * [I] infoPtr : valid pointer to the listview structure
6406 * [I] nImageList : image list identifier
6408 * RETURN:
6409 * SUCCESS : image list handle
6410 * FAILURE : NULL
6412 static HIMAGELIST LISTVIEW_GetImageList(const LISTVIEW_INFO *infoPtr, INT nImageList)
6414 switch (nImageList)
6416 case LVSIL_NORMAL: return infoPtr->himlNormal;
6417 case LVSIL_SMALL: return infoPtr->himlSmall;
6418 case LVSIL_STATE: return infoPtr->himlState;
6419 case LVSIL_GROUPHEADER:
6420 FIXME("LVSIL_GROUPHEADER not supported\n");
6421 break;
6422 default:
6423 WARN("got unknown imagelist index - %d\n", nImageList);
6425 return NULL;
6428 /* LISTVIEW_GetISearchString */
6430 /***
6431 * DESCRIPTION:
6432 * Retrieves item attributes.
6434 * PARAMETER(S):
6435 * [I] hwnd : window handle
6436 * [IO] lpLVItem : item info
6437 * [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
6438 * if FALSE, then lpLVItem is a LPLVITEMA.
6440 * NOTE:
6441 * This is the internal 'GetItem' interface -- it tries to
6442 * be smart and avoid text copies, if possible, by modifying
6443 * lpLVItem->pszText to point to the text string. Please note
6444 * that this is not always possible (e.g. OWNERDATA), so on
6445 * entry you *must* supply valid values for pszText, and cchTextMax.
6446 * The only difference to the documented interface is that upon
6447 * return, you should use *only* the lpLVItem->pszText, rather than
6448 * the buffer pointer you provided on input. Most code already does
6449 * that, so it's not a problem.
6450 * For the two cases when the text must be copied (that is,
6451 * for LVM_GETITEM, and LVM_GETITEMTEXT), use LISTVIEW_GetItemExtT.
6453 * RETURN:
6454 * SUCCESS : TRUE
6455 * FAILURE : FALSE
6457 static BOOL LISTVIEW_GetItemT(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL isW)
6459 ITEMHDR callbackHdr = { LPSTR_TEXTCALLBACKW, I_IMAGECALLBACK };
6460 NMLVDISPINFOW dispInfo;
6461 ITEM_INFO *lpItem;
6462 ITEMHDR* pItemHdr;
6463 HDPA hdpaSubItems;
6464 INT isubitem;
6466 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
6468 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
6469 return FALSE;
6471 if (lpLVItem->mask == 0) return TRUE;
6472 TRACE("mask=%x\n", lpLVItem->mask);
6474 /* make a local copy */
6475 isubitem = lpLVItem->iSubItem;
6477 /* a quick optimization if all we're asked is the focus state
6478 * these queries are worth optimising since they are common,
6479 * and can be answered in constant time, without the heavy accesses */
6480 if ( (lpLVItem->mask == LVIF_STATE) && (lpLVItem->stateMask == LVIS_FOCUSED) &&
6481 !(infoPtr->uCallbackMask & LVIS_FOCUSED) )
6483 lpLVItem->state = 0;
6484 if (infoPtr->nFocusedItem == lpLVItem->iItem)
6485 lpLVItem->state |= LVIS_FOCUSED;
6486 return TRUE;
6489 ZeroMemory(&dispInfo, sizeof(dispInfo));
6491 /* if the app stores all the data, handle it separately */
6492 if (infoPtr->dwStyle & LVS_OWNERDATA)
6494 dispInfo.item.state = 0;
6496 /* apparently, we should not callback for lParam in LVS_OWNERDATA */
6497 if ((lpLVItem->mask & ~(LVIF_STATE | LVIF_PARAM)) ||
6498 ((lpLVItem->mask & LVIF_STATE) && (infoPtr->uCallbackMask & lpLVItem->stateMask)))
6500 UINT mask = lpLVItem->mask;
6502 /* NOTE: copy only fields which we _know_ are initialized, some apps
6503 * depend on the uninitialized fields being 0 */
6504 dispInfo.item.mask = lpLVItem->mask & ~LVIF_PARAM;
6505 dispInfo.item.iItem = lpLVItem->iItem;
6506 dispInfo.item.iSubItem = isubitem;
6507 if (lpLVItem->mask & LVIF_TEXT)
6509 if (lpLVItem->mask & LVIF_NORECOMPUTE)
6510 /* reset mask */
6511 dispInfo.item.mask &= ~(LVIF_TEXT | LVIF_NORECOMPUTE);
6512 else
6514 dispInfo.item.pszText = lpLVItem->pszText;
6515 dispInfo.item.cchTextMax = lpLVItem->cchTextMax;
6518 if (lpLVItem->mask & LVIF_STATE)
6519 dispInfo.item.stateMask = lpLVItem->stateMask & infoPtr->uCallbackMask;
6520 /* could be zeroed on LVIF_NORECOMPUTE case */
6521 if (dispInfo.item.mask)
6523 notify_dispinfoT(infoPtr, LVN_GETDISPINFOW, &dispInfo, isW);
6524 dispInfo.item.stateMask = lpLVItem->stateMask;
6525 if (lpLVItem->mask & (LVIF_GROUPID|LVIF_COLUMNS))
6527 /* full size structure expected - _WIN32IE >= 0x560 */
6528 *lpLVItem = dispInfo.item;
6530 else if (lpLVItem->mask & LVIF_INDENT)
6532 /* indent member expected - _WIN32IE >= 0x300 */
6533 memcpy(lpLVItem, &dispInfo.item, offsetof( LVITEMW, iGroupId ));
6535 else
6537 /* minimal structure expected */
6538 memcpy(lpLVItem, &dispInfo.item, offsetof( LVITEMW, iIndent ));
6540 lpLVItem->mask = mask;
6541 TRACE(" getdispinfo(1):lpLVItem=%s\n", debuglvitem_t(lpLVItem, isW));
6545 /* make sure lParam is zeroed out */
6546 if (lpLVItem->mask & LVIF_PARAM) lpLVItem->lParam = 0;
6548 /* callback marked pointer required here */
6549 if ((lpLVItem->mask & LVIF_TEXT) && (lpLVItem->mask & LVIF_NORECOMPUTE))
6550 lpLVItem->pszText = LPSTR_TEXTCALLBACKW;
6552 /* we store only a little state, so if we're not asked, we're done */
6553 if (!(lpLVItem->mask & LVIF_STATE) || isubitem) return TRUE;
6555 /* if focus is handled by us, report it */
6556 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED )
6558 lpLVItem->state &= ~LVIS_FOCUSED;
6559 if (infoPtr->nFocusedItem == lpLVItem->iItem)
6560 lpLVItem->state |= LVIS_FOCUSED;
6563 /* and do the same for selection, if we handle it */
6564 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED )
6566 lpLVItem->state &= ~LVIS_SELECTED;
6567 if (ranges_contain(infoPtr->selectionRanges, lpLVItem->iItem))
6568 lpLVItem->state |= LVIS_SELECTED;
6571 return TRUE;
6574 /* find the item and subitem structures before we proceed */
6575 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, lpLVItem->iItem);
6576 lpItem = DPA_GetPtr(hdpaSubItems, 0);
6577 assert (lpItem);
6579 if (isubitem)
6581 SUBITEM_INFO *lpSubItem = LISTVIEW_GetSubItemPtr(hdpaSubItems, isubitem);
6582 pItemHdr = lpSubItem ? &lpSubItem->hdr : &callbackHdr;
6583 if (!lpSubItem)
6585 WARN(" iSubItem invalid (%08x), ignored.\n", isubitem);
6586 isubitem = 0;
6589 else
6590 pItemHdr = &lpItem->hdr;
6592 /* Do we need to query the state from the app? */
6593 if ((lpLVItem->mask & LVIF_STATE) && infoPtr->uCallbackMask && isubitem == 0)
6595 dispInfo.item.mask |= LVIF_STATE;
6596 dispInfo.item.stateMask = infoPtr->uCallbackMask;
6599 /* Do we need to enquire about the image? */
6600 if ((lpLVItem->mask & LVIF_IMAGE) && pItemHdr->iImage == I_IMAGECALLBACK &&
6601 (isubitem == 0 || (infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES)))
6603 dispInfo.item.mask |= LVIF_IMAGE;
6604 dispInfo.item.iImage = I_IMAGECALLBACK;
6607 /* Only items support indentation */
6608 if ((lpLVItem->mask & LVIF_INDENT) && lpItem->iIndent == I_INDENTCALLBACK &&
6609 (isubitem == 0))
6611 dispInfo.item.mask |= LVIF_INDENT;
6612 dispInfo.item.iIndent = I_INDENTCALLBACK;
6615 /* Apps depend on calling back for text if it is NULL or LPSTR_TEXTCALLBACKW */
6616 if ((lpLVItem->mask & LVIF_TEXT) && !(lpLVItem->mask & LVIF_NORECOMPUTE) &&
6617 !is_text(pItemHdr->pszText))
6619 dispInfo.item.mask |= LVIF_TEXT;
6620 dispInfo.item.pszText = lpLVItem->pszText;
6621 dispInfo.item.cchTextMax = lpLVItem->cchTextMax;
6622 if (dispInfo.item.pszText && dispInfo.item.cchTextMax > 0)
6623 *dispInfo.item.pszText = '\0';
6626 /* If we don't have all the requested info, query the application */
6627 if (dispInfo.item.mask)
6629 dispInfo.item.iItem = lpLVItem->iItem;
6630 dispInfo.item.iSubItem = lpLVItem->iSubItem; /* yes: the original subitem */
6631 dispInfo.item.lParam = lpItem->lParam;
6632 notify_dispinfoT(infoPtr, LVN_GETDISPINFOW, &dispInfo, isW);
6633 TRACE(" getdispinfo(2):item=%s\n", debuglvitem_t(&dispInfo.item, isW));
6636 /* we should not store values for subitems */
6637 if (isubitem) dispInfo.item.mask &= ~LVIF_DI_SETITEM;
6639 /* Now, handle the iImage field */
6640 if (dispInfo.item.mask & LVIF_IMAGE)
6642 lpLVItem->iImage = dispInfo.item.iImage;
6643 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && pItemHdr->iImage == I_IMAGECALLBACK)
6644 pItemHdr->iImage = dispInfo.item.iImage;
6646 else if (lpLVItem->mask & LVIF_IMAGE)
6648 if(isubitem == 0 || (infoPtr->dwLvExStyle & LVS_EX_SUBITEMIMAGES))
6649 lpLVItem->iImage = pItemHdr->iImage;
6650 else
6651 lpLVItem->iImage = 0;
6654 /* The pszText field */
6655 if (dispInfo.item.mask & LVIF_TEXT)
6657 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && pItemHdr->pszText)
6658 textsetptrT(&pItemHdr->pszText, dispInfo.item.pszText, isW);
6660 lpLVItem->pszText = dispInfo.item.pszText;
6662 else if (lpLVItem->mask & LVIF_TEXT)
6664 /* if LVN_GETDISPINFO's disabled with LVIF_NORECOMPUTE return callback placeholder */
6665 if (isW || !is_text(pItemHdr->pszText)) lpLVItem->pszText = pItemHdr->pszText;
6666 else textcpynT(lpLVItem->pszText, isW, pItemHdr->pszText, TRUE, lpLVItem->cchTextMax);
6669 /* Next is the lParam field */
6670 if (dispInfo.item.mask & LVIF_PARAM)
6672 lpLVItem->lParam = dispInfo.item.lParam;
6673 if ((dispInfo.item.mask & LVIF_DI_SETITEM))
6674 lpItem->lParam = dispInfo.item.lParam;
6676 else if (lpLVItem->mask & LVIF_PARAM)
6677 lpLVItem->lParam = lpItem->lParam;
6679 /* if this is a subitem, we're done */
6680 if (isubitem) return TRUE;
6682 /* ... the state field (this one is different due to uCallbackmask) */
6683 if (lpLVItem->mask & LVIF_STATE)
6685 lpLVItem->state = lpItem->state & lpLVItem->stateMask;
6686 if (dispInfo.item.mask & LVIF_STATE)
6688 lpLVItem->state &= ~dispInfo.item.stateMask;
6689 lpLVItem->state |= (dispInfo.item.state & dispInfo.item.stateMask);
6691 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_FOCUSED )
6693 lpLVItem->state &= ~LVIS_FOCUSED;
6694 if (infoPtr->nFocusedItem == lpLVItem->iItem)
6695 lpLVItem->state |= LVIS_FOCUSED;
6697 if ( lpLVItem->stateMask & ~infoPtr->uCallbackMask & LVIS_SELECTED )
6699 lpLVItem->state &= ~LVIS_SELECTED;
6700 if (ranges_contain(infoPtr->selectionRanges, lpLVItem->iItem))
6701 lpLVItem->state |= LVIS_SELECTED;
6705 /* and last, but not least, the indent field */
6706 if (dispInfo.item.mask & LVIF_INDENT)
6708 lpLVItem->iIndent = dispInfo.item.iIndent;
6709 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && lpItem->iIndent == I_INDENTCALLBACK)
6710 lpItem->iIndent = dispInfo.item.iIndent;
6712 else if (lpLVItem->mask & LVIF_INDENT)
6714 lpLVItem->iIndent = lpItem->iIndent;
6717 return TRUE;
6720 /***
6721 * DESCRIPTION:
6722 * Retrieves item attributes.
6724 * PARAMETER(S):
6725 * [I] hwnd : window handle
6726 * [IO] lpLVItem : item info
6727 * [I] isW : if TRUE, then lpLVItem is a LPLVITEMW,
6728 * if FALSE, then lpLVItem is a LPLVITEMA.
6730 * NOTE:
6731 * This is the external 'GetItem' interface -- it properly copies
6732 * the text in the provided buffer.
6734 * RETURN:
6735 * SUCCESS : TRUE
6736 * FAILURE : FALSE
6738 static BOOL LISTVIEW_GetItemExtT(const LISTVIEW_INFO *infoPtr, LPLVITEMW lpLVItem, BOOL isW)
6740 LPWSTR pszText;
6741 BOOL bResult;
6743 if (!lpLVItem || lpLVItem->iItem < 0 || lpLVItem->iItem >= infoPtr->nItemCount)
6744 return FALSE;
6746 pszText = lpLVItem->pszText;
6747 bResult = LISTVIEW_GetItemT(infoPtr, lpLVItem, isW);
6748 if (bResult && (lpLVItem->mask & LVIF_TEXT) && lpLVItem->pszText != pszText)
6750 if (lpLVItem->pszText != LPSTR_TEXTCALLBACKW)
6751 textcpynT(pszText, isW, lpLVItem->pszText, isW, lpLVItem->cchTextMax);
6752 else
6753 pszText = LPSTR_TEXTCALLBACKW;
6755 lpLVItem->pszText = pszText;
6757 return bResult;
6761 /***
6762 * DESCRIPTION:
6763 * Retrieves the position (upper-left) of the listview control item.
6764 * Note that for LVS_ICON style, the upper-left is that of the icon
6765 * and not the bounding box.
6767 * PARAMETER(S):
6768 * [I] infoPtr : valid pointer to the listview structure
6769 * [I] nItem : item index
6770 * [O] lpptPosition : coordinate information
6772 * RETURN:
6773 * SUCCESS : TRUE
6774 * FAILURE : FALSE
6776 static BOOL LISTVIEW_GetItemPosition(const LISTVIEW_INFO *infoPtr, INT nItem, LPPOINT lpptPosition)
6778 POINT Origin;
6780 TRACE("(nItem=%d, lpptPosition=%p)\n", nItem, lpptPosition);
6782 if (!lpptPosition || nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
6784 LISTVIEW_GetOrigin(infoPtr, &Origin);
6785 LISTVIEW_GetItemOrigin(infoPtr, nItem, lpptPosition);
6787 if (infoPtr->uView == LV_VIEW_ICON)
6789 lpptPosition->x += (infoPtr->nItemWidth - infoPtr->iconSize.cx) / 2;
6790 lpptPosition->y += ICON_TOP_PADDING;
6792 lpptPosition->x += Origin.x;
6793 lpptPosition->y += Origin.y;
6795 TRACE (" lpptPosition=%s\n", wine_dbgstr_point(lpptPosition));
6796 return TRUE;
6800 /***
6801 * DESCRIPTION:
6802 * Retrieves the bounding rectangle for a listview control item.
6804 * PARAMETER(S):
6805 * [I] infoPtr : valid pointer to the listview structure
6806 * [I] nItem : item index
6807 * [IO] lprc : bounding rectangle coordinates
6808 * lprc->left specifies the portion of the item for which the bounding
6809 * rectangle will be retrieved.
6811 * LVIR_BOUNDS Returns the bounding rectangle of the entire item,
6812 * including the icon and label.
6814 * * For LVS_ICON
6815 * * Experiment shows that native control returns:
6816 * * width = min (48, length of text line)
6817 * * .left = position.x - (width - iconsize.cx)/2
6818 * * .right = .left + width
6819 * * height = #lines of text * ntmHeight + icon height + 8
6820 * * .top = position.y - 2
6821 * * .bottom = .top + height
6822 * * separation between items .y = itemSpacing.cy - height
6823 * * .x = itemSpacing.cx - width
6824 * LVIR_ICON Returns the bounding rectangle of the icon or small icon.
6826 * * For LVS_ICON
6827 * * Experiment shows that native control returns:
6828 * * width = iconSize.cx + 16
6829 * * .left = position.x - (width - iconsize.cx)/2
6830 * * .right = .left + width
6831 * * height = iconSize.cy + 4
6832 * * .top = position.y - 2
6833 * * .bottom = .top + height
6834 * * separation between items .y = itemSpacing.cy - height
6835 * * .x = itemSpacing.cx - width
6836 * LVIR_LABEL Returns the bounding rectangle of the item text.
6838 * * For LVS_ICON
6839 * * Experiment shows that native control returns:
6840 * * width = text length
6841 * * .left = position.x - width/2
6842 * * .right = .left + width
6843 * * height = ntmH * linecount + 2
6844 * * .top = position.y + iconSize.cy + 6
6845 * * .bottom = .top + height
6846 * * separation between items .y = itemSpacing.cy - height
6847 * * .x = itemSpacing.cx - width
6848 * LVIR_SELECTBOUNDS Returns the union of the LVIR_ICON and LVIR_LABEL
6849 * rectangles, but excludes columns in report view.
6851 * RETURN:
6852 * SUCCESS : TRUE
6853 * FAILURE : FALSE
6855 * NOTES
6856 * Note that the bounding rectangle of the label in the LVS_ICON view depends
6857 * upon whether the window has the focus currently and on whether the item
6858 * is the one with the focus. Ensure that the control's record of which
6859 * item has the focus agrees with the items' records.
6861 static BOOL LISTVIEW_GetItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprc)
6863 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
6864 BOOL doLabel = TRUE, oversizedBox = FALSE;
6865 POINT Position, Origin;
6866 LVITEMW lvItem;
6867 LONG mode;
6869 TRACE("(hwnd=%p, nItem=%d, lprc=%p)\n", infoPtr->hwndSelf, nItem, lprc);
6871 if (!lprc || nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
6873 LISTVIEW_GetOrigin(infoPtr, &Origin);
6874 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
6876 /* Be smart and try to figure out the minimum we have to do */
6877 if (lprc->left == LVIR_ICON) doLabel = FALSE;
6878 if (infoPtr->uView == LV_VIEW_DETAILS && lprc->left == LVIR_BOUNDS) doLabel = FALSE;
6879 if (infoPtr->uView == LV_VIEW_ICON && lprc->left != LVIR_ICON &&
6880 infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, nItem, LVIS_FOCUSED))
6881 oversizedBox = TRUE;
6883 /* get what we need from the item before hand, so we make
6884 * only one request. This can speed up things, if data
6885 * is stored on the app side */
6886 lvItem.mask = 0;
6887 if (infoPtr->uView == LV_VIEW_DETAILS) lvItem.mask |= LVIF_INDENT;
6888 if (doLabel) lvItem.mask |= LVIF_TEXT;
6889 lvItem.iItem = nItem;
6890 lvItem.iSubItem = 0;
6891 lvItem.pszText = szDispText;
6892 lvItem.cchTextMax = DISP_TEXT_SIZE;
6893 if (lvItem.mask && !LISTVIEW_GetItemW(infoPtr, &lvItem)) return FALSE;
6894 /* we got the state already up, simulate it here, to avoid a reget */
6895 if (infoPtr->uView == LV_VIEW_ICON && (lprc->left != LVIR_ICON))
6897 lvItem.mask |= LVIF_STATE;
6898 lvItem.stateMask = LVIS_FOCUSED;
6899 lvItem.state = (oversizedBox ? LVIS_FOCUSED : 0);
6902 if (infoPtr->uView == LV_VIEW_DETAILS && (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) && lprc->left == LVIR_SELECTBOUNDS)
6903 lprc->left = LVIR_BOUNDS;
6905 mode = lprc->left;
6906 switch(lprc->left)
6908 case LVIR_ICON:
6909 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, lprc, NULL, NULL);
6910 break;
6912 case LVIR_LABEL:
6913 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, NULL, NULL, lprc);
6914 break;
6916 case LVIR_BOUNDS:
6917 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprc, NULL, NULL, NULL, NULL);
6918 break;
6920 case LVIR_SELECTBOUNDS:
6921 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, lprc, NULL, NULL, NULL);
6922 break;
6924 default:
6925 WARN("Unknown value: %d\n", lprc->left);
6926 return FALSE;
6929 if (infoPtr->uView == LV_VIEW_DETAILS)
6931 if (mode != LVIR_BOUNDS)
6932 OffsetRect(lprc, Origin.x + LISTVIEW_GetColumnInfo(infoPtr, 0)->rcHeader.left,
6933 Position.y + Origin.y);
6934 else
6935 OffsetRect(lprc, Origin.x, Position.y + Origin.y);
6937 else
6938 OffsetRect(lprc, Position.x + Origin.x, Position.y + Origin.y);
6940 TRACE(" rect=%s\n", wine_dbgstr_rect(lprc));
6942 return TRUE;
6945 /***
6946 * DESCRIPTION:
6947 * Retrieves the spacing between listview control items.
6949 * PARAMETER(S):
6950 * [I] infoPtr : valid pointer to the listview structure
6951 * [IO] lprc : rectangle to receive the output
6952 * on input, lprc->top = nSubItem
6953 * lprc->left = LVIR_ICON | LVIR_BOUNDS | LVIR_LABEL
6955 * NOTE: for subItem = 0, we should return the bounds of the _entire_ item,
6956 * not only those of the first column.
6957 * Fortunately, LISTVIEW_GetItemMetrics does the right thing.
6959 * RETURN:
6960 * TRUE: success
6961 * FALSE: failure
6963 static BOOL LISTVIEW_GetSubItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPRECT lprc)
6965 POINT Position, Origin;
6966 LVITEMW lvItem;
6967 INT nColumn;
6969 if (!lprc) return FALSE;
6971 nColumn = lprc->top;
6973 TRACE("(nItem=%d, nSubItem=%d, type=%d)\n", nItem, lprc->top, lprc->left);
6974 /* On WinNT, a subitem of '0' calls LISTVIEW_GetItemRect */
6975 if (lprc->top == 0)
6976 return LISTVIEW_GetItemRect(infoPtr, nItem, lprc);
6978 if (infoPtr->uView != LV_VIEW_DETAILS) return FALSE;
6980 /* special case for header items */
6981 if (nItem == -1)
6983 if (lprc->left != LVIR_BOUNDS)
6985 FIXME("Only LVIR_BOUNDS is implemented for header, got %d\n", lprc->left);
6986 return FALSE;
6989 if (infoPtr->hwndHeader)
6990 return SendMessageW(infoPtr->hwndHeader, HDM_GETITEMRECT, lprc->top, (LPARAM)lprc);
6991 else
6993 memset(lprc, 0, sizeof(RECT));
6994 return TRUE;
6998 if (!LISTVIEW_GetItemPosition(infoPtr, nItem, &Position)) return FALSE;
6999 LISTVIEW_GetOrigin(infoPtr, &Origin);
7001 if (nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
7003 lvItem.mask = 0;
7004 lvItem.iItem = nItem;
7005 lvItem.iSubItem = nColumn;
7007 switch(lprc->left)
7009 case LVIR_ICON:
7010 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, NULL, NULL, lprc, NULL, NULL);
7011 break;
7013 case LVIR_LABEL:
7014 case LVIR_BOUNDS:
7015 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, lprc, NULL, NULL, NULL, NULL);
7016 break;
7018 default:
7019 ERR("Unknown bounds=%d\n", lprc->left);
7020 return FALSE;
7023 OffsetRect(lprc, Origin.x, Position.y);
7024 TRACE("return rect %s\n", wine_dbgstr_rect(lprc));
7026 return TRUE;
7029 /***
7030 * DESCRIPTION:
7031 * Retrieves the spacing between listview control items.
7033 * PARAMETER(S):
7034 * [I] infoPtr : valid pointer to the listview structure
7035 * [I] bSmall : flag for small or large icon
7037 * RETURN:
7038 * Horizontal + vertical spacing
7040 static LONG LISTVIEW_GetItemSpacing(const LISTVIEW_INFO *infoPtr, BOOL bSmall)
7042 LONG lResult;
7044 if (!bSmall)
7046 lResult = MAKELONG(infoPtr->iconSpacing.cx, infoPtr->iconSpacing.cy);
7048 else
7050 if (infoPtr->uView == LV_VIEW_ICON)
7051 lResult = MAKELONG(DEFAULT_COLUMN_WIDTH, GetSystemMetrics(SM_CXSMICON)+HEIGHT_PADDING);
7052 else
7053 lResult = MAKELONG(infoPtr->nItemWidth, infoPtr->nItemHeight);
7055 return lResult;
7058 /***
7059 * DESCRIPTION:
7060 * Retrieves the state of a listview control item.
7062 * PARAMETER(S):
7063 * [I] infoPtr : valid pointer to the listview structure
7064 * [I] nItem : item index
7065 * [I] uMask : state mask
7067 * RETURN:
7068 * State specified by the mask.
7070 static UINT LISTVIEW_GetItemState(const LISTVIEW_INFO *infoPtr, INT nItem, UINT uMask)
7072 LVITEMW lvItem;
7074 if (nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
7076 lvItem.iItem = nItem;
7077 lvItem.iSubItem = 0;
7078 lvItem.mask = LVIF_STATE;
7079 lvItem.stateMask = uMask;
7080 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return 0;
7082 return lvItem.state & uMask;
7085 /***
7086 * DESCRIPTION:
7087 * Retrieves the text of a listview control item or subitem.
7089 * PARAMETER(S):
7090 * [I] hwnd : window handle
7091 * [I] nItem : item index
7092 * [IO] lpLVItem : item information
7093 * [I] isW : TRUE if lpLVItem is Unicode
7095 * RETURN:
7096 * SUCCESS : string length
7097 * FAILURE : 0
7099 static INT LISTVIEW_GetItemTextT(const LISTVIEW_INFO *infoPtr, INT nItem, LPLVITEMW lpLVItem, BOOL isW)
7101 if (!lpLVItem || nItem < 0 || nItem >= infoPtr->nItemCount) return 0;
7103 lpLVItem->mask = LVIF_TEXT;
7104 lpLVItem->iItem = nItem;
7105 if (!LISTVIEW_GetItemExtT(infoPtr, lpLVItem, isW)) return 0;
7107 return textlenT(lpLVItem->pszText, isW);
7110 /***
7111 * DESCRIPTION:
7112 * Searches for an item based on properties + relationships.
7114 * PARAMETER(S):
7115 * [I] infoPtr : valid pointer to the listview structure
7116 * [I] nItem : item index
7117 * [I] uFlags : relationship flag
7119 * RETURN:
7120 * SUCCESS : item index
7121 * FAILURE : -1
7123 static INT LISTVIEW_GetNextItem(const LISTVIEW_INFO *infoPtr, INT nItem, UINT uFlags)
7125 UINT uMask = 0;
7126 LVFINDINFOW lvFindInfo;
7127 INT nCountPerColumn;
7128 INT nCountPerRow;
7129 INT i;
7131 TRACE("nItem=%d, uFlags=%x, nItemCount=%d\n", nItem, uFlags, infoPtr->nItemCount);
7132 if (nItem < -1 || nItem >= infoPtr->nItemCount) return -1;
7134 ZeroMemory(&lvFindInfo, sizeof(lvFindInfo));
7136 if (uFlags & LVNI_CUT)
7137 uMask |= LVIS_CUT;
7139 if (uFlags & LVNI_DROPHILITED)
7140 uMask |= LVIS_DROPHILITED;
7142 if (uFlags & LVNI_FOCUSED)
7143 uMask |= LVIS_FOCUSED;
7145 if (uFlags & LVNI_SELECTED)
7146 uMask |= LVIS_SELECTED;
7148 /* if we're asked for the focused item, that's only one,
7149 * so it's worth optimizing */
7150 if (uFlags & LVNI_FOCUSED)
7152 if ((LISTVIEW_GetItemState(infoPtr, infoPtr->nFocusedItem, uMask) & uMask) != uMask) return -1;
7153 return (infoPtr->nFocusedItem == nItem) ? -1 : infoPtr->nFocusedItem;
7156 if (uFlags & LVNI_ABOVE)
7158 if ((infoPtr->uView == LV_VIEW_LIST) || (infoPtr->uView == LV_VIEW_DETAILS))
7160 while (nItem >= 0)
7162 nItem--;
7163 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7164 return nItem;
7167 else
7169 /* Special case for autoarrange - move 'til the top of a list */
7170 if (is_autoarrange(infoPtr))
7172 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
7173 while (nItem - nCountPerRow >= 0)
7175 nItem -= nCountPerRow;
7176 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7177 return nItem;
7179 return -1;
7181 lvFindInfo.flags = LVFI_NEARESTXY;
7182 lvFindInfo.vkDirection = VK_UP;
7183 LISTVIEW_GetItemPosition(infoPtr, nItem, &lvFindInfo.pt);
7184 while ((nItem = LISTVIEW_FindItemW(infoPtr, nItem, &lvFindInfo)) != -1)
7186 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7187 return nItem;
7191 else if (uFlags & LVNI_BELOW)
7193 if ((infoPtr->uView == LV_VIEW_LIST) || (infoPtr->uView == LV_VIEW_DETAILS))
7195 while (nItem < infoPtr->nItemCount)
7197 nItem++;
7198 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7199 return nItem;
7202 else
7204 /* Special case for autoarrange - move 'til the bottom of a list */
7205 if (is_autoarrange(infoPtr))
7207 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
7208 while (nItem + nCountPerRow < infoPtr->nItemCount )
7210 nItem += nCountPerRow;
7211 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7212 return nItem;
7214 return -1;
7216 lvFindInfo.flags = LVFI_NEARESTXY;
7217 lvFindInfo.vkDirection = VK_DOWN;
7218 LISTVIEW_GetItemPosition(infoPtr, nItem, &lvFindInfo.pt);
7219 while ((nItem = LISTVIEW_FindItemW(infoPtr, nItem, &lvFindInfo)) != -1)
7221 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7222 return nItem;
7226 else if (uFlags & LVNI_TOLEFT)
7228 if (infoPtr->uView == LV_VIEW_LIST)
7230 nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
7231 while (nItem - nCountPerColumn >= 0)
7233 nItem -= nCountPerColumn;
7234 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7235 return nItem;
7238 else if ((infoPtr->uView == LV_VIEW_SMALLICON) || (infoPtr->uView == LV_VIEW_ICON))
7240 /* Special case for autoarrange - move 'til the beginning of a row */
7241 if (is_autoarrange(infoPtr))
7243 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
7244 while (nItem % nCountPerRow > 0)
7246 nItem --;
7247 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7248 return nItem;
7250 return -1;
7252 lvFindInfo.flags = LVFI_NEARESTXY;
7253 lvFindInfo.vkDirection = VK_LEFT;
7254 LISTVIEW_GetItemPosition(infoPtr, nItem, &lvFindInfo.pt);
7255 while ((nItem = LISTVIEW_FindItemW(infoPtr, nItem, &lvFindInfo)) != -1)
7257 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7258 return nItem;
7262 else if (uFlags & LVNI_TORIGHT)
7264 if (infoPtr->uView == LV_VIEW_LIST)
7266 nCountPerColumn = LISTVIEW_GetCountPerColumn(infoPtr);
7267 while (nItem + nCountPerColumn < infoPtr->nItemCount)
7269 nItem += nCountPerColumn;
7270 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7271 return nItem;
7274 else if ((infoPtr->uView == LV_VIEW_SMALLICON) || (infoPtr->uView == LV_VIEW_ICON))
7276 /* Special case for autoarrange - move 'til the end of a row */
7277 if (is_autoarrange(infoPtr))
7279 nCountPerRow = LISTVIEW_GetCountPerRow(infoPtr);
7280 while (nItem % nCountPerRow < nCountPerRow - 1 )
7282 nItem ++;
7283 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7284 return nItem;
7286 return -1;
7288 lvFindInfo.flags = LVFI_NEARESTXY;
7289 lvFindInfo.vkDirection = VK_RIGHT;
7290 LISTVIEW_GetItemPosition(infoPtr, nItem, &lvFindInfo.pt);
7291 while ((nItem = LISTVIEW_FindItemW(infoPtr, nItem, &lvFindInfo)) != -1)
7293 if ((LISTVIEW_GetItemState(infoPtr, nItem, uMask) & uMask) == uMask)
7294 return nItem;
7298 else
7300 nItem++;
7302 /* search by index */
7303 for (i = nItem; i < infoPtr->nItemCount; i++)
7305 if ((LISTVIEW_GetItemState(infoPtr, i, uMask) & uMask) == uMask)
7306 return i;
7310 return -1;
7313 /* LISTVIEW_GetNumberOfWorkAreas */
7315 /***
7316 * DESCRIPTION:
7317 * Retrieves the origin coordinates when in icon or small icon display mode.
7319 * PARAMETER(S):
7320 * [I] infoPtr : valid pointer to the listview structure
7321 * [O] lpptOrigin : coordinate information
7323 * RETURN:
7324 * None.
7326 static void LISTVIEW_GetOrigin(const LISTVIEW_INFO *infoPtr, LPPOINT lpptOrigin)
7328 INT nHorzPos = 0, nVertPos = 0;
7329 SCROLLINFO scrollInfo;
7331 scrollInfo.cbSize = sizeof(SCROLLINFO);
7332 scrollInfo.fMask = SIF_POS;
7334 if (GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo))
7335 nHorzPos = scrollInfo.nPos;
7336 if (GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo))
7337 nVertPos = scrollInfo.nPos;
7339 TRACE("nHorzPos=%d, nVertPos=%d\n", nHorzPos, nVertPos);
7341 lpptOrigin->x = infoPtr->rcList.left;
7342 lpptOrigin->y = infoPtr->rcList.top;
7343 if (infoPtr->uView == LV_VIEW_LIST)
7344 nHorzPos *= infoPtr->nItemWidth;
7345 else if (infoPtr->uView == LV_VIEW_DETAILS)
7346 nVertPos *= infoPtr->nItemHeight;
7348 lpptOrigin->x -= nHorzPos;
7349 lpptOrigin->y -= nVertPos;
7351 TRACE(" origin=%s\n", wine_dbgstr_point(lpptOrigin));
7354 /***
7355 * DESCRIPTION:
7356 * Retrieves the width of a string.
7358 * PARAMETER(S):
7359 * [I] hwnd : window handle
7360 * [I] lpszText : text string to process
7361 * [I] isW : TRUE if lpszText is Unicode, FALSE otherwise
7363 * RETURN:
7364 * SUCCESS : string width (in pixels)
7365 * FAILURE : zero
7367 static INT LISTVIEW_GetStringWidthT(const LISTVIEW_INFO *infoPtr, LPCWSTR lpszText, BOOL isW)
7369 SIZE stringSize;
7371 stringSize.cx = 0;
7372 if (is_text(lpszText))
7374 HFONT hFont = infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont;
7375 HDC hdc = GetDC(infoPtr->hwndSelf);
7376 HFONT hOldFont = SelectObject(hdc, hFont);
7378 if (isW)
7379 GetTextExtentPointW(hdc, lpszText, lstrlenW(lpszText), &stringSize);
7380 else
7381 GetTextExtentPointA(hdc, (LPCSTR)lpszText, lstrlenA((LPCSTR)lpszText), &stringSize);
7382 SelectObject(hdc, hOldFont);
7383 ReleaseDC(infoPtr->hwndSelf, hdc);
7385 return stringSize.cx;
7388 /***
7389 * DESCRIPTION:
7390 * Determines which listview item is located at the specified position.
7392 * PARAMETER(S):
7393 * [I] infoPtr : valid pointer to the listview structure
7394 * [IO] lpht : hit test information
7395 * [I] subitem : fill out iSubItem.
7396 * [I] select : return the index only if the hit selects the item
7398 * NOTE:
7399 * (mm 20001022): We must not allow iSubItem to be touched, for
7400 * an app might pass only a structure with space up to iItem!
7401 * (MS Office 97 does that for instance in the file open dialog)
7403 * RETURN:
7404 * SUCCESS : item index
7405 * FAILURE : -1
7407 static INT LISTVIEW_HitTest(const LISTVIEW_INFO *infoPtr, LPLVHITTESTINFO lpht, BOOL subitem, BOOL select)
7409 WCHAR szDispText[DISP_TEXT_SIZE] = { '\0' };
7410 RECT rcBox, rcBounds, rcState, rcIcon, rcLabel, rcSearch;
7411 POINT Origin, Position, opt;
7412 LVITEMW lvItem;
7413 ITERATOR i;
7414 INT iItem;
7416 TRACE("(pt=%s, subitem=%d, select=%d)\n", wine_dbgstr_point(&lpht->pt), subitem, select);
7418 lpht->flags = 0;
7419 lpht->iItem = -1;
7420 if (subitem) lpht->iSubItem = 0;
7422 LISTVIEW_GetOrigin(infoPtr, &Origin);
7424 /* set whole list relation flags */
7425 if (subitem && infoPtr->uView == LV_VIEW_DETAILS)
7427 /* LVM_SUBITEMHITTEST checks left bound of possible client area */
7428 if (infoPtr->rcList.left > lpht->pt.x && Origin.x < lpht->pt.x)
7429 lpht->flags |= LVHT_TOLEFT;
7431 if (lpht->pt.y < infoPtr->rcList.top && lpht->pt.y >= 0)
7432 opt.y = lpht->pt.y + infoPtr->rcList.top;
7433 else
7434 opt.y = lpht->pt.y;
7436 if (infoPtr->rcList.bottom < opt.y)
7437 lpht->flags |= LVHT_BELOW;
7439 else
7441 if (infoPtr->rcList.left > lpht->pt.x)
7442 lpht->flags |= LVHT_TOLEFT;
7443 else if (infoPtr->rcList.right < lpht->pt.x)
7444 lpht->flags |= LVHT_TORIGHT;
7446 if (infoPtr->rcList.top > lpht->pt.y)
7447 lpht->flags |= LVHT_ABOVE;
7448 else if (infoPtr->rcList.bottom < lpht->pt.y)
7449 lpht->flags |= LVHT_BELOW;
7452 /* even if item is invalid try to find subitem */
7453 if (infoPtr->uView == LV_VIEW_DETAILS && subitem)
7455 RECT *pRect;
7456 INT j;
7458 opt.x = lpht->pt.x - Origin.x;
7460 lpht->iSubItem = -1;
7461 for (j = 0; j < DPA_GetPtrCount(infoPtr->hdpaColumns); j++)
7463 pRect = &LISTVIEW_GetColumnInfo(infoPtr, j)->rcHeader;
7465 if ((opt.x >= pRect->left) && (opt.x < pRect->right))
7467 lpht->iSubItem = j;
7468 break;
7471 TRACE("lpht->iSubItem=%d\n", lpht->iSubItem);
7473 /* if we're outside horizontal columns bounds there's nothing to test further */
7474 if (lpht->iSubItem == -1)
7476 lpht->iItem = -1;
7477 lpht->flags = LVHT_NOWHERE;
7478 return -1;
7482 TRACE("lpht->flags=0x%x\n", lpht->flags);
7483 if (lpht->flags) return -1;
7485 lpht->flags |= LVHT_NOWHERE;
7487 /* first deal with the large items */
7488 rcSearch.left = lpht->pt.x;
7489 rcSearch.top = lpht->pt.y;
7490 rcSearch.right = rcSearch.left + 1;
7491 rcSearch.bottom = rcSearch.top + 1;
7493 iterator_frameditems(&i, infoPtr, &rcSearch);
7494 iterator_next(&i); /* go to first item in the sequence */
7495 iItem = i.nItem;
7496 iterator_destroy(&i);
7498 TRACE("lpht->iItem=%d\n", iItem);
7499 if (iItem == -1) return -1;
7501 lvItem.mask = LVIF_STATE | LVIF_TEXT;
7502 if (infoPtr->uView == LV_VIEW_DETAILS) lvItem.mask |= LVIF_INDENT;
7503 lvItem.stateMask = LVIS_STATEIMAGEMASK;
7504 if (infoPtr->uView == LV_VIEW_ICON) lvItem.stateMask |= LVIS_FOCUSED;
7505 lvItem.iItem = iItem;
7506 lvItem.iSubItem = subitem ? lpht->iSubItem : 0;
7507 lvItem.pszText = szDispText;
7508 lvItem.cchTextMax = DISP_TEXT_SIZE;
7509 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) return -1;
7510 if (!infoPtr->bFocus) lvItem.state &= ~LVIS_FOCUSED;
7512 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, &rcBox, NULL, &rcIcon, &rcState, &rcLabel);
7513 LISTVIEW_GetItemOrigin(infoPtr, iItem, &Position);
7514 opt.x = lpht->pt.x - Position.x - Origin.x;
7516 if (lpht->pt.y < infoPtr->rcList.top && lpht->pt.y >= 0)
7517 opt.y = lpht->pt.y - Position.y - Origin.y + infoPtr->rcList.top;
7518 else
7519 opt.y = lpht->pt.y - Position.y - Origin.y;
7521 if (infoPtr->uView == LV_VIEW_DETAILS)
7523 rcBounds = rcBox;
7524 if (infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT)
7525 opt.x = lpht->pt.x - Origin.x;
7527 else
7529 UnionRect(&rcBounds, &rcIcon, &rcLabel);
7530 UnionRect(&rcBounds, &rcBounds, &rcState);
7532 TRACE("rcBounds=%s\n", wine_dbgstr_rect(&rcBounds));
7533 if (!PtInRect(&rcBounds, opt)) return -1;
7535 if (PtInRect(&rcIcon, opt))
7536 lpht->flags |= LVHT_ONITEMICON;
7537 else if (PtInRect(&rcLabel, opt))
7538 lpht->flags |= LVHT_ONITEMLABEL;
7539 else if (infoPtr->himlState && PtInRect(&rcState, opt))
7540 lpht->flags |= LVHT_ONITEMSTATEICON;
7541 /* special case for LVS_EX_FULLROWSELECT */
7542 if (infoPtr->uView == LV_VIEW_DETAILS && infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT &&
7543 !(lpht->flags & LVHT_ONITEM))
7545 lpht->flags = LVHT_ONITEM | LVHT_ABOVE;
7547 if (lpht->flags & LVHT_ONITEM)
7548 lpht->flags &= ~LVHT_NOWHERE;
7549 TRACE("lpht->flags=0x%x\n", lpht->flags);
7551 if (select && !(infoPtr->uView == LV_VIEW_DETAILS &&
7552 ((infoPtr->dwLvExStyle & LVS_EX_FULLROWSELECT) ||
7553 (infoPtr->dwStyle & LVS_OWNERDRAWFIXED))))
7555 if (infoPtr->uView == LV_VIEW_DETAILS)
7557 /* get main item bounds */
7558 lvItem.iSubItem = 0;
7559 LISTVIEW_GetItemMetrics(infoPtr, &lvItem, &rcBox, NULL, &rcIcon, &rcState, &rcLabel);
7560 UnionRect(&rcBounds, &rcIcon, &rcLabel);
7561 UnionRect(&rcBounds, &rcBounds, &rcState);
7563 if (!PtInRect(&rcBounds, opt)) iItem = -1;
7565 return lpht->iItem = iItem;
7568 /***
7569 * DESCRIPTION:
7570 * Inserts a new item in the listview control.
7572 * PARAMETER(S):
7573 * [I] infoPtr : valid pointer to the listview structure
7574 * [I] lpLVItem : item information
7575 * [I] isW : TRUE if lpLVItem is Unicode, FALSE if it's ANSI
7577 * RETURN:
7578 * SUCCESS : new item index
7579 * FAILURE : -1
7581 static INT LISTVIEW_InsertItemT(LISTVIEW_INFO *infoPtr, const LVITEMW *lpLVItem, BOOL isW)
7583 INT nItem;
7584 HDPA hdpaSubItems;
7585 NMLISTVIEW nmlv;
7586 ITEM_INFO *lpItem;
7587 ITEM_ID *lpID;
7588 BOOL is_sorted, has_changed;
7589 LVITEMW item;
7590 HWND hwndSelf = infoPtr->hwndSelf;
7592 TRACE("(lpLVItem=%s, isW=%d)\n", debuglvitem_t(lpLVItem, isW), isW);
7594 if (infoPtr->dwStyle & LVS_OWNERDATA) return infoPtr->nItemCount++;
7596 /* make sure it's an item, and not a subitem; cannot insert a subitem */
7597 if (!lpLVItem || lpLVItem->iSubItem) return -1;
7599 if (!is_assignable_item(lpLVItem, infoPtr->dwStyle)) return -1;
7601 if (!(lpItem = Alloc(sizeof(ITEM_INFO)))) return -1;
7603 /* insert item in listview control data structure */
7604 if ( !(hdpaSubItems = DPA_Create(8)) ) goto fail;
7605 if ( !DPA_SetPtr(hdpaSubItems, 0, lpItem) ) assert (FALSE);
7607 /* link with id struct */
7608 if (!(lpID = Alloc(sizeof(ITEM_ID)))) goto fail;
7609 lpItem->id = lpID;
7610 lpID->item = hdpaSubItems;
7611 lpID->id = get_next_itemid(infoPtr);
7612 if ( DPA_InsertPtr(infoPtr->hdpaItemIds, infoPtr->nItemCount, lpID) == -1) goto fail;
7614 is_sorted = (infoPtr->dwStyle & (LVS_SORTASCENDING | LVS_SORTDESCENDING)) &&
7615 !(infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (LPSTR_TEXTCALLBACKW != lpLVItem->pszText);
7617 if (lpLVItem->iItem < 0 && !is_sorted) return -1;
7619 /* calculate new item index */
7620 if (is_sorted)
7622 HDPA hItem;
7623 ITEM_INFO *item_s;
7624 INT i = 0, cmpv;
7626 while (i < infoPtr->nItemCount)
7628 hItem = DPA_GetPtr( infoPtr->hdpaItems, i);
7629 item_s = DPA_GetPtr(hItem, 0);
7631 cmpv = textcmpWT(item_s->hdr.pszText, lpLVItem->pszText, isW);
7632 if (infoPtr->dwStyle & LVS_SORTDESCENDING) cmpv *= -1;
7634 if (cmpv >= 0) break;
7635 i++;
7637 nItem = i;
7639 else
7640 nItem = min(lpLVItem->iItem, infoPtr->nItemCount);
7642 TRACE(" inserting at %d, sorted=%d, count=%d, iItem=%d\n", nItem, is_sorted, infoPtr->nItemCount, lpLVItem->iItem);
7643 nItem = DPA_InsertPtr( infoPtr->hdpaItems, nItem, hdpaSubItems );
7644 if (nItem == -1) goto fail;
7645 infoPtr->nItemCount++;
7647 /* shift indices first so they don't get tangled */
7648 LISTVIEW_ShiftIndices(infoPtr, nItem, 1);
7650 /* set the item attributes */
7651 if (lpLVItem->mask & (LVIF_GROUPID|LVIF_COLUMNS))
7653 /* full size structure expected - _WIN32IE >= 0x560 */
7654 item = *lpLVItem;
7656 else if (lpLVItem->mask & LVIF_INDENT)
7658 /* indent member expected - _WIN32IE >= 0x300 */
7659 memcpy(&item, lpLVItem, offsetof( LVITEMW, iGroupId ));
7661 else
7663 /* minimal structure expected */
7664 memcpy(&item, lpLVItem, offsetof( LVITEMW, iIndent ));
7666 item.iItem = nItem;
7667 if (infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
7669 item.mask |= LVIF_STATE;
7670 item.stateMask |= LVIS_STATEIMAGEMASK;
7671 item.state &= ~LVIS_STATEIMAGEMASK;
7672 item.state |= INDEXTOSTATEIMAGEMASK(1);
7674 if (!set_main_item(infoPtr, &item, TRUE, isW, &has_changed)) goto undo;
7676 /* make room for the position, if we are in the right mode */
7677 if ((infoPtr->uView == LV_VIEW_SMALLICON) || (infoPtr->uView == LV_VIEW_ICON))
7679 if (DPA_InsertPtr(infoPtr->hdpaPosX, nItem, 0) == -1)
7680 goto undo;
7681 if (DPA_InsertPtr(infoPtr->hdpaPosY, nItem, 0) == -1)
7683 DPA_DeletePtr(infoPtr->hdpaPosX, nItem);
7684 goto undo;
7688 /* send LVN_INSERTITEM notification */
7689 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
7690 nmlv.iItem = nItem;
7691 nmlv.lParam = lpItem->lParam;
7692 notify_listview(infoPtr, LVN_INSERTITEM, &nmlv);
7693 if (!IsWindow(hwndSelf))
7694 return -1;
7696 /* align items (set position of each item) */
7697 if (infoPtr->uView == LV_VIEW_SMALLICON || infoPtr->uView == LV_VIEW_ICON)
7699 POINT pt;
7701 if (infoPtr->dwStyle & LVS_ALIGNLEFT)
7702 LISTVIEW_NextIconPosLeft(infoPtr, &pt);
7703 else
7704 LISTVIEW_NextIconPosTop(infoPtr, &pt);
7706 LISTVIEW_MoveIconTo(infoPtr, nItem, &pt, TRUE);
7709 /* now is the invalidation fun */
7710 LISTVIEW_ScrollOnInsert(infoPtr, nItem, 1);
7711 return nItem;
7713 undo:
7714 LISTVIEW_ShiftIndices(infoPtr, nItem, -1);
7715 DPA_DeletePtr(infoPtr->hdpaItems, nItem);
7716 infoPtr->nItemCount--;
7717 fail:
7718 DPA_DeletePtr(hdpaSubItems, 0);
7719 DPA_Destroy (hdpaSubItems);
7720 Free (lpItem);
7721 return -1;
7724 /***
7725 * DESCRIPTION:
7726 * Checks item visibility.
7728 * PARAMETER(S):
7729 * [I] infoPtr : valid pointer to the listview structure
7730 * [I] nFirst : item index to check for
7732 * RETURN:
7733 * Item visible : TRUE
7734 * Item invisible or failure : FALSE
7736 static BOOL LISTVIEW_IsItemVisible(const LISTVIEW_INFO *infoPtr, INT nItem)
7738 POINT Origin, Position;
7739 RECT rcItem;
7740 HDC hdc;
7741 BOOL ret;
7743 TRACE("nItem=%d\n", nItem);
7745 if (nItem < 0 || nItem >= DPA_GetPtrCount(infoPtr->hdpaItems)) return FALSE;
7747 LISTVIEW_GetOrigin(infoPtr, &Origin);
7748 LISTVIEW_GetItemOrigin(infoPtr, nItem, &Position);
7749 rcItem.left = Position.x + Origin.x;
7750 rcItem.top = Position.y + Origin.y;
7751 rcItem.right = rcItem.left + infoPtr->nItemWidth;
7752 rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
7754 hdc = GetDC(infoPtr->hwndSelf);
7755 if (!hdc) return FALSE;
7756 ret = RectVisible(hdc, &rcItem);
7757 ReleaseDC(infoPtr->hwndSelf, hdc);
7759 return ret;
7762 /***
7763 * DESCRIPTION:
7764 * Redraws a range of items.
7766 * PARAMETER(S):
7767 * [I] infoPtr : valid pointer to the listview structure
7768 * [I] nFirst : first item
7769 * [I] nLast : last item
7771 * RETURN:
7772 * SUCCESS : TRUE
7773 * FAILURE : FALSE
7775 static BOOL LISTVIEW_RedrawItems(const LISTVIEW_INFO *infoPtr, INT nFirst, INT nLast)
7777 INT i;
7779 if (nLast < nFirst || min(nFirst, nLast) < 0 ||
7780 max(nFirst, nLast) >= infoPtr->nItemCount)
7781 return FALSE;
7783 for (i = nFirst; i <= nLast; i++)
7784 LISTVIEW_InvalidateItem(infoPtr, i);
7786 return TRUE;
7789 /***
7790 * DESCRIPTION:
7791 * Scroll the content of a listview.
7793 * PARAMETER(S):
7794 * [I] infoPtr : valid pointer to the listview structure
7795 * [I] dx : horizontal scroll amount in pixels
7796 * [I] dy : vertical scroll amount in pixels
7798 * RETURN:
7799 * SUCCESS : TRUE
7800 * FAILURE : FALSE
7802 * COMMENTS:
7803 * If the control is in report view (LV_VIEW_DETAILS) the control can
7804 * be scrolled only in line increments. "dy" will be rounded to the
7805 * nearest number of pixels that are a whole line. Ex: if line height
7806 * is 16 and an 8 is passed, the list will be scrolled by 16. If a 7
7807 * is passed, then the scroll will be 0. (per MSDN 7/2002)
7809 * For: (per experimentation with native control and CSpy ListView)
7810 * LV_VIEW_ICON dy=1 = 1 pixel (vertical only)
7811 * dx ignored
7812 * LV_VIEW_SMALLICON dy=1 = 1 pixel (vertical only)
7813 * dx ignored
7814 * LV_VIEW_LIST dx=1 = 1 column (horizontal only)
7815 * but will only scroll 1 column per message
7816 * no matter what the value.
7817 * dy must be 0 or FALSE returned.
7818 * LV_VIEW_DETAILS dx=1 = 1 pixel
7819 * dy= see above
7822 static BOOL LISTVIEW_Scroll(LISTVIEW_INFO *infoPtr, INT dx, INT dy)
7824 switch(infoPtr->uView) {
7825 case LV_VIEW_DETAILS:
7826 dy += (dy < 0 ? -1 : 1) * infoPtr->nItemHeight/2;
7827 dy /= infoPtr->nItemHeight;
7828 break;
7829 case LV_VIEW_LIST:
7830 if (dy != 0) return FALSE;
7831 break;
7832 default: /* icon */
7833 dx = 0;
7834 break;
7837 if (dx != 0) LISTVIEW_HScroll(infoPtr, SB_INTERNAL, dx);
7838 if (dy != 0) LISTVIEW_VScroll(infoPtr, SB_INTERNAL, dy);
7840 return TRUE;
7843 /***
7844 * DESCRIPTION:
7845 * Sets the background color.
7847 * PARAMETER(S):
7848 * [I] infoPtr : valid pointer to the listview structure
7849 * [I] clrBk : background color
7851 * RETURN:
7852 * SUCCESS : TRUE
7853 * FAILURE : FALSE
7855 static BOOL LISTVIEW_SetBkColor(LISTVIEW_INFO *infoPtr, COLORREF clrBk)
7857 TRACE("(clrBk=%x)\n", clrBk);
7859 if(infoPtr->clrBk != clrBk) {
7860 if (infoPtr->clrBk != CLR_NONE) DeleteObject(infoPtr->hBkBrush);
7861 infoPtr->clrBk = clrBk;
7862 if (clrBk == CLR_NONE)
7863 infoPtr->hBkBrush = (HBRUSH)GetClassLongPtrW(infoPtr->hwndSelf, GCLP_HBRBACKGROUND);
7864 else
7866 infoPtr->hBkBrush = CreateSolidBrush(clrBk);
7867 infoPtr->dwLvExStyle &= ~LVS_EX_TRANSPARENTBKGND;
7869 LISTVIEW_InvalidateList(infoPtr);
7872 return TRUE;
7875 /* LISTVIEW_SetBkImage */
7877 /*** Helper for {Insert,Set}ColumnT *only* */
7878 static void column_fill_hditem(const LISTVIEW_INFO *infoPtr, HDITEMW *lphdi, INT nColumn,
7879 const LVCOLUMNW *lpColumn, BOOL isW)
7881 if (lpColumn->mask & LVCF_FMT)
7883 /* format member is valid */
7884 lphdi->mask |= HDI_FORMAT;
7886 /* set text alignment (leftmost column must be left-aligned) */
7887 if (nColumn == 0 || (lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_LEFT)
7888 lphdi->fmt |= HDF_LEFT;
7889 else if ((lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_RIGHT)
7890 lphdi->fmt |= HDF_RIGHT;
7891 else if ((lpColumn->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_CENTER)
7892 lphdi->fmt |= HDF_CENTER;
7894 if (lpColumn->fmt & LVCFMT_BITMAP_ON_RIGHT)
7895 lphdi->fmt |= HDF_BITMAP_ON_RIGHT;
7897 if (lpColumn->fmt & LVCFMT_COL_HAS_IMAGES)
7899 lphdi->fmt |= HDF_IMAGE;
7900 lphdi->iImage = I_IMAGECALLBACK;
7903 if (lpColumn->fmt & LVCFMT_FIXED_WIDTH)
7904 lphdi->fmt |= HDF_FIXEDWIDTH;
7907 if (lpColumn->mask & LVCF_WIDTH)
7909 lphdi->mask |= HDI_WIDTH;
7910 if(lpColumn->cx == LVSCW_AUTOSIZE_USEHEADER)
7912 /* make it fill the remainder of the controls width */
7913 RECT rcHeader;
7914 INT item_index;
7916 for(item_index = 0; item_index < (nColumn - 1); item_index++)
7918 LISTVIEW_GetHeaderRect(infoPtr, item_index, &rcHeader);
7919 lphdi->cxy += rcHeader.right - rcHeader.left;
7922 /* retrieve the layout of the header */
7923 GetClientRect(infoPtr->hwndSelf, &rcHeader);
7924 TRACE("start cxy=%d rcHeader=%s\n", lphdi->cxy, wine_dbgstr_rect(&rcHeader));
7926 lphdi->cxy = (rcHeader.right - rcHeader.left) - lphdi->cxy;
7928 else
7929 lphdi->cxy = lpColumn->cx;
7932 if (lpColumn->mask & LVCF_TEXT)
7934 lphdi->mask |= HDI_TEXT | HDI_FORMAT;
7935 lphdi->fmt |= HDF_STRING;
7936 lphdi->pszText = lpColumn->pszText;
7937 lphdi->cchTextMax = textlenT(lpColumn->pszText, isW);
7940 if (lpColumn->mask & LVCF_IMAGE)
7942 lphdi->mask |= HDI_IMAGE;
7943 lphdi->iImage = lpColumn->iImage;
7946 if (lpColumn->mask & LVCF_ORDER)
7948 lphdi->mask |= HDI_ORDER;
7949 lphdi->iOrder = lpColumn->iOrder;
7954 /***
7955 * DESCRIPTION:
7956 * Inserts a new column.
7958 * PARAMETER(S):
7959 * [I] infoPtr : valid pointer to the listview structure
7960 * [I] nColumn : column index
7961 * [I] lpColumn : column information
7962 * [I] isW : TRUE if lpColumn is Unicode, FALSE otherwise
7964 * RETURN:
7965 * SUCCESS : new column index
7966 * FAILURE : -1
7968 static INT LISTVIEW_InsertColumnT(LISTVIEW_INFO *infoPtr, INT nColumn,
7969 const LVCOLUMNW *lpColumn, BOOL isW)
7971 COLUMN_INFO *lpColumnInfo;
7972 INT nNewColumn;
7973 HDITEMW hdi;
7975 TRACE("(nColumn=%d, lpColumn=%s, isW=%d)\n", nColumn, debuglvcolumn_t(lpColumn, isW), isW);
7977 if (!lpColumn || nColumn < 0) return -1;
7978 nColumn = min(nColumn, DPA_GetPtrCount(infoPtr->hdpaColumns));
7980 ZeroMemory(&hdi, sizeof(HDITEMW));
7981 column_fill_hditem(infoPtr, &hdi, nColumn, lpColumn, isW);
7984 * A mask not including LVCF_WIDTH turns into a mask of width, width 10
7985 * (can be seen in SPY) otherwise column never gets added.
7987 if (!(lpColumn->mask & LVCF_WIDTH)) {
7988 hdi.mask |= HDI_WIDTH;
7989 hdi.cxy = 10;
7993 * when the iSubItem is available Windows copies it to the header lParam. It seems
7994 * to happen only in LVM_INSERTCOLUMN - not in LVM_SETCOLUMN
7996 if (lpColumn->mask & LVCF_SUBITEM)
7998 hdi.mask |= HDI_LPARAM;
7999 hdi.lParam = lpColumn->iSubItem;
8002 /* create header if not present */
8003 LISTVIEW_CreateHeader(infoPtr);
8004 if (!(LVS_NOCOLUMNHEADER & infoPtr->dwStyle) &&
8005 (infoPtr->uView == LV_VIEW_DETAILS) && (WS_VISIBLE & infoPtr->dwStyle))
8007 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
8010 /* insert item in header control */
8011 nNewColumn = SendMessageW(infoPtr->hwndHeader,
8012 isW ? HDM_INSERTITEMW : HDM_INSERTITEMA,
8013 nColumn, (LPARAM)&hdi);
8014 if (nNewColumn == -1) return -1;
8015 if (nNewColumn != nColumn) ERR("nColumn=%d, nNewColumn=%d\n", nColumn, nNewColumn);
8017 /* create our own column info */
8018 if (!(lpColumnInfo = Alloc(sizeof(COLUMN_INFO)))) goto fail;
8019 if (DPA_InsertPtr(infoPtr->hdpaColumns, nNewColumn, lpColumnInfo) == -1) goto fail;
8021 if (lpColumn->mask & LVCF_FMT) lpColumnInfo->fmt = lpColumn->fmt;
8022 if (lpColumn->mask & LVCF_MINWIDTH) lpColumnInfo->cxMin = lpColumn->cxMin;
8023 if (!SendMessageW(infoPtr->hwndHeader, HDM_GETITEMRECT, nNewColumn, (LPARAM)&lpColumnInfo->rcHeader))
8024 goto fail;
8026 /* now we have to actually adjust the data */
8027 if (!(infoPtr->dwStyle & LVS_OWNERDATA) && infoPtr->nItemCount > 0)
8029 SUBITEM_INFO *lpSubItem;
8030 HDPA hdpaSubItems;
8031 INT nItem, i;
8032 LVITEMW item;
8033 BOOL changed;
8035 item.iSubItem = nNewColumn;
8036 item.mask = LVIF_TEXT | LVIF_IMAGE;
8037 item.iImage = I_IMAGECALLBACK;
8038 item.pszText = LPSTR_TEXTCALLBACKW;
8040 for (nItem = 0; nItem < infoPtr->nItemCount; nItem++)
8042 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, nItem);
8043 for (i = 1; i < DPA_GetPtrCount(hdpaSubItems); i++)
8045 lpSubItem = DPA_GetPtr(hdpaSubItems, i);
8046 if (lpSubItem->iSubItem >= nNewColumn)
8047 lpSubItem->iSubItem++;
8050 /* add new subitem for each item */
8051 item.iItem = nItem;
8052 set_sub_item(infoPtr, &item, isW, &changed);
8056 /* make space for the new column */
8057 LISTVIEW_ScrollColumns(infoPtr, nNewColumn + 1, lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left);
8058 LISTVIEW_UpdateItemSize(infoPtr);
8060 return nNewColumn;
8062 fail:
8063 if (nNewColumn != -1) SendMessageW(infoPtr->hwndHeader, HDM_DELETEITEM, nNewColumn, 0);
8064 if (lpColumnInfo)
8066 DPA_DeletePtr(infoPtr->hdpaColumns, nNewColumn);
8067 Free(lpColumnInfo);
8069 return -1;
8072 /***
8073 * DESCRIPTION:
8074 * Sets the attributes of a header item.
8076 * PARAMETER(S):
8077 * [I] infoPtr : valid pointer to the listview structure
8078 * [I] nColumn : column index
8079 * [I] lpColumn : column attributes
8080 * [I] isW: if TRUE, then lpColumn is a LPLVCOLUMNW, else it is a LPLVCOLUMNA
8082 * RETURN:
8083 * SUCCESS : TRUE
8084 * FAILURE : FALSE
8086 static BOOL LISTVIEW_SetColumnT(const LISTVIEW_INFO *infoPtr, INT nColumn,
8087 const LVCOLUMNW *lpColumn, BOOL isW)
8089 HDITEMW hdi, hdiget;
8090 BOOL bResult;
8092 TRACE("(nColumn=%d, lpColumn=%s, isW=%d)\n", nColumn, debuglvcolumn_t(lpColumn, isW), isW);
8094 if (!lpColumn || nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
8096 ZeroMemory(&hdi, sizeof(HDITEMW));
8097 if (lpColumn->mask & LVCF_FMT)
8099 hdi.mask |= HDI_FORMAT;
8100 hdiget.mask = HDI_FORMAT;
8101 if (SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nColumn, (LPARAM)&hdiget))
8102 hdi.fmt = hdiget.fmt & HDF_STRING;
8104 column_fill_hditem(infoPtr, &hdi, nColumn, lpColumn, isW);
8106 /* set header item attributes */
8107 bResult = SendMessageW(infoPtr->hwndHeader, isW ? HDM_SETITEMW : HDM_SETITEMA, nColumn, (LPARAM)&hdi);
8108 if (!bResult) return FALSE;
8110 if (lpColumn->mask & LVCF_FMT)
8112 COLUMN_INFO *lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, nColumn);
8113 INT oldFmt = lpColumnInfo->fmt;
8115 lpColumnInfo->fmt = lpColumn->fmt;
8116 if ((oldFmt ^ lpColumn->fmt) & (LVCFMT_JUSTIFYMASK | LVCFMT_IMAGE))
8118 if (infoPtr->uView == LV_VIEW_DETAILS) LISTVIEW_InvalidateColumn(infoPtr, nColumn);
8122 if (lpColumn->mask & LVCF_MINWIDTH)
8123 LISTVIEW_GetColumnInfo(infoPtr, nColumn)->cxMin = lpColumn->cxMin;
8125 return TRUE;
8128 /***
8129 * DESCRIPTION:
8130 * Sets the column order array
8132 * PARAMETERS:
8133 * [I] infoPtr : valid pointer to the listview structure
8134 * [I] iCount : number of elements in column order array
8135 * [I] lpiArray : pointer to column order array
8137 * RETURN:
8138 * SUCCESS : TRUE
8139 * FAILURE : FALSE
8141 static BOOL LISTVIEW_SetColumnOrderArray(LISTVIEW_INFO *infoPtr, INT iCount, const INT *lpiArray)
8143 TRACE("iCount %d lpiArray %p\n", iCount, lpiArray);
8145 if (!lpiArray || !IsWindow(infoPtr->hwndHeader)) return FALSE;
8147 infoPtr->colRectsDirty = TRUE;
8149 return SendMessageW(infoPtr->hwndHeader, HDM_SETORDERARRAY, iCount, (LPARAM)lpiArray);
8152 /***
8153 * DESCRIPTION:
8154 * Sets the width of a column
8156 * PARAMETERS:
8157 * [I] infoPtr : valid pointer to the listview structure
8158 * [I] nColumn : column index
8159 * [I] cx : column width
8161 * RETURN:
8162 * SUCCESS : TRUE
8163 * FAILURE : FALSE
8165 static BOOL LISTVIEW_SetColumnWidth(LISTVIEW_INFO *infoPtr, INT nColumn, INT cx)
8167 WCHAR szDispText[DISP_TEXT_SIZE] = { 0 };
8168 INT max_cx = 0;
8169 HDITEMW hdi;
8171 TRACE("(nColumn=%d, cx=%d\n", nColumn, cx);
8173 /* set column width only if in report or list mode */
8174 if (infoPtr->uView != LV_VIEW_DETAILS && infoPtr->uView != LV_VIEW_LIST) return FALSE;
8176 /* take care of invalid cx values */
8177 if(infoPtr->uView == LV_VIEW_DETAILS && cx < -2) cx = LVSCW_AUTOSIZE;
8178 else if (infoPtr->uView == LV_VIEW_LIST && cx < 1) return FALSE;
8180 /* resize all columns if in LV_VIEW_LIST mode */
8181 if(infoPtr->uView == LV_VIEW_LIST)
8183 infoPtr->nItemWidth = cx;
8184 LISTVIEW_InvalidateList(infoPtr);
8185 return TRUE;
8188 if (nColumn < 0 || nColumn >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return FALSE;
8190 if (cx == LVSCW_AUTOSIZE || (cx == LVSCW_AUTOSIZE_USEHEADER && nColumn < DPA_GetPtrCount(infoPtr->hdpaColumns) -1))
8192 INT nLabelWidth;
8193 LVITEMW lvItem;
8195 lvItem.mask = LVIF_TEXT;
8196 lvItem.iItem = 0;
8197 lvItem.iSubItem = nColumn;
8198 lvItem.pszText = szDispText;
8199 lvItem.cchTextMax = DISP_TEXT_SIZE;
8200 for (; lvItem.iItem < infoPtr->nItemCount; lvItem.iItem++)
8202 if (!LISTVIEW_GetItemW(infoPtr, &lvItem)) continue;
8203 nLabelWidth = LISTVIEW_GetStringWidthT(infoPtr, lvItem.pszText, TRUE);
8204 if (max_cx < nLabelWidth) max_cx = nLabelWidth;
8206 if (infoPtr->himlSmall && (nColumn == 0 || (LISTVIEW_GetColumnInfo(infoPtr, nColumn)->fmt & LVCFMT_IMAGE)))
8207 max_cx += infoPtr->iconSize.cx;
8208 max_cx += TRAILING_LABEL_PADDING;
8211 /* autosize based on listview items width */
8212 if(cx == LVSCW_AUTOSIZE)
8213 cx = max_cx;
8214 else if(cx == LVSCW_AUTOSIZE_USEHEADER)
8216 /* if iCol is the last column make it fill the remainder of the controls width */
8217 if(nColumn == DPA_GetPtrCount(infoPtr->hdpaColumns) - 1)
8219 RECT rcHeader;
8220 POINT Origin;
8222 LISTVIEW_GetOrigin(infoPtr, &Origin);
8223 LISTVIEW_GetHeaderRect(infoPtr, nColumn, &rcHeader);
8225 cx = infoPtr->rcList.right - Origin.x - rcHeader.left;
8227 else
8229 /* Despite what the MS docs say, if this is not the last
8230 column, then MS resizes the column to the width of the
8231 largest text string in the column, including headers
8232 and items. This is different from LVSCW_AUTOSIZE in that
8233 LVSCW_AUTOSIZE ignores the header string length. */
8234 cx = 0;
8236 /* retrieve header text */
8237 hdi.mask = HDI_TEXT;
8238 hdi.cchTextMax = DISP_TEXT_SIZE;
8239 hdi.pszText = szDispText;
8240 if (SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, nColumn, (LPARAM)&hdi))
8242 HDC hdc = GetDC(infoPtr->hwndSelf);
8243 HFONT old_font = SelectObject(hdc, (HFONT)SendMessageW(infoPtr->hwndHeader, WM_GETFONT, 0, 0));
8244 SIZE size;
8246 if (GetTextExtentPoint32W(hdc, hdi.pszText, lstrlenW(hdi.pszText), &size))
8247 cx = size.cx + TRAILING_HEADER_PADDING;
8248 /* FIXME: Take into account the header image, if one is present */
8249 SelectObject(hdc, old_font);
8250 ReleaseDC(infoPtr->hwndSelf, hdc);
8252 cx = max (cx, max_cx);
8256 if (cx < 0) return FALSE;
8258 /* call header to update the column change */
8259 hdi.mask = HDI_WIDTH;
8260 hdi.cxy = max(cx, LISTVIEW_GetColumnInfo(infoPtr, nColumn)->cxMin);
8261 TRACE("hdi.cxy=%d\n", hdi.cxy);
8262 return SendMessageW(infoPtr->hwndHeader, HDM_SETITEMW, nColumn, (LPARAM)&hdi);
8265 /***
8266 * Creates the checkbox imagelist. Helper for LISTVIEW_SetExtendedListViewStyle
8269 static HIMAGELIST LISTVIEW_CreateCheckBoxIL(const LISTVIEW_INFO *infoPtr)
8271 HDC hdc_wnd, hdc;
8272 HBITMAP hbm_im, hbm_mask, hbm_orig;
8273 RECT rc;
8274 HBRUSH hbr_white = GetStockObject(WHITE_BRUSH);
8275 HBRUSH hbr_black = GetStockObject(BLACK_BRUSH);
8276 HIMAGELIST himl;
8278 himl = ImageList_Create(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON),
8279 ILC_COLOR | ILC_MASK, 2, 2);
8280 hdc_wnd = GetDC(infoPtr->hwndSelf);
8281 hdc = CreateCompatibleDC(hdc_wnd);
8282 hbm_im = CreateCompatibleBitmap(hdc_wnd, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON));
8283 hbm_mask = CreateBitmap(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), 1, 1, NULL);
8284 ReleaseDC(infoPtr->hwndSelf, hdc_wnd);
8286 rc.left = rc.top = 0;
8287 rc.right = GetSystemMetrics(SM_CXSMICON);
8288 rc.bottom = GetSystemMetrics(SM_CYSMICON);
8290 hbm_orig = SelectObject(hdc, hbm_mask);
8291 FillRect(hdc, &rc, hbr_white);
8292 InflateRect(&rc, -2, -2);
8293 FillRect(hdc, &rc, hbr_black);
8295 SelectObject(hdc, hbm_im);
8296 DrawFrameControl(hdc, &rc, DFC_BUTTON, DFCS_BUTTONCHECK | DFCS_MONO);
8297 SelectObject(hdc, hbm_orig);
8298 ImageList_Add(himl, hbm_im, hbm_mask);
8300 SelectObject(hdc, hbm_im);
8301 DrawFrameControl(hdc, &rc, DFC_BUTTON, DFCS_BUTTONCHECK | DFCS_MONO | DFCS_CHECKED);
8302 SelectObject(hdc, hbm_orig);
8303 ImageList_Add(himl, hbm_im, hbm_mask);
8305 DeleteObject(hbm_mask);
8306 DeleteObject(hbm_im);
8307 DeleteDC(hdc);
8309 return himl;
8312 /***
8313 * DESCRIPTION:
8314 * Sets the extended listview style.
8316 * PARAMETERS:
8317 * [I] infoPtr : valid pointer to the listview structure
8318 * [I] dwMask : mask
8319 * [I] dwStyle : style
8321 * RETURN:
8322 * SUCCESS : previous style
8323 * FAILURE : 0
8325 static DWORD LISTVIEW_SetExtendedListViewStyle(LISTVIEW_INFO *infoPtr, DWORD dwMask, DWORD dwExStyle)
8327 DWORD dwOldExStyle = infoPtr->dwLvExStyle;
8329 /* set new style */
8330 if (dwMask)
8331 infoPtr->dwLvExStyle = (dwOldExStyle & ~dwMask) | (dwExStyle & dwMask);
8332 else
8333 infoPtr->dwLvExStyle = dwExStyle;
8335 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_CHECKBOXES)
8337 HIMAGELIST himl = 0;
8338 if(infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
8340 LVITEMW item;
8341 item.mask = LVIF_STATE;
8342 item.stateMask = LVIS_STATEIMAGEMASK;
8343 item.state = INDEXTOSTATEIMAGEMASK(1);
8344 LISTVIEW_SetItemState(infoPtr, -1, &item);
8346 himl = LISTVIEW_CreateCheckBoxIL(infoPtr);
8347 if(!(infoPtr->dwStyle & LVS_SHAREIMAGELISTS))
8348 ImageList_Destroy(infoPtr->himlState);
8350 himl = LISTVIEW_SetImageList(infoPtr, LVSIL_STATE, himl);
8351 /* checkbox list replaces prevous custom list or... */
8352 if(((infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES) &&
8353 !(infoPtr->dwStyle & LVS_SHAREIMAGELISTS)) ||
8354 /* ...previous was checkbox list */
8355 (dwOldExStyle & LVS_EX_CHECKBOXES))
8356 ImageList_Destroy(himl);
8359 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_HEADERDRAGDROP)
8361 DWORD dwStyle;
8363 /* if not already created */
8364 LISTVIEW_CreateHeader(infoPtr);
8366 dwStyle = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE);
8367 if (infoPtr->dwLvExStyle & LVS_EX_HEADERDRAGDROP)
8368 dwStyle |= HDS_DRAGDROP;
8369 else
8370 dwStyle &= ~HDS_DRAGDROP;
8371 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, dwStyle);
8374 /* GRIDLINES adds decoration at top so changes sizes */
8375 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_GRIDLINES)
8377 LISTVIEW_UpdateSize(infoPtr);
8380 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_TRANSPARENTBKGND)
8382 if (infoPtr->dwLvExStyle & LVS_EX_TRANSPARENTBKGND)
8383 LISTVIEW_SetBkColor(infoPtr, CLR_NONE);
8386 if((infoPtr->dwLvExStyle ^ dwOldExStyle) & LVS_EX_HEADERINALLVIEWS)
8388 if (infoPtr->dwLvExStyle & LVS_EX_HEADERINALLVIEWS)
8389 LISTVIEW_CreateHeader(infoPtr);
8390 else
8391 ShowWindow(infoPtr->hwndHeader, SW_HIDE);
8392 LISTVIEW_UpdateSize(infoPtr);
8393 LISTVIEW_UpdateScroll(infoPtr);
8396 LISTVIEW_InvalidateList(infoPtr);
8397 return dwOldExStyle;
8400 /***
8401 * DESCRIPTION:
8402 * Sets the new hot cursor used during hot tracking and hover selection.
8404 * PARAMETER(S):
8405 * [I] infoPtr : valid pointer to the listview structure
8406 * [I] hCursor : the new hot cursor handle
8408 * RETURN:
8409 * Returns the previous hot cursor
8411 static HCURSOR LISTVIEW_SetHotCursor(LISTVIEW_INFO *infoPtr, HCURSOR hCursor)
8413 HCURSOR oldCursor = infoPtr->hHotCursor;
8415 infoPtr->hHotCursor = hCursor;
8417 return oldCursor;
8421 /***
8422 * DESCRIPTION:
8423 * Sets the hot item index.
8425 * PARAMETERS:
8426 * [I] infoPtr : valid pointer to the listview structure
8427 * [I] iIndex : index
8429 * RETURN:
8430 * SUCCESS : previous hot item index
8431 * FAILURE : -1 (no hot item)
8433 static INT LISTVIEW_SetHotItem(LISTVIEW_INFO *infoPtr, INT iIndex)
8435 INT iOldIndex = infoPtr->nHotItem;
8437 infoPtr->nHotItem = iIndex;
8439 return iOldIndex;
8443 /***
8444 * DESCRIPTION:
8445 * Sets the amount of time the cursor must hover over an item before it is selected.
8447 * PARAMETER(S):
8448 * [I] infoPtr : valid pointer to the listview structure
8449 * [I] dwHoverTime : hover time, if -1 the hover time is set to the default
8451 * RETURN:
8452 * Returns the previous hover time
8454 static DWORD LISTVIEW_SetHoverTime(LISTVIEW_INFO *infoPtr, DWORD dwHoverTime)
8456 DWORD oldHoverTime = infoPtr->dwHoverTime;
8458 infoPtr->dwHoverTime = dwHoverTime;
8460 return oldHoverTime;
8463 /***
8464 * DESCRIPTION:
8465 * Sets spacing for icons of LVS_ICON style.
8467 * PARAMETER(S):
8468 * [I] infoPtr : valid pointer to the listview structure
8469 * [I] cx : horizontal spacing (-1 = system spacing, 0 = autosize)
8470 * [I] cy : vertical spacing (-1 = system spacing, 0 = autosize)
8472 * RETURN:
8473 * MAKELONG(oldcx, oldcy)
8475 static DWORD LISTVIEW_SetIconSpacing(LISTVIEW_INFO *infoPtr, INT cx, INT cy)
8477 DWORD oldspacing = MAKELONG(infoPtr->iconSpacing.cx, infoPtr->iconSpacing.cy);
8479 TRACE("requested=(%d,%d)\n", cx, cy);
8481 /* this is supported only for LVS_ICON style */
8482 if (infoPtr->uView != LV_VIEW_ICON) return oldspacing;
8484 /* set to defaults, if instructed to */
8485 if (cx == -1) cx = GetSystemMetrics(SM_CXICONSPACING);
8486 if (cy == -1) cy = GetSystemMetrics(SM_CYICONSPACING);
8488 /* if 0 then compute width
8489 * FIXME: Should scan each item and determine max width of
8490 * icon or label, then make that the width */
8491 if (cx == 0)
8492 cx = infoPtr->iconSpacing.cx;
8494 /* if 0 then compute height */
8495 if (cy == 0)
8496 cy = infoPtr->iconSize.cy + 2 * infoPtr->ntmHeight +
8497 ICON_BOTTOM_PADDING + ICON_TOP_PADDING + LABEL_VERT_PADDING;
8500 infoPtr->iconSpacing.cx = cx;
8501 infoPtr->iconSpacing.cy = cy;
8503 TRACE("old=(%d,%d), new=(%d,%d), iconSize=(%d,%d), ntmH=%d\n",
8504 LOWORD(oldspacing), HIWORD(oldspacing), cx, cy,
8505 infoPtr->iconSize.cx, infoPtr->iconSize.cy,
8506 infoPtr->ntmHeight);
8508 /* these depend on the iconSpacing */
8509 LISTVIEW_UpdateItemSize(infoPtr);
8511 return oldspacing;
8514 static inline void set_icon_size(SIZE *size, HIMAGELIST himl, BOOL small)
8516 INT cx, cy;
8518 if (himl && ImageList_GetIconSize(himl, &cx, &cy))
8520 size->cx = cx;
8521 size->cy = cy;
8523 else
8525 size->cx = GetSystemMetrics(small ? SM_CXSMICON : SM_CXICON);
8526 size->cy = GetSystemMetrics(small ? SM_CYSMICON : SM_CYICON);
8530 /***
8531 * DESCRIPTION:
8532 * Sets image lists.
8534 * PARAMETER(S):
8535 * [I] infoPtr : valid pointer to the listview structure
8536 * [I] nType : image list type
8537 * [I] himl : image list handle
8539 * RETURN:
8540 * SUCCESS : old image list
8541 * FAILURE : NULL
8543 static HIMAGELIST LISTVIEW_SetImageList(LISTVIEW_INFO *infoPtr, INT nType, HIMAGELIST himl)
8545 INT oldHeight = infoPtr->nItemHeight;
8546 HIMAGELIST himlOld = 0;
8548 TRACE("(nType=%d, himl=%p\n", nType, himl);
8550 switch (nType)
8552 case LVSIL_NORMAL:
8553 himlOld = infoPtr->himlNormal;
8554 infoPtr->himlNormal = himl;
8555 if (infoPtr->uView == LV_VIEW_ICON) set_icon_size(&infoPtr->iconSize, himl, FALSE);
8556 LISTVIEW_SetIconSpacing(infoPtr, 0, 0);
8557 break;
8559 case LVSIL_SMALL:
8560 himlOld = infoPtr->himlSmall;
8561 infoPtr->himlSmall = himl;
8562 if (infoPtr->uView != LV_VIEW_ICON) set_icon_size(&infoPtr->iconSize, himl, TRUE);
8563 break;
8565 case LVSIL_STATE:
8566 himlOld = infoPtr->himlState;
8567 infoPtr->himlState = himl;
8568 set_icon_size(&infoPtr->iconStateSize, himl, TRUE);
8569 ImageList_SetBkColor(infoPtr->himlState, CLR_NONE);
8570 break;
8572 default:
8573 ERR("Unknown icon type=%d\n", nType);
8574 return NULL;
8577 infoPtr->nItemHeight = LISTVIEW_CalculateItemHeight(infoPtr);
8578 if (infoPtr->nItemHeight != oldHeight)
8579 LISTVIEW_UpdateScroll(infoPtr);
8581 return himlOld;
8584 /***
8585 * DESCRIPTION:
8586 * Preallocates memory (does *not* set the actual count of items !)
8588 * PARAMETER(S):
8589 * [I] infoPtr : valid pointer to the listview structure
8590 * [I] nItems : item count (projected number of items to allocate)
8591 * [I] dwFlags : update flags
8593 * RETURN:
8594 * SUCCESS : TRUE
8595 * FAILURE : FALSE
8597 static BOOL LISTVIEW_SetItemCount(LISTVIEW_INFO *infoPtr, INT nItems, DWORD dwFlags)
8599 TRACE("(nItems=%d, dwFlags=%x)\n", nItems, dwFlags);
8601 if (infoPtr->dwStyle & LVS_OWNERDATA)
8603 INT nOldCount = infoPtr->nItemCount;
8605 if (nItems < nOldCount)
8607 RANGE range = { nItems, nOldCount };
8608 ranges_del(infoPtr->selectionRanges, range);
8609 if (infoPtr->nFocusedItem >= nItems)
8611 LISTVIEW_SetItemFocus(infoPtr, -1);
8612 SetRectEmpty(&infoPtr->rcFocus);
8616 infoPtr->nItemCount = nItems;
8617 LISTVIEW_UpdateScroll(infoPtr);
8619 /* the flags are valid only in ownerdata report and list modes */
8620 if (infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON) dwFlags = 0;
8622 if (!(dwFlags & LVSICF_NOSCROLL) && infoPtr->nFocusedItem != -1)
8623 LISTVIEW_EnsureVisible(infoPtr, infoPtr->nFocusedItem, FALSE);
8625 if (!(dwFlags & LVSICF_NOINVALIDATEALL))
8626 LISTVIEW_InvalidateList(infoPtr);
8627 else
8629 INT nFrom, nTo;
8630 POINT Origin;
8631 RECT rcErase;
8633 LISTVIEW_GetOrigin(infoPtr, &Origin);
8634 nFrom = min(nOldCount, nItems);
8635 nTo = max(nOldCount, nItems);
8637 if (infoPtr->uView == LV_VIEW_DETAILS)
8639 rcErase.left = 0;
8640 rcErase.top = nFrom * infoPtr->nItemHeight;
8641 rcErase.right = infoPtr->nItemWidth;
8642 rcErase.bottom = nTo * infoPtr->nItemHeight;
8643 OffsetRect(&rcErase, Origin.x, Origin.y);
8644 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
8645 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
8647 else /* LV_VIEW_LIST */
8649 INT nPerCol = LISTVIEW_GetCountPerColumn(infoPtr);
8651 rcErase.left = (nFrom / nPerCol) * infoPtr->nItemWidth;
8652 rcErase.top = (nFrom % nPerCol) * infoPtr->nItemHeight;
8653 rcErase.right = rcErase.left + infoPtr->nItemWidth;
8654 rcErase.bottom = nPerCol * infoPtr->nItemHeight;
8655 OffsetRect(&rcErase, Origin.x, Origin.y);
8656 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
8657 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
8659 rcErase.left = (nFrom / nPerCol + 1) * infoPtr->nItemWidth;
8660 rcErase.top = 0;
8661 rcErase.right = (nTo / nPerCol + 1) * infoPtr->nItemWidth;
8662 rcErase.bottom = nPerCol * infoPtr->nItemHeight;
8663 OffsetRect(&rcErase, Origin.x, Origin.y);
8664 if (IntersectRect(&rcErase, &rcErase, &infoPtr->rcList))
8665 LISTVIEW_InvalidateRect(infoPtr, &rcErase);
8669 else
8671 /* According to MSDN for non-LVS_OWNERDATA this is just
8672 * a performance issue. The control allocates its internal
8673 * data structures for the number of items specified. It
8674 * cuts down on the number of memory allocations. Therefore
8675 * we will just issue a WARN here
8677 WARN("for non-ownerdata performance option not implemented.\n");
8680 return TRUE;
8683 /***
8684 * DESCRIPTION:
8685 * Sets the position of an item.
8687 * PARAMETER(S):
8688 * [I] infoPtr : valid pointer to the listview structure
8689 * [I] nItem : item index
8690 * [I] pt : coordinate
8692 * RETURN:
8693 * SUCCESS : TRUE
8694 * FAILURE : FALSE
8696 static BOOL LISTVIEW_SetItemPosition(LISTVIEW_INFO *infoPtr, INT nItem, const POINT *pt)
8698 POINT Origin, Pt;
8700 TRACE("(nItem=%d, pt=%s\n", nItem, wine_dbgstr_point(pt));
8702 if (!pt || nItem < 0 || nItem >= infoPtr->nItemCount ||
8703 !(infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON)) return FALSE;
8705 Pt = *pt;
8706 LISTVIEW_GetOrigin(infoPtr, &Origin);
8708 /* This point value seems to be an undocumented feature.
8709 * The best guess is that it means either at the origin,
8710 * or at true beginning of the list. I will assume the origin. */
8711 if ((Pt.x == -1) && (Pt.y == -1))
8712 Pt = Origin;
8714 if (infoPtr->uView == LV_VIEW_ICON)
8716 Pt.x -= (infoPtr->nItemWidth - infoPtr->iconSize.cx) / 2;
8717 Pt.y -= ICON_TOP_PADDING;
8719 Pt.x -= Origin.x;
8720 Pt.y -= Origin.y;
8722 infoPtr->bAutoarrange = FALSE;
8724 return LISTVIEW_MoveIconTo(infoPtr, nItem, &Pt, FALSE);
8727 /***
8728 * DESCRIPTION:
8729 * Sets the state of one or many items.
8731 * PARAMETER(S):
8732 * [I] infoPtr : valid pointer to the listview structure
8733 * [I] nItem : item index
8734 * [I] lpLVItem : item or subitem info
8736 * RETURN:
8737 * SUCCESS : TRUE
8738 * FAILURE : FALSE
8740 static BOOL LISTVIEW_SetItemState(LISTVIEW_INFO *infoPtr, INT nItem, const LVITEMW *lpLVItem)
8742 BOOL bResult = TRUE;
8743 LVITEMW lvItem;
8745 lvItem.iItem = nItem;
8746 lvItem.iSubItem = 0;
8747 lvItem.mask = LVIF_STATE;
8748 lvItem.state = lpLVItem->state;
8749 lvItem.stateMask = lpLVItem->stateMask;
8750 TRACE("lvItem=%s\n", debuglvitem_t(&lvItem, TRUE));
8752 if (nItem == -1)
8754 /* select all isn't allowed in LVS_SINGLESEL */
8755 if ((lvItem.state & lvItem.stateMask & LVIS_SELECTED) && (infoPtr->dwStyle & LVS_SINGLESEL))
8756 return FALSE;
8758 /* focus all isn't allowed */
8759 if (lvItem.state & lvItem.stateMask & LVIS_FOCUSED) return FALSE;
8761 /* apply to all items */
8762 for (lvItem.iItem = 0; lvItem.iItem < infoPtr->nItemCount; lvItem.iItem++)
8763 if (!LISTVIEW_SetItemT(infoPtr, &lvItem, TRUE)) bResult = FALSE;
8765 else
8766 bResult = LISTVIEW_SetItemT(infoPtr, &lvItem, TRUE);
8768 return bResult;
8771 /***
8772 * DESCRIPTION:
8773 * Sets the text of an item or subitem.
8775 * PARAMETER(S):
8776 * [I] hwnd : window handle
8777 * [I] nItem : item index
8778 * [I] lpLVItem : item or subitem info
8779 * [I] isW : TRUE if input is Unicode
8781 * RETURN:
8782 * SUCCESS : TRUE
8783 * FAILURE : FALSE
8785 static BOOL LISTVIEW_SetItemTextT(LISTVIEW_INFO *infoPtr, INT nItem, const LVITEMW *lpLVItem, BOOL isW)
8787 LVITEMW lvItem;
8789 if (nItem < 0 && nItem >= infoPtr->nItemCount) return FALSE;
8791 lvItem.iItem = nItem;
8792 lvItem.iSubItem = lpLVItem->iSubItem;
8793 lvItem.mask = LVIF_TEXT;
8794 lvItem.pszText = lpLVItem->pszText;
8795 lvItem.cchTextMax = lpLVItem->cchTextMax;
8797 TRACE("(nItem=%d, lpLVItem=%s, isW=%d)\n", nItem, debuglvitem_t(&lvItem, isW), isW);
8799 return LISTVIEW_SetItemT(infoPtr, &lvItem, isW);
8802 /***
8803 * DESCRIPTION:
8804 * Set item index that marks the start of a multiple selection.
8806 * PARAMETER(S):
8807 * [I] infoPtr : valid pointer to the listview structure
8808 * [I] nIndex : index
8810 * RETURN:
8811 * Index number or -1 if there is no selection mark.
8813 static INT LISTVIEW_SetSelectionMark(LISTVIEW_INFO *infoPtr, INT nIndex)
8815 INT nOldIndex = infoPtr->nSelectionMark;
8817 TRACE("(nIndex=%d)\n", nIndex);
8819 infoPtr->nSelectionMark = nIndex;
8821 return nOldIndex;
8824 /***
8825 * DESCRIPTION:
8826 * Sets the text background color.
8828 * PARAMETER(S):
8829 * [I] infoPtr : valid pointer to the listview structure
8830 * [I] clrTextBk : text background color
8832 * RETURN:
8833 * SUCCESS : TRUE
8834 * FAILURE : FALSE
8836 static BOOL LISTVIEW_SetTextBkColor(LISTVIEW_INFO *infoPtr, COLORREF clrTextBk)
8838 TRACE("(clrTextBk=%x)\n", clrTextBk);
8840 if (infoPtr->clrTextBk != clrTextBk)
8842 infoPtr->clrTextBk = clrTextBk;
8843 LISTVIEW_InvalidateList(infoPtr);
8846 return TRUE;
8849 /***
8850 * DESCRIPTION:
8851 * Sets the text foreground color.
8853 * PARAMETER(S):
8854 * [I] infoPtr : valid pointer to the listview structure
8855 * [I] clrText : text color
8857 * RETURN:
8858 * SUCCESS : TRUE
8859 * FAILURE : FALSE
8861 static BOOL LISTVIEW_SetTextColor (LISTVIEW_INFO *infoPtr, COLORREF clrText)
8863 TRACE("(clrText=%x)\n", clrText);
8865 if (infoPtr->clrText != clrText)
8867 infoPtr->clrText = clrText;
8868 LISTVIEW_InvalidateList(infoPtr);
8871 return TRUE;
8874 /***
8875 * DESCRIPTION:
8876 * Sets new ToolTip window to ListView control.
8878 * PARAMETER(S):
8879 * [I] infoPtr : valid pointer to the listview structure
8880 * [I] hwndNewToolTip : handle to new ToolTip
8882 * RETURN:
8883 * old tool tip
8885 static HWND LISTVIEW_SetToolTips( LISTVIEW_INFO *infoPtr, HWND hwndNewToolTip)
8887 HWND hwndOldToolTip = infoPtr->hwndToolTip;
8888 infoPtr->hwndToolTip = hwndNewToolTip;
8889 return hwndOldToolTip;
8893 * DESCRIPTION:
8894 * sets the Unicode character format flag for the control
8895 * PARAMETER(S):
8896 * [I] infoPtr :valid pointer to the listview structure
8897 * [I] fUnicode :true to switch to UNICODE false to switch to ANSI
8899 * RETURN:
8900 * Old Unicode Format
8902 static BOOL LISTVIEW_SetUnicodeFormat( LISTVIEW_INFO *infoPtr, BOOL unicode)
8904 SHORT rc = infoPtr->notifyFormat;
8905 infoPtr->notifyFormat = (unicode) ? NFR_UNICODE : NFR_ANSI;
8906 return rc == NFR_UNICODE;
8910 * DESCRIPTION:
8911 * sets the control view mode
8912 * PARAMETER(S):
8913 * [I] infoPtr :valid pointer to the listview structure
8914 * [I] nView :new view mode value
8916 * RETURN:
8917 * SUCCESS: 1
8918 * FAILURE: -1
8920 static INT LISTVIEW_SetView(LISTVIEW_INFO *infoPtr, DWORD nView)
8922 SIZE oldIconSize = infoPtr->iconSize;
8923 HIMAGELIST himl;
8925 if (infoPtr->uView == nView) return 1;
8927 if ((INT)nView < 0 || nView > LV_VIEW_MAX) return -1;
8928 if (nView == LV_VIEW_TILE)
8930 FIXME("View LV_VIEW_TILE unimplemented\n");
8931 return -1;
8934 infoPtr->uView = nView;
8936 SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
8937 ShowWindow(infoPtr->hwndHeader, SW_HIDE);
8939 ShowScrollBar(infoPtr->hwndSelf, SB_BOTH, FALSE);
8940 SetRectEmpty(&infoPtr->rcFocus);
8942 himl = (nView == LV_VIEW_ICON ? infoPtr->himlNormal : infoPtr->himlSmall);
8943 set_icon_size(&infoPtr->iconSize, himl, nView != LV_VIEW_ICON);
8945 switch (nView)
8947 case LV_VIEW_ICON:
8948 if ((infoPtr->iconSize.cx != oldIconSize.cx) || (infoPtr->iconSize.cy != oldIconSize.cy))
8950 TRACE("icon old size=(%d,%d), new size=(%d,%d)\n",
8951 oldIconSize.cx, oldIconSize.cy, infoPtr->iconSize.cx, infoPtr->iconSize.cy);
8952 LISTVIEW_SetIconSpacing(infoPtr, 0, 0);
8954 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
8955 break;
8956 case LV_VIEW_SMALLICON:
8957 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
8958 break;
8959 case LV_VIEW_DETAILS:
8961 HDLAYOUT hl;
8962 WINDOWPOS wp;
8964 LISTVIEW_CreateHeader( infoPtr );
8966 hl.prc = &infoPtr->rcList;
8967 hl.pwpos = &wp;
8968 SendMessageW(infoPtr->hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hl);
8969 SetWindowPos(infoPtr->hwndHeader, infoPtr->hwndSelf, wp.x, wp.y, wp.cx, wp.cy,
8970 wp.flags | ((infoPtr->dwStyle & LVS_NOCOLUMNHEADER) ? SWP_HIDEWINDOW : SWP_SHOWWINDOW));
8971 break;
8973 case LV_VIEW_LIST:
8974 break;
8977 LISTVIEW_UpdateItemSize(infoPtr);
8978 LISTVIEW_UpdateSize(infoPtr);
8979 LISTVIEW_UpdateScroll(infoPtr);
8980 LISTVIEW_InvalidateList(infoPtr);
8982 TRACE("nView=%d\n", nView);
8984 return 1;
8987 /* LISTVIEW_SetWorkAreas */
8989 /***
8990 * DESCRIPTION:
8991 * Callback internally used by LISTVIEW_SortItems() in response of LVM_SORTITEMS
8993 * PARAMETER(S):
8994 * [I] first : pointer to first ITEM_INFO to compare
8995 * [I] second : pointer to second ITEM_INFO to compare
8996 * [I] lParam : HWND of control
8998 * RETURN:
8999 * if first comes before second : negative
9000 * if first comes after second : positive
9001 * if first and second are equivalent : zero
9003 static INT WINAPI LISTVIEW_CallBackCompare(LPVOID first, LPVOID second, LPARAM lParam)
9005 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)lParam;
9006 ITEM_INFO* lv_first = DPA_GetPtr( first, 0 );
9007 ITEM_INFO* lv_second = DPA_GetPtr( second, 0 );
9009 /* Forward the call to the client defined callback */
9010 return (infoPtr->pfnCompare)( lv_first->lParam , lv_second->lParam, infoPtr->lParamSort );
9013 /***
9014 * DESCRIPTION:
9015 * Callback internally used by LISTVIEW_SortItems() in response of LVM_SORTITEMSEX
9017 * PARAMETER(S):
9018 * [I] first : pointer to first ITEM_INFO to compare
9019 * [I] second : pointer to second ITEM_INFO to compare
9020 * [I] lParam : HWND of control
9022 * RETURN:
9023 * if first comes before second : negative
9024 * if first comes after second : positive
9025 * if first and second are equivalent : zero
9027 static INT WINAPI LISTVIEW_CallBackCompareEx(LPVOID first, LPVOID second, LPARAM lParam)
9029 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)lParam;
9030 INT first_idx = DPA_GetPtrIndex( infoPtr->hdpaItems, first );
9031 INT second_idx = DPA_GetPtrIndex( infoPtr->hdpaItems, second );
9033 /* Forward the call to the client defined callback */
9034 return (infoPtr->pfnCompare)( first_idx, second_idx, infoPtr->lParamSort );
9037 /***
9038 * DESCRIPTION:
9039 * Sorts the listview items.
9041 * PARAMETER(S):
9042 * [I] infoPtr : valid pointer to the listview structure
9043 * [I] pfnCompare : application-defined value
9044 * [I] lParamSort : pointer to comparison callback
9045 * [I] IsEx : TRUE when LVM_SORTITEMSEX used
9047 * RETURN:
9048 * SUCCESS : TRUE
9049 * FAILURE : FALSE
9051 static BOOL LISTVIEW_SortItems(LISTVIEW_INFO *infoPtr, PFNLVCOMPARE pfnCompare,
9052 LPARAM lParamSort, BOOL IsEx)
9054 HDPA hdpaSubItems;
9055 ITEM_INFO *lpItem;
9056 LPVOID selectionMarkItem = NULL;
9057 LPVOID focusedItem = NULL;
9058 int i;
9060 TRACE("(pfnCompare=%p, lParamSort=%lx)\n", pfnCompare, lParamSort);
9062 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
9064 if (!pfnCompare) return FALSE;
9065 if (!infoPtr->hdpaItems) return FALSE;
9067 /* if there are 0 or 1 items, there is no need to sort */
9068 if (infoPtr->nItemCount < 2) return TRUE;
9070 /* clear selection */
9071 ranges_clear(infoPtr->selectionRanges);
9073 /* save selection mark and focused item */
9074 if (infoPtr->nSelectionMark >= 0)
9075 selectionMarkItem = DPA_GetPtr(infoPtr->hdpaItems, infoPtr->nSelectionMark);
9076 if (infoPtr->nFocusedItem >= 0)
9077 focusedItem = DPA_GetPtr(infoPtr->hdpaItems, infoPtr->nFocusedItem);
9079 infoPtr->pfnCompare = pfnCompare;
9080 infoPtr->lParamSort = lParamSort;
9081 if (IsEx)
9082 DPA_Sort(infoPtr->hdpaItems, LISTVIEW_CallBackCompareEx, (LPARAM)infoPtr);
9083 else
9084 DPA_Sort(infoPtr->hdpaItems, LISTVIEW_CallBackCompare, (LPARAM)infoPtr);
9086 /* restore selection ranges */
9087 for (i=0; i < infoPtr->nItemCount; i++)
9089 hdpaSubItems = DPA_GetPtr(infoPtr->hdpaItems, i);
9090 lpItem = DPA_GetPtr(hdpaSubItems, 0);
9092 if (lpItem->state & LVIS_SELECTED)
9093 ranges_additem(infoPtr->selectionRanges, i);
9095 /* restore selection mark and focused item */
9096 infoPtr->nSelectionMark = DPA_GetPtrIndex(infoPtr->hdpaItems, selectionMarkItem);
9097 infoPtr->nFocusedItem = DPA_GetPtrIndex(infoPtr->hdpaItems, focusedItem);
9099 /* I believe nHotItem should be left alone, see LISTVIEW_ShiftIndices */
9101 /* refresh the display */
9102 if (infoPtr->uView != LV_VIEW_ICON && infoPtr->uView != LV_VIEW_SMALLICON)
9103 LISTVIEW_InvalidateList(infoPtr);
9105 return TRUE;
9108 /***
9109 * DESCRIPTION:
9110 * Update theme handle after a theme change.
9112 * PARAMETER(S):
9113 * [I] infoPtr : valid pointer to the listview structure
9115 * RETURN:
9116 * SUCCESS : 0
9117 * FAILURE : something else
9119 static LRESULT LISTVIEW_ThemeChanged(const LISTVIEW_INFO *infoPtr)
9121 HTHEME theme = GetWindowTheme(infoPtr->hwndSelf);
9122 CloseThemeData(theme);
9123 OpenThemeData(infoPtr->hwndSelf, themeClass);
9124 return 0;
9127 /***
9128 * DESCRIPTION:
9129 * Updates an items or rearranges the listview control.
9131 * PARAMETER(S):
9132 * [I] infoPtr : valid pointer to the listview structure
9133 * [I] nItem : item index
9135 * RETURN:
9136 * SUCCESS : TRUE
9137 * FAILURE : FALSE
9139 static BOOL LISTVIEW_Update(LISTVIEW_INFO *infoPtr, INT nItem)
9141 TRACE("(nItem=%d)\n", nItem);
9143 if (nItem < 0 || nItem >= infoPtr->nItemCount) return FALSE;
9145 /* rearrange with default alignment style */
9146 if (is_autoarrange(infoPtr))
9147 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
9148 else
9149 LISTVIEW_InvalidateItem(infoPtr, nItem);
9151 return TRUE;
9154 /***
9155 * DESCRIPTION:
9156 * Draw the track line at the place defined in the infoPtr structure.
9157 * The line is drawn with a XOR pen so drawing the line for the second time
9158 * in the same place erases the line.
9160 * PARAMETER(S):
9161 * [I] infoPtr : valid pointer to the listview structure
9163 * RETURN:
9164 * SUCCESS : TRUE
9165 * FAILURE : FALSE
9167 static BOOL LISTVIEW_DrawTrackLine(const LISTVIEW_INFO *infoPtr)
9169 HPEN hOldPen;
9170 HDC hdc;
9171 INT oldROP;
9173 if (infoPtr->xTrackLine == -1)
9174 return FALSE;
9176 if (!(hdc = GetDC(infoPtr->hwndSelf)))
9177 return FALSE;
9178 hOldPen = SelectObject(hdc, GetStockObject(BLACK_PEN));
9179 oldROP = SetROP2(hdc, R2_XORPEN);
9180 MoveToEx(hdc, infoPtr->xTrackLine, infoPtr->rcList.top, NULL);
9181 LineTo(hdc, infoPtr->xTrackLine, infoPtr->rcList.bottom);
9182 SetROP2(hdc, oldROP);
9183 SelectObject(hdc, hOldPen);
9184 ReleaseDC(infoPtr->hwndSelf, hdc);
9185 return TRUE;
9188 /***
9189 * DESCRIPTION:
9190 * Called when an edit control should be displayed. This function is called after
9191 * we are sure that there was a single click - not a double click (this is a TIMERPROC).
9193 * PARAMETER(S):
9194 * [I] hwnd : Handle to the listview
9195 * [I] uMsg : WM_TIMER (ignored)
9196 * [I] idEvent : The timer ID interpreted as a pointer to a DELAYED_EDIT_ITEM struct
9197 * [I] dwTimer : The elapsed time (ignored)
9199 * RETURN:
9200 * None.
9202 static VOID CALLBACK LISTVIEW_DelayedEditItem(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
9204 DELAYED_ITEM_EDIT *editItem = (DELAYED_ITEM_EDIT *)idEvent;
9205 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
9207 KillTimer(hwnd, idEvent);
9208 editItem->fEnabled = FALSE;
9209 /* check if the item is still selected */
9210 if (infoPtr->bFocus && LISTVIEW_GetItemState(infoPtr, editItem->iItem, LVIS_SELECTED))
9211 LISTVIEW_EditLabelT(infoPtr, editItem->iItem, TRUE);
9214 /***
9215 * DESCRIPTION:
9216 * Creates the listview control - the WM_NCCREATE phase.
9218 * PARAMETER(S):
9219 * [I] hwnd : window handle
9220 * [I] lpcs : the create parameters
9222 * RETURN:
9223 * Success: TRUE
9224 * Failure: FALSE
9226 static LRESULT LISTVIEW_NCCreate(HWND hwnd, const CREATESTRUCTW *lpcs)
9228 LISTVIEW_INFO *infoPtr;
9229 LOGFONTW logFont;
9231 TRACE("(lpcs=%p)\n", lpcs);
9233 /* initialize info pointer */
9234 infoPtr = Alloc(sizeof(LISTVIEW_INFO));
9235 if (!infoPtr) return FALSE;
9237 SetWindowLongPtrW(hwnd, 0, (DWORD_PTR)infoPtr);
9239 infoPtr->hwndSelf = hwnd;
9240 infoPtr->dwStyle = lpcs->style; /* Note: may be changed in WM_CREATE */
9241 map_style_view(infoPtr);
9242 /* determine the type of structures to use */
9243 infoPtr->hwndNotify = lpcs->hwndParent;
9244 /* infoPtr->notifyFormat will be filled in WM_CREATE */
9246 /* initialize color information */
9247 infoPtr->clrBk = CLR_NONE;
9248 infoPtr->clrText = CLR_DEFAULT;
9249 infoPtr->clrTextBk = CLR_DEFAULT;
9250 LISTVIEW_SetBkColor(infoPtr, comctl32_color.clrWindow);
9252 /* set default values */
9253 infoPtr->nFocusedItem = -1;
9254 infoPtr->nSelectionMark = -1;
9255 infoPtr->nHotItem = -1;
9256 infoPtr->bRedraw = TRUE;
9257 infoPtr->bNoItemMetrics = TRUE;
9258 infoPtr->bDoChangeNotify = TRUE;
9259 infoPtr->iconSpacing.cx = GetSystemMetrics(SM_CXICONSPACING);
9260 infoPtr->iconSpacing.cy = GetSystemMetrics(SM_CYICONSPACING);
9261 infoPtr->nEditLabelItem = -1;
9262 infoPtr->nLButtonDownItem = -1;
9263 infoPtr->dwHoverTime = HOVER_DEFAULT; /* default system hover time */
9264 infoPtr->nMeasureItemHeight = 0;
9265 infoPtr->xTrackLine = -1; /* no track line */
9266 infoPtr->itemEdit.fEnabled = FALSE;
9267 infoPtr->iVersion = COMCTL32_VERSION;
9268 infoPtr->colRectsDirty = FALSE;
9270 /* get default font (icon title) */
9271 SystemParametersInfoW(SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
9272 infoPtr->hDefaultFont = CreateFontIndirectW(&logFont);
9273 infoPtr->hFont = infoPtr->hDefaultFont;
9274 LISTVIEW_SaveTextMetrics(infoPtr);
9276 /* allocate memory for the data structure */
9277 if (!(infoPtr->selectionRanges = ranges_create(10))) goto fail;
9278 if (!(infoPtr->hdpaItems = DPA_Create(10))) goto fail;
9279 if (!(infoPtr->hdpaItemIds = DPA_Create(10))) goto fail;
9280 if (!(infoPtr->hdpaPosX = DPA_Create(10))) goto fail;
9281 if (!(infoPtr->hdpaPosY = DPA_Create(10))) goto fail;
9282 if (!(infoPtr->hdpaColumns = DPA_Create(10))) goto fail;
9283 return TRUE;
9285 fail:
9286 DestroyWindow(infoPtr->hwndHeader);
9287 ranges_destroy(infoPtr->selectionRanges);
9288 DPA_Destroy(infoPtr->hdpaItems);
9289 DPA_Destroy(infoPtr->hdpaItemIds);
9290 DPA_Destroy(infoPtr->hdpaPosX);
9291 DPA_Destroy(infoPtr->hdpaPosY);
9292 DPA_Destroy(infoPtr->hdpaColumns);
9293 Free(infoPtr);
9294 return FALSE;
9297 /***
9298 * DESCRIPTION:
9299 * Creates the listview control - the WM_CREATE phase. Most of the data is
9300 * already set up in LISTVIEW_NCCreate
9302 * PARAMETER(S):
9303 * [I] hwnd : window handle
9304 * [I] lpcs : the create parameters
9306 * RETURN:
9307 * Success: 0
9308 * Failure: -1
9310 static LRESULT LISTVIEW_Create(HWND hwnd, const CREATESTRUCTW *lpcs)
9312 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
9314 TRACE("(lpcs=%p)\n", lpcs);
9316 infoPtr->dwStyle = lpcs->style;
9317 map_style_view(infoPtr);
9319 infoPtr->notifyFormat = SendMessageW(infoPtr->hwndNotify, WM_NOTIFYFORMAT,
9320 (WPARAM)infoPtr->hwndSelf, NF_QUERY);
9321 /* on error defaulting to ANSI notifications */
9322 if (infoPtr->notifyFormat == 0) infoPtr->notifyFormat = NFR_ANSI;
9323 TRACE("notify format=%d\n", infoPtr->notifyFormat);
9325 if ((infoPtr->uView == LV_VIEW_DETAILS) && (lpcs->style & WS_VISIBLE))
9327 if (LISTVIEW_CreateHeader(infoPtr) < 0) return -1;
9329 else
9330 infoPtr->hwndHeader = 0;
9332 /* init item size to avoid division by 0 */
9333 LISTVIEW_UpdateItemSize (infoPtr);
9335 if (infoPtr->uView == LV_VIEW_DETAILS)
9337 if (!(LVS_NOCOLUMNHEADER & lpcs->style) && (WS_VISIBLE & lpcs->style))
9339 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
9341 LISTVIEW_UpdateScroll(infoPtr);
9342 /* send WM_MEASUREITEM notification */
9343 if (infoPtr->dwStyle & LVS_OWNERDRAWFIXED) notify_measureitem(infoPtr);
9346 OpenThemeData(hwnd, themeClass);
9348 /* initialize the icon sizes */
9349 set_icon_size(&infoPtr->iconSize, infoPtr->himlNormal, infoPtr->uView != LV_VIEW_ICON);
9350 set_icon_size(&infoPtr->iconStateSize, infoPtr->himlState, TRUE);
9351 return 0;
9354 /***
9355 * DESCRIPTION:
9356 * Destroys the listview control.
9358 * PARAMETER(S):
9359 * [I] infoPtr : valid pointer to the listview structure
9361 * RETURN:
9362 * Success: 0
9363 * Failure: -1
9365 static LRESULT LISTVIEW_Destroy(LISTVIEW_INFO *infoPtr)
9367 HTHEME theme = GetWindowTheme(infoPtr->hwndSelf);
9368 CloseThemeData(theme);
9370 /* delete all items */
9371 LISTVIEW_DeleteAllItems(infoPtr, TRUE);
9373 return 0;
9376 /***
9377 * DESCRIPTION:
9378 * Enables the listview control.
9380 * PARAMETER(S):
9381 * [I] infoPtr : valid pointer to the listview structure
9382 * [I] bEnable : specifies whether to enable or disable the window
9384 * RETURN:
9385 * SUCCESS : TRUE
9386 * FAILURE : FALSE
9388 static BOOL LISTVIEW_Enable(const LISTVIEW_INFO *infoPtr)
9390 if (infoPtr->dwStyle & LVS_OWNERDRAWFIXED)
9391 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
9392 return TRUE;
9395 /***
9396 * DESCRIPTION:
9397 * Erases the background of the listview control.
9399 * PARAMETER(S):
9400 * [I] infoPtr : valid pointer to the listview structure
9401 * [I] hdc : device context handle
9403 * RETURN:
9404 * SUCCESS : TRUE
9405 * FAILURE : FALSE
9407 static inline BOOL LISTVIEW_EraseBkgnd(const LISTVIEW_INFO *infoPtr, HDC hdc)
9409 RECT rc;
9411 TRACE("(hdc=%p)\n", hdc);
9413 if (!GetClipBox(hdc, &rc)) return FALSE;
9415 if (infoPtr->clrBk == CLR_NONE)
9417 if (infoPtr->dwLvExStyle & LVS_EX_TRANSPARENTBKGND)
9418 return SendMessageW(infoPtr->hwndNotify, WM_PRINTCLIENT,
9419 (WPARAM)hdc, PRF_ERASEBKGND);
9420 else
9421 return SendMessageW(infoPtr->hwndNotify, WM_ERASEBKGND, (WPARAM)hdc, 0);
9424 /* for double buffered controls we need to do this during refresh */
9425 if (infoPtr->dwLvExStyle & LVS_EX_DOUBLEBUFFER) return FALSE;
9427 return LISTVIEW_FillBkgnd(infoPtr, hdc, &rc);
9431 /***
9432 * DESCRIPTION:
9433 * Helper function for LISTVIEW_[HV]Scroll *only*.
9434 * Performs vertical/horizontal scrolling by a give amount.
9436 * PARAMETER(S):
9437 * [I] infoPtr : valid pointer to the listview structure
9438 * [I] dx : amount of horizontal scroll
9439 * [I] dy : amount of vertical scroll
9441 static void scroll_list(LISTVIEW_INFO *infoPtr, INT dx, INT dy)
9443 /* now we can scroll the list */
9444 ScrollWindowEx(infoPtr->hwndSelf, dx, dy, &infoPtr->rcList,
9445 &infoPtr->rcList, 0, 0, SW_ERASE | SW_INVALIDATE);
9446 /* if we have focus, adjust rect */
9447 OffsetRect(&infoPtr->rcFocus, dx, dy);
9448 UpdateWindow(infoPtr->hwndSelf);
9451 /***
9452 * DESCRIPTION:
9453 * Performs vertical scrolling.
9455 * PARAMETER(S):
9456 * [I] infoPtr : valid pointer to the listview structure
9457 * [I] nScrollCode : scroll code
9458 * [I] nScrollDiff : units to scroll in SB_INTERNAL mode, 0 otherwise
9459 * [I] hScrollWnd : scrollbar control window handle
9461 * RETURN:
9462 * Zero
9464 * NOTES:
9465 * SB_LINEUP/SB_LINEDOWN:
9466 * for LVS_ICON, LVS_SMALLICON is 37 by experiment
9467 * for LVS_REPORT is 1 line
9468 * for LVS_LIST cannot occur
9471 static LRESULT LISTVIEW_VScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
9472 INT nScrollDiff)
9474 INT nOldScrollPos, nNewScrollPos;
9475 SCROLLINFO scrollInfo;
9476 BOOL is_an_icon;
9478 TRACE("(nScrollCode=%d(%s), nScrollDiff=%d)\n", nScrollCode,
9479 debugscrollcode(nScrollCode), nScrollDiff);
9481 if (infoPtr->hwndEdit) SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
9483 scrollInfo.cbSize = sizeof(SCROLLINFO);
9484 scrollInfo.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_TRACKPOS;
9486 is_an_icon = ((infoPtr->uView == LV_VIEW_ICON) || (infoPtr->uView == LV_VIEW_SMALLICON));
9488 if (!GetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo)) return 1;
9490 nOldScrollPos = scrollInfo.nPos;
9491 switch (nScrollCode)
9493 case SB_INTERNAL:
9494 break;
9496 case SB_LINEUP:
9497 nScrollDiff = (is_an_icon) ? -LISTVIEW_SCROLL_ICON_LINE_SIZE : -1;
9498 break;
9500 case SB_LINEDOWN:
9501 nScrollDiff = (is_an_icon) ? LISTVIEW_SCROLL_ICON_LINE_SIZE : 1;
9502 break;
9504 case SB_PAGEUP:
9505 nScrollDiff = -scrollInfo.nPage;
9506 break;
9508 case SB_PAGEDOWN:
9509 nScrollDiff = scrollInfo.nPage;
9510 break;
9512 case SB_THUMBPOSITION:
9513 case SB_THUMBTRACK:
9514 nScrollDiff = scrollInfo.nTrackPos - scrollInfo.nPos;
9515 break;
9517 default:
9518 nScrollDiff = 0;
9521 /* quit right away if pos isn't changing */
9522 if (nScrollDiff == 0) return 0;
9524 /* calculate new position, and handle overflows */
9525 nNewScrollPos = scrollInfo.nPos + nScrollDiff;
9526 if (nScrollDiff > 0) {
9527 if (nNewScrollPos < nOldScrollPos ||
9528 nNewScrollPos > scrollInfo.nMax)
9529 nNewScrollPos = scrollInfo.nMax;
9530 } else {
9531 if (nNewScrollPos > nOldScrollPos ||
9532 nNewScrollPos < scrollInfo.nMin)
9533 nNewScrollPos = scrollInfo.nMin;
9536 /* set the new position, and reread in case it changed */
9537 scrollInfo.fMask = SIF_POS;
9538 scrollInfo.nPos = nNewScrollPos;
9539 nNewScrollPos = SetScrollInfo(infoPtr->hwndSelf, SB_VERT, &scrollInfo, TRUE);
9541 /* carry on only if it really changed */
9542 if (nNewScrollPos == nOldScrollPos) return 0;
9544 /* now adjust to client coordinates */
9545 nScrollDiff = nOldScrollPos - nNewScrollPos;
9546 if (infoPtr->uView == LV_VIEW_DETAILS) nScrollDiff *= infoPtr->nItemHeight;
9548 /* and scroll the window */
9549 scroll_list(infoPtr, 0, nScrollDiff);
9551 return 0;
9554 /***
9555 * DESCRIPTION:
9556 * Performs horizontal scrolling.
9558 * PARAMETER(S):
9559 * [I] infoPtr : valid pointer to the listview structure
9560 * [I] nScrollCode : scroll code
9561 * [I] nScrollDiff : units to scroll in SB_INTERNAL mode, 0 otherwise
9562 * [I] hScrollWnd : scrollbar control window handle
9564 * RETURN:
9565 * Zero
9567 * NOTES:
9568 * SB_LINELEFT/SB_LINERIGHT:
9569 * for LVS_ICON, LVS_SMALLICON 1 pixel
9570 * for LVS_REPORT is 1 pixel
9571 * for LVS_LIST is 1 column --> which is a 1 because the
9572 * scroll is based on columns not pixels
9575 static LRESULT LISTVIEW_HScroll(LISTVIEW_INFO *infoPtr, INT nScrollCode,
9576 INT nScrollDiff)
9578 INT nOldScrollPos, nNewScrollPos;
9579 SCROLLINFO scrollInfo;
9581 TRACE("(nScrollCode=%d(%s), nScrollDiff=%d)\n", nScrollCode,
9582 debugscrollcode(nScrollCode), nScrollDiff);
9584 if (infoPtr->hwndEdit) SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
9586 scrollInfo.cbSize = sizeof(SCROLLINFO);
9587 scrollInfo.fMask = SIF_PAGE | SIF_POS | SIF_RANGE | SIF_TRACKPOS;
9589 if (!GetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo)) return 1;
9591 nOldScrollPos = scrollInfo.nPos;
9593 switch (nScrollCode)
9595 case SB_INTERNAL:
9596 break;
9598 case SB_LINELEFT:
9599 nScrollDiff = -1;
9600 break;
9602 case SB_LINERIGHT:
9603 nScrollDiff = 1;
9604 break;
9606 case SB_PAGELEFT:
9607 nScrollDiff = -scrollInfo.nPage;
9608 break;
9610 case SB_PAGERIGHT:
9611 nScrollDiff = scrollInfo.nPage;
9612 break;
9614 case SB_THUMBPOSITION:
9615 case SB_THUMBTRACK:
9616 nScrollDiff = scrollInfo.nTrackPos - scrollInfo.nPos;
9617 break;
9619 default:
9620 nScrollDiff = 0;
9623 /* quit right away if pos isn't changing */
9624 if (nScrollDiff == 0) return 0;
9626 /* calculate new position, and handle overflows */
9627 nNewScrollPos = scrollInfo.nPos + nScrollDiff;
9628 if (nScrollDiff > 0) {
9629 if (nNewScrollPos < nOldScrollPos ||
9630 nNewScrollPos > scrollInfo.nMax)
9631 nNewScrollPos = scrollInfo.nMax;
9632 } else {
9633 if (nNewScrollPos > nOldScrollPos ||
9634 nNewScrollPos < scrollInfo.nMin)
9635 nNewScrollPos = scrollInfo.nMin;
9638 /* set the new position, and reread in case it changed */
9639 scrollInfo.fMask = SIF_POS;
9640 scrollInfo.nPos = nNewScrollPos;
9641 nNewScrollPos = SetScrollInfo(infoPtr->hwndSelf, SB_HORZ, &scrollInfo, TRUE);
9643 /* carry on only if it really changed */
9644 if (nNewScrollPos == nOldScrollPos) return 0;
9646 if (infoPtr->hwndHeader) LISTVIEW_UpdateHeaderSize(infoPtr, nNewScrollPos);
9648 /* now adjust to client coordinates */
9649 nScrollDiff = nOldScrollPos - nNewScrollPos;
9650 if (infoPtr->uView == LV_VIEW_LIST) nScrollDiff *= infoPtr->nItemWidth;
9652 /* and scroll the window */
9653 scroll_list(infoPtr, nScrollDiff, 0);
9655 return 0;
9658 static LRESULT LISTVIEW_MouseWheel(LISTVIEW_INFO *infoPtr, INT wheelDelta)
9660 INT gcWheelDelta = 0;
9661 INT pulScrollLines = 3;
9663 TRACE("(wheelDelta=%d)\n", wheelDelta);
9665 SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0);
9666 gcWheelDelta -= wheelDelta;
9668 switch(infoPtr->uView)
9670 case LV_VIEW_ICON:
9671 case LV_VIEW_SMALLICON:
9673 * listview should be scrolled by a multiple of 37 dependently on its dimension or its visible item number
9674 * should be fixed in the future.
9676 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, (gcWheelDelta < 0) ?
9677 -LISTVIEW_SCROLL_ICON_LINE_SIZE : LISTVIEW_SCROLL_ICON_LINE_SIZE);
9678 break;
9680 case LV_VIEW_DETAILS:
9681 if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines)
9683 int cLineScroll = min(LISTVIEW_GetCountPerColumn(infoPtr), pulScrollLines);
9684 cLineScroll *= (gcWheelDelta / WHEEL_DELTA);
9685 LISTVIEW_VScroll(infoPtr, SB_INTERNAL, cLineScroll);
9687 break;
9689 case LV_VIEW_LIST:
9690 LISTVIEW_HScroll(infoPtr, (gcWheelDelta < 0) ? SB_LINELEFT : SB_LINERIGHT, 0);
9691 break;
9693 return 0;
9696 /***
9697 * DESCRIPTION:
9698 * ???
9700 * PARAMETER(S):
9701 * [I] infoPtr : valid pointer to the listview structure
9702 * [I] nVirtualKey : virtual key
9703 * [I] lKeyData : key data
9705 * RETURN:
9706 * Zero
9708 static LRESULT LISTVIEW_KeyDown(LISTVIEW_INFO *infoPtr, INT nVirtualKey, LONG lKeyData)
9710 HWND hwndSelf = infoPtr->hwndSelf;
9711 INT nItem = -1;
9712 NMLVKEYDOWN nmKeyDown;
9714 TRACE("(nVirtualKey=%d, lKeyData=%d)\n", nVirtualKey, lKeyData);
9716 /* send LVN_KEYDOWN notification */
9717 nmKeyDown.wVKey = nVirtualKey;
9718 nmKeyDown.flags = 0;
9719 notify_hdr(infoPtr, LVN_KEYDOWN, &nmKeyDown.hdr);
9720 if (!IsWindow(hwndSelf))
9721 return 0;
9723 switch (nVirtualKey)
9725 case VK_SPACE:
9726 nItem = infoPtr->nFocusedItem;
9727 if (infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES)
9728 toggle_checkbox_state(infoPtr, infoPtr->nFocusedItem);
9729 break;
9731 case VK_RETURN:
9732 if ((infoPtr->nItemCount > 0) && (infoPtr->nFocusedItem != -1))
9734 if (!notify(infoPtr, NM_RETURN)) return 0;
9735 if (!notify(infoPtr, LVN_ITEMACTIVATE)) return 0;
9737 break;
9739 case VK_HOME:
9740 if (infoPtr->nItemCount > 0)
9741 nItem = 0;
9742 break;
9744 case VK_END:
9745 if (infoPtr->nItemCount > 0)
9746 nItem = infoPtr->nItemCount - 1;
9747 break;
9749 case VK_LEFT:
9750 nItem = LISTVIEW_GetNextItem(infoPtr, infoPtr->nFocusedItem, LVNI_TOLEFT);
9751 break;
9753 case VK_UP:
9754 nItem = LISTVIEW_GetNextItem(infoPtr, infoPtr->nFocusedItem, LVNI_ABOVE);
9755 break;
9757 case VK_RIGHT:
9758 nItem = LISTVIEW_GetNextItem(infoPtr, infoPtr->nFocusedItem, LVNI_TORIGHT);
9759 break;
9761 case VK_DOWN:
9762 nItem = LISTVIEW_GetNextItem(infoPtr, infoPtr->nFocusedItem, LVNI_BELOW);
9763 break;
9765 case VK_PRIOR:
9766 if (infoPtr->uView == LV_VIEW_DETAILS)
9768 INT topidx = LISTVIEW_GetTopIndex(infoPtr);
9769 if (infoPtr->nFocusedItem == topidx)
9770 nItem = topidx - LISTVIEW_GetCountPerColumn(infoPtr) + 1;
9771 else
9772 nItem = topidx;
9774 else
9775 nItem = infoPtr->nFocusedItem - LISTVIEW_GetCountPerColumn(infoPtr)
9776 * LISTVIEW_GetCountPerRow(infoPtr);
9777 if(nItem < 0) nItem = 0;
9778 break;
9780 case VK_NEXT:
9781 if (infoPtr->uView == LV_VIEW_DETAILS)
9783 INT topidx = LISTVIEW_GetTopIndex(infoPtr);
9784 INT cnt = LISTVIEW_GetCountPerColumn(infoPtr);
9785 if (infoPtr->nFocusedItem == topidx + cnt - 1)
9786 nItem = infoPtr->nFocusedItem + cnt - 1;
9787 else
9788 nItem = topidx + cnt - 1;
9790 else
9791 nItem = infoPtr->nFocusedItem + LISTVIEW_GetCountPerColumn(infoPtr)
9792 * LISTVIEW_GetCountPerRow(infoPtr);
9793 if(nItem >= infoPtr->nItemCount) nItem = infoPtr->nItemCount - 1;
9794 break;
9797 if ((nItem != -1) && (nItem != infoPtr->nFocusedItem || nVirtualKey == VK_SPACE))
9798 LISTVIEW_KeySelection(infoPtr, nItem, nVirtualKey == VK_SPACE);
9800 return 0;
9803 /***
9804 * DESCRIPTION:
9805 * Kills the focus.
9807 * PARAMETER(S):
9808 * [I] infoPtr : valid pointer to the listview structure
9810 * RETURN:
9811 * Zero
9813 static LRESULT LISTVIEW_KillFocus(LISTVIEW_INFO *infoPtr)
9815 TRACE("()\n");
9817 /* if we did not have the focus, there's nothing to do */
9818 if (!infoPtr->bFocus) return 0;
9820 /* send NM_KILLFOCUS notification */
9821 if (!notify(infoPtr, NM_KILLFOCUS)) return 0;
9823 /* if we have a focus rectangle, get rid of it */
9824 LISTVIEW_ShowFocusRect(infoPtr, FALSE);
9826 /* if have a marquee selection, stop it */
9827 if (infoPtr->bMarqueeSelect)
9829 /* Remove the marquee rectangle and release our mouse capture */
9830 LISTVIEW_InvalidateRect(infoPtr, &infoPtr->marqueeRect);
9831 ReleaseCapture();
9833 SetRect(&infoPtr->marqueeRect, 0, 0, 0, 0);
9835 infoPtr->bMarqueeSelect = FALSE;
9836 infoPtr->bScrolling = FALSE;
9837 KillTimer(infoPtr->hwndSelf, (UINT_PTR) infoPtr);
9840 /* set window focus flag */
9841 infoPtr->bFocus = FALSE;
9843 /* invalidate the selected items before resetting focus flag */
9844 LISTVIEW_InvalidateSelectedItems(infoPtr);
9846 return 0;
9849 /***
9850 * DESCRIPTION:
9851 * Processes double click messages (left mouse button).
9853 * PARAMETER(S):
9854 * [I] infoPtr : valid pointer to the listview structure
9855 * [I] wKey : key flag
9856 * [I] x,y : mouse coordinate
9858 * RETURN:
9859 * Zero
9861 static LRESULT LISTVIEW_LButtonDblClk(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
9863 LVHITTESTINFO htInfo;
9865 TRACE("(key=%hu, X=%u, Y=%u)\n", wKey, x, y);
9867 /* Cancel the item edition if any */
9868 if (infoPtr->itemEdit.fEnabled)
9870 KillTimer(infoPtr->hwndSelf, (UINT_PTR)&infoPtr->itemEdit);
9871 infoPtr->itemEdit.fEnabled = FALSE;
9874 /* send NM_RELEASEDCAPTURE notification */
9875 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
9877 htInfo.pt.x = x;
9878 htInfo.pt.y = y;
9880 /* send NM_DBLCLK notification */
9881 LISTVIEW_HitTest(infoPtr, &htInfo, TRUE, FALSE);
9882 if (!notify_click(infoPtr, NM_DBLCLK, &htInfo)) return 0;
9884 /* To send the LVN_ITEMACTIVATE, it must be on an Item */
9885 if(htInfo.iItem != -1) notify_itemactivate(infoPtr,&htInfo);
9887 return 0;
9890 /***
9891 * DESCRIPTION:
9892 * Processes mouse down messages (left mouse button).
9894 * PARAMETERS:
9895 * infoPtr [I ] valid pointer to the listview structure
9896 * wKey [I ] key flag
9897 * x,y [I ] mouse coordinate
9899 * RETURN:
9900 * Zero
9902 static LRESULT LISTVIEW_LButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
9904 LVHITTESTINFO lvHitTestInfo;
9905 static BOOL bGroupSelect = TRUE;
9906 POINT pt = { x, y };
9907 INT nItem;
9909 TRACE("(key=%hu, X=%u, Y=%u)\n", wKey, x, y);
9911 /* send NM_RELEASEDCAPTURE notification */
9912 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
9914 /* set left button down flag and record the click position */
9915 infoPtr->bLButtonDown = TRUE;
9916 infoPtr->ptClickPos = pt;
9917 infoPtr->bDragging = FALSE;
9918 infoPtr->bMarqueeSelect = FALSE;
9919 infoPtr->bScrolling = FALSE;
9921 lvHitTestInfo.pt.x = x;
9922 lvHitTestInfo.pt.y = y;
9924 nItem = LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
9925 TRACE("at %s, nItem=%d\n", wine_dbgstr_point(&pt), nItem);
9926 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
9928 if ((infoPtr->dwLvExStyle & LVS_EX_CHECKBOXES) && (lvHitTestInfo.flags & LVHT_ONITEMSTATEICON))
9930 toggle_checkbox_state(infoPtr, nItem);
9931 return 0;
9934 if (infoPtr->dwStyle & LVS_SINGLESEL)
9936 if (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
9937 infoPtr->nEditLabelItem = nItem;
9938 else
9939 LISTVIEW_SetSelection(infoPtr, nItem);
9941 else
9943 if ((wKey & MK_CONTROL) && (wKey & MK_SHIFT))
9945 if (bGroupSelect)
9947 if (!LISTVIEW_AddGroupSelection(infoPtr, nItem)) return 0;
9948 LISTVIEW_SetItemFocus(infoPtr, nItem);
9949 infoPtr->nSelectionMark = nItem;
9951 else
9953 LVITEMW item;
9955 item.state = LVIS_SELECTED | LVIS_FOCUSED;
9956 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
9958 LISTVIEW_SetItemState(infoPtr,nItem,&item);
9959 infoPtr->nSelectionMark = nItem;
9962 else if (wKey & MK_CONTROL)
9964 LVITEMW item;
9966 bGroupSelect = (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED) == 0);
9968 item.state = (bGroupSelect ? LVIS_SELECTED : 0) | LVIS_FOCUSED;
9969 item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
9970 LISTVIEW_SetItemState(infoPtr, nItem, &item);
9971 infoPtr->nSelectionMark = nItem;
9973 else if (wKey & MK_SHIFT)
9975 LISTVIEW_SetGroupSelection(infoPtr, nItem);
9977 else
9979 if (LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
9981 infoPtr->nEditLabelItem = nItem;
9982 infoPtr->nLButtonDownItem = nItem;
9984 LISTVIEW_SetItemFocus(infoPtr, nItem);
9986 else
9987 /* set selection (clears other pre-existing selections) */
9988 LISTVIEW_SetSelection(infoPtr, nItem);
9992 if (infoPtr->dwLvExStyle & LVS_EX_ONECLICKACTIVATE)
9993 if(lvHitTestInfo.iItem != -1) notify_itemactivate(infoPtr,&lvHitTestInfo);
9995 else
9997 if (!infoPtr->bFocus)
9998 SetFocus(infoPtr->hwndSelf);
10000 /* remove all selections */
10001 if (!(wKey & MK_CONTROL) && !(wKey & MK_SHIFT))
10002 LISTVIEW_DeselectAll(infoPtr);
10003 ReleaseCapture();
10006 return 0;
10009 /***
10010 * DESCRIPTION:
10011 * Processes mouse up messages (left mouse button).
10013 * PARAMETERS:
10014 * infoPtr [I ] valid pointer to the listview structure
10015 * wKey [I ] key flag
10016 * x,y [I ] mouse coordinate
10018 * RETURN:
10019 * Zero
10021 static LRESULT LISTVIEW_LButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
10023 LVHITTESTINFO lvHitTestInfo;
10025 TRACE("(key=%hu, X=%u, Y=%u)\n", wKey, x, y);
10027 if (!infoPtr->bLButtonDown) return 0;
10029 lvHitTestInfo.pt.x = x;
10030 lvHitTestInfo.pt.y = y;
10032 /* send NM_CLICK notification */
10033 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
10034 if (!notify_click(infoPtr, NM_CLICK, &lvHitTestInfo)) return 0;
10036 /* set left button flag */
10037 infoPtr->bLButtonDown = FALSE;
10039 /* set a single selection, reset others */
10040 if(lvHitTestInfo.iItem == infoPtr->nLButtonDownItem && lvHitTestInfo.iItem != -1)
10041 LISTVIEW_SetSelection(infoPtr, infoPtr->nLButtonDownItem);
10042 infoPtr->nLButtonDownItem = -1;
10044 if (infoPtr->bDragging || infoPtr->bMarqueeSelect)
10046 /* Remove the marquee rectangle and release our mouse capture */
10047 if (infoPtr->bMarqueeSelect)
10049 LISTVIEW_InvalidateRect(infoPtr, &infoPtr->marqueeDrawRect);
10050 ReleaseCapture();
10053 SetRect(&infoPtr->marqueeRect, 0, 0, 0, 0);
10054 SetRect(&infoPtr->marqueeDrawRect, 0, 0, 0, 0);
10056 infoPtr->bDragging = FALSE;
10057 infoPtr->bMarqueeSelect = FALSE;
10058 infoPtr->bScrolling = FALSE;
10060 KillTimer(infoPtr->hwndSelf, (UINT_PTR) infoPtr);
10061 return 0;
10064 /* if we clicked on a selected item, edit the label */
10065 if(lvHitTestInfo.iItem == infoPtr->nEditLabelItem && (lvHitTestInfo.flags & LVHT_ONITEMLABEL))
10067 /* we want to make sure the user doesn't want to do a double click. So we will
10068 * delay the edit. WM_LBUTTONDBLCLICK will cancel the timer
10070 infoPtr->itemEdit.fEnabled = TRUE;
10071 infoPtr->itemEdit.iItem = lvHitTestInfo.iItem;
10072 SetTimer(infoPtr->hwndSelf,
10073 (UINT_PTR)&infoPtr->itemEdit,
10074 GetDoubleClickTime(),
10075 LISTVIEW_DelayedEditItem);
10078 if (!infoPtr->bFocus)
10079 SetFocus(infoPtr->hwndSelf);
10081 return 0;
10084 /***
10085 * DESCRIPTION:
10086 * Destroys the listview control (called after WM_DESTROY).
10088 * PARAMETER(S):
10089 * [I] infoPtr : valid pointer to the listview structure
10091 * RETURN:
10092 * Zero
10094 static LRESULT LISTVIEW_NCDestroy(LISTVIEW_INFO *infoPtr)
10096 INT i;
10098 TRACE("()\n");
10100 /* destroy data structure */
10101 DPA_Destroy(infoPtr->hdpaItems);
10102 DPA_Destroy(infoPtr->hdpaItemIds);
10103 DPA_Destroy(infoPtr->hdpaPosX);
10104 DPA_Destroy(infoPtr->hdpaPosY);
10105 /* columns */
10106 for (i = 0; i < DPA_GetPtrCount(infoPtr->hdpaColumns); i++)
10107 Free(DPA_GetPtr(infoPtr->hdpaColumns, i));
10108 DPA_Destroy(infoPtr->hdpaColumns);
10109 ranges_destroy(infoPtr->selectionRanges);
10111 /* destroy image lists */
10112 if (!(infoPtr->dwStyle & LVS_SHAREIMAGELISTS))
10114 ImageList_Destroy(infoPtr->himlNormal);
10115 ImageList_Destroy(infoPtr->himlSmall);
10116 ImageList_Destroy(infoPtr->himlState);
10119 /* destroy font, bkgnd brush */
10120 infoPtr->hFont = 0;
10121 if (infoPtr->hDefaultFont) DeleteObject(infoPtr->hDefaultFont);
10122 if (infoPtr->clrBk != CLR_NONE) DeleteObject(infoPtr->hBkBrush);
10124 SetWindowLongPtrW(infoPtr->hwndSelf, 0, 0);
10126 /* free listview info pointer*/
10127 Free(infoPtr);
10129 return 0;
10132 /***
10133 * DESCRIPTION:
10134 * Handles notifications.
10136 * PARAMETER(S):
10137 * [I] infoPtr : valid pointer to the listview structure
10138 * [I] lpnmhdr : notification information
10140 * RETURN:
10141 * Zero
10143 static LRESULT LISTVIEW_Notify(LISTVIEW_INFO *infoPtr, const NMHDR *lpnmhdr)
10145 HWND hwndSelf = infoPtr->hwndSelf;
10146 const NMHEADERW *lpnmh;
10148 TRACE("(lpnmhdr=%p)\n", lpnmhdr);
10150 if (!lpnmhdr || lpnmhdr->hwndFrom != infoPtr->hwndHeader) return 0;
10152 /* remember: HDN_LAST < HDN_FIRST */
10153 if (lpnmhdr->code > HDN_FIRST || lpnmhdr->code < HDN_LAST) return 0;
10154 lpnmh = (const NMHEADERW *)lpnmhdr;
10156 if (lpnmh->iItem < 0 || lpnmh->iItem >= DPA_GetPtrCount(infoPtr->hdpaColumns)) return 0;
10158 switch (lpnmhdr->code)
10160 case HDN_TRACKW:
10161 case HDN_TRACKA:
10163 COLUMN_INFO *lpColumnInfo;
10164 POINT ptOrigin;
10165 INT x;
10167 if (!lpnmh->pitem || !(lpnmh->pitem->mask & HDI_WIDTH))
10168 break;
10170 /* remove the old line (if any) */
10171 LISTVIEW_DrawTrackLine(infoPtr);
10173 /* compute & draw the new line */
10174 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpnmh->iItem);
10175 x = lpColumnInfo->rcHeader.left + lpnmh->pitem->cxy;
10176 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
10177 infoPtr->xTrackLine = x + ptOrigin.x;
10178 LISTVIEW_DrawTrackLine(infoPtr);
10179 break;
10182 case HDN_ENDTRACKA:
10183 case HDN_ENDTRACKW:
10184 /* remove the track line (if any) */
10185 LISTVIEW_DrawTrackLine(infoPtr);
10186 infoPtr->xTrackLine = -1;
10187 break;
10189 case HDN_BEGINDRAG:
10190 notify_forward_header(infoPtr, lpnmh);
10191 return (infoPtr->dwLvExStyle & LVS_EX_HEADERDRAGDROP) == 0;
10193 case HDN_ENDDRAG:
10194 infoPtr->colRectsDirty = TRUE;
10195 LISTVIEW_InvalidateList(infoPtr);
10196 notify_forward_header(infoPtr, lpnmh);
10197 return FALSE;
10199 case HDN_ITEMCHANGINGW:
10200 case HDN_ITEMCHANGINGA:
10201 return notify_forward_header(infoPtr, lpnmh);
10203 case HDN_ITEMCHANGEDW:
10204 case HDN_ITEMCHANGEDA:
10206 COLUMN_INFO *lpColumnInfo;
10207 HDITEMW hdi;
10208 INT dx, cxy;
10210 notify_forward_header(infoPtr, lpnmh);
10211 if (!IsWindow(hwndSelf))
10212 break;
10214 if (!lpnmh->pitem || !(lpnmh->pitem->mask & HDI_WIDTH))
10216 hdi.mask = HDI_WIDTH;
10217 if (!SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, lpnmh->iItem, (LPARAM)&hdi)) return 0;
10218 cxy = hdi.cxy;
10220 else
10221 cxy = lpnmh->pitem->cxy;
10223 /* determine how much we change since the last know position */
10224 lpColumnInfo = LISTVIEW_GetColumnInfo(infoPtr, lpnmh->iItem);
10225 dx = cxy - (lpColumnInfo->rcHeader.right - lpColumnInfo->rcHeader.left);
10226 if (dx != 0)
10228 lpColumnInfo->rcHeader.right += dx;
10230 hdi.mask = HDI_ORDER;
10231 SendMessageW(infoPtr->hwndHeader, HDM_GETITEMW, lpnmh->iItem, (LPARAM)&hdi);
10233 /* not the rightmost one */
10234 if (hdi.iOrder + 1 < DPA_GetPtrCount(infoPtr->hdpaColumns))
10236 INT nIndex = SendMessageW(infoPtr->hwndHeader, HDM_ORDERTOINDEX,
10237 hdi.iOrder + 1, 0);
10238 LISTVIEW_ScrollColumns(infoPtr, nIndex, dx);
10240 else
10242 /* only needs to update the scrolls */
10243 infoPtr->nItemWidth += dx;
10244 LISTVIEW_UpdateScroll(infoPtr);
10246 LISTVIEW_UpdateItemSize(infoPtr);
10247 if (infoPtr->uView == LV_VIEW_DETAILS && is_redrawing(infoPtr))
10249 POINT ptOrigin;
10250 RECT rcCol = lpColumnInfo->rcHeader;
10252 LISTVIEW_GetOrigin(infoPtr, &ptOrigin);
10253 OffsetRect(&rcCol, ptOrigin.x, 0);
10255 rcCol.top = infoPtr->rcList.top;
10256 rcCol.bottom = infoPtr->rcList.bottom;
10258 /* resizing left-aligned columns leaves most of the left side untouched */
10259 if ((lpColumnInfo->fmt & LVCFMT_JUSTIFYMASK) == LVCFMT_LEFT)
10261 INT nMaxDirty = infoPtr->nEllipsisWidth + infoPtr->ntmMaxCharWidth;
10262 if (dx > 0)
10263 nMaxDirty += dx;
10264 rcCol.left = max (rcCol.left, rcCol.right - nMaxDirty);
10267 /* when shrinking the last column clear the now unused field */
10268 if (hdi.iOrder == DPA_GetPtrCount(infoPtr->hdpaColumns) - 1)
10270 RECT right;
10272 rcCol.right -= dx;
10274 /* deal with right from rightmost column area */
10275 right.left = rcCol.right;
10276 right.top = rcCol.top;
10277 right.bottom = rcCol.bottom;
10278 right.right = infoPtr->rcList.right;
10280 LISTVIEW_InvalidateRect(infoPtr, &right);
10283 LISTVIEW_InvalidateRect(infoPtr, &rcCol);
10287 break;
10289 case HDN_ITEMCLICKW:
10290 case HDN_ITEMCLICKA:
10292 /* Handle sorting by Header Column */
10293 NMLISTVIEW nmlv;
10295 ZeroMemory(&nmlv, sizeof(NMLISTVIEW));
10296 nmlv.iItem = -1;
10297 nmlv.iSubItem = lpnmh->iItem;
10298 notify_listview(infoPtr, LVN_COLUMNCLICK, &nmlv);
10299 notify_forward_header(infoPtr, lpnmh);
10301 break;
10303 case HDN_DIVIDERDBLCLICKW:
10304 case HDN_DIVIDERDBLCLICKA:
10305 /* FIXME: for LVS_EX_HEADERINALLVIEWS and not LV_VIEW_DETAILS
10306 we should use LVSCW_AUTOSIZE_USEHEADER, helper rework or
10307 split needed for that */
10308 LISTVIEW_SetColumnWidth(infoPtr, lpnmh->iItem, LVSCW_AUTOSIZE);
10309 notify_forward_header(infoPtr, lpnmh);
10310 break;
10313 return 0;
10316 /***
10317 * DESCRIPTION:
10318 * Paint non-client area of control.
10320 * PARAMETER(S):
10321 * [I] infoPtr : valid pointer to the listview structureof the sender
10322 * [I] region : update region
10324 * RETURN:
10325 * TRUE - frame was painted
10326 * FALSE - call default window proc
10328 static BOOL LISTVIEW_NCPaint(const LISTVIEW_INFO *infoPtr, HRGN region)
10330 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
10331 HDC dc;
10332 RECT r;
10333 HRGN cliprgn;
10334 int cxEdge = GetSystemMetrics (SM_CXEDGE),
10335 cyEdge = GetSystemMetrics (SM_CYEDGE);
10337 if (!theme)
10338 return DefWindowProcW (infoPtr->hwndSelf, WM_NCPAINT, (WPARAM)region, 0);
10340 GetWindowRect(infoPtr->hwndSelf, &r);
10342 cliprgn = CreateRectRgn (r.left + cxEdge, r.top + cyEdge,
10343 r.right - cxEdge, r.bottom - cyEdge);
10344 if (region != (HRGN)1)
10345 CombineRgn (cliprgn, cliprgn, region, RGN_AND);
10346 OffsetRect(&r, -r.left, -r.top);
10348 dc = GetDCEx(infoPtr->hwndSelf, region, DCX_WINDOW|DCX_INTERSECTRGN);
10349 OffsetRect(&r, -r.left, -r.top);
10351 if (IsThemeBackgroundPartiallyTransparent (theme, 0, 0))
10352 DrawThemeParentBackground(infoPtr->hwndSelf, dc, &r);
10353 DrawThemeBackground (theme, dc, 0, 0, &r, 0);
10354 ReleaseDC(infoPtr->hwndSelf, dc);
10356 /* Call default proc to get the scrollbars etc. painted */
10357 DefWindowProcW (infoPtr->hwndSelf, WM_NCPAINT, (WPARAM)cliprgn, 0);
10359 return FALSE;
10362 /***
10363 * DESCRIPTION:
10364 * Determines the type of structure to use.
10366 * PARAMETER(S):
10367 * [I] infoPtr : valid pointer to the listview structureof the sender
10368 * [I] hwndFrom : listview window handle
10369 * [I] nCommand : command specifying the nature of the WM_NOTIFYFORMAT
10371 * RETURN:
10372 * Zero
10374 static LRESULT LISTVIEW_NotifyFormat(LISTVIEW_INFO *infoPtr, HWND hwndFrom, INT nCommand)
10376 TRACE("(hwndFrom=%p, nCommand=%d)\n", hwndFrom, nCommand);
10378 if (nCommand == NF_REQUERY)
10379 infoPtr->notifyFormat = SendMessageW(infoPtr->hwndNotify, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
10381 return infoPtr->notifyFormat;
10384 /***
10385 * DESCRIPTION:
10386 * Paints/Repaints the listview control. Internal use.
10388 * PARAMETER(S):
10389 * [I] infoPtr : valid pointer to the listview structure
10390 * [I] hdc : device context handle
10392 * RETURN:
10393 * Zero
10395 static LRESULT LISTVIEW_Paint(LISTVIEW_INFO *infoPtr, HDC hdc)
10397 TRACE("(hdc=%p)\n", hdc);
10399 if (infoPtr->bNoItemMetrics && infoPtr->nItemCount)
10401 infoPtr->bNoItemMetrics = FALSE;
10402 LISTVIEW_UpdateItemSize(infoPtr);
10403 if (infoPtr->uView == LV_VIEW_ICON || infoPtr->uView == LV_VIEW_SMALLICON)
10404 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
10405 LISTVIEW_UpdateScroll(infoPtr);
10408 if (infoPtr->hwndHeader) UpdateWindow(infoPtr->hwndHeader);
10410 if (hdc)
10411 LISTVIEW_Refresh(infoPtr, hdc, NULL);
10412 else
10414 PAINTSTRUCT ps;
10416 hdc = BeginPaint(infoPtr->hwndSelf, &ps);
10417 if (!hdc) return 1;
10418 LISTVIEW_Refresh(infoPtr, hdc, ps.fErase ? &ps.rcPaint : NULL);
10419 EndPaint(infoPtr->hwndSelf, &ps);
10422 return 0;
10425 /***
10426 * DESCRIPTION:
10427 * Paints/Repaints the listview control, WM_PAINT handler.
10429 * PARAMETER(S):
10430 * [I] infoPtr : valid pointer to the listview structure
10431 * [I] hdc : device context handle
10433 * RETURN:
10434 * Zero
10436 static inline LRESULT LISTVIEW_WMPaint(LISTVIEW_INFO *infoPtr, HDC hdc)
10438 TRACE("(hdc=%p)\n", hdc);
10440 if (!is_redrawing(infoPtr))
10441 return DefWindowProcW (infoPtr->hwndSelf, WM_PAINT, (WPARAM)hdc, 0);
10443 return LISTVIEW_Paint(infoPtr, hdc);
10446 /***
10447 * DESCRIPTION:
10448 * Paints/Repaints the listview control.
10450 * PARAMETER(S):
10451 * [I] infoPtr : valid pointer to the listview structure
10452 * [I] hdc : device context handle
10453 * [I] options : drawing options
10455 * RETURN:
10456 * Zero
10458 static LRESULT LISTVIEW_PrintClient(LISTVIEW_INFO *infoPtr, HDC hdc, DWORD options)
10460 FIXME("Partial Stub: (hdc=%p options=0x%08x)\n", hdc, options);
10462 if ((options & PRF_CHECKVISIBLE) && !IsWindowVisible(infoPtr->hwndSelf))
10463 return 0;
10465 if (options & PRF_ERASEBKGND)
10466 LISTVIEW_EraseBkgnd(infoPtr, hdc);
10468 if (options & PRF_CLIENT)
10469 LISTVIEW_Paint(infoPtr, hdc);
10471 return 0;
10475 /***
10476 * DESCRIPTION:
10477 * Processes double click messages (right mouse button).
10479 * PARAMETER(S):
10480 * [I] infoPtr : valid pointer to the listview structure
10481 * [I] wKey : key flag
10482 * [I] x,y : mouse coordinate
10484 * RETURN:
10485 * Zero
10487 static LRESULT LISTVIEW_RButtonDblClk(const LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
10489 LVHITTESTINFO lvHitTestInfo;
10491 TRACE("(key=%hu,X=%u,Y=%u)\n", wKey, x, y);
10493 /* send NM_RELEASEDCAPTURE notification */
10494 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
10496 /* send NM_RDBLCLK notification */
10497 lvHitTestInfo.pt.x = x;
10498 lvHitTestInfo.pt.y = y;
10499 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
10500 notify_click(infoPtr, NM_RDBLCLK, &lvHitTestInfo);
10502 return 0;
10505 /***
10506 * DESCRIPTION:
10507 * Processes mouse down messages (right mouse button).
10509 * PARAMETER(S):
10510 * [I] infoPtr : valid pointer to the listview structure
10511 * [I] wKey : key flag
10512 * [I] x,y : mouse coordinate
10514 * RETURN:
10515 * Zero
10517 static LRESULT LISTVIEW_RButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
10519 LVHITTESTINFO lvHitTestInfo;
10520 INT nItem;
10522 TRACE("(key=%hu,X=%u,Y=%u)\n", wKey, x, y);
10524 /* send NM_RELEASEDCAPTURE notification */
10525 if (!notify(infoPtr, NM_RELEASEDCAPTURE)) return 0;
10527 /* make sure the listview control window has the focus */
10528 if (!infoPtr->bFocus) SetFocus(infoPtr->hwndSelf);
10530 /* set right button down flag */
10531 infoPtr->bRButtonDown = TRUE;
10533 /* determine the index of the selected item */
10534 lvHitTestInfo.pt.x = x;
10535 lvHitTestInfo.pt.y = y;
10536 nItem = LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, TRUE);
10538 if ((nItem >= 0) && (nItem < infoPtr->nItemCount))
10540 LISTVIEW_SetItemFocus(infoPtr, nItem);
10541 if (!((wKey & MK_SHIFT) || (wKey & MK_CONTROL)) &&
10542 !LISTVIEW_GetItemState(infoPtr, nItem, LVIS_SELECTED))
10543 LISTVIEW_SetSelection(infoPtr, nItem);
10545 else
10547 LISTVIEW_DeselectAll(infoPtr);
10550 return 0;
10553 /***
10554 * DESCRIPTION:
10555 * Processes mouse up messages (right mouse button).
10557 * PARAMETER(S):
10558 * [I] infoPtr : valid pointer to the listview structure
10559 * [I] wKey : key flag
10560 * [I] x,y : mouse coordinate
10562 * RETURN:
10563 * Zero
10565 static LRESULT LISTVIEW_RButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT y)
10567 LVHITTESTINFO lvHitTestInfo;
10568 POINT pt;
10570 TRACE("(key=%hu,X=%u,Y=%u)\n", wKey, x, y);
10572 if (!infoPtr->bRButtonDown) return 0;
10574 /* set button flag */
10575 infoPtr->bRButtonDown = FALSE;
10577 /* Send NM_RCLICK notification */
10578 lvHitTestInfo.pt.x = x;
10579 lvHitTestInfo.pt.y = y;
10580 LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, TRUE, FALSE);
10581 if (!notify_click(infoPtr, NM_RCLICK, &lvHitTestInfo)) return 0;
10583 /* Change to screen coordinate for WM_CONTEXTMENU */
10584 pt = lvHitTestInfo.pt;
10585 ClientToScreen(infoPtr->hwndSelf, &pt);
10587 /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
10588 SendMessageW(infoPtr->hwndSelf, WM_CONTEXTMENU,
10589 (WPARAM)infoPtr->hwndSelf, MAKELPARAM(pt.x, pt.y));
10591 return 0;
10595 /***
10596 * DESCRIPTION:
10597 * Sets the cursor.
10599 * PARAMETER(S):
10600 * [I] infoPtr : valid pointer to the listview structure
10601 * [I] hwnd : window handle of window containing the cursor
10602 * [I] nHittest : hit-test code
10603 * [I] wMouseMsg : ideintifier of the mouse message
10605 * RETURN:
10606 * TRUE if cursor is set
10607 * FALSE otherwise
10609 static BOOL LISTVIEW_SetCursor(const LISTVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
10611 LVHITTESTINFO lvHitTestInfo;
10613 if (!LISTVIEW_IsHotTracking(infoPtr)) goto forward;
10615 if (!infoPtr->hHotCursor) goto forward;
10617 GetCursorPos(&lvHitTestInfo.pt);
10618 if (LISTVIEW_HitTest(infoPtr, &lvHitTestInfo, FALSE, FALSE) < 0) goto forward;
10620 SetCursor(infoPtr->hHotCursor);
10622 return TRUE;
10624 forward:
10626 return DefWindowProcW(infoPtr->hwndSelf, WM_SETCURSOR, wParam, lParam);
10629 /***
10630 * DESCRIPTION:
10631 * Sets the focus.
10633 * PARAMETER(S):
10634 * [I] infoPtr : valid pointer to the listview structure
10635 * [I] hwndLoseFocus : handle of previously focused window
10637 * RETURN:
10638 * Zero
10640 static LRESULT LISTVIEW_SetFocus(LISTVIEW_INFO *infoPtr, HWND hwndLoseFocus)
10642 TRACE("(hwndLoseFocus=%p)\n", hwndLoseFocus);
10644 /* if we have the focus already, there's nothing to do */
10645 if (infoPtr->bFocus) return 0;
10647 /* send NM_SETFOCUS notification */
10648 if (!notify(infoPtr, NM_SETFOCUS)) return 0;
10650 /* set window focus flag */
10651 infoPtr->bFocus = TRUE;
10653 /* put the focus rect back on */
10654 LISTVIEW_ShowFocusRect(infoPtr, TRUE);
10656 /* redraw all visible selected items */
10657 LISTVIEW_InvalidateSelectedItems(infoPtr);
10659 return 0;
10662 /***
10663 * DESCRIPTION:
10664 * Sets the font.
10666 * PARAMETER(S):
10667 * [I] infoPtr : valid pointer to the listview structure
10668 * [I] fRedraw : font handle
10669 * [I] fRedraw : redraw flag
10671 * RETURN:
10672 * Zero
10674 static LRESULT LISTVIEW_SetFont(LISTVIEW_INFO *infoPtr, HFONT hFont, WORD fRedraw)
10676 HFONT oldFont = infoPtr->hFont;
10678 TRACE("(hfont=%p,redraw=%hu)\n", hFont, fRedraw);
10680 infoPtr->hFont = hFont ? hFont : infoPtr->hDefaultFont;
10681 if (infoPtr->hFont == oldFont) return 0;
10683 LISTVIEW_SaveTextMetrics(infoPtr);
10685 if (infoPtr->uView == LV_VIEW_DETAILS)
10687 SendMessageW(infoPtr->hwndHeader, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(fRedraw, 0));
10688 LISTVIEW_UpdateSize(infoPtr);
10689 LISTVIEW_UpdateScroll(infoPtr);
10692 if (fRedraw) LISTVIEW_InvalidateList(infoPtr);
10694 return 0;
10697 /***
10698 * DESCRIPTION:
10699 * Message handling for WM_SETREDRAW.
10700 * For the Listview, it invalidates the entire window (the doc specifies otherwise)
10702 * PARAMETER(S):
10703 * [I] infoPtr : valid pointer to the listview structure
10704 * [I] bRedraw: state of redraw flag
10706 * RETURN:
10707 * DefWinProc return value
10709 static LRESULT LISTVIEW_SetRedraw(LISTVIEW_INFO *infoPtr, BOOL bRedraw)
10711 TRACE("infoPtr->bRedraw=%d, bRedraw=%d\n", infoPtr->bRedraw, bRedraw);
10713 /* we cannot use straight equality here because _any_ non-zero value is TRUE */
10714 if ((infoPtr->bRedraw && bRedraw) || (!infoPtr->bRedraw && !bRedraw)) return 0;
10716 infoPtr->bRedraw = bRedraw;
10718 if(!bRedraw) return 0;
10720 if (is_autoarrange(infoPtr))
10721 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
10722 LISTVIEW_UpdateScroll(infoPtr);
10724 /* despite what the WM_SETREDRAW docs says, apps expect us
10725 * to invalidate the listview here... stupid! */
10726 LISTVIEW_InvalidateList(infoPtr);
10728 return 0;
10731 /***
10732 * DESCRIPTION:
10733 * Resizes the listview control. This function processes WM_SIZE
10734 * messages. At this time, the width and height are not used.
10736 * PARAMETER(S):
10737 * [I] infoPtr : valid pointer to the listview structure
10738 * [I] Width : new width
10739 * [I] Height : new height
10741 * RETURN:
10742 * Zero
10744 static LRESULT LISTVIEW_Size(LISTVIEW_INFO *infoPtr, int Width, int Height)
10746 RECT rcOld = infoPtr->rcList;
10748 TRACE("(width=%d, height=%d)\n", Width, Height);
10750 LISTVIEW_UpdateSize(infoPtr);
10751 if (EqualRect(&rcOld, &infoPtr->rcList)) return 0;
10753 /* do not bother with display related stuff if we're not redrawing */
10754 if (!is_redrawing(infoPtr)) return 0;
10756 if (is_autoarrange(infoPtr))
10757 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
10759 LISTVIEW_UpdateScroll(infoPtr);
10761 /* refresh all only for lists whose height changed significantly */
10762 if ((infoPtr->uView == LV_VIEW_LIST) &&
10763 (rcOld.bottom - rcOld.top) / infoPtr->nItemHeight !=
10764 (infoPtr->rcList.bottom - infoPtr->rcList.top) / infoPtr->nItemHeight)
10765 LISTVIEW_InvalidateList(infoPtr);
10767 return 0;
10770 /***
10771 * DESCRIPTION:
10772 * Sets the size information.
10774 * PARAMETER(S):
10775 * [I] infoPtr : valid pointer to the listview structure
10777 * RETURN:
10778 * None
10780 static void LISTVIEW_UpdateSize(LISTVIEW_INFO *infoPtr)
10782 TRACE("uView=%d, rcList(old)=%s\n", infoPtr->uView, wine_dbgstr_rect(&infoPtr->rcList));
10784 GetClientRect(infoPtr->hwndSelf, &infoPtr->rcList);
10786 if (infoPtr->uView == LV_VIEW_LIST)
10788 /* Apparently the "LIST" style is supposed to have the same
10789 * number of items in a column even if there is no scroll bar.
10790 * Since if a scroll bar already exists then the bottom is already
10791 * reduced, only reduce if the scroll bar does not currently exist.
10792 * The "2" is there to mimic the native control. I think it may be
10793 * related to either padding or edges. (GLA 7/2002)
10795 if (!(infoPtr->dwStyle & WS_HSCROLL))
10796 infoPtr->rcList.bottom -= GetSystemMetrics(SM_CYHSCROLL);
10797 infoPtr->rcList.bottom = max (infoPtr->rcList.bottom - 2, 0);
10800 /* if control created invisible header isn't created */
10801 if (infoPtr->hwndHeader)
10803 HDLAYOUT hl;
10804 WINDOWPOS wp;
10806 hl.prc = &infoPtr->rcList;
10807 hl.pwpos = &wp;
10808 SendMessageW( infoPtr->hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hl );
10809 TRACE(" wp.flags=0x%08x, wp=%d,%d (%dx%d)\n", wp.flags, wp.x, wp.y, wp.cx, wp.cy);
10811 if (LISTVIEW_IsHeaderEnabled(infoPtr))
10812 wp.flags |= SWP_SHOWWINDOW;
10813 else
10815 wp.flags |= SWP_HIDEWINDOW;
10816 wp.cy = 0;
10819 SetWindowPos(wp.hwnd, wp.hwndInsertAfter, wp.x, wp.y, wp.cx, wp.cy, wp.flags);
10820 TRACE(" after SWP wp=%d,%d (%dx%d)\n", wp.x, wp.y, wp.cx, wp.cy);
10822 infoPtr->rcList.top = max(wp.cy, 0);
10824 /* extra padding for grid */
10825 if (infoPtr->uView == LV_VIEW_DETAILS && infoPtr->dwLvExStyle & LVS_EX_GRIDLINES)
10826 infoPtr->rcList.top += 2;
10828 TRACE(" rcList=%s\n", wine_dbgstr_rect(&infoPtr->rcList));
10831 /***
10832 * DESCRIPTION:
10833 * Processes WM_STYLECHANGED messages.
10835 * PARAMETER(S):
10836 * [I] infoPtr : valid pointer to the listview structure
10837 * [I] wStyleType : window style type (normal or extended)
10838 * [I] lpss : window style information
10840 * RETURN:
10841 * Zero
10843 static INT LISTVIEW_StyleChanged(LISTVIEW_INFO *infoPtr, WPARAM wStyleType,
10844 const STYLESTRUCT *lpss)
10846 UINT uNewView = lpss->styleNew & LVS_TYPEMASK;
10847 UINT uOldView = lpss->styleOld & LVS_TYPEMASK;
10848 UINT style;
10850 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
10851 wStyleType, lpss->styleOld, lpss->styleNew);
10853 if (wStyleType != GWL_STYLE) return 0;
10855 infoPtr->dwStyle = lpss->styleNew;
10856 map_style_view(infoPtr);
10858 if (((lpss->styleOld & WS_HSCROLL) != 0)&&
10859 ((lpss->styleNew & WS_HSCROLL) == 0))
10860 ShowScrollBar(infoPtr->hwndSelf, SB_HORZ, FALSE);
10862 if (((lpss->styleOld & WS_VSCROLL) != 0)&&
10863 ((lpss->styleNew & WS_VSCROLL) == 0))
10864 ShowScrollBar(infoPtr->hwndSelf, SB_VERT, FALSE);
10866 if (uNewView != uOldView)
10868 SIZE oldIconSize = infoPtr->iconSize;
10869 HIMAGELIST himl;
10871 SendMessageW(infoPtr->hwndEdit, WM_KILLFOCUS, 0, 0);
10872 ShowWindow(infoPtr->hwndHeader, SW_HIDE);
10874 ShowScrollBar(infoPtr->hwndSelf, SB_BOTH, FALSE);
10875 SetRectEmpty(&infoPtr->rcFocus);
10877 himl = (uNewView == LVS_ICON ? infoPtr->himlNormal : infoPtr->himlSmall);
10878 set_icon_size(&infoPtr->iconSize, himl, uNewView != LVS_ICON);
10880 if (uNewView == LVS_ICON)
10882 if ((infoPtr->iconSize.cx != oldIconSize.cx) || (infoPtr->iconSize.cy != oldIconSize.cy))
10884 TRACE("icon old size=(%d,%d), new size=(%d,%d)\n",
10885 oldIconSize.cx, oldIconSize.cy, infoPtr->iconSize.cx, infoPtr->iconSize.cy);
10886 LISTVIEW_SetIconSpacing(infoPtr, 0, 0);
10889 else if (uNewView == LVS_REPORT)
10891 HDLAYOUT hl;
10892 WINDOWPOS wp;
10894 LISTVIEW_CreateHeader( infoPtr );
10896 hl.prc = &infoPtr->rcList;
10897 hl.pwpos = &wp;
10898 SendMessageW( infoPtr->hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hl );
10899 SetWindowPos(infoPtr->hwndHeader, infoPtr->hwndSelf, wp.x, wp.y, wp.cx, wp.cy,
10900 wp.flags | ((infoPtr->dwStyle & LVS_NOCOLUMNHEADER)
10901 ? SWP_HIDEWINDOW : SWP_SHOWWINDOW));
10904 LISTVIEW_UpdateItemSize(infoPtr);
10907 if (uNewView == LVS_REPORT || infoPtr->dwLvExStyle & LVS_EX_HEADERINALLVIEWS)
10909 if ((lpss->styleOld ^ lpss->styleNew) & LVS_NOCOLUMNHEADER)
10911 if (lpss->styleNew & LVS_NOCOLUMNHEADER)
10913 /* Turn off the header control */
10914 style = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE);
10915 TRACE("Hide header control, was 0x%08x\n", style);
10916 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, style | HDS_HIDDEN);
10917 } else {
10918 /* Turn on the header control */
10919 if ((style = GetWindowLongW(infoPtr->hwndHeader, GWL_STYLE)) & HDS_HIDDEN)
10921 TRACE("Show header control, was 0x%08x\n", style);
10922 SetWindowLongW(infoPtr->hwndHeader, GWL_STYLE, (style & ~HDS_HIDDEN) | WS_VISIBLE);
10928 if ( (uNewView == LVS_ICON || uNewView == LVS_SMALLICON) &&
10929 (uNewView != uOldView || ((lpss->styleNew ^ lpss->styleOld) & LVS_ALIGNMASK)) )
10930 LISTVIEW_Arrange(infoPtr, LVA_DEFAULT);
10932 /* update the size of the client area */
10933 LISTVIEW_UpdateSize(infoPtr);
10935 /* add scrollbars if needed */
10936 LISTVIEW_UpdateScroll(infoPtr);
10938 /* invalidate client area + erase background */
10939 LISTVIEW_InvalidateList(infoPtr);
10941 return 0;
10944 /***
10945 * DESCRIPTION:
10946 * Processes WM_STYLECHANGING messages.
10948 * PARAMETER(S):
10949 * [I] wStyleType : window style type (normal or extended)
10950 * [I0] lpss : window style information
10952 * RETURN:
10953 * Zero
10955 static INT LISTVIEW_StyleChanging(WPARAM wStyleType,
10956 STYLESTRUCT *lpss)
10958 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
10959 wStyleType, lpss->styleOld, lpss->styleNew);
10961 /* don't forward LVS_OWNERDATA only if not already set to */
10962 if ((lpss->styleNew ^ lpss->styleOld) & LVS_OWNERDATA)
10964 if (lpss->styleOld & LVS_OWNERDATA)
10965 lpss->styleNew |= LVS_OWNERDATA;
10966 else
10967 lpss->styleNew &= ~LVS_OWNERDATA;
10970 return 0;
10973 /***
10974 * DESCRIPTION:
10975 * Processes WM_SHOWWINDOW messages.
10977 * PARAMETER(S):
10978 * [I] infoPtr : valid pointer to the listview structure
10979 * [I] bShown : window is being shown (FALSE when hidden)
10980 * [I] iStatus : window show status
10982 * RETURN:
10983 * Zero
10985 static LRESULT LISTVIEW_ShowWindow(LISTVIEW_INFO *infoPtr, WPARAM bShown, LPARAM iStatus)
10987 /* header delayed creation */
10988 if ((infoPtr->uView == LV_VIEW_DETAILS) && bShown)
10990 LISTVIEW_CreateHeader(infoPtr);
10992 if (!(LVS_NOCOLUMNHEADER & infoPtr->dwStyle))
10993 ShowWindow(infoPtr->hwndHeader, SW_SHOWNORMAL);
10996 return DefWindowProcW(infoPtr->hwndSelf, WM_SHOWWINDOW, bShown, iStatus);
10999 /***
11000 * DESCRIPTION:
11001 * Processes CCM_GETVERSION messages.
11003 * PARAMETER(S):
11004 * [I] infoPtr : valid pointer to the listview structure
11006 * RETURN:
11007 * Current version
11009 static inline LRESULT LISTVIEW_GetVersion(const LISTVIEW_INFO *infoPtr)
11011 return infoPtr->iVersion;
11014 /***
11015 * DESCRIPTION:
11016 * Processes CCM_SETVERSION messages.
11018 * PARAMETER(S):
11019 * [I] infoPtr : valid pointer to the listview structure
11020 * [I] iVersion : version to be set
11022 * RETURN:
11023 * -1 when requested version is greater than DLL version;
11024 * previous version otherwise
11026 static LRESULT LISTVIEW_SetVersion(LISTVIEW_INFO *infoPtr, DWORD iVersion)
11028 INT iOldVersion = infoPtr->iVersion;
11030 if (iVersion > COMCTL32_VERSION)
11031 return -1;
11033 infoPtr->iVersion = iVersion;
11035 TRACE("new version %d\n", iVersion);
11037 return iOldVersion;
11040 /***
11041 * DESCRIPTION:
11042 * Window procedure of the listview control.
11045 static LRESULT WINAPI
11046 LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
11048 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongPtrW(hwnd, 0);
11050 TRACE("(hwnd=%p uMsg=%x wParam=%lx lParam=%lx)\n", hwnd, uMsg, wParam, lParam);
11052 if (!infoPtr && (uMsg != WM_NCCREATE))
11053 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
11055 switch (uMsg)
11057 case LVM_APPROXIMATEVIEWRECT:
11058 return LISTVIEW_ApproximateViewRect(infoPtr, (INT)wParam,
11059 LOWORD(lParam), HIWORD(lParam));
11060 case LVM_ARRANGE:
11061 return LISTVIEW_Arrange(infoPtr, (INT)wParam);
11063 case LVM_CANCELEDITLABEL:
11064 return LISTVIEW_CancelEditLabel(infoPtr);
11066 case LVM_CREATEDRAGIMAGE:
11067 return (LRESULT)LISTVIEW_CreateDragImage(infoPtr, (INT)wParam, (LPPOINT)lParam);
11069 case LVM_DELETEALLITEMS:
11070 return LISTVIEW_DeleteAllItems(infoPtr, FALSE);
11072 case LVM_DELETECOLUMN:
11073 return LISTVIEW_DeleteColumn(infoPtr, (INT)wParam);
11075 case LVM_DELETEITEM:
11076 return LISTVIEW_DeleteItem(infoPtr, (INT)wParam);
11078 case LVM_EDITLABELA:
11079 case LVM_EDITLABELW:
11080 return (LRESULT)LISTVIEW_EditLabelT(infoPtr, (INT)wParam,
11081 uMsg == LVM_EDITLABELW);
11082 /* case LVM_ENABLEGROUPVIEW: */
11084 case LVM_ENSUREVISIBLE:
11085 return LISTVIEW_EnsureVisible(infoPtr, (INT)wParam, (BOOL)lParam);
11087 case LVM_FINDITEMW:
11088 return LISTVIEW_FindItemW(infoPtr, (INT)wParam, (LPLVFINDINFOW)lParam);
11090 case LVM_FINDITEMA:
11091 return LISTVIEW_FindItemA(infoPtr, (INT)wParam, (LPLVFINDINFOA)lParam);
11093 case LVM_GETBKCOLOR:
11094 return infoPtr->clrBk;
11096 /* case LVM_GETBKIMAGE: */
11098 case LVM_GETCALLBACKMASK:
11099 return infoPtr->uCallbackMask;
11101 case LVM_GETCOLUMNA:
11102 case LVM_GETCOLUMNW:
11103 return LISTVIEW_GetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam,
11104 uMsg == LVM_GETCOLUMNW);
11106 case LVM_GETCOLUMNORDERARRAY:
11107 return LISTVIEW_GetColumnOrderArray(infoPtr, (INT)wParam, (LPINT)lParam);
11109 case LVM_GETCOLUMNWIDTH:
11110 return LISTVIEW_GetColumnWidth(infoPtr, (INT)wParam);
11112 case LVM_GETCOUNTPERPAGE:
11113 return LISTVIEW_GetCountPerPage(infoPtr);
11115 case LVM_GETEDITCONTROL:
11116 return (LRESULT)infoPtr->hwndEdit;
11118 case LVM_GETEXTENDEDLISTVIEWSTYLE:
11119 return infoPtr->dwLvExStyle;
11121 /* case LVM_GETGROUPINFO: */
11123 /* case LVM_GETGROUPMETRICS: */
11125 case LVM_GETHEADER:
11126 return (LRESULT)infoPtr->hwndHeader;
11128 case LVM_GETHOTCURSOR:
11129 return (LRESULT)infoPtr->hHotCursor;
11131 case LVM_GETHOTITEM:
11132 return infoPtr->nHotItem;
11134 case LVM_GETHOVERTIME:
11135 return infoPtr->dwHoverTime;
11137 case LVM_GETIMAGELIST:
11138 return (LRESULT)LISTVIEW_GetImageList(infoPtr, (INT)wParam);
11140 /* case LVM_GETINSERTMARK: */
11142 /* case LVM_GETINSERTMARKCOLOR: */
11144 /* case LVM_GETINSERTMARKRECT: */
11146 case LVM_GETISEARCHSTRINGA:
11147 case LVM_GETISEARCHSTRINGW:
11148 FIXME("LVM_GETISEARCHSTRING: unimplemented\n");
11149 return FALSE;
11151 case LVM_GETITEMA:
11152 case LVM_GETITEMW:
11153 return LISTVIEW_GetItemExtT(infoPtr, (LPLVITEMW)lParam, uMsg == LVM_GETITEMW);
11155 case LVM_GETITEMCOUNT:
11156 return infoPtr->nItemCount;
11158 case LVM_GETITEMPOSITION:
11159 return LISTVIEW_GetItemPosition(infoPtr, (INT)wParam, (LPPOINT)lParam);
11161 case LVM_GETITEMRECT:
11162 return LISTVIEW_GetItemRect(infoPtr, (INT)wParam, (LPRECT)lParam);
11164 case LVM_GETITEMSPACING:
11165 return LISTVIEW_GetItemSpacing(infoPtr, (BOOL)wParam);
11167 case LVM_GETITEMSTATE:
11168 return LISTVIEW_GetItemState(infoPtr, (INT)wParam, (UINT)lParam);
11170 case LVM_GETITEMTEXTA:
11171 case LVM_GETITEMTEXTW:
11172 return LISTVIEW_GetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam,
11173 uMsg == LVM_GETITEMTEXTW);
11175 case LVM_GETNEXTITEM:
11176 return LISTVIEW_GetNextItem(infoPtr, (INT)wParam, LOWORD(lParam));
11178 case LVM_GETNUMBEROFWORKAREAS:
11179 FIXME("LVM_GETNUMBEROFWORKAREAS: unimplemented\n");
11180 return 1;
11182 case LVM_GETORIGIN:
11183 if (!lParam) return FALSE;
11184 if (infoPtr->uView == LV_VIEW_DETAILS ||
11185 infoPtr->uView == LV_VIEW_LIST) return FALSE;
11186 LISTVIEW_GetOrigin(infoPtr, (LPPOINT)lParam);
11187 return TRUE;
11189 /* case LVM_GETOUTLINECOLOR: */
11191 /* case LVM_GETSELECTEDCOLUMN: */
11193 case LVM_GETSELECTEDCOUNT:
11194 return LISTVIEW_GetSelectedCount(infoPtr);
11196 case LVM_GETSELECTIONMARK:
11197 return infoPtr->nSelectionMark;
11199 case LVM_GETSTRINGWIDTHA:
11200 case LVM_GETSTRINGWIDTHW:
11201 return LISTVIEW_GetStringWidthT(infoPtr, (LPCWSTR)lParam,
11202 uMsg == LVM_GETSTRINGWIDTHW);
11204 case LVM_GETSUBITEMRECT:
11205 return LISTVIEW_GetSubItemRect(infoPtr, (UINT)wParam, (LPRECT)lParam);
11207 case LVM_GETTEXTBKCOLOR:
11208 return infoPtr->clrTextBk;
11210 case LVM_GETTEXTCOLOR:
11211 return infoPtr->clrText;
11213 /* case LVM_GETTILEINFO: */
11215 /* case LVM_GETTILEVIEWINFO: */
11217 case LVM_GETTOOLTIPS:
11218 if( !infoPtr->hwndToolTip )
11219 infoPtr->hwndToolTip = COMCTL32_CreateToolTip( hwnd );
11220 return (LRESULT)infoPtr->hwndToolTip;
11222 case LVM_GETTOPINDEX:
11223 return LISTVIEW_GetTopIndex(infoPtr);
11225 case LVM_GETUNICODEFORMAT:
11226 return (infoPtr->notifyFormat == NFR_UNICODE);
11228 case LVM_GETVIEW:
11229 return infoPtr->uView;
11231 case LVM_GETVIEWRECT:
11232 return LISTVIEW_GetViewRect(infoPtr, (LPRECT)lParam);
11234 case LVM_GETWORKAREAS:
11235 FIXME("LVM_GETWORKAREAS: unimplemented\n");
11236 return FALSE;
11238 /* case LVM_HASGROUP: */
11240 case LVM_HITTEST:
11241 return LISTVIEW_HitTest(infoPtr, (LPLVHITTESTINFO)lParam, FALSE, TRUE);
11243 case LVM_INSERTCOLUMNA:
11244 case LVM_INSERTCOLUMNW:
11245 return LISTVIEW_InsertColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam,
11246 uMsg == LVM_INSERTCOLUMNW);
11248 /* case LVM_INSERTGROUP: */
11250 /* case LVM_INSERTGROUPSORTED: */
11252 case LVM_INSERTITEMA:
11253 case LVM_INSERTITEMW:
11254 return LISTVIEW_InsertItemT(infoPtr, (LPLVITEMW)lParam, uMsg == LVM_INSERTITEMW);
11256 /* case LVM_INSERTMARKHITTEST: */
11258 /* case LVM_ISGROUPVIEWENABLED: */
11260 case LVM_ISITEMVISIBLE:
11261 return LISTVIEW_IsItemVisible(infoPtr, (INT)wParam);
11263 case LVM_MAPIDTOINDEX:
11264 return LISTVIEW_MapIdToIndex(infoPtr, (UINT)wParam);
11266 case LVM_MAPINDEXTOID:
11267 return LISTVIEW_MapIndexToId(infoPtr, (INT)wParam);
11269 /* case LVM_MOVEGROUP: */
11271 /* case LVM_MOVEITEMTOGROUP: */
11273 case LVM_REDRAWITEMS:
11274 return LISTVIEW_RedrawItems(infoPtr, (INT)wParam, (INT)lParam);
11276 /* case LVM_REMOVEALLGROUPS: */
11278 /* case LVM_REMOVEGROUP: */
11280 case LVM_SCROLL:
11281 return LISTVIEW_Scroll(infoPtr, (INT)wParam, (INT)lParam);
11283 case LVM_SETBKCOLOR:
11284 return LISTVIEW_SetBkColor(infoPtr, (COLORREF)lParam);
11286 /* case LVM_SETBKIMAGE: */
11288 case LVM_SETCALLBACKMASK:
11289 infoPtr->uCallbackMask = (UINT)wParam;
11290 return TRUE;
11292 case LVM_SETCOLUMNA:
11293 case LVM_SETCOLUMNW:
11294 return LISTVIEW_SetColumnT(infoPtr, (INT)wParam, (LPLVCOLUMNW)lParam,
11295 uMsg == LVM_SETCOLUMNW);
11297 case LVM_SETCOLUMNORDERARRAY:
11298 return LISTVIEW_SetColumnOrderArray(infoPtr, (INT)wParam, (LPINT)lParam);
11300 case LVM_SETCOLUMNWIDTH:
11301 return LISTVIEW_SetColumnWidth(infoPtr, (INT)wParam, (short)LOWORD(lParam));
11303 case LVM_SETEXTENDEDLISTVIEWSTYLE:
11304 return LISTVIEW_SetExtendedListViewStyle(infoPtr, (DWORD)wParam, (DWORD)lParam);
11306 /* case LVM_SETGROUPINFO: */
11308 /* case LVM_SETGROUPMETRICS: */
11310 case LVM_SETHOTCURSOR:
11311 return (LRESULT)LISTVIEW_SetHotCursor(infoPtr, (HCURSOR)lParam);
11313 case LVM_SETHOTITEM:
11314 return LISTVIEW_SetHotItem(infoPtr, (INT)wParam);
11316 case LVM_SETHOVERTIME:
11317 return LISTVIEW_SetHoverTime(infoPtr, (DWORD)lParam);
11319 case LVM_SETICONSPACING:
11320 return LISTVIEW_SetIconSpacing(infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
11322 case LVM_SETIMAGELIST:
11323 return (LRESULT)LISTVIEW_SetImageList(infoPtr, (INT)wParam, (HIMAGELIST)lParam);
11325 /* case LVM_SETINFOTIP: */
11327 /* case LVM_SETINSERTMARK: */
11329 /* case LVM_SETINSERTMARKCOLOR: */
11331 case LVM_SETITEMA:
11332 case LVM_SETITEMW:
11334 if (infoPtr->dwStyle & LVS_OWNERDATA) return FALSE;
11335 return LISTVIEW_SetItemT(infoPtr, (LPLVITEMW)lParam, (uMsg == LVM_SETITEMW));
11338 case LVM_SETITEMCOUNT:
11339 return LISTVIEW_SetItemCount(infoPtr, (INT)wParam, (DWORD)lParam);
11341 case LVM_SETITEMPOSITION:
11343 POINT pt;
11344 pt.x = (short)LOWORD(lParam);
11345 pt.y = (short)HIWORD(lParam);
11346 return LISTVIEW_SetItemPosition(infoPtr, (INT)wParam, &pt);
11349 case LVM_SETITEMPOSITION32:
11350 return LISTVIEW_SetItemPosition(infoPtr, (INT)wParam, (POINT*)lParam);
11352 case LVM_SETITEMSTATE:
11353 if (lParam == 0) return FALSE;
11354 return LISTVIEW_SetItemState(infoPtr, (INT)wParam, (LPLVITEMW)lParam);
11356 case LVM_SETITEMTEXTA:
11357 case LVM_SETITEMTEXTW:
11358 return LISTVIEW_SetItemTextT(infoPtr, (INT)wParam, (LPLVITEMW)lParam,
11359 uMsg == LVM_SETITEMTEXTW);
11361 /* case LVM_SETOUTLINECOLOR: */
11363 /* case LVM_SETSELECTEDCOLUMN: */
11365 case LVM_SETSELECTIONMARK:
11366 return LISTVIEW_SetSelectionMark(infoPtr, (INT)lParam);
11368 case LVM_SETTEXTBKCOLOR:
11369 return LISTVIEW_SetTextBkColor(infoPtr, (COLORREF)lParam);
11371 case LVM_SETTEXTCOLOR:
11372 return LISTVIEW_SetTextColor(infoPtr, (COLORREF)lParam);
11374 /* case LVM_SETTILEINFO: */
11376 /* case LVM_SETTILEVIEWINFO: */
11378 /* case LVM_SETTILEWIDTH: */
11380 case LVM_SETTOOLTIPS:
11381 return (LRESULT)LISTVIEW_SetToolTips(infoPtr, (HWND)lParam);
11383 case LVM_SETUNICODEFORMAT:
11384 return LISTVIEW_SetUnicodeFormat(infoPtr, wParam);
11386 case LVM_SETVIEW:
11387 return LISTVIEW_SetView(infoPtr, wParam);
11389 /* case LVM_SETWORKAREAS: */
11391 /* case LVM_SORTGROUPS: */
11393 case LVM_SORTITEMS:
11394 case LVM_SORTITEMSEX:
11395 return LISTVIEW_SortItems(infoPtr, (PFNLVCOMPARE)lParam, wParam,
11396 uMsg == LVM_SORTITEMSEX);
11397 case LVM_SUBITEMHITTEST:
11398 return LISTVIEW_HitTest(infoPtr, (LPLVHITTESTINFO)lParam, TRUE, FALSE);
11400 case LVM_UPDATE:
11401 return LISTVIEW_Update(infoPtr, (INT)wParam);
11403 case CCM_GETVERSION:
11404 return LISTVIEW_GetVersion(infoPtr);
11406 case CCM_SETVERSION:
11407 return LISTVIEW_SetVersion(infoPtr, wParam);
11409 case WM_CHAR:
11410 return LISTVIEW_ProcessLetterKeys( infoPtr, wParam, lParam );
11412 case WM_COMMAND:
11413 return LISTVIEW_Command(infoPtr, wParam, lParam);
11415 case WM_NCCREATE:
11416 return LISTVIEW_NCCreate(hwnd, (LPCREATESTRUCTW)lParam);
11418 case WM_CREATE:
11419 return LISTVIEW_Create(hwnd, (LPCREATESTRUCTW)lParam);
11421 case WM_DESTROY:
11422 return LISTVIEW_Destroy(infoPtr);
11424 case WM_ENABLE:
11425 return LISTVIEW_Enable(infoPtr);
11427 case WM_ERASEBKGND:
11428 return LISTVIEW_EraseBkgnd(infoPtr, (HDC)wParam);
11430 case WM_GETDLGCODE:
11431 return DLGC_WANTCHARS | DLGC_WANTARROWS;
11433 case WM_GETFONT:
11434 return (LRESULT)infoPtr->hFont;
11436 case WM_HSCROLL:
11437 return LISTVIEW_HScroll(infoPtr, (INT)LOWORD(wParam), 0);
11439 case WM_KEYDOWN:
11440 return LISTVIEW_KeyDown(infoPtr, (INT)wParam, (LONG)lParam);
11442 case WM_KILLFOCUS:
11443 return LISTVIEW_KillFocus(infoPtr);
11445 case WM_LBUTTONDBLCLK:
11446 return LISTVIEW_LButtonDblClk(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11448 case WM_LBUTTONDOWN:
11449 return LISTVIEW_LButtonDown(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11451 case WM_LBUTTONUP:
11452 return LISTVIEW_LButtonUp(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11454 case WM_MOUSEMOVE:
11455 return LISTVIEW_MouseMove (infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11457 case WM_MOUSEHOVER:
11458 return LISTVIEW_MouseHover(infoPtr, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11460 case WM_NCDESTROY:
11461 return LISTVIEW_NCDestroy(infoPtr);
11463 case WM_NCPAINT:
11464 return LISTVIEW_NCPaint(infoPtr, (HRGN)wParam);
11466 case WM_NOTIFY:
11467 return LISTVIEW_Notify(infoPtr, (LPNMHDR)lParam);
11469 case WM_NOTIFYFORMAT:
11470 return LISTVIEW_NotifyFormat(infoPtr, (HWND)wParam, (INT)lParam);
11472 case WM_PRINTCLIENT:
11473 return LISTVIEW_PrintClient(infoPtr, (HDC)wParam, (DWORD)lParam);
11475 case WM_PAINT:
11476 return LISTVIEW_WMPaint(infoPtr, (HDC)wParam);
11478 case WM_RBUTTONDBLCLK:
11479 return LISTVIEW_RButtonDblClk(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11481 case WM_RBUTTONDOWN:
11482 return LISTVIEW_RButtonDown(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11484 case WM_RBUTTONUP:
11485 return LISTVIEW_RButtonUp(infoPtr, (WORD)wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
11487 case WM_SETCURSOR:
11488 return LISTVIEW_SetCursor(infoPtr, wParam, lParam);
11490 case WM_SETFOCUS:
11491 return LISTVIEW_SetFocus(infoPtr, (HWND)wParam);
11493 case WM_SETFONT:
11494 return LISTVIEW_SetFont(infoPtr, (HFONT)wParam, (WORD)lParam);
11496 case WM_SETREDRAW:
11497 return LISTVIEW_SetRedraw(infoPtr, (BOOL)wParam);
11499 case WM_SHOWWINDOW:
11500 return LISTVIEW_ShowWindow(infoPtr, wParam, lParam);
11502 case WM_SIZE:
11503 return LISTVIEW_Size(infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
11505 case WM_STYLECHANGED:
11506 return LISTVIEW_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
11508 case WM_STYLECHANGING:
11509 return LISTVIEW_StyleChanging(wParam, (LPSTYLESTRUCT)lParam);
11511 case WM_SYSCOLORCHANGE:
11512 COMCTL32_RefreshSysColors();
11513 return 0;
11515 /* case WM_TIMER: */
11516 case WM_THEMECHANGED:
11517 return LISTVIEW_ThemeChanged(infoPtr);
11519 case WM_VSCROLL:
11520 return LISTVIEW_VScroll(infoPtr, (INT)LOWORD(wParam), 0);
11522 case WM_MOUSEWHEEL:
11523 if (wParam & (MK_SHIFT | MK_CONTROL))
11524 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
11525 return LISTVIEW_MouseWheel(infoPtr, (short int)HIWORD(wParam));
11527 case WM_WINDOWPOSCHANGED:
11528 if (!(((WINDOWPOS *)lParam)->flags & SWP_NOSIZE))
11530 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOACTIVATE |
11531 SWP_NOZORDER | SWP_NOMOVE | SWP_NOSIZE);
11533 if ((infoPtr->dwStyle & LVS_OWNERDRAWFIXED) && (infoPtr->uView == LV_VIEW_DETAILS))
11535 if (notify_measureitem(infoPtr)) LISTVIEW_InvalidateList(infoPtr);
11538 LISTVIEW_UpdateSize(infoPtr);
11539 LISTVIEW_UpdateScroll(infoPtr);
11541 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
11543 /* case WM_WININICHANGE: */
11545 default:
11546 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
11547 ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
11549 return DefWindowProcW(hwnd, uMsg, wParam, lParam);
11554 /***
11555 * DESCRIPTION:
11556 * Registers the window class.
11558 * PARAMETER(S):
11559 * None
11561 * RETURN:
11562 * None
11564 void LISTVIEW_Register(void)
11566 WNDCLASSW wndClass;
11568 ZeroMemory(&wndClass, sizeof(WNDCLASSW));
11569 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
11570 wndClass.lpfnWndProc = LISTVIEW_WindowProc;
11571 wndClass.cbClsExtra = 0;
11572 wndClass.cbWndExtra = sizeof(LISTVIEW_INFO *);
11573 wndClass.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
11574 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
11575 wndClass.lpszClassName = WC_LISTVIEWW;
11576 RegisterClassW(&wndClass);
11579 /***
11580 * DESCRIPTION:
11581 * Unregisters the window class.
11583 * PARAMETER(S):
11584 * None
11586 * RETURN:
11587 * None
11589 void LISTVIEW_Unregister(void)
11591 UnregisterClassW(WC_LISTVIEWW, NULL);
11594 /***
11595 * DESCRIPTION:
11596 * Handle any WM_COMMAND messages
11598 * PARAMETER(S):
11599 * [I] infoPtr : valid pointer to the listview structure
11600 * [I] wParam : the first message parameter
11601 * [I] lParam : the second message parameter
11603 * RETURN:
11604 * Zero.
11606 static LRESULT LISTVIEW_Command(LISTVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
11609 TRACE("(%p %x %x %lx)\n", infoPtr, HIWORD(wParam), LOWORD(wParam), lParam);
11611 if (!infoPtr->hwndEdit) return 0;
11613 switch (HIWORD(wParam))
11615 case EN_UPDATE:
11618 * Adjust the edit window size
11620 WCHAR buffer[1024];
11621 HDC hdc = GetDC(infoPtr->hwndEdit);
11622 HFONT hFont, hOldFont = 0;
11623 RECT rect;
11624 SIZE sz;
11626 if (!infoPtr->hwndEdit || !hdc) return 0;
11627 GetWindowTextW(infoPtr->hwndEdit, buffer, sizeof(buffer)/sizeof(buffer[0]));
11628 GetWindowRect(infoPtr->hwndEdit, &rect);
11630 /* Select font to get the right dimension of the string */
11631 hFont = (HFONT)SendMessageW(infoPtr->hwndEdit, WM_GETFONT, 0, 0);
11632 if (hFont)
11634 hOldFont = SelectObject(hdc, hFont);
11637 if (GetTextExtentPoint32W(hdc, buffer, lstrlenW(buffer), &sz))
11639 TEXTMETRICW textMetric;
11641 /* Add Extra spacing for the next character */
11642 GetTextMetricsW(hdc, &textMetric);
11643 sz.cx += (textMetric.tmMaxCharWidth * 2);
11645 SetWindowPos(infoPtr->hwndEdit, NULL, 0, 0, sz.cx,
11646 rect.bottom - rect.top, SWP_DRAWFRAME | SWP_NOMOVE | SWP_NOZORDER);
11648 if (hFont)
11649 SelectObject(hdc, hOldFont);
11651 ReleaseDC(infoPtr->hwndEdit, hdc);
11653 break;
11655 case EN_KILLFOCUS:
11657 LISTVIEW_CancelEditLabel(infoPtr);
11658 break;
11661 default:
11662 return SendMessageW (infoPtr->hwndNotify, WM_COMMAND, wParam, lParam);
11665 return 0;