kernel32: GetModuleHandleEx already clears the module handle on failure.
[wine] / dlls / comctl32 / tests / listview.c
1 /*
2  * ListView tests
3  *
4  * Copyright 2006 Mike McCormack for CodeWeavers
5  * Copyright 2007 George Gov
6  * Copyright 2009-2012 Nikolay Sivov
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include <stdio.h>
24 #include <windows.h>
25 #include <commctrl.h>
26
27 #include "wine/test.h"
28 #include "v6util.h"
29 #include "msg.h"
30
31 #define PARENT_SEQ_INDEX       0
32 #define PARENT_FULL_SEQ_INDEX  1
33 #define LISTVIEW_SEQ_INDEX     2
34 #define EDITBOX_SEQ_INDEX      3
35 #define COMBINED_SEQ_INDEX     4
36 #define NUM_MSG_SEQUENCES      5
37
38 #define LISTVIEW_ID 0
39 #define HEADER_ID   1
40
41 #define expect(expected, got) ok(got == expected, "Expected %d, got %d\n", expected, got)
42 #define expect2(expected1, expected2, got1, got2) ok(expected1 == got1 && expected2 == got2, \
43        "expected (%d,%d), got (%d,%d)\n", expected1, expected2, got1, got2)
44
45 static const WCHAR testparentclassW[] =
46     {'L','i','s','t','v','i','e','w',' ','t','e','s','t',' ','p','a','r','e','n','t','W', 0};
47
48 static HWND hwndparent, hwndparentW;
49 /* prevents edit box creation, LVN_BEGINLABELEDIT return value */
50 static BOOL blockEdit;
51 /* return nonzero on NM_HOVER */
52 static BOOL g_block_hover;
53 /* notification data for LVN_ITEMCHANGED */
54 static NMLISTVIEW g_nmlistview;
55 /* format reported to control:
56    -1 falls to defproc, anything else returned */
57 static INT notifyFormat;
58 /* indicates we're running < 5.80 version */
59 static BOOL g_is_below_5;
60 /* item data passed to LVN_GETDISPINFOA */
61 static LVITEMA g_itema;
62 /* alter notification code A->W */
63 static BOOL g_disp_A_to_W;
64 /* dispinfo data sent with LVN_LVN_ENDLABELEDIT */
65 static NMLVDISPINFO g_editbox_disp_info;
66
67 static HWND subclass_editbox(HWND hwndListview);
68
69 static struct msg_sequence *sequences[NUM_MSG_SEQUENCES];
70
71 static const struct message create_ownerdrawfixed_parent_seq[] = {
72     { WM_NOTIFYFORMAT, sent },
73     { WM_QUERYUISTATE, sent|optional }, /* Win2K and higher */
74     { WM_MEASUREITEM, sent },
75     { WM_PARENTNOTIFY, sent },
76     { 0 }
77 };
78
79 static const struct message redraw_listview_seq[] = {
80     { WM_PAINT,      sent|id,            0, 0, LISTVIEW_ID },
81     { WM_PAINT,      sent|id,            0, 0, HEADER_ID },
82     { WM_NCPAINT,    sent|id|defwinproc, 0, 0, HEADER_ID },
83     { WM_ERASEBKGND, sent|id|defwinproc|optional, 0, 0, HEADER_ID },
84     { WM_NOTIFY,     sent|id|defwinproc, 0, 0, LISTVIEW_ID },
85     { WM_NCPAINT,    sent|id|defwinproc, 0, 0, LISTVIEW_ID },
86     { WM_ERASEBKGND, sent|id|defwinproc|optional, 0, 0, LISTVIEW_ID },
87     { 0 }
88 };
89
90 static const struct message listview_icon_spacing_seq[] = {
91     { LVM_SETICONSPACING, sent|lparam, 0, MAKELPARAM(20, 30) },
92     { LVM_SETICONSPACING, sent|lparam, 0, MAKELPARAM(25, 35) },
93     { LVM_SETICONSPACING, sent|lparam, 0, MAKELPARAM(-1, -1) },
94     { 0 }
95 };
96
97 static const struct message listview_color_seq[] = {
98     { LVM_SETBKCOLOR,     sent|lparam, 0, RGB(0,0,0) },
99     { LVM_GETBKCOLOR,     sent },
100     { LVM_SETTEXTCOLOR,   sent|lparam, 0, RGB(0,0,0) },
101     { LVM_GETTEXTCOLOR,   sent },
102     { LVM_SETTEXTBKCOLOR, sent|lparam, 0, RGB(0,0,0) },
103     { LVM_GETTEXTBKCOLOR, sent },
104
105     { LVM_SETBKCOLOR,     sent|lparam, 0, RGB(100,50,200) },
106     { LVM_GETBKCOLOR,     sent },
107     { LVM_SETTEXTCOLOR,   sent|lparam, 0, RGB(100,50,200) },
108     { LVM_GETTEXTCOLOR,   sent },
109     { LVM_SETTEXTBKCOLOR, sent|lparam, 0, RGB(100,50,200) },
110     { LVM_GETTEXTBKCOLOR, sent },
111
112     { LVM_SETBKCOLOR,     sent|lparam, 0, CLR_NONE },
113     { LVM_GETBKCOLOR,     sent },
114     { LVM_SETTEXTCOLOR,   sent|lparam, 0, CLR_NONE },
115     { LVM_GETTEXTCOLOR,   sent },
116     { LVM_SETTEXTBKCOLOR, sent|lparam, 0, CLR_NONE },
117     { LVM_GETTEXTBKCOLOR, sent },
118
119     { LVM_SETBKCOLOR,     sent|lparam, 0, RGB(255,255,255) },
120     { LVM_GETBKCOLOR,     sent },
121     { LVM_SETTEXTCOLOR,   sent|lparam, 0, RGB(255,255,255) },
122     { LVM_GETTEXTCOLOR,   sent },
123     { LVM_SETTEXTBKCOLOR, sent|lparam, 0, RGB(255,255,255) },
124     { LVM_GETTEXTBKCOLOR, sent },
125     { 0 }
126 };
127
128 static const struct message listview_item_count_seq[] = {
129     { LVM_GETITEMCOUNT,   sent },
130     { LVM_INSERTITEM,     sent },
131     { LVM_INSERTITEM,     sent },
132     { LVM_INSERTITEM,     sent },
133     { LVM_GETITEMCOUNT,   sent },
134     { LVM_DELETEITEM,     sent|wparam, 2 },
135     { WM_NCPAINT,         sent|optional },
136     { WM_ERASEBKGND,      sent|optional },
137     { LVM_GETITEMCOUNT,   sent },
138     { LVM_DELETEALLITEMS, sent },
139     { LVM_GETITEMCOUNT,   sent },
140     { LVM_INSERTITEM,     sent },
141     { LVM_INSERTITEM,     sent },
142     { LVM_GETITEMCOUNT,   sent },
143     { LVM_INSERTITEM,     sent },
144     { LVM_GETITEMCOUNT,   sent },
145     { 0 }
146 };
147
148 static const struct message listview_itempos_seq[] = {
149     { LVM_INSERTITEM,      sent },
150     { LVM_INSERTITEM,      sent },
151     { LVM_INSERTITEM,      sent },
152     { LVM_SETITEMPOSITION, sent|wparam|lparam, 1, MAKELPARAM(10,5) },
153     { WM_NCPAINT,          sent|optional },
154     { WM_ERASEBKGND,       sent|optional },
155     { LVM_GETITEMPOSITION, sent|wparam,        1 },
156     { LVM_SETITEMPOSITION, sent|wparam|lparam, 2, MAKELPARAM(0,0) },
157     { LVM_GETITEMPOSITION, sent|wparam,        2 },
158     { LVM_SETITEMPOSITION, sent|wparam|lparam, 0, MAKELPARAM(20,20) },
159     { LVM_GETITEMPOSITION, sent|wparam,        0 },
160     { 0 }
161 };
162
163 static const struct message listview_ownerdata_switchto_seq[] = {
164     { WM_STYLECHANGING,    sent },
165     { WM_STYLECHANGED,     sent },
166     { 0 }
167 };
168
169 static const struct message listview_getorderarray_seq[] = {
170     { LVM_GETCOLUMNORDERARRAY, sent|id|wparam, 2, 0, LISTVIEW_ID },
171     { HDM_GETORDERARRAY,       sent|id|wparam, 2, 0, HEADER_ID },
172     { 0 }
173 };
174
175 static const struct message empty_seq[] = {
176     { 0 }
177 };
178
179 static const struct message forward_erasebkgnd_parent_seq[] = {
180     { WM_ERASEBKGND, sent },
181     { 0 }
182 };
183
184 static const struct message ownderdata_select_focus_parent_seq[] = {
185     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
186     { WM_NOTIFY, sent|id, 0, 0, LVN_GETDISPINFOA },
187     { WM_NOTIFY, sent|id|optional, 0, 0, LVN_GETDISPINFOA }, /* version 4.7x */
188     { 0 }
189 };
190
191 static const struct message ownerdata_setstate_all_parent_seq[] = {
192     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
193     { 0 }
194 };
195
196 static const struct message ownerdata_defocus_all_parent_seq[] = {
197     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
198     { WM_NOTIFY, sent|id, 0, 0, LVN_GETDISPINFOA },
199     { WM_NOTIFY, sent|id|optional, 0, 0, LVN_GETDISPINFOA },
200     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
201     { 0 }
202 };
203
204 static const struct message ownerdata_deselect_all_parent_seq[] = {
205     { WM_NOTIFY, sent|id, 0, 0, LVN_ODCACHEHINT },
206     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
207     { 0 }
208 };
209
210 static const struct message select_all_parent_seq[] = {
211     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
212     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
213
214     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
215     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
216
217     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
218     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
219
220     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
221     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
222
223     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
224     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED },
225     { 0 }
226 };
227
228 static const struct message textcallback_set_again_parent_seq[] = {
229     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGING },
230     { WM_NOTIFY, sent|id, 0, 0, LVN_ITEMCHANGED  },
231     { 0 }
232 };
233
234 static const struct message single_getdispinfo_parent_seq[] = {
235     { WM_NOTIFY, sent|id, 0, 0, LVN_GETDISPINFOA },
236     { 0 }
237 };
238
239 static const struct message getitemposition_seq1[] = {
240     { LVM_GETITEMPOSITION, sent|id, 0, 0, LISTVIEW_ID },
241     { 0 }
242 };
243
244 static const struct message getitemposition_seq2[] = {
245     { LVM_GETITEMPOSITION, sent|id, 0, 0, LISTVIEW_ID },
246     { HDM_GETITEMRECT, sent|id, 0, 0, HEADER_ID },
247     { 0 }
248 };
249
250 static const struct message editbox_create_pos[] = {
251     /* sequence sent after LVN_BEGINLABELEDIT */
252     /* next two are 4.7x specific */
253     { WM_WINDOWPOSCHANGING, sent },
254     { WM_WINDOWPOSCHANGED, sent|optional },
255
256     { WM_WINDOWPOSCHANGING, sent|optional },
257     { WM_NCCALCSIZE, sent },
258     { WM_WINDOWPOSCHANGED, sent },
259     { WM_MOVE, sent|defwinproc },
260     { WM_SIZE, sent|defwinproc },
261     /* the rest is todo, skipped in 4.7x */
262     { WM_WINDOWPOSCHANGING, sent|optional },
263     { WM_WINDOWPOSCHANGED, sent|optional },
264     { 0 }
265 };
266
267 static const struct message scroll_parent_seq[] = {
268     { WM_NOTIFY, sent|id, 0, 0, LVN_BEGINSCROLL },
269     { WM_NOTIFY, sent|id, 0, 0, LVN_ENDSCROLL },
270     { 0 }
271 };
272
273 static const struct message setredraw_seq[] = {
274     { WM_SETREDRAW, sent|id|wparam, FALSE, 0, LISTVIEW_ID },
275     { 0 }
276 };
277
278 static const struct message lvs_ex_transparentbkgnd_seq[] = {
279     { WM_PRINTCLIENT, sent|lparam, 0, PRF_ERASEBKGND },
280     { 0 }
281 };
282
283 static const struct message edit_end_nochange[] = {
284     { WM_NOTIFY, sent|id, 0, 0, LVN_ENDLABELEDITA },
285     { WM_NOTIFY, sent|id, 0, 0, NM_CUSTOMDRAW },     /* todo */
286     { WM_NOTIFY, sent|id, 0, 0, NM_SETFOCUS },
287     { 0 }
288 };
289
290 static const struct message hover_parent[] = {
291     { WM_GETDLGCODE, sent }, /* todo_wine */
292     { WM_NOTIFY, sent|id, 0, 0, NM_HOVER },
293     { 0 }
294 };
295
296 static const struct message listview_destroy[] = {
297     { 0x0090, sent|optional }, /* Vista */
298     { WM_PARENTNOTIFY, sent },
299     { WM_SHOWWINDOW, sent },
300     { WM_WINDOWPOSCHANGING, sent },
301     { WM_WINDOWPOSCHANGED, sent|optional },
302     { WM_DESTROY, sent },
303     { WM_NOTIFY, sent|id, 0, 0, LVN_DELETEALLITEMS },
304     { WM_NCDESTROY, sent },
305     { 0 }
306 };
307
308 static const struct message listview_header_changed_seq[] = {
309     { LVM_SETCOLUMNA, sent },
310     { WM_NOTIFY, sent|id|defwinproc, 0, 0, LISTVIEW_ID },
311     { WM_NOTIFY, sent|id|defwinproc, 0, 0, LISTVIEW_ID },
312     { 0 }
313 };
314
315 static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
316 {
317     static LONG defwndproc_counter = 0;
318     LRESULT ret;
319     struct message msg;
320
321     msg.message = message;
322     msg.flags = sent|wparam|lparam;
323     if (defwndproc_counter) msg.flags |= defwinproc;
324     msg.wParam = wParam;
325     msg.lParam = lParam;
326     if (message == WM_NOTIFY && lParam) msg.id = ((NMHDR*)lParam)->code;
327
328     /* log system messages, except for painting */
329     if (message < WM_USER &&
330         message != WM_PAINT &&
331         message != WM_ERASEBKGND &&
332         message != WM_NCPAINT &&
333         message != WM_NCHITTEST &&
334         message != WM_GETTEXT &&
335         message != WM_GETICON &&
336         message != WM_DEVICECHANGE)
337     {
338         trace("parent: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
339
340         add_message(sequences, PARENT_SEQ_INDEX, &msg);
341         add_message(sequences, COMBINED_SEQ_INDEX, &msg);
342     }
343     add_message(sequences, PARENT_FULL_SEQ_INDEX, &msg);
344
345     switch (message)
346     {
347       case WM_NOTIFY:
348       {
349           switch (((NMHDR*)lParam)->code)
350           {
351           case LVN_BEGINLABELEDIT:
352           {
353               HWND edit = NULL;
354
355               /* subclass edit box */
356               if (!blockEdit)
357                   edit = subclass_editbox(((NMHDR*)lParam)->hwndFrom);
358
359               if (edit)
360               {
361                   INT len = SendMessageA(edit, EM_GETLIMITTEXT, 0, 0);
362                   ok(len == 259 || broken(len == 260) /* includes NULL in NT4 */,
363                       "text limit %d, expected 259\n", len);
364               }
365
366               return blockEdit;
367           }
368           case LVN_ENDLABELEDIT:
369               {
370               HWND edit;
371
372               /* always accept new item text */
373               NMLVDISPINFO *di = (NMLVDISPINFO*)lParam;
374               g_editbox_disp_info = *di;
375               trace("LVN_ENDLABELEDIT: text=%s\n", di->item.pszText ? di->item.pszText : "(null)");
376
377               /* edit control still available from this notification */
378               edit = (HWND)SendMessageA(((NMHDR*)lParam)->hwndFrom, LVM_GETEDITCONTROL, 0, 0);
379               ok(IsWindow(edit), "expected valid edit control handle\n");
380               ok((GetWindowLongA(edit, GWL_STYLE) & ES_MULTILINE) == 0, "edit is multiline\n");
381
382               return TRUE;
383               }
384           case LVN_BEGINSCROLL:
385           case LVN_ENDSCROLL:
386               {
387               NMLVSCROLL *pScroll = (NMLVSCROLL*)lParam;
388
389               trace("LVN_%sSCROLL: (%d,%d)\n", pScroll->hdr.code == LVN_BEGINSCROLL ?
390                                                "BEGIN" : "END", pScroll->dx, pScroll->dy);
391               }
392               break;
393           case LVN_ITEMCHANGED:
394               {
395                   NMLISTVIEW *nmlv = (NMLISTVIEW*)lParam;
396                   g_nmlistview = *nmlv;
397               }
398               break;
399           case LVN_GETDISPINFOA:
400               {
401                   NMLVDISPINFOA *dispinfo = (NMLVDISPINFOA*)lParam;
402                   g_itema = dispinfo->item;
403
404                   if (g_disp_A_to_W && (dispinfo->item.mask & LVIF_TEXT))
405                   {
406                       static const WCHAR testW[] = {'T','E','S','T',0};
407                       dispinfo->hdr.code = LVN_GETDISPINFOW;
408                       memcpy(dispinfo->item.pszText, testW, sizeof(testW));
409                   }
410
411                   /* test control buffer size for text, 10 used to mask cases when control
412                      is using caller buffer to process LVM_GETITEM for example */
413                   if (dispinfo->item.mask & LVIF_TEXT && dispinfo->item.cchTextMax > 10)
414                       ok(dispinfo->item.cchTextMax == 260 ||
415                          broken(dispinfo->item.cchTextMax == 264) /* NT4 reports aligned size */,
416                       "buffer size %d\n", dispinfo->item.cchTextMax);
417               }
418               break;
419           case NM_HOVER:
420               if (g_block_hover) return 1;
421               break;
422           }
423           break;
424       }
425       case WM_NOTIFYFORMAT:
426       {
427           /* force to return format */
428           if (lParam == NF_QUERY && notifyFormat != -1) return notifyFormat;
429           break;
430       }
431     }
432
433     defwndproc_counter++;
434     ret = DefWindowProcA(hwnd, message, wParam, lParam);
435     defwndproc_counter--;
436
437     return ret;
438 }
439
440 static BOOL register_parent_wnd_class(BOOL Unicode)
441 {
442     WNDCLASSA clsA;
443     WNDCLASSW clsW;
444
445     if (Unicode)
446     {
447         clsW.style = 0;
448         clsW.lpfnWndProc = parent_wnd_proc;
449         clsW.cbClsExtra = 0;
450         clsW.cbWndExtra = 0;
451         clsW.hInstance = GetModuleHandleW(NULL);
452         clsW.hIcon = 0;
453         clsW.hCursor = LoadCursorA(0, IDC_ARROW);
454         clsW.hbrBackground = GetStockObject(WHITE_BRUSH);
455         clsW.lpszMenuName = NULL;
456         clsW.lpszClassName = testparentclassW;
457     }
458     else
459     {
460         clsA.style = 0;
461         clsA.lpfnWndProc = parent_wnd_proc;
462         clsA.cbClsExtra = 0;
463         clsA.cbWndExtra = 0;
464         clsA.hInstance = GetModuleHandleA(NULL);
465         clsA.hIcon = 0;
466         clsA.hCursor = LoadCursorA(0, IDC_ARROW);
467         clsA.hbrBackground = GetStockObject(WHITE_BRUSH);
468         clsA.lpszMenuName = NULL;
469         clsA.lpszClassName = "Listview test parent class";
470     }
471
472     return Unicode ? RegisterClassW(&clsW) : RegisterClassA(&clsA);
473 }
474
475 static HWND create_parent_window(BOOL Unicode)
476 {
477     static const WCHAR nameW[] = {'t','e','s','t','p','a','r','e','n','t','n','a','m','e','W',0};
478     HWND hwnd;
479
480     if (!register_parent_wnd_class(Unicode))
481         return NULL;
482
483     blockEdit = FALSE;
484     notifyFormat = -1;
485
486     if (Unicode)
487         hwnd = CreateWindowExW(0, testparentclassW, nameW,
488                                WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
489                                WS_MAXIMIZEBOX | WS_VISIBLE,
490                                0, 0, 100, 100,
491                                GetDesktopWindow(), NULL, GetModuleHandleW(NULL), NULL);
492     else
493         hwnd = CreateWindowExA(0, "Listview test parent class",
494                                "Listview test parent window",
495                                WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
496                                WS_MAXIMIZEBOX | WS_VISIBLE,
497                                0, 0, 100, 100,
498                                GetDesktopWindow(), NULL, GetModuleHandleA(NULL), NULL);
499     SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
500     return hwnd;
501 }
502
503 static LRESULT WINAPI listview_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
504 {
505     WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
506     static LONG defwndproc_counter = 0;
507     LRESULT ret;
508     struct message msg;
509
510     trace("listview: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
511
512     /* some debug output for style changing */
513     if ((message == WM_STYLECHANGING ||
514          message == WM_STYLECHANGED) && lParam)
515     {
516         STYLESTRUCT *style = (STYLESTRUCT*)lParam;
517         trace("\told style: 0x%08x, new style: 0x%08x\n", style->styleOld, style->styleNew);
518     }
519
520     msg.message = message;
521     msg.flags = sent|wparam|lparam;
522     if (defwndproc_counter) msg.flags |= defwinproc;
523     msg.wParam = wParam;
524     msg.lParam = lParam;
525     msg.id = LISTVIEW_ID;
526     add_message(sequences, LISTVIEW_SEQ_INDEX, &msg);
527     add_message(sequences, COMBINED_SEQ_INDEX, &msg);
528
529     defwndproc_counter++;
530     ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
531     defwndproc_counter--;
532     return ret;
533 }
534
535 static HWND create_listview_control(DWORD style)
536 {
537     WNDPROC oldproc;
538     HWND hwnd;
539     RECT rect;
540
541     GetClientRect(hwndparent, &rect);
542     hwnd = CreateWindowExA(0, WC_LISTVIEW, "foo",
543                            WS_CHILD | WS_BORDER | WS_VISIBLE | style,
544                            0, 0, rect.right, rect.bottom,
545                            hwndparent, NULL, GetModuleHandleA(NULL), NULL);
546     ok(hwnd != NULL, "gle=%d\n", GetLastError());
547
548     if (!hwnd) return NULL;
549
550     oldproc = (WNDPROC)SetWindowLongPtrA(hwnd, GWLP_WNDPROC,
551                                         (LONG_PTR)listview_subclass_proc);
552     SetWindowLongPtrA(hwnd, GWLP_USERDATA, (LONG_PTR)oldproc);
553
554     return hwnd;
555 }
556
557 /* unicode listview window with specified parent */
558 static HWND create_listview_controlW(DWORD style, HWND parent)
559 {
560     WNDPROC oldproc;
561     HWND hwnd;
562     RECT rect;
563     static const WCHAR nameW[] = {'f','o','o',0};
564
565     GetClientRect(parent, &rect);
566     hwnd = CreateWindowExW(0, WC_LISTVIEWW, nameW,
567                            WS_CHILD | WS_BORDER | WS_VISIBLE | style,
568                            0, 0, rect.right, rect.bottom,
569                            parent, NULL, GetModuleHandleW(NULL), NULL);
570     ok(hwnd != NULL, "gle=%d\n", GetLastError());
571
572     if (!hwnd) return NULL;
573
574     oldproc = (WNDPROC)SetWindowLongPtrW(hwnd, GWLP_WNDPROC,
575                                         (LONG_PTR)listview_subclass_proc);
576     SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LONG_PTR)oldproc);
577
578     return hwnd;
579 }
580
581 static LRESULT WINAPI header_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
582 {
583     WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
584     static LONG defwndproc_counter = 0;
585     LRESULT ret;
586     struct message msg;
587
588     trace("header: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
589
590     msg.message = message;
591     msg.flags = sent|wparam|lparam;
592     if (defwndproc_counter) msg.flags |= defwinproc;
593     msg.wParam = wParam;
594     msg.lParam = lParam;
595     msg.id = HEADER_ID;
596     add_message(sequences, LISTVIEW_SEQ_INDEX, &msg);
597
598     defwndproc_counter++;
599     ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
600     defwndproc_counter--;
601     return ret;
602 }
603
604 static HWND subclass_header(HWND hwndListview)
605 {
606     WNDPROC oldproc;
607     HWND hwnd;
608
609     hwnd = ListView_GetHeader(hwndListview);
610     oldproc = (WNDPROC)SetWindowLongPtrA(hwnd, GWLP_WNDPROC,
611                                          (LONG_PTR)header_subclass_proc);
612     SetWindowLongPtrA(hwnd, GWLP_USERDATA, (LONG_PTR)oldproc);
613
614     return hwnd;
615 }
616
617 static LRESULT WINAPI editbox_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
618 {
619     WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
620     static LONG defwndproc_counter = 0;
621     LRESULT ret;
622     struct message msg;
623
624     msg.message = message;
625     msg.flags = sent|wparam|lparam;
626     if (defwndproc_counter) msg.flags |= defwinproc;
627     msg.wParam = wParam;
628     msg.lParam = lParam;
629
630     /* all we need is sizing */
631     if (message == WM_WINDOWPOSCHANGING ||
632         message == WM_NCCALCSIZE ||
633         message == WM_WINDOWPOSCHANGED ||
634         message == WM_MOVE ||
635         message == WM_SIZE)
636     {
637         add_message(sequences, EDITBOX_SEQ_INDEX, &msg);
638     }
639
640     defwndproc_counter++;
641     ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
642     defwndproc_counter--;
643     return ret;
644 }
645
646 static HWND subclass_editbox(HWND hwndListview)
647 {
648     WNDPROC oldproc;
649     HWND hwnd;
650
651     hwnd = (HWND)SendMessage(hwndListview, LVM_GETEDITCONTROL, 0, 0);
652     oldproc = (WNDPROC)SetWindowLongPtrA(hwnd, GWLP_WNDPROC,
653                                          (LONG_PTR)editbox_subclass_proc);
654     SetWindowLongPtrA(hwnd, GWLP_USERDATA, (LONG_PTR)oldproc);
655
656     return hwnd;
657 }
658
659 /* Performs a single LVM_HITTEST test */
660 static void test_lvm_hittest_(HWND hwnd, INT x, INT y, INT item, UINT flags, UINT broken_flags,
661                               BOOL todo_item, BOOL todo_flags, int line)
662 {
663     LVHITTESTINFO lpht;
664     INT ret;
665
666     lpht.pt.x = x;
667     lpht.pt.y = y;
668     lpht.iSubItem = 10;
669
670     ret = SendMessage(hwnd, LVM_HITTEST, 0, (LPARAM)&lpht);
671
672     if (todo_item)
673     {
674         todo_wine
675         {
676             ok_(__FILE__, line)(ret == item, "Expected %d retval, got %d\n", item, ret);
677             ok_(__FILE__, line)(lpht.iItem == item, "Expected %d item, got %d\n", item, lpht.iItem);
678             ok_(__FILE__, line)(lpht.iSubItem == 10, "Expected subitem not overwrited\n");
679         }
680     }
681     else
682     {
683         ok_(__FILE__, line)(ret == item, "Expected %d retval, got %d\n", item, ret);
684         ok_(__FILE__, line)(lpht.iItem == item, "Expected %d item, got %d\n", item, lpht.iItem);
685         ok_(__FILE__, line)(lpht.iSubItem == 10, "Expected subitem not overwrited\n");
686     }
687
688     if (todo_flags)
689     {
690         todo_wine
691             ok_(__FILE__, line)(lpht.flags == flags, "Expected flags 0x%x, got 0x%x\n", flags, lpht.flags);
692     }
693     else if (broken_flags)
694         ok_(__FILE__, line)(lpht.flags == flags || broken(lpht.flags == broken_flags),
695                             "Expected flags %x, got %x\n", flags, lpht.flags);
696     else
697         ok_(__FILE__, line)(lpht.flags == flags, "Expected flags 0x%x, got 0x%x\n", flags, lpht.flags);
698 }
699
700 #define test_lvm_hittest(a,b,c,d,e,f,g,h) test_lvm_hittest_(a,b,c,d,e,f,g,h,__LINE__)
701
702 /* Performs a single LVM_SUBITEMHITTEST test */
703 static void test_lvm_subitemhittest_(HWND hwnd, INT x, INT y, INT item, INT subitem, UINT flags,
704                                      BOOL todo_item, BOOL todo_subitem, BOOL todo_flags, int line)
705 {
706     LVHITTESTINFO lpht;
707     INT ret;
708
709     lpht.pt.x = x;
710     lpht.pt.y = y;
711
712     ret = SendMessage(hwnd, LVM_SUBITEMHITTEST, 0, (LPARAM)&lpht);
713
714     if (todo_item)
715     {
716         todo_wine
717         {
718             ok_(__FILE__, line)(ret == item, "Expected %d retval, got %d\n", item, ret);
719             ok_(__FILE__, line)(lpht.iItem == item, "Expected %d item, got %d\n", item, lpht.iItem);
720         }
721     }
722     else
723     {
724         ok_(__FILE__, line)(ret == item, "Expected %d retval, got %d\n", item, ret);
725         ok_(__FILE__, line)(lpht.iItem == item, "Expected %d item, got %d\n", item, lpht.iItem);
726     }
727
728     if (todo_subitem)
729     {
730         todo_wine
731             ok_(__FILE__, line)(lpht.iSubItem == subitem, "Expected subitem %d, got %d\n", subitem, lpht.iSubItem);
732     }
733     else
734         ok_(__FILE__, line)(lpht.iSubItem == subitem, "Expected subitem %d, got %d\n", subitem, lpht.iSubItem);
735
736     if (todo_flags)
737     {
738         todo_wine
739             ok_(__FILE__, line)(lpht.flags == flags, "Expected flags 0x%x, got 0x%x\n", flags, lpht.flags);
740     }
741     else
742         ok_(__FILE__, line)(lpht.flags == flags, "Expected flags 0x%x, got 0x%x\n", flags, lpht.flags);
743 }
744
745 #define test_lvm_subitemhittest(a,b,c,d,e,f,g,h,i) test_lvm_subitemhittest_(a,b,c,d,e,f,g,h,i,__LINE__)
746
747 static void test_images(void)
748 {
749     HWND hwnd;
750     INT r;
751     LVITEM item;
752     HIMAGELIST himl;
753     HBITMAP hbmp;
754     RECT r1, r2;
755     static CHAR hello[] = "hello";
756
757     himl = ImageList_Create(40, 40, 0, 4, 4);
758     ok(himl != NULL, "failed to create imagelist\n");
759
760     hbmp = CreateBitmap(40, 40, 1, 1, NULL);
761     ok(hbmp != NULL, "failed to create bitmap\n");
762
763     r = ImageList_Add(himl, hbmp, 0);
764     ok(r == 0, "should be zero\n");
765
766     hwnd = CreateWindowEx(0, "SysListView32", "foo", LVS_OWNERDRAWFIXED, 
767                 10, 10, 100, 200, hwndparent, NULL, NULL, NULL);
768     ok(hwnd != NULL, "failed to create listview window\n");
769
770     r = SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, 0,
771                     LVS_EX_UNDERLINEHOT | LVS_EX_FLATSB | LVS_EX_ONECLICKACTIVATE);
772
773     ok(r == 0, "should return zero\n");
774
775     r = SendMessage(hwnd, LVM_SETIMAGELIST, 0, (LPARAM)himl);
776     ok(r == 0, "should return zero\n");
777
778     r = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELONG(100,50));
779     ok(r != 0, "got 0\n");
780
781     /* returns dimensions */
782
783     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
784     ok(r == 0, "should be zero items\n");
785
786     item.mask = LVIF_IMAGE | LVIF_TEXT;
787     item.iItem = 0;
788     item.iSubItem = 1;
789     item.iImage = 0;
790     item.pszText = 0;
791     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
792     ok(r == -1, "should fail\n");
793
794     item.iSubItem = 0;
795     item.pszText = hello;
796     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
797     ok(r == 0, "should not fail\n");
798
799     memset(&r1, 0, sizeof r1);
800     r1.left = LVIR_ICON;
801     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM) &r1);
802     expect(1, r);
803
804     r = SendMessage(hwnd, LVM_DELETEALLITEMS, 0, 0);
805     ok(r == TRUE, "should not fail\n");
806
807     item.iSubItem = 0;
808     item.pszText = hello;
809     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
810     ok(r == 0, "should not fail\n");
811
812     memset(&r2, 0, sizeof r2);
813     r2.left = LVIR_ICON;
814     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM) &r2);
815     expect(1, r);
816
817     ok(!memcmp(&r1, &r2, sizeof r1), "rectangle should be the same\n");
818
819     DestroyWindow(hwnd);
820 }
821
822 static void test_checkboxes(void)
823 {
824     HWND hwnd;
825     LVITEMA item;
826     DWORD r;
827     static CHAR text[]  = "Text",
828                 text2[] = "Text2",
829                 text3[] = "Text3";
830
831     hwnd = CreateWindowEx(0, "SysListView32", "foo", LVS_REPORT, 
832                 10, 10, 100, 200, hwndparent, NULL, NULL, NULL);
833     ok(hwnd != NULL, "failed to create listview window\n");
834
835     /* first without LVS_EX_CHECKBOXES set and an item and check that state is preserved */
836     item.mask = LVIF_TEXT | LVIF_STATE;
837     item.stateMask = 0xffff;
838     item.state = 0xfccc;
839     item.iItem = 0;
840     item.iSubItem = 0;
841     item.pszText = text;
842     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
843     expect(0, r);
844
845     item.iItem = 0;
846     item.mask = LVIF_STATE;
847     item.stateMask = 0xffff;
848     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
849     expect(1, r);
850     ok(item.state == 0xfccc, "state %x\n", item.state);
851
852     /* Don't set LVIF_STATE */
853     item.mask = LVIF_TEXT;
854     item.stateMask = 0xffff;
855     item.state = 0xfccc;
856     item.iItem = 1;
857     item.iSubItem = 0;
858     item.pszText = text;
859     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
860     expect(1, r);
861
862     item.iItem = 1;
863     item.mask = LVIF_STATE;
864     item.stateMask = 0xffff;
865     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
866     expect(1, r);
867     ok(item.state == 0, "state %x\n", item.state);
868
869     r = SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_CHECKBOXES, LVS_EX_CHECKBOXES);
870     expect(0, r);
871
872     /* Having turned on checkboxes, check that all existing items are set to 0x1000 (unchecked) */
873     item.iItem = 0;
874     item.mask = LVIF_STATE;
875     item.stateMask = 0xffff;
876     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
877     expect(1, r);
878     if (item.state != 0x1ccc)
879     {
880         win_skip("LVS_EX_CHECKBOXES style is unavailable. Skipping.\n");
881         DestroyWindow(hwnd);
882         return;
883     }
884
885     /* Now add an item without specifying a state and check that its state goes to 0x1000 */
886     item.iItem = 2;
887     item.mask = LVIF_TEXT;
888     item.state = 0;
889     item.pszText = text2;
890     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
891     expect(2, r);
892
893     item.iItem = 2;
894     item.mask = LVIF_STATE;
895     item.stateMask = 0xffff;
896     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
897     expect(1, r);
898     ok(item.state == 0x1000, "state %x\n", item.state);
899
900     /* Add a further item this time specifying a state and still its state goes to 0x1000 */
901     item.iItem = 3;
902     item.mask = LVIF_TEXT | LVIF_STATE;
903     item.stateMask = 0xffff;
904     item.state = 0x2aaa;
905     item.pszText = text3;
906     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
907     expect(3, r);
908
909     item.iItem = 3;
910     item.mask = LVIF_STATE;
911     item.stateMask = 0xffff;
912     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
913     expect(1, r);
914     ok(item.state == 0x1aaa, "state %x\n", item.state);
915
916     /* Set an item's state to checked */
917     item.iItem = 3;
918     item.mask = LVIF_STATE;
919     item.stateMask = 0xf000;
920     item.state = 0x2000;
921     r = SendMessage(hwnd, LVM_SETITEMA, 0, (LPARAM) &item);
922     expect(1, r);
923
924     item.iItem = 3;
925     item.mask = LVIF_STATE;
926     item.stateMask = 0xffff;
927     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
928     expect(1, r);
929     ok(item.state == 0x2aaa, "state %x\n", item.state);
930
931     /* Check that only the bits we asked for are returned,
932      * and that all the others are set to zero
933      */
934     item.iItem = 3;
935     item.mask = LVIF_STATE;
936     item.stateMask = 0xf000;
937     item.state = 0xffff;
938     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
939     expect(1, r);
940     ok(item.state == 0x2000, "state %x\n", item.state);
941
942     /* Set the style again and check that doesn't change an item's state */
943     r = SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_CHECKBOXES, LVS_EX_CHECKBOXES);
944     ok(r == LVS_EX_CHECKBOXES, "ret %x\n", r);
945
946     item.iItem = 3;
947     item.mask = LVIF_STATE;
948     item.stateMask = 0xffff;
949     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
950     expect(1, r);
951     ok(item.state == 0x2aaa, "state %x\n", item.state);
952
953     /* Unsetting the checkbox extended style doesn't change an item's state */
954     r = SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_CHECKBOXES, 0);
955     ok(r == LVS_EX_CHECKBOXES, "ret %x\n", r);
956
957     item.iItem = 3;
958     item.mask = LVIF_STATE;
959     item.stateMask = 0xffff;
960     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
961     expect(1, r);
962     ok(item.state == 0x2aaa, "state %x\n", item.state);
963
964     /* Now setting the style again will change an item's state */
965     r = SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_CHECKBOXES, LVS_EX_CHECKBOXES);
966     expect(0, r);
967
968     item.iItem = 3;
969     item.mask = LVIF_STATE;
970     item.stateMask = 0xffff;
971     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
972     expect(1, r);
973     ok(item.state == 0x1aaa, "state %x\n", item.state);
974
975     /* Toggle checkbox tests (bug 9934) */
976     memset (&item, 0xcc, sizeof(item));
977     item.mask = LVIF_STATE;
978     item.iItem = 3;
979     item.iSubItem = 0;
980     item.state = LVIS_FOCUSED;
981     item.stateMask = LVIS_FOCUSED;
982     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM) &item);
983     expect(1, r);
984
985     item.iItem = 3;
986     item.mask = LVIF_STATE;
987     item.stateMask = 0xffff;
988     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
989     expect(1, r);
990     ok(item.state == 0x1aab, "state %x\n", item.state);
991
992     r = SendMessage(hwnd, WM_KEYDOWN, VK_SPACE, 0);
993     expect(0, r);
994     r = SendMessage(hwnd, WM_KEYUP, VK_SPACE, 0);
995     expect(0, r);
996
997     item.iItem = 3;
998     item.mask = LVIF_STATE;
999     item.stateMask = 0xffff;
1000     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1001     expect(1, r);
1002     ok(item.state == 0x2aab, "state %x\n", item.state);
1003
1004     r = SendMessage(hwnd, WM_KEYDOWN, VK_SPACE, 0);
1005     expect(0, r);
1006     r = SendMessage(hwnd, WM_KEYUP, VK_SPACE, 0);
1007     expect(0, r);
1008
1009     item.iItem = 3;
1010     item.mask = LVIF_STATE;
1011     item.stateMask = 0xffff;
1012     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1013     expect(1, r);
1014     ok(item.state == 0x1aab, "state %x\n", item.state);
1015
1016     DestroyWindow(hwnd);
1017 }
1018
1019 static void insert_column(HWND hwnd, int idx)
1020 {
1021     LVCOLUMN column;
1022     INT rc;
1023
1024     memset(&column, 0xcc, sizeof(column));
1025     column.mask = LVCF_SUBITEM;
1026     column.iSubItem = idx;
1027
1028     rc = ListView_InsertColumn(hwnd, idx, &column);
1029     expect(idx, rc);
1030 }
1031
1032 static void insert_item(HWND hwnd, int idx)
1033 {
1034     static CHAR text[] = "foo";
1035
1036     LVITEMA item;
1037     INT rc;
1038
1039     memset(&item, 0xcc, sizeof (item));
1040     item.mask = LVIF_TEXT;
1041     item.iItem = idx;
1042     item.iSubItem = 0;
1043     item.pszText = text;
1044
1045     rc = ListView_InsertItem(hwnd, &item);
1046     expect(idx, rc);
1047 }
1048
1049 static void test_items(void)
1050 {
1051     const LPARAM lparamTest = 0x42;
1052     static CHAR text[] = "Text";
1053     char buffA[5];
1054     HWND hwnd;
1055     LVITEMA item;
1056     DWORD r;
1057
1058     hwnd = CreateWindowEx(0, "SysListView32", "foo", LVS_REPORT,
1059                 10, 10, 100, 200, hwndparent, NULL, NULL, NULL);
1060     ok(hwnd != NULL, "failed to create listview window\n");
1061
1062     /*
1063      * Test setting/getting item params
1064      */
1065
1066     /* Set up two columns */
1067     insert_column(hwnd, 0);
1068     insert_column(hwnd, 1);
1069
1070     /* LVIS_SELECTED with zero stateMask */
1071     /* set */
1072     memset (&item, 0, sizeof (item));
1073     item.mask = LVIF_STATE;
1074     item.state = LVIS_SELECTED;
1075     item.stateMask = 0;
1076     item.iItem = 0;
1077     item.iSubItem = 0;
1078     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
1079     expect(0, r);
1080     /* get */
1081     memset (&item, 0xcc, sizeof (item));
1082     item.mask = LVIF_STATE;
1083     item.stateMask = LVIS_SELECTED;
1084     item.state = 0;
1085     item.iItem = 0;
1086     item.iSubItem = 0;
1087     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1088     expect(1, r);
1089     ok(item.state & LVIS_SELECTED, "Expected LVIS_SELECTED\n");
1090     SendMessage(hwnd, LVM_DELETEITEM, 0, 0);
1091
1092     /* LVIS_SELECTED with zero stateMask */
1093     /* set */
1094     memset (&item, 0, sizeof (item));
1095     item.mask = LVIF_STATE;
1096     item.state = LVIS_FOCUSED;
1097     item.stateMask = 0;
1098     item.iItem = 0;
1099     item.iSubItem = 0;
1100     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
1101     expect(0, r);
1102     /* get */
1103     memset (&item, 0xcc, sizeof (item));
1104     item.mask = LVIF_STATE;
1105     item.stateMask = LVIS_FOCUSED;
1106     item.state = 0;
1107     item.iItem = 0;
1108     item.iSubItem = 0;
1109     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1110     expect(1, r);
1111     ok(item.state & LVIS_FOCUSED, "Expected LVIS_FOCUSED\n");
1112     SendMessage(hwnd, LVM_DELETEITEM, 0, 0);
1113
1114     /* LVIS_CUT with LVIS_FOCUSED stateMask */
1115     /* set */
1116     memset (&item, 0, sizeof (item));
1117     item.mask = LVIF_STATE;
1118     item.state = LVIS_CUT;
1119     item.stateMask = LVIS_FOCUSED;
1120     item.iItem = 0;
1121     item.iSubItem = 0;
1122     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
1123     expect(0, r);
1124     /* get */
1125     memset (&item, 0xcc, sizeof (item));
1126     item.mask = LVIF_STATE;
1127     item.stateMask = LVIS_CUT;
1128     item.state = 0;
1129     item.iItem = 0;
1130     item.iSubItem = 0;
1131     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1132     expect(1, r);
1133     ok(item.state & LVIS_CUT, "Expected LVIS_CUT\n");
1134     SendMessage(hwnd, LVM_DELETEITEM, 0, 0);
1135
1136     /* Insert an item with just a param */
1137     memset (&item, 0xcc, sizeof (item));
1138     item.mask = LVIF_PARAM;
1139     item.iItem = 0;
1140     item.iSubItem = 0;
1141     item.lParam = lparamTest;
1142     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
1143     expect(0, r);
1144
1145     /* Test getting of the param */
1146     memset (&item, 0xcc, sizeof (item));
1147     item.mask = LVIF_PARAM;
1148     item.iItem = 0;
1149     item.iSubItem = 0;
1150     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1151     expect(1, r);
1152     ok(item.lParam == lparamTest, "got lParam %lx, expected %lx\n", item.lParam, lparamTest);
1153
1154     /* Set up a subitem */
1155     memset (&item, 0xcc, sizeof (item));
1156     item.mask = LVIF_TEXT;
1157     item.iItem = 0;
1158     item.iSubItem = 1;
1159     item.pszText = text;
1160     r = SendMessage(hwnd, LVM_SETITEMA, 0, (LPARAM) &item);
1161     expect(1, r);
1162
1163     item.mask = LVIF_TEXT;
1164     item.iItem = 0;
1165     item.iSubItem = 1;
1166     item.pszText = buffA;
1167     item.cchTextMax = sizeof(buffA);
1168     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1169     expect(1, r);
1170     ok(!memcmp(item.pszText, text, sizeof(text)), "got text %s, expected %s\n", item.pszText, text);
1171
1172     /* set up with extra flag */
1173     /* 1. reset subitem text */
1174     item.mask = LVIF_TEXT;
1175     item.iItem = 0;
1176     item.iSubItem = 1;
1177     item.pszText = NULL;
1178     r = SendMessage(hwnd, LVM_SETITEMA, 0, (LPARAM) &item);
1179     expect(1, r);
1180
1181     item.mask = LVIF_TEXT;
1182     item.iItem = 0;
1183     item.iSubItem = 1;
1184     item.pszText = buffA;
1185     buffA[0] = 'a';
1186     item.cchTextMax = sizeof(buffA);
1187     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1188     expect(1, r);
1189     ok(item.pszText[0] == 0, "got %p\n", item.pszText);
1190
1191     /* 2. set new text with extra flag specified */
1192     item.mask = LVIF_TEXT | LVIF_DI_SETITEM;
1193     item.iItem = 0;
1194     item.iSubItem = 1;
1195     item.pszText = text;
1196     r = SendMessage(hwnd, LVM_SETITEMA, 0, (LPARAM) &item);
1197     ok(r == 1 || broken(r == 0) /* NT4 */, "ret %d\n", r);
1198
1199     if (r == 1)
1200     {
1201         item.mask = LVIF_TEXT;
1202         item.iItem = 0;
1203         item.iSubItem = 1;
1204         item.pszText = buffA;
1205         buffA[0] = 'a';
1206         item.cchTextMax = sizeof(buffA);
1207         r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1208         expect(1, r);
1209         ok(!memcmp(item.pszText, text, sizeof(text)), "got %s, expected %s\n", item.pszText, text);
1210     }
1211
1212     /* Query param from subitem: returns main item param */
1213     memset (&item, 0xcc, sizeof (item));
1214     item.mask = LVIF_PARAM;
1215     item.iItem = 0;
1216     item.iSubItem = 1;
1217     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1218     expect(1, r);
1219     ok(item.lParam == lparamTest, "got lParam %lx, expected %lx\n", item.lParam, lparamTest);
1220
1221     /* Set up param on first subitem: no effect */
1222     memset (&item, 0xcc, sizeof (item));
1223     item.mask = LVIF_PARAM;
1224     item.iItem = 0;
1225     item.iSubItem = 1;
1226     item.lParam = lparamTest+1;
1227     r = SendMessage(hwnd, LVM_SETITEMA, 0, (LPARAM) &item);
1228     expect(0, r);
1229
1230     /* Query param from subitem again: should still return main item param */
1231     memset (&item, 0xcc, sizeof (item));
1232     item.mask = LVIF_PARAM;
1233     item.iItem = 0;
1234     item.iSubItem = 1;
1235     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1236     expect(1, r);
1237     ok(item.lParam == lparamTest, "got lParam %lx, expected %lx\n", item.lParam, lparamTest);
1238
1239     /**** Some tests of state highlighting ****/
1240     memset (&item, 0xcc, sizeof (item));
1241     item.mask = LVIF_STATE;
1242     item.iItem = 0;
1243     item.iSubItem = 0;
1244     item.state = LVIS_SELECTED;
1245     item.stateMask = LVIS_SELECTED | LVIS_DROPHILITED;
1246     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM) &item);
1247     expect(1, r);
1248     item.iSubItem = 1;
1249     item.state = LVIS_DROPHILITED;
1250     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM) &item);
1251     expect(1, r);
1252
1253     memset (&item, 0xcc, sizeof (item));
1254     item.mask = LVIF_STATE;
1255     item.iItem = 0;
1256     item.iSubItem = 0;
1257     item.stateMask = -1;
1258     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
1259     expect(1, r);
1260     ok(item.state == LVIS_SELECTED, "got state %x, expected %x\n", item.state, LVIS_SELECTED);
1261     item.iSubItem = 1;
1262     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
1263     expect(1, r);
1264     todo_wine ok(item.state == LVIS_DROPHILITED, "got state %x, expected %x\n", item.state, LVIS_DROPHILITED);
1265
1266     /* some notnull but meaningless masks */
1267     memset (&item, 0, sizeof(item));
1268     item.mask = LVIF_NORECOMPUTE;
1269     item.iItem = 0;
1270     item.iSubItem = 0;
1271     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1272     expect(1, r);
1273     memset (&item, 0, sizeof(item));
1274     item.mask = LVIF_DI_SETITEM;
1275     item.iItem = 0;
1276     item.iSubItem = 0;
1277     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM) &item);
1278     expect(1, r);
1279
1280     /* set text to callback value already having it */
1281     r = SendMessage(hwnd, LVM_DELETEALLITEMS, 0, 0);
1282     expect(TRUE, r);
1283     memset (&item, 0, sizeof (item));
1284     item.mask  = LVIF_TEXT;
1285     item.pszText = LPSTR_TEXTCALLBACK;
1286     item.iItem = 0;
1287     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM) &item);
1288     expect(0, r);
1289     memset (&item, 0, sizeof (item));
1290
1291     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1292
1293     item.pszText = LPSTR_TEXTCALLBACK;
1294     r = SendMessage(hwnd, LVM_SETITEMTEXT, 0 , (LPARAM) &item);
1295     expect(TRUE, r);
1296
1297     ok_sequence(sequences, PARENT_SEQ_INDEX, textcallback_set_again_parent_seq,
1298                 "check callback text comparison rule", FALSE);
1299
1300     DestroyWindow(hwnd);
1301 }
1302
1303 static void test_columns(void)
1304 {
1305     HWND hwnd;
1306     LVCOLUMNA column;
1307     LVITEMA item;
1308     INT order[2];
1309     CHAR buff[5];
1310     DWORD rc;
1311
1312     hwnd = CreateWindowExA(0, "SysListView32", "foo", LVS_REPORT,
1313                 10, 10, 100, 200, hwndparent, NULL, NULL, NULL);
1314     ok(hwnd != NULL, "failed to create listview window\n");
1315
1316     /* Add a column with no mask */
1317     memset(&column, 0xcc, sizeof(column));
1318     column.mask = 0;
1319     rc = SendMessageA(hwnd, LVM_INSERTCOLUMNA, 0, (LPARAM)&column);
1320     ok(rc == 0, "Inserting column with no mask failed with %d\n", rc);
1321
1322     /* Check its width */
1323     rc = SendMessageA(hwnd, LVM_GETCOLUMNWIDTH, 0, 0);
1324     ok(rc == 10, "Inserting column with no mask failed to set width to 10 with %d\n", rc);
1325
1326     DestroyWindow(hwnd);
1327
1328     /* LVM_GETCOLUMNORDERARRAY */
1329     hwnd = create_listview_control(LVS_REPORT);
1330     subclass_header(hwnd);
1331
1332     memset(&column, 0, sizeof(column));
1333     column.mask = LVCF_WIDTH;
1334     column.cx = 100;
1335     rc = SendMessageA(hwnd, LVM_INSERTCOLUMNA, 0, (LPARAM)&column);
1336     expect(0, rc);
1337
1338     column.cx = 200;
1339     rc = SendMessageA(hwnd, LVM_INSERTCOLUMNA, 1, (LPARAM)&column);
1340     expect(1, rc);
1341
1342     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1343
1344     rc = SendMessageA(hwnd, LVM_GETCOLUMNORDERARRAY, 2, (LPARAM)&order);
1345     expect(1, rc);
1346     ok(order[0] == 0, "Expected order 0, got %d\n", order[0]);
1347     ok(order[1] == 1, "Expected order 1, got %d\n", order[1]);
1348
1349     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_getorderarray_seq, "get order array", FALSE);
1350
1351     /* after column added subitem is considered as present */
1352     insert_item(hwnd, 0);
1353
1354     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1355
1356     item.pszText = buff;
1357     item.cchTextMax = sizeof(buff);
1358     item.iItem = 0;
1359     item.iSubItem = 1;
1360     item.mask = LVIF_TEXT;
1361     memset(&g_itema, 0, sizeof(g_itema));
1362     rc = SendMessageA(hwnd, LVM_GETITEMA, 0, (LPARAM)&item);
1363     expect(1, rc);
1364     ok(g_itema.iSubItem == 1, "got %d\n", g_itema.iSubItem);
1365
1366     ok_sequence(sequences, PARENT_SEQ_INDEX, single_getdispinfo_parent_seq,
1367         "get subitem text after column added", FALSE);
1368
1369     DestroyWindow(hwnd);
1370 }
1371
1372 /* test setting imagelist between WM_NCCREATE and WM_CREATE */
1373 static WNDPROC listviewWndProc;
1374 static HIMAGELIST test_create_imagelist;
1375
1376 static LRESULT CALLBACK create_test_wndproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1377 {
1378     LRESULT ret;
1379
1380     if (uMsg == WM_CREATE)
1381     {
1382         LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam;
1383         lpcs->style |= LVS_REPORT;
1384     }
1385     ret = CallWindowProc(listviewWndProc, hwnd, uMsg, wParam, lParam);
1386     if (uMsg == WM_CREATE) SendMessage(hwnd, LVM_SETIMAGELIST, 0, (LPARAM)test_create_imagelist);
1387     return ret;
1388 }
1389
1390 static void test_create(void)
1391 {
1392     HWND hList;
1393     HWND hHeader;
1394     LONG_PTR ret;
1395     LONG r;
1396     LVCOLUMNA col;
1397     RECT rect;
1398     WNDCLASSEX cls;
1399     DWORD style;
1400
1401     cls.cbSize = sizeof(WNDCLASSEX);
1402     ok(GetClassInfoEx(GetModuleHandle(NULL), "SysListView32", &cls), "GetClassInfoEx failed\n");
1403     listviewWndProc = cls.lpfnWndProc;
1404     cls.lpfnWndProc = create_test_wndproc;
1405     cls.lpszClassName = "MyListView32";
1406     ok(RegisterClassEx(&cls), "RegisterClassEx failed\n");
1407
1408     test_create_imagelist = ImageList_Create(16, 16, 0, 5, 10);
1409     hList = CreateWindow("MyListView32", "Test", WS_VISIBLE, 0, 0, 100, 100, NULL, NULL, GetModuleHandle(NULL), 0);
1410     ok((HIMAGELIST)SendMessage(hList, LVM_GETIMAGELIST, 0, 0) == test_create_imagelist, "Image list not obtained\n");
1411     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1412
1413     if (!IsWindow(hHeader))
1414     {
1415         /* version 4.0 */
1416         win_skip("LVM_GETHEADER not implemented. Skipping.\n");
1417         DestroyWindow(hList);
1418         return;
1419     }
1420
1421     ok(IsWindow(hHeader) && IsWindowVisible(hHeader), "Listview not in report mode\n");
1422     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1423     DestroyWindow(hList);
1424
1425     /* header isn't created on LVS_ICON and LVS_LIST styles */
1426     hList = CreateWindow("SysListView32", "Test", WS_VISIBLE, 0, 0, 100, 100, NULL, NULL,
1427                           GetModuleHandle(NULL), 0);
1428     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1429     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1430     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1431     /* insert column */
1432     memset(&col, 0, sizeof(LVCOLUMNA));
1433     col.mask = LVCF_WIDTH;
1434     col.cx = 100;
1435     r = SendMessage(hList, LVM_INSERTCOLUMN, 0, (LPARAM)&col);
1436     expect(0, r);
1437     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1438     ok(IsWindow(hHeader), "Header should be created\n");
1439     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1440     style = GetWindowLong(hHeader, GWL_STYLE);
1441     ok(!(style & HDS_HIDDEN), "Not expected HDS_HIDDEN\n");
1442     DestroyWindow(hList);
1443
1444     hList = CreateWindow("SysListView32", "Test", WS_VISIBLE|LVS_LIST, 0, 0, 100, 100, NULL, NULL,
1445                           GetModuleHandle(NULL), 0);
1446     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1447     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1448     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1449     /* insert column */
1450     memset(&col, 0, sizeof(LVCOLUMNA));
1451     col.mask = LVCF_WIDTH;
1452     col.cx = 100;
1453     r = SendMessage(hList, LVM_INSERTCOLUMN, 0, (LPARAM)&col);
1454     expect(0, r);
1455     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1456     ok(IsWindow(hHeader), "Header should be created\n");
1457     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1458     DestroyWindow(hList);
1459
1460     /* try to switch LVS_ICON -> LVS_REPORT and back LVS_ICON -> LVS_REPORT */
1461     hList = CreateWindow("SysListView32", "Test", WS_VISIBLE, 0, 0, 100, 100, NULL, NULL,
1462                           GetModuleHandle(NULL), 0);
1463     ret = SetWindowLongPtr(hList, GWL_STYLE, GetWindowLongPtr(hList, GWL_STYLE) | LVS_REPORT);
1464     ok(ret & WS_VISIBLE, "Style wrong, should have WS_VISIBLE\n");
1465     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1466     ok(IsWindow(hHeader), "Header should be created\n");
1467     ret = SetWindowLongPtr(hList, GWL_STYLE, GetWindowLong(hList, GWL_STYLE) & ~LVS_REPORT);
1468     ok((ret & WS_VISIBLE) && (ret & LVS_REPORT), "Style wrong, should have WS_VISIBLE|LVS_REPORT\n");
1469     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1470     ok(IsWindow(hHeader), "Header should be created\n");
1471     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1472     DestroyWindow(hList);
1473
1474     /* try to switch LVS_LIST -> LVS_REPORT and back LVS_LIST -> LVS_REPORT */
1475     hList = CreateWindow("SysListView32", "Test", WS_VISIBLE|LVS_LIST, 0, 0, 100, 100, NULL, NULL,
1476                           GetModuleHandle(NULL), 0);
1477     ret = SetWindowLongPtr(hList, GWL_STYLE,
1478                           (GetWindowLongPtr(hList, GWL_STYLE) & ~LVS_LIST) | LVS_REPORT);
1479     ok(((ret & WS_VISIBLE) && (ret & LVS_LIST)), "Style wrong, should have WS_VISIBLE|LVS_LIST\n");
1480     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1481     ok(IsWindow(hHeader), "Header should be created\n");
1482     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1483     ret = SetWindowLongPtr(hList, GWL_STYLE,
1484                           (GetWindowLongPtr(hList, GWL_STYLE) & ~LVS_REPORT) | LVS_LIST);
1485     ok(((ret & WS_VISIBLE) && (ret & LVS_REPORT)), "Style wrong, should have WS_VISIBLE|LVS_REPORT\n");
1486     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1487     ok(IsWindow(hHeader), "Header should be created\n");
1488     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1489     DestroyWindow(hList);
1490
1491     /* LVS_REPORT without WS_VISIBLE */
1492     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1493                           GetModuleHandle(NULL), 0);
1494     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1495     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1496     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1497     /* insert column */
1498     memset(&col, 0, sizeof(LVCOLUMNA));
1499     col.mask = LVCF_WIDTH;
1500     col.cx = 100;
1501     r = SendMessage(hList, LVM_INSERTCOLUMN, 0, (LPARAM)&col);
1502     expect(0, r);
1503     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1504     ok(IsWindow(hHeader), "Header should be created\n");
1505     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1506     DestroyWindow(hList);
1507
1508     /* LVS_REPORT without WS_VISIBLE, try to show it */
1509     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1510                           GetModuleHandle(NULL), 0);
1511     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1512     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1513     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1514     ShowWindow(hList, SW_SHOW);
1515     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1516     ok(IsWindow(hHeader), "Header should be created\n");
1517     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1518     DestroyWindow(hList);
1519
1520     /* LVS_REPORT with LVS_NOCOLUMNHEADER */
1521     hList = CreateWindow("SysListView32", "Test", LVS_REPORT|LVS_NOCOLUMNHEADER|WS_VISIBLE,
1522                           0, 0, 100, 100, NULL, NULL, GetModuleHandle(NULL), 0);
1523     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1524     ok(IsWindow(hHeader), "Header should be created\n");
1525     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1526     /* HDS_DRAGDROP set by default */
1527     ok(GetWindowLongPtr(hHeader, GWL_STYLE) & HDS_DRAGDROP, "Expected header to have HDS_DRAGDROP\n");
1528     DestroyWindow(hList);
1529
1530     /* setting LVS_EX_HEADERDRAGDROP creates header */
1531     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1532                           GetModuleHandle(NULL), 0);
1533     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1534     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1535     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1536     SendMessage(hList, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_HEADERDRAGDROP);
1537     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1538     ok(IsWindow(hHeader) ||
1539        broken(!IsWindow(hHeader)), /* 4.7x common controls */
1540        "Header should be created\n");
1541     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1542     DestroyWindow(hList);
1543
1544     /* setting LVS_EX_GRIDLINES creates header */
1545     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1546                           GetModuleHandle(NULL), 0);
1547     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1548     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1549     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1550     SendMessage(hList, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_GRIDLINES);
1551     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1552     ok(IsWindow(hHeader) ||
1553        broken(!IsWindow(hHeader)), /* 4.7x common controls */
1554        "Header should be created\n");
1555     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1556     DestroyWindow(hList);
1557
1558     /* setting LVS_EX_FULLROWSELECT creates header */
1559     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1560                           GetModuleHandle(NULL), 0);
1561     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1562     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1563     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1564     SendMessage(hList, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_FULLROWSELECT);
1565     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1566     ok(IsWindow(hHeader) ||
1567        broken(!IsWindow(hHeader)), /* 4.7x common controls */
1568        "Header should be created\n");
1569     ok(hHeader == GetDlgItem(hList, 0), "Expected header as dialog item\n");
1570     DestroyWindow(hList);
1571
1572     /* not report style accepts LVS_EX_HEADERDRAGDROP too */
1573     hList = create_listview_control(LVS_ICON);
1574     SendMessage(hList, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_HEADERDRAGDROP);
1575     r = SendMessage(hList, LVM_GETEXTENDEDLISTVIEWSTYLE, 0, 0);
1576     ok(r & LVS_EX_HEADERDRAGDROP, "Expected LVS_EX_HEADERDRAGDROP to be set\n");
1577     DestroyWindow(hList);
1578
1579     /* requesting header info with LVM_GETSUBITEMRECT doesn't create it */
1580     hList = CreateWindow("SysListView32", "Test", LVS_REPORT, 0, 0, 100, 100, NULL, NULL,
1581                           GetModuleHandle(NULL), 0);
1582     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1583     ok(NULL == GetDlgItem(hList, 0), "NULL dialog item expected\n");
1584
1585     rect.left = LVIR_BOUNDS;
1586     rect.top  = 1;
1587     rect.right = rect.bottom = -10;
1588     r = SendMessage(hList, LVM_GETSUBITEMRECT, -1, (LPARAM)&rect);
1589     expect(1, r);
1590
1591     hHeader = (HWND)SendMessage(hList, LVM_GETHEADER, 0, 0);
1592     ok(!IsWindow(hHeader), "Header shouldn't be created\n");
1593     ok(GetDlgItem(hList, 0) == NULL, "NULL dialog item expected\n");
1594
1595     DestroyWindow(hList);
1596
1597     /* WM_MEASUREITEM should be sent when created with LVS_OWNERDRAWFIXED */
1598     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1599     hList = create_listview_control(LVS_OWNERDRAWFIXED | LVS_REPORT);
1600     ok_sequence(sequences, PARENT_SEQ_INDEX, create_ownerdrawfixed_parent_seq,
1601                 "created with LVS_OWNERDRAWFIXED|LVS_REPORT - parent seq", FALSE);
1602     DestroyWindow(hList);
1603 }
1604
1605 static void test_redraw(void)
1606 {
1607     HWND hwnd;
1608     HDC hdc;
1609     BOOL res;
1610     DWORD r;
1611
1612     hwnd = create_listview_control(LVS_REPORT);
1613     subclass_header(hwnd);
1614
1615     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1616
1617     InvalidateRect(hwnd, NULL, TRUE);
1618     UpdateWindow(hwnd);
1619     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, redraw_listview_seq, "redraw listview", FALSE);
1620
1621     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1622
1623     /* forward WM_ERASEBKGND to parent on CLR_NONE background color */
1624     /* 1. Without backbuffer */
1625     res = ListView_SetBkColor(hwnd, CLR_NONE);
1626     expect(TRUE, res);
1627
1628     hdc = GetWindowDC(hwndparent);
1629
1630     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1631     r = SendMessageA(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
1632     ok(r == 1, "Expected not zero result\n");
1633     ok_sequence(sequences, PARENT_FULL_SEQ_INDEX, forward_erasebkgnd_parent_seq,
1634                 "forward WM_ERASEBKGND on CLR_NONE", FALSE);
1635
1636     res = ListView_SetBkColor(hwnd, CLR_DEFAULT);
1637     expect(TRUE, res);
1638
1639     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1640     r = SendMessageA(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
1641     expect(1, r);
1642     ok_sequence(sequences, PARENT_FULL_SEQ_INDEX, empty_seq,
1643                 "don't forward WM_ERASEBKGND on non-CLR_NONE", FALSE);
1644
1645     /* 2. With backbuffer */
1646     SendMessageA(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_DOUBLEBUFFER,
1647                                                      LVS_EX_DOUBLEBUFFER);
1648     res = ListView_SetBkColor(hwnd, CLR_NONE);
1649     expect(TRUE, res);
1650
1651     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1652     r = SendMessageA(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
1653     expect(1, r);
1654     ok_sequence(sequences, PARENT_FULL_SEQ_INDEX, forward_erasebkgnd_parent_seq,
1655                 "forward WM_ERASEBKGND on CLR_NONE", FALSE);
1656
1657     res = ListView_SetBkColor(hwnd, CLR_DEFAULT);
1658     expect(TRUE, res);
1659
1660     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1661     r = SendMessageA(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
1662     todo_wine expect(1, r);
1663     ok_sequence(sequences, PARENT_FULL_SEQ_INDEX, empty_seq,
1664                 "don't forward WM_ERASEBKGND on non-CLR_NONE", FALSE);
1665
1666     ReleaseDC(hwndparent, hdc);
1667
1668     DestroyWindow(hwnd);
1669 }
1670
1671 static LRESULT WINAPI cd_wndproc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
1672 {
1673     COLORREF clr, c0ffee = RGB(0xc0, 0xff, 0xee);
1674
1675     if(msg == WM_NOTIFY) {
1676         NMHDR *nmhdr = (PVOID)lp;
1677         if(nmhdr->code == NM_CUSTOMDRAW) {
1678             NMLVCUSTOMDRAW *nmlvcd = (PVOID)nmhdr;
1679             trace("NMCUSTOMDRAW (0x%.8x)\n", nmlvcd->nmcd.dwDrawStage);
1680             switch(nmlvcd->nmcd.dwDrawStage) {
1681             case CDDS_PREPAINT:
1682                 SetBkColor(nmlvcd->nmcd.hdc, c0ffee);
1683                 return CDRF_NOTIFYITEMDRAW;
1684             case CDDS_ITEMPREPAINT:
1685                 nmlvcd->clrTextBk = CLR_DEFAULT;
1686                 return CDRF_NOTIFYSUBITEMDRAW;
1687             case CDDS_ITEMPREPAINT | CDDS_SUBITEM:
1688                 clr = GetBkColor(nmlvcd->nmcd.hdc);
1689                 todo_wine ok(clr == c0ffee, "clr=%.8x\n", clr);
1690                 return CDRF_NOTIFYPOSTPAINT;
1691             case CDDS_ITEMPOSTPAINT | CDDS_SUBITEM:
1692                 clr = GetBkColor(nmlvcd->nmcd.hdc);
1693                 todo_wine ok(clr == c0ffee, "clr=%.8x\n", clr);
1694                 return CDRF_DODEFAULT;
1695             }
1696             return CDRF_DODEFAULT;
1697         }
1698     }
1699
1700     return DefWindowProcA(hwnd, msg, wp, lp);
1701 }
1702
1703 static void test_customdraw(void)
1704 {
1705     HWND hwnd;
1706     WNDPROC oldwndproc;
1707
1708     hwnd = create_listview_control(LVS_REPORT);
1709
1710     insert_column(hwnd, 0);
1711     insert_column(hwnd, 1);
1712     insert_item(hwnd, 0);
1713
1714     oldwndproc = (WNDPROC)SetWindowLongPtr(hwndparent, GWLP_WNDPROC,
1715                                            (LONG_PTR)cd_wndproc);
1716
1717     InvalidateRect(hwnd, NULL, TRUE);
1718     UpdateWindow(hwnd);
1719
1720     SetWindowLongPtr(hwndparent, GWLP_WNDPROC, (LONG_PTR)oldwndproc);
1721
1722     DestroyWindow(hwnd);
1723 }
1724
1725 static void test_icon_spacing(void)
1726 {
1727     /* LVM_SETICONSPACING */
1728     /* note: LVM_SETICONSPACING returns the previous icon spacing if successful */
1729
1730     HWND hwnd;
1731     WORD w, h;
1732     INT r;
1733
1734     hwnd = create_listview_control(LVS_ICON);
1735     ok(hwnd != NULL, "failed to create a listview window\n");
1736
1737     r = SendMessage(hwnd, WM_NOTIFYFORMAT, (WPARAM)hwndparent, NF_REQUERY);
1738     expect(NFR_ANSI, r);
1739
1740     /* reset the icon spacing to defaults */
1741     SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(-1, -1));
1742
1743     /* now we can request what the defaults are */
1744     r = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(-1, -1));
1745     w = LOWORD(r);
1746     h = HIWORD(r);
1747
1748     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1749
1750     r = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(20, 30));
1751     ok(r == MAKELONG(w, h) ||
1752        broken(r == MAKELONG(w, w)), /* win98 */
1753        "Expected %d, got %d\n", MAKELONG(w, h), r);
1754
1755     r = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(25, 35));
1756     if (r == 0)
1757     {
1758         /* version 4.0 */
1759         win_skip("LVM_SETICONSPACING unimplemented. Skipping.\n");
1760         DestroyWindow(hwnd);
1761         return;
1762     }
1763     expect(MAKELONG(20,30), r);
1764
1765     r = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(-1,-1));
1766     expect(MAKELONG(25,35), r);
1767
1768     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_icon_spacing_seq, "test icon spacing seq", FALSE);
1769
1770     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1771     DestroyWindow(hwnd);
1772 }
1773
1774 static void test_color(void)
1775 {
1776     RECT rect;
1777     HWND hwnd;
1778     DWORD r;
1779     int i;
1780
1781     COLORREF color;
1782     COLORREF colors[4] = {RGB(0,0,0), RGB(100,50,200), CLR_NONE, RGB(255,255,255)};
1783
1784     hwnd = create_listview_control(LVS_REPORT);
1785     ok(hwnd != NULL, "failed to create a listview window\n");
1786
1787     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1788
1789     for (i = 0; i < 4; i++)
1790     {
1791         color = colors[i];
1792
1793         r = SendMessage(hwnd, LVM_SETBKCOLOR, 0, color);
1794         expect(TRUE, r);
1795         r = SendMessage(hwnd, LVM_GETBKCOLOR, 0, 0);
1796         expect(color, r);
1797
1798         r = SendMessage(hwnd, LVM_SETTEXTCOLOR, 0, color);
1799         expect (TRUE, r);
1800         r = SendMessage(hwnd, LVM_GETTEXTCOLOR, 0, 0);
1801         expect(color, r);
1802
1803         r = SendMessage(hwnd, LVM_SETTEXTBKCOLOR, 0, color);
1804         expect(TRUE, r);
1805         r = SendMessage(hwnd, LVM_GETTEXTBKCOLOR, 0, 0);
1806         expect(color, r);
1807     }
1808
1809     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_color_seq, "test color seq", FALSE);
1810     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1811
1812     /* invalidation test done separately to avoid a message chain mess */
1813     r = ValidateRect(hwnd, NULL);
1814     expect(TRUE, r);
1815     r = SendMessage(hwnd, LVM_SETBKCOLOR, 0, colors[0]);
1816     expect(TRUE, r);
1817
1818     rect.right = rect.bottom = 1;
1819     r = GetUpdateRect(hwnd, &rect, TRUE);
1820     todo_wine expect(FALSE, r);
1821     ok(rect.right == 0 && rect.bottom == 0, "got update rectangle\n");
1822
1823     r = ValidateRect(hwnd, NULL);
1824     expect(TRUE, r);
1825     r = SendMessage(hwnd, LVM_SETTEXTCOLOR, 0, colors[0]);
1826     expect(TRUE, r);
1827
1828     rect.right = rect.bottom = 1;
1829     r = GetUpdateRect(hwnd, &rect, TRUE);
1830     todo_wine expect(FALSE, r);
1831     ok(rect.right == 0 && rect.bottom == 0, "got update rectangle\n");
1832
1833     r = ValidateRect(hwnd, NULL);
1834     expect(TRUE, r);
1835     r = SendMessage(hwnd, LVM_SETTEXTBKCOLOR, 0, colors[0]);
1836     expect(TRUE, r);
1837
1838     rect.right = rect.bottom = 1;
1839     r = GetUpdateRect(hwnd, &rect, TRUE);
1840     todo_wine expect(FALSE, r);
1841     ok(rect.right == 0 && rect.bottom == 0, "got update rectangle\n");
1842
1843     DestroyWindow(hwnd);
1844 }
1845
1846 static void test_item_count(void)
1847 {
1848     /* LVM_INSERTITEM, LVM_DELETEITEM, LVM_DELETEALLITEMS, LVM_GETITEMCOUNT */
1849
1850     HWND hwnd;
1851     DWORD r;
1852     HDC hdc;
1853     HFONT hOldFont;
1854     TEXTMETRICA tm;
1855     RECT rect;
1856     INT height;
1857
1858     LVITEM item0;
1859     LVITEM item1;
1860     LVITEM item2;
1861     static CHAR item0text[] = "item0";
1862     static CHAR item1text[] = "item1";
1863     static CHAR item2text[] = "item2";
1864
1865     hwnd = create_listview_control(LVS_REPORT);
1866     ok(hwnd != NULL, "failed to create a listview window\n");
1867
1868     /* resize in dpiaware manner to fit all 3 items added */
1869     hdc = GetDC(0);
1870     hOldFont = SelectObject(hdc, GetStockObject(SYSTEM_FONT));
1871     GetTextMetricsA(hdc, &tm);
1872     /* 2 extra pixels for bounds and header border */
1873     height = tm.tmHeight + 2;
1874     SelectObject(hdc, hOldFont);
1875     ReleaseDC(0, hdc);
1876
1877     GetWindowRect(hwnd, &rect);
1878     /* 3 items + 1 header + 1 to be sure */
1879     MoveWindow(hwnd, 0, 0, rect.right - rect.left, 5 * height, FALSE);
1880
1881     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1882
1883     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1884     expect(0, r);
1885
1886     /* [item0] */
1887     item0.mask = LVIF_TEXT;
1888     item0.iItem = 0;
1889     item0.iSubItem = 0;
1890     item0.pszText = item0text;
1891     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item0);
1892     expect(0, r);
1893
1894     /* [item0, item1] */
1895     item1.mask = LVIF_TEXT;
1896     item1.iItem = 1;
1897     item1.iSubItem = 0;
1898     item1.pszText = item1text;
1899     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item1);
1900     expect(1, r);
1901
1902     /* [item0, item1, item2] */
1903     item2.mask = LVIF_TEXT;
1904     item2.iItem = 2;
1905     item2.iSubItem = 0;
1906     item2.pszText = item2text;
1907     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item2);
1908     expect(2, r);
1909
1910     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1911     expect(3, r);
1912
1913     /* [item0, item1] */
1914     r = SendMessage(hwnd, LVM_DELETEITEM, 2, 0);
1915     expect(TRUE, r);
1916
1917     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1918     expect(2, r);
1919
1920     /* [] */
1921     r = SendMessage(hwnd, LVM_DELETEALLITEMS, 0, 0);
1922     expect(TRUE, r);
1923
1924     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1925     expect(0, r);
1926
1927     /* [item0] */
1928     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item1);
1929     expect(0, r);
1930
1931     /* [item0, item1] */
1932     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item1);
1933     expect(1, r);
1934
1935     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1936     expect(2, r);
1937
1938     /* [item0, item1, item2] */
1939     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item2);
1940     expect(2, r);
1941
1942     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
1943     expect(3, r);
1944
1945     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_item_count_seq, "test item count seq", FALSE);
1946
1947     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1948     DestroyWindow(hwnd);
1949 }
1950
1951 static void test_item_position(void)
1952 {
1953     /* LVM_SETITEMPOSITION/LVM_GETITEMPOSITION */
1954
1955     HWND hwnd;
1956     DWORD r;
1957     POINT position;
1958
1959     LVITEM item0;
1960     LVITEM item1;
1961     LVITEM item2;
1962     static CHAR item0text[] = "item0";
1963     static CHAR item1text[] = "item1";
1964     static CHAR item2text[] = "item2";
1965
1966     hwnd = create_listview_control(LVS_ICON);
1967     ok(hwnd != NULL, "failed to create a listview window\n");
1968
1969     flush_sequences(sequences, NUM_MSG_SEQUENCES);
1970
1971     /* [item0] */
1972     item0.mask = LVIF_TEXT;
1973     item0.iItem = 0;
1974     item0.iSubItem = 0;
1975     item0.pszText = item0text;
1976     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item0);
1977     expect(0, r);
1978
1979     /* [item0, item1] */
1980     item1.mask = LVIF_TEXT;
1981     item1.iItem = 1;
1982     item1.iSubItem = 0;
1983     item1.pszText = item1text;
1984     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item1);
1985     expect(1, r);
1986
1987     /* [item0, item1, item2] */
1988     item2.mask = LVIF_TEXT;
1989     item2.iItem = 2;
1990     item2.iSubItem = 0;
1991     item2.pszText = item2text;
1992     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item2);
1993     expect(2, r);
1994
1995     r = SendMessage(hwnd, LVM_SETITEMPOSITION, 1, MAKELPARAM(10,5));
1996     expect(TRUE, r);
1997     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 1, (LPARAM) &position);
1998     expect(TRUE, r);
1999     expect2(10, 5, position.x, position.y);
2000
2001     r = SendMessage(hwnd, LVM_SETITEMPOSITION, 2, MAKELPARAM(0,0));
2002     expect(TRUE, r);
2003     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 2, (LPARAM) &position);
2004     expect(TRUE, r);
2005     expect2(0, 0, position.x, position.y);
2006
2007     r = SendMessage(hwnd, LVM_SETITEMPOSITION, 0, MAKELPARAM(20,20));
2008     expect(TRUE, r);
2009     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM) &position);
2010     expect(TRUE, r);
2011     expect2(20, 20, position.x, position.y);
2012
2013     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_itempos_seq, "test item position seq", TRUE);
2014
2015     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2016     DestroyWindow(hwnd);
2017 }
2018
2019 static void test_getorigin(void)
2020 {
2021     /* LVM_GETORIGIN */
2022
2023     HWND hwnd;
2024     DWORD r;
2025     POINT position;
2026
2027     position.x = position.y = 0;
2028
2029     hwnd = create_listview_control(LVS_ICON);
2030     ok(hwnd != NULL, "failed to create a listview window\n");
2031     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2032
2033     r = SendMessage(hwnd, LVM_GETORIGIN, 0, (LPARAM)&position);
2034     expect(TRUE, r);
2035     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2036     DestroyWindow(hwnd);
2037
2038     hwnd = create_listview_control(LVS_SMALLICON);
2039     ok(hwnd != NULL, "failed to create a listview window\n");
2040     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2041
2042     r = SendMessage(hwnd, LVM_GETORIGIN, 0, (LPARAM)&position);
2043     expect(TRUE, r);
2044     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2045     DestroyWindow(hwnd);
2046
2047     hwnd = create_listview_control(LVS_LIST);
2048     ok(hwnd != NULL, "failed to create a listview window\n");
2049     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2050
2051     r = SendMessage(hwnd, LVM_GETORIGIN, 0, (LPARAM)&position);
2052     expect(FALSE, r);
2053     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2054     DestroyWindow(hwnd);
2055
2056     hwnd = create_listview_control(LVS_REPORT);
2057     ok(hwnd != NULL, "failed to create a listview window\n");
2058     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2059
2060     r = SendMessage(hwnd, LVM_GETORIGIN, 0, (LPARAM)&position);
2061     expect(FALSE, r);
2062     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2063     DestroyWindow(hwnd);
2064 }
2065
2066 static void test_multiselect(void)
2067 {
2068     typedef struct t_select_task
2069     {
2070         const char *descr;
2071         int initPos;
2072         int loopVK;
2073         int count;
2074         int result;
2075     } select_task;
2076
2077     HWND hwnd;
2078     INT r;
2079     int i,j,item_count,selected_count;
2080     static const int items=5;
2081     BYTE kstate[256];
2082     select_task task;
2083     LONG_PTR style;
2084     LVITEMA item;
2085
2086     static struct t_select_task task_list[] = {
2087         { "using VK_DOWN", 0, VK_DOWN, -1, -1 },
2088         { "using VK_UP", -1, VK_UP, -1, -1 },
2089         { "using VK_END", 0, VK_END, 1, -1 },
2090         { "using VK_HOME", -1, VK_HOME, 1, -1 }
2091     };
2092
2093
2094     hwnd = create_listview_control(LVS_REPORT);
2095
2096     for (i=0;i<items;i++) {
2097             insert_item(hwnd, 0);
2098     }
2099
2100     item_count = (int)SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
2101
2102     expect(items,item_count);
2103
2104     for (i=0;i<4;i++) {
2105         task = task_list[i];
2106
2107         /* deselect all items */
2108         ListView_SetItemState(hwnd, -1, 0, LVIS_SELECTED);
2109         SendMessage(hwnd, LVM_SETSELECTIONMARK, 0, -1);
2110
2111         /* set initial position */
2112         SendMessage(hwnd, LVM_SETSELECTIONMARK, 0, (task.initPos == -1 ? item_count -1 : task.initPos));
2113         ListView_SetItemState(hwnd,(task.initPos == -1 ? item_count -1 : task.initPos),LVIS_SELECTED ,LVIS_SELECTED);
2114
2115         selected_count = (int)SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2116
2117         ok(selected_count == 1, "There should be only one selected item at the beginning (is %d)\n",selected_count);
2118
2119         /* Set SHIFT key pressed */
2120         GetKeyboardState(kstate);
2121         kstate[VK_SHIFT]=0x80;
2122         SetKeyboardState(kstate);
2123
2124         for (j=1;j<=(task.count == -1 ? item_count : task.count);j++) {
2125             r = SendMessage(hwnd, WM_KEYDOWN, task.loopVK, 0);
2126             expect(0,r);
2127             r = SendMessage(hwnd, WM_KEYUP, task.loopVK, 0);
2128             expect(0,r);
2129         }
2130
2131         selected_count = (int)SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2132
2133         ok((task.result == -1 ? item_count : task.result) == selected_count, "Failed multiple selection %s. There should be %d selected items (is %d)\n", task.descr, item_count, selected_count);
2134
2135         /* Set SHIFT key released */
2136         GetKeyboardState(kstate);
2137         kstate[VK_SHIFT]=0x00;
2138         SetKeyboardState(kstate);
2139     }
2140     DestroyWindow(hwnd);
2141
2142     /* make multiple selection, then switch to LVS_SINGLESEL */
2143     hwnd = create_listview_control(LVS_REPORT);
2144     for (i=0;i<items;i++) {
2145             insert_item(hwnd, 0);
2146     }
2147     item_count = (int)SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
2148     expect(items,item_count);
2149
2150     /* try with NULL pointer */
2151     r = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, 0);
2152     expect(FALSE, r);
2153
2154     /* select all, check notifications */
2155     ListView_SetItemState(hwnd, -1, 0, LVIS_SELECTED);
2156
2157     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2158
2159     item.stateMask = LVIS_SELECTED;
2160     item.state     = LVIS_SELECTED;
2161     r = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2162     expect(TRUE, r);
2163
2164     ok_sequence(sequences, PARENT_SEQ_INDEX, select_all_parent_seq,
2165                 "select all notification", FALSE);
2166
2167     /* deselect all items */
2168     ListView_SetItemState(hwnd, -1, 0, LVIS_SELECTED);
2169     SendMessage(hwnd, LVM_SETSELECTIONMARK, 0, -1);
2170     for (i=0;i<3;i++) {
2171         ListView_SetItemState(hwnd, i, LVIS_SELECTED, LVIS_SELECTED);
2172     }
2173
2174     r = SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2175     expect(3, r);
2176     r = SendMessage(hwnd, LVM_GETSELECTIONMARK, 0, 0);
2177     expect(-1, r);
2178
2179     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2180     ok(!(style & LVS_SINGLESEL), "LVS_SINGLESEL isn't expected\n");
2181     SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_SINGLESEL);
2182     /* check that style is accepted */
2183     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2184     ok(style & LVS_SINGLESEL, "LVS_SINGLESEL expected\n");
2185
2186     for (i=0;i<3;i++) {
2187         r = ListView_GetItemState(hwnd, i, LVIS_SELECTED);
2188         ok(r & LVIS_SELECTED, "Expected item %d to be selected\n", i);
2189     }
2190     r = SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2191     expect(3, r);
2192     SendMessage(hwnd, LVM_GETSELECTIONMARK, 0, 0);
2193     expect(3, r);
2194
2195     /* select one more */
2196     ListView_SetItemState(hwnd, 3, LVIS_SELECTED, LVIS_SELECTED);
2197
2198     for (i=0;i<3;i++) {
2199         r = ListView_GetItemState(hwnd, i, LVIS_SELECTED);
2200         ok(!(r & LVIS_SELECTED), "Expected item %d to be unselected\n", i);
2201     }
2202     r = ListView_GetItemState(hwnd, 3, LVIS_SELECTED);
2203     ok(r & LVIS_SELECTED, "Expected item %d to be selected\n", i);
2204
2205     r = SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2206     expect(1, r);
2207     r = SendMessage(hwnd, LVM_GETSELECTIONMARK, 0, 0);
2208     expect(-1, r);
2209
2210     /* try to select all on LVS_SINGLESEL */
2211     memset(&item, 0, sizeof(item));
2212     item.stateMask = LVIS_SELECTED;
2213     r = SendMessage(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2214     expect(TRUE, r);
2215     SendMessage(hwnd, LVM_SETSELECTIONMARK, 0, -1);
2216
2217     item.stateMask = LVIS_SELECTED;
2218     item.state     = LVIS_SELECTED;
2219     r = SendMessage(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2220     expect(FALSE, r);
2221
2222     r = ListView_GetSelectedCount(hwnd);
2223     expect(0, r);
2224     r = ListView_GetSelectionMark(hwnd);
2225     expect(-1, r);
2226
2227     /* try to deselect all on LVS_SINGLESEL */
2228     item.stateMask = LVIS_SELECTED;
2229     item.state     = LVIS_SELECTED;
2230     r = SendMessage(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2231     expect(TRUE, r);
2232
2233     item.stateMask = LVIS_SELECTED;
2234     item.state     = 0;
2235     r = SendMessage(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2236     expect(TRUE, r);
2237     r = ListView_GetSelectedCount(hwnd);
2238     expect(0, r);
2239
2240     DestroyWindow(hwnd);
2241 }
2242
2243 static void test_subitem_rect(void)
2244 {
2245     HWND hwnd;
2246     DWORD r;
2247     LVCOLUMN col;
2248     RECT rect, rect2;
2249     INT arr[3];
2250
2251     /* test LVM_GETSUBITEMRECT for header */
2252     hwnd = create_listview_control(LVS_REPORT);
2253     ok(hwnd != NULL, "failed to create a listview window\n");
2254     /* add some columns */
2255     memset(&col, 0, sizeof(LVCOLUMN));
2256     col.mask = LVCF_WIDTH;
2257     col.cx = 100;
2258     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 0, (LPARAM)&col);
2259     expect(0, r);
2260     col.cx = 150;
2261     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 1, (LPARAM)&col);
2262     expect(1, r);
2263     col.cx = 200;
2264     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 2, (LPARAM)&col);
2265     expect(2, r);
2266     /* item = -1 means header, subitem index is 1 based */
2267     rect.left = LVIR_BOUNDS;
2268     rect.top  = 0;
2269     rect.right = rect.bottom = 0;
2270     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, -1, (LPARAM)&rect);
2271     expect(0, r);
2272
2273     rect.left = LVIR_BOUNDS;
2274     rect.top  = 1;
2275     rect.right = rect.bottom = 0;
2276     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, -1, (LPARAM)&rect);
2277     expect(1, r);
2278
2279     expect(100, rect.left);
2280     expect(250, rect.right);
2281 todo_wine
2282     expect(3, rect.top);
2283
2284     rect.left = LVIR_BOUNDS;
2285     rect.top  = 2;
2286     rect.right = rect.bottom = 0;
2287     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, -1, (LPARAM)&rect);
2288     expect(1, r);
2289
2290     expect(250, rect.left);
2291     expect(450, rect.right);
2292 todo_wine
2293     expect(3, rect.top);
2294
2295     /* item LVS_REPORT padding isn't applied to subitems */
2296     insert_item(hwnd, 0);
2297
2298     rect.left = LVIR_BOUNDS;
2299     rect.top  = 1;
2300     rect.right = rect.bottom = 0;
2301     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2302     expect(1, r);
2303     expect(100, rect.left);
2304     expect(250, rect.right);
2305
2306     rect.left = LVIR_ICON;
2307     rect.top  = 1;
2308     rect.right = rect.bottom = 0;
2309     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2310     expect(1, r);
2311     /* no icon attached - zero width rectangle, with no left padding */
2312     expect(100, rect.left);
2313     expect(100, rect.right);
2314
2315     rect.left = LVIR_LABEL;
2316     rect.top  = 1;
2317     rect.right = rect.bottom = 0;
2318     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2319     expect(1, r);
2320     /* same as full LVIR_BOUNDS */
2321     expect(100, rect.left);
2322     expect(250, rect.right);
2323
2324     SendMessage(hwnd, LVM_SCROLL, 10, 0);
2325
2326     rect.left = LVIR_BOUNDS;
2327     rect.top  = 1;
2328     rect.right = rect.bottom = 0;
2329     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2330     expect(1, r);
2331     expect(90, rect.left);
2332     expect(240, rect.right);
2333
2334     SendMessage(hwnd, LVM_SCROLL, -10, 0);
2335
2336     DestroyWindow(hwnd);
2337
2338     /* test subitem rects after re-arranging columns */
2339     hwnd = create_listview_control(LVS_REPORT);
2340     ok(hwnd != NULL, "failed to create a listview window\n");
2341     memset(&col, 0, sizeof(LVCOLUMN));
2342     col.mask = LVCF_WIDTH;
2343
2344     col.cx = 100;
2345     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 0, (LPARAM)&col);
2346     expect(0, r);
2347
2348     col.cx = 200;
2349     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 1, (LPARAM)&col);
2350     expect(1, r);
2351
2352     col.cx = 300;
2353     r = SendMessage(hwnd, LVM_INSERTCOLUMN, 2, (LPARAM)&col);
2354     expect(2, r);
2355
2356     insert_item(hwnd, 0);
2357     insert_item(hwnd, 1);
2358
2359     /* wrong item is refused for main item */
2360     rect.left = LVIR_BOUNDS;
2361     rect.top  = 0;
2362     rect.right = rect.bottom = -1;
2363     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 2, (LPARAM)&rect);
2364     expect(FALSE, r);
2365
2366     /* for subitems rectangle is calculated even if there's no item added */
2367     rect.left = LVIR_BOUNDS;
2368     rect.top  = 1;
2369     rect.right = rect.bottom = -1;
2370     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 1, (LPARAM)&rect);
2371     expect(TRUE, r);
2372
2373     rect2.left = LVIR_BOUNDS;
2374     rect2.top  = 1;
2375     rect2.right = rect2.bottom = -1;
2376     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 2, (LPARAM)&rect2);
2377 todo_wine {
2378     expect(TRUE, r);
2379     expect(rect.right, rect2.right);
2380     expect(rect.left, rect2.left);
2381     expect(rect.bottom, rect2.top);
2382     ok(rect2.bottom > rect2.top, "expected not zero height\n");
2383 }
2384
2385     arr[0] = 1; arr[1] = 0; arr[2] = 2;
2386     r = SendMessage(hwnd, LVM_SETCOLUMNORDERARRAY, 3, (LPARAM)arr);
2387     expect(TRUE, r);
2388
2389     rect.left = LVIR_BOUNDS;
2390     rect.top  = 0;
2391     rect.right = rect.bottom = -1;
2392     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2393     expect(TRUE, r);
2394     expect(0, rect.left);
2395     expect(600, rect.right);
2396
2397     rect.left = LVIR_BOUNDS;
2398     rect.top  = 1;
2399     rect.right = rect.bottom = -1;
2400     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2401     expect(TRUE, r);
2402     expect(0, rect.left);
2403     expect(200, rect.right);
2404
2405     rect2.left = LVIR_BOUNDS;
2406     rect2.top  = 1;
2407     rect2.right = rect2.bottom = -1;
2408     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 1, (LPARAM)&rect2);
2409     expect(TRUE, r);
2410     expect(0, rect2.left);
2411     expect(200, rect2.right);
2412     /* items are of the same height */
2413     ok(rect2.top > 0, "expected positive item height\n");
2414     expect(rect.bottom, rect2.top);
2415     expect(rect.bottom * 2 - rect.top, rect2.bottom);
2416
2417     rect.left = LVIR_BOUNDS;
2418     rect.top  = 2;
2419     rect.right = rect.bottom = -1;
2420     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, 0, (LPARAM)&rect);
2421     expect(TRUE, r);
2422     expect(300, rect.left);
2423     expect(600, rect.right);
2424
2425     DestroyWindow(hwnd);
2426
2427     /* try it for non LVS_REPORT style */
2428     hwnd = CreateWindow("SysListView32", "Test", LVS_ICON, 0, 0, 100, 100, NULL, NULL,
2429                          GetModuleHandle(NULL), 0);
2430     rect.left = LVIR_BOUNDS;
2431     rect.top  = 1;
2432     rect.right = rect.bottom = -10;
2433     r = SendMessage(hwnd, LVM_GETSUBITEMRECT, -1, (LPARAM)&rect);
2434     expect(0, r);
2435     /* rect is unchanged */
2436     expect(0, rect.left);
2437     expect(-10, rect.right);
2438     expect(1, rect.top);
2439     expect(-10, rect.bottom);
2440     DestroyWindow(hwnd);
2441 }
2442
2443 /* comparison callback for test_sorting */
2444 static INT WINAPI test_CallBackCompare(LPARAM first, LPARAM second, LPARAM lParam)
2445 {
2446     if (first == second) return 0;
2447     return (first > second ? 1 : -1);
2448 }
2449
2450 static void test_sorting(void)
2451 {
2452     HWND hwnd;
2453     LVITEMA item = {0};
2454     INT r;
2455     LONG_PTR style;
2456     static CHAR names[][5] = {"A", "B", "C", "D", "0"};
2457     CHAR buff[10];
2458
2459     hwnd = create_listview_control(LVS_REPORT);
2460     ok(hwnd != NULL, "failed to create a listview window\n");
2461
2462     /* insert some items */
2463     item.mask = LVIF_PARAM | LVIF_STATE;
2464     item.state = LVIS_SELECTED;
2465     item.iItem = 0;
2466     item.iSubItem = 0;
2467     item.lParam = 3;
2468     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2469     expect(0, r);
2470
2471     item.mask = LVIF_PARAM;
2472     item.iItem = 1;
2473     item.iSubItem = 0;
2474     item.lParam = 2;
2475     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2476     expect(1, r);
2477
2478     item.mask = LVIF_STATE | LVIF_PARAM;
2479     item.state = LVIS_SELECTED;
2480     item.iItem = 2;
2481     item.iSubItem = 0;
2482     item.lParam = 4;
2483     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2484     expect(2, r);
2485
2486     r = SendMessage(hwnd, LVM_GETSELECTIONMARK, 0, 0);
2487     expect(-1, r);
2488
2489     r = SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2490     expect(2, r);
2491
2492     r = SendMessage(hwnd, LVM_SORTITEMS, 0, (LPARAM)test_CallBackCompare);
2493     expect(TRUE, r);
2494
2495     r = SendMessage(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2496     expect(2, r);
2497     r = SendMessage(hwnd, LVM_GETSELECTIONMARK, 0, 0);
2498     expect(-1, r);
2499     r = SendMessage(hwnd, LVM_GETITEMSTATE, 0, LVIS_SELECTED);
2500     expect(0, r);
2501     r = SendMessage(hwnd, LVM_GETITEMSTATE, 1, LVIS_SELECTED);
2502     expect(LVIS_SELECTED, r);
2503     r = SendMessage(hwnd, LVM_GETITEMSTATE, 2, LVIS_SELECTED);
2504     expect(LVIS_SELECTED, r);
2505
2506     DestroyWindow(hwnd);
2507
2508     /* switch to LVS_SORTASCENDING when some items added */
2509     hwnd = create_listview_control(LVS_REPORT);
2510     ok(hwnd != NULL, "failed to create a listview window\n");
2511
2512     item.mask = LVIF_TEXT;
2513     item.iItem = 0;
2514     item.iSubItem = 0;
2515     item.pszText = names[1];
2516     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2517     expect(0, r);
2518
2519     item.mask = LVIF_TEXT;
2520     item.iItem = 1;
2521     item.iSubItem = 0;
2522     item.pszText = names[2];
2523     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2524     expect(1, r);
2525
2526     item.mask = LVIF_TEXT;
2527     item.iItem = 2;
2528     item.iSubItem = 0;
2529     item.pszText = names[0];
2530     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2531     expect(2, r);
2532
2533     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2534     SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_SORTASCENDING);
2535     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2536     ok(style & LVS_SORTASCENDING, "Expected LVS_SORTASCENDING to be set\n");
2537
2538     /* no sorting performed when switched to LVS_SORTASCENDING */
2539     item.mask = LVIF_TEXT;
2540     item.iItem = 0;
2541     item.pszText = buff;
2542     item.cchTextMax = sizeof(buff);
2543     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2544     expect(TRUE, r);
2545     ok(lstrcmp(buff, names[1]) == 0, "Expected '%s', got '%s'\n", names[1], buff);
2546
2547     item.iItem = 1;
2548     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2549     expect(TRUE, r);
2550     ok(lstrcmp(buff, names[2]) == 0, "Expected '%s', got '%s'\n", names[2], buff);
2551
2552     item.iItem = 2;
2553     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2554     expect(TRUE, r);
2555     ok(lstrcmp(buff, names[0]) == 0, "Expected '%s', got '%s'\n", names[0], buff);
2556
2557     /* adding new item doesn't resort list */
2558     item.mask = LVIF_TEXT;
2559     item.iItem = 3;
2560     item.iSubItem = 0;
2561     item.pszText = names[3];
2562     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2563     expect(3, r);
2564
2565     item.mask = LVIF_TEXT;
2566     item.iItem = 0;
2567     item.pszText = buff;
2568     item.cchTextMax = sizeof(buff);
2569     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2570     expect(TRUE, r);
2571     ok(lstrcmp(buff, names[1]) == 0, "Expected '%s', got '%s'\n", names[1], buff);
2572
2573     item.iItem = 1;
2574     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2575     expect(TRUE, r);
2576     ok(lstrcmp(buff, names[2]) == 0, "Expected '%s', got '%s'\n", names[2], buff);
2577
2578     item.iItem = 2;
2579     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2580     expect(TRUE, r);
2581     ok(lstrcmp(buff, names[0]) == 0, "Expected '%s', got '%s'\n", names[0], buff);
2582
2583     item.iItem = 3;
2584     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2585     expect(TRUE, r);
2586     ok(lstrcmp(buff, names[3]) == 0, "Expected '%s', got '%s'\n", names[3], buff);
2587
2588     /* corner case - item should be placed at first position */
2589     item.mask = LVIF_TEXT;
2590     item.iItem = 4;
2591     item.iSubItem = 0;
2592     item.pszText = names[4];
2593     r = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM) &item);
2594     expect(0, r);
2595
2596     item.iItem = 0;
2597     item.pszText = buff;
2598     item.cchTextMax = sizeof(buff);
2599     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2600     expect(TRUE, r);
2601     ok(lstrcmp(buff, names[4]) == 0, "Expected '%s', got '%s'\n", names[4], buff);
2602
2603     item.iItem = 1;
2604     item.pszText = buff;
2605     item.cchTextMax = sizeof(buff);
2606     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2607     expect(TRUE, r);
2608     ok(lstrcmp(buff, names[1]) == 0, "Expected '%s', got '%s'\n", names[1], buff);
2609
2610     item.iItem = 2;
2611     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2612     expect(TRUE, r);
2613     ok(lstrcmp(buff, names[2]) == 0, "Expected '%s', got '%s'\n", names[2], buff);
2614
2615     item.iItem = 3;
2616     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2617     expect(TRUE, r);
2618     ok(lstrcmp(buff, names[0]) == 0, "Expected '%s', got '%s'\n", names[0], buff);
2619
2620     item.iItem = 4;
2621     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM) &item);
2622     expect(TRUE, r);
2623     ok(lstrcmp(buff, names[3]) == 0, "Expected '%s', got '%s'\n", names[3], buff);
2624
2625     DestroyWindow(hwnd);
2626 }
2627
2628 static void test_ownerdata(void)
2629 {
2630     HWND hwnd;
2631     LONG_PTR style, ret;
2632     DWORD res;
2633     LVITEMA item;
2634
2635     /* it isn't possible to set LVS_OWNERDATA after creation */
2636     if (g_is_below_5)
2637     {
2638         win_skip("set LVS_OWNERDATA after creation leads to crash on < 5.80\n");
2639     }
2640     else
2641     {
2642         hwnd = create_listview_control(LVS_REPORT);
2643         ok(hwnd != NULL, "failed to create a listview window\n");
2644         style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2645         ok(!(style & LVS_OWNERDATA) && style, "LVS_OWNERDATA isn't expected\n");
2646
2647         flush_sequences(sequences, NUM_MSG_SEQUENCES);
2648
2649         ret = SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_OWNERDATA);
2650         ok(ret == style, "Expected set GWL_STYLE to succeed\n");
2651         ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_ownerdata_switchto_seq,
2652                 "try to switch to LVS_OWNERDATA seq", FALSE);
2653
2654         style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2655         ok(!(style & LVS_OWNERDATA), "LVS_OWNERDATA isn't expected\n");
2656         DestroyWindow(hwnd);
2657     }
2658
2659     /* try to set LVS_OWNERDATA after creation just having it */
2660     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2661     ok(hwnd != NULL, "failed to create a listview window\n");
2662     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2663     ok(style & LVS_OWNERDATA, "LVS_OWNERDATA is expected\n");
2664
2665     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2666
2667     ret = SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_OWNERDATA);
2668     ok(ret == style, "Expected set GWL_STYLE to succeed\n");
2669     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_ownerdata_switchto_seq,
2670                 "try to switch to LVS_OWNERDATA seq", FALSE);
2671     DestroyWindow(hwnd);
2672
2673     /* try to remove LVS_OWNERDATA after creation just having it */
2674     if (g_is_below_5)
2675     {
2676         win_skip("remove LVS_OWNERDATA after creation leads to crash on < 5.80\n");
2677     }
2678     else
2679     {
2680         hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2681         ok(hwnd != NULL, "failed to create a listview window\n");
2682         style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2683         ok(style & LVS_OWNERDATA, "LVS_OWNERDATA is expected\n");
2684
2685         flush_sequences(sequences, NUM_MSG_SEQUENCES);
2686
2687         ret = SetWindowLongPtrA(hwnd, GWL_STYLE, style & ~LVS_OWNERDATA);
2688         ok(ret == style, "Expected set GWL_STYLE to succeed\n");
2689         ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_ownerdata_switchto_seq,
2690                 "try to switch to LVS_OWNERDATA seq", FALSE);
2691         style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2692         ok(style & LVS_OWNERDATA, "LVS_OWNERDATA is expected\n");
2693         DestroyWindow(hwnd);
2694     }
2695
2696     /* try select an item */
2697     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2698     ok(hwnd != NULL, "failed to create a listview window\n");
2699     res = SendMessageA(hwnd, LVM_SETITEMCOUNT, 1, 0);
2700     expect(1, res);
2701     res = SendMessageA(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2702     expect(0, res);
2703     memset(&item, 0, sizeof(item));
2704     item.stateMask = LVIS_SELECTED;
2705     item.state     = LVIS_SELECTED;
2706     res = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2707     expect(TRUE, res);
2708     res = SendMessageA(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
2709     expect(1, res);
2710     res = SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
2711     expect(1, res);
2712     DestroyWindow(hwnd);
2713
2714     /* LVM_SETITEM is unsupported on LVS_OWNERDATA */
2715     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2716     ok(hwnd != NULL, "failed to create a listview window\n");
2717     res = SendMessageA(hwnd, LVM_SETITEMCOUNT, 1, 0);
2718     expect(1, res);
2719     res = SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
2720     expect(1, res);
2721     memset(&item, 0, sizeof(item));
2722     item.mask = LVIF_STATE;
2723     item.iItem = 0;
2724     item.stateMask = LVIS_SELECTED;
2725     item.state     = LVIS_SELECTED;
2726     res = SendMessageA(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
2727     expect(FALSE, res);
2728     DestroyWindow(hwnd);
2729
2730     /* check notifications after focused/selected changed */
2731     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2732     ok(hwnd != NULL, "failed to create a listview window\n");
2733     res = SendMessageA(hwnd, LVM_SETITEMCOUNT, 20, 0);
2734     expect(1, res);
2735
2736     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2737
2738     memset(&item, 0, sizeof(item));
2739     item.stateMask = LVIS_SELECTED;
2740     item.state     = LVIS_SELECTED;
2741     res = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2742     expect(TRUE, res);
2743
2744     ok_sequence(sequences, PARENT_SEQ_INDEX, ownderdata_select_focus_parent_seq,
2745                 "ownerdata select notification", TRUE);
2746
2747     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2748
2749     memset(&item, 0, sizeof(item));
2750     item.stateMask = LVIS_FOCUSED;
2751     item.state     = LVIS_FOCUSED;
2752     res = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2753     expect(TRUE, res);
2754
2755     ok_sequence(sequences, PARENT_SEQ_INDEX, ownderdata_select_focus_parent_seq,
2756                 "ownerdata focus notification", TRUE);
2757
2758     /* select all, check notifications */
2759     item.stateMask = LVIS_SELECTED;
2760     item.state     = 0;
2761     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2762     expect(TRUE, res);
2763
2764     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2765
2766     item.stateMask = LVIS_SELECTED;
2767     item.state     = LVIS_SELECTED;
2768
2769     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2770     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2771     expect(TRUE, res);
2772     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2773     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2774     ok(g_nmlistview.uNewState == LVIS_SELECTED, "got new state 0x%08x\n", g_nmlistview.uNewState);
2775     ok(g_nmlistview.uOldState == 0, "got old state 0x%08x\n", g_nmlistview.uOldState);
2776     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2777     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2778     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2779
2780     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_setstate_all_parent_seq,
2781                 "ownerdata select all notification", FALSE);
2782
2783     /* select all again, note that all items are selected already */
2784     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2785     item.stateMask = LVIS_SELECTED;
2786     item.state     = LVIS_SELECTED;
2787
2788     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2789     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2790     expect(TRUE, res);
2791     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2792     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2793     ok(g_nmlistview.uNewState == LVIS_SELECTED, "got new state 0x%08x\n", g_nmlistview.uNewState);
2794     ok(g_nmlistview.uOldState == 0, "got old state 0x%08x\n", g_nmlistview.uOldState);
2795     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2796     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2797     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2798
2799     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_setstate_all_parent_seq,
2800                 "ownerdata select all notification", FALSE);
2801
2802     /* deselect all */
2803     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2804     item.stateMask = LVIS_SELECTED;
2805     item.state     = 0;
2806
2807     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2808     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2809     expect(TRUE, res);
2810     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2811     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2812     ok(g_nmlistview.uNewState == 0, "got new state 0x%08x\n", g_nmlistview.uNewState);
2813     ok(g_nmlistview.uOldState == LVIS_SELECTED, "got old state 0x%08x\n", g_nmlistview.uOldState);
2814     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2815     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2816     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2817
2818     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_deselect_all_parent_seq,
2819                 "ownerdata deselect all notification", TRUE);
2820
2821     /* nothing selected, deselect all again */
2822     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2823     item.stateMask = LVIS_SELECTED;
2824     item.state     = 0;
2825
2826     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2827     expect(TRUE, res);
2828
2829     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "ownerdata deselect all notification", TRUE);
2830
2831     /* select one, then deselect all */
2832     item.stateMask = LVIS_SELECTED;
2833     item.state     = LVIS_SELECTED;
2834     res = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2835     expect(TRUE, res);
2836     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2837     item.stateMask = LVIS_SELECTED;
2838     item.state     = 0;
2839
2840     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2841     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2842     expect(TRUE, res);
2843     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2844     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2845     ok(g_nmlistview.uNewState == 0, "got new state 0x%08x\n", g_nmlistview.uNewState);
2846     ok(g_nmlistview.uOldState == LVIS_SELECTED, "got old state 0x%08x\n", g_nmlistview.uOldState);
2847     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2848     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2849     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2850
2851     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_deselect_all_parent_seq,
2852                 "ownerdata select all notification", TRUE);
2853
2854     /* remove focused, try to focus all */
2855     item.stateMask = LVIS_FOCUSED;
2856     item.state     = LVIS_FOCUSED;
2857     res = SendMessageA(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2858     expect(TRUE, res);
2859     item.stateMask = LVIS_FOCUSED;
2860     item.state     = 0;
2861     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2862     expect(TRUE, res);
2863     item.stateMask = LVIS_FOCUSED;
2864     res = SendMessageA(hwnd, LVM_GETITEMSTATE, 0, LVIS_FOCUSED);
2865     expect(0, res);
2866
2867     /* setting all to focused returns failure value */
2868     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2869     item.stateMask = LVIS_FOCUSED;
2870     item.state     = LVIS_FOCUSED;
2871
2872     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2873     expect(FALSE, res);
2874
2875     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
2876                 "ownerdata focus all notification", FALSE);
2877
2878     /* focus single item, remove all */
2879     item.stateMask = LVIS_FOCUSED;
2880     item.state     = LVIS_FOCUSED;
2881     res = SendMessage(hwnd, LVM_SETITEMSTATE, 0, (LPARAM)&item);
2882     expect(TRUE, res);
2883     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2884     item.stateMask = LVIS_FOCUSED;
2885     item.state     = 0;
2886
2887     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2888     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2889     expect(TRUE, res);
2890     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2891     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2892     ok(g_nmlistview.uNewState == 0, "got new state 0x%08x\n", g_nmlistview.uNewState);
2893     ok(g_nmlistview.uOldState == LVIS_FOCUSED, "got old state 0x%08x\n", g_nmlistview.uOldState);
2894     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2895     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2896     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2897
2898     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_defocus_all_parent_seq,
2899                 "ownerdata remove focus all notification", TRUE);
2900
2901     /* set all cut */
2902     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2903     item.stateMask = LVIS_CUT;
2904     item.state     = LVIS_CUT;
2905
2906     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2907     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2908     expect(TRUE, res);
2909     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2910     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2911     ok(g_nmlistview.uNewState == LVIS_CUT, "got new state 0x%08x\n", g_nmlistview.uNewState);
2912     ok(g_nmlistview.uOldState == 0, "got old state 0x%08x\n", g_nmlistview.uOldState);
2913     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2914     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2915     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2916
2917     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_setstate_all_parent_seq,
2918                 "ownerdata cut all notification", FALSE);
2919
2920     /* all marked cut, try again */
2921     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2922     item.stateMask = LVIS_CUT;
2923     item.state     = LVIS_CUT;
2924
2925     memset(&g_nmlistview, 0xcc, sizeof(g_nmlistview));
2926     res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
2927     expect(TRUE, res);
2928     ok(g_nmlistview.iItem == -1, "got item %d\n", g_nmlistview.iItem);
2929     ok(g_nmlistview.iSubItem == 0, "got subitem %d\n", g_nmlistview.iSubItem);
2930     ok(g_nmlistview.uNewState == LVIS_CUT, "got new state 0x%08x\n", g_nmlistview.uNewState);
2931     ok(g_nmlistview.uOldState == 0, "got old state 0x%08x\n", g_nmlistview.uOldState);
2932     ok(g_nmlistview.uChanged == LVIF_STATE, "got changed 0x%08x\n", g_nmlistview.uChanged);
2933     ok(g_nmlistview.ptAction.x == 0 && g_nmlistview.ptAction.y == 0, "got wrong ptAction value\n");
2934     ok(g_nmlistview.lParam == 0, "got wrong lparam\n");
2935
2936     ok_sequence(sequences, PARENT_SEQ_INDEX, ownerdata_setstate_all_parent_seq,
2937                 "ownerdata cut all notification #2", FALSE);
2938
2939     DestroyWindow(hwnd);
2940
2941     /* check notifications on LVM_GETITEM */
2942     /* zero callback mask */
2943     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
2944     ok(hwnd != NULL, "failed to create a listview window\n");
2945     res = SendMessageA(hwnd, LVM_SETITEMCOUNT, 1, 0);
2946     expect(1, res);
2947
2948     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2949
2950     memset(&item, 0, sizeof(item));
2951     item.stateMask = LVIS_SELECTED;
2952     item.mask      = LVIF_STATE;
2953     res = SendMessageA(hwnd, LVM_GETITEMA, 0, (LPARAM)&item);
2954     expect(TRUE, res);
2955
2956     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
2957                 "ownerdata getitem selected state 1", FALSE);
2958
2959     /* non zero callback mask but not we asking for */
2960     res = SendMessageA(hwnd, LVM_SETCALLBACKMASK, LVIS_OVERLAYMASK, 0);
2961     expect(TRUE, res);
2962
2963     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2964
2965     memset(&item, 0, sizeof(item));
2966     item.stateMask = LVIS_SELECTED;
2967     item.mask      = LVIF_STATE;
2968     res = SendMessageA(hwnd, LVM_GETITEMA, 0, (LPARAM)&item);
2969     expect(TRUE, res);
2970
2971     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
2972                 "ownerdata getitem selected state 2", FALSE);
2973
2974     /* LVIS_OVERLAYMASK callback mask, asking for index */
2975     flush_sequences(sequences, NUM_MSG_SEQUENCES);
2976
2977     memset(&item, 0, sizeof(item));
2978     item.stateMask = LVIS_OVERLAYMASK;
2979     item.mask      = LVIF_STATE;
2980     res = SendMessageA(hwnd, LVM_GETITEMA, 0, (LPARAM)&item);
2981     expect(TRUE, res);
2982
2983     ok_sequence(sequences, PARENT_SEQ_INDEX, single_getdispinfo_parent_seq,
2984                 "ownerdata getitem selected state 2", FALSE);
2985
2986     DestroyWindow(hwnd);
2987
2988     /* LVS_SORTASCENDING/LVS_SORTDESCENDING aren't compatible with LVS_OWNERDATA */
2989     hwnd = create_listview_control(LVS_OWNERDATA | LVS_SORTASCENDING | LVS_REPORT);
2990     ok(hwnd != NULL, "failed to create a listview window\n");
2991     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2992     ok(style & LVS_OWNERDATA, "Expected LVS_OWNERDATA\n");
2993     ok(style & LVS_SORTASCENDING, "Expected LVS_SORTASCENDING to be set\n");
2994     SetWindowLongPtrA(hwnd, GWL_STYLE, style & ~LVS_SORTASCENDING);
2995     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
2996     ok(!(style & LVS_SORTASCENDING), "Expected LVS_SORTASCENDING not set\n");
2997     DestroyWindow(hwnd);
2998     /* apparently it's allowed to switch these style on after creation */
2999     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
3000     ok(hwnd != NULL, "failed to create a listview window\n");
3001     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
3002     ok(style & LVS_OWNERDATA, "Expected LVS_OWNERDATA\n");
3003     SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_SORTASCENDING);
3004     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
3005     ok(style & LVS_SORTASCENDING, "Expected LVS_SORTASCENDING to be set\n");
3006     DestroyWindow(hwnd);
3007
3008     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
3009     ok(hwnd != NULL, "failed to create a listview window\n");
3010     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
3011     ok(style & LVS_OWNERDATA, "Expected LVS_OWNERDATA\n");
3012     SetWindowLongPtrA(hwnd, GWL_STYLE, style | LVS_SORTDESCENDING);
3013     style = GetWindowLongPtrA(hwnd, GWL_STYLE);
3014     ok(style & LVS_SORTDESCENDING, "Expected LVS_SORTDESCENDING to be set\n");
3015     DestroyWindow(hwnd);
3016 }
3017
3018 static void test_norecompute(void)
3019 {
3020     static CHAR testA[] = "test";
3021     CHAR buff[10];
3022     LVITEMA item;
3023     HWND hwnd;
3024     DWORD res;
3025
3026     /* self containing control */
3027     hwnd = create_listview_control(LVS_REPORT);
3028     ok(hwnd != NULL, "failed to create a listview window\n");
3029     memset(&item, 0, sizeof(item));
3030     item.mask = LVIF_TEXT | LVIF_STATE;
3031     item.iItem = 0;
3032     item.stateMask = LVIS_SELECTED;
3033     item.state     = LVIS_SELECTED;
3034     item.pszText   = testA;
3035     res = SendMessageA(hwnd, LVM_INSERTITEM, 0, (LPARAM)&item);
3036     expect(0, res);
3037     /* retrieve with LVIF_NORECOMPUTE */
3038     item.mask  = LVIF_TEXT | LVIF_NORECOMPUTE;
3039     item.iItem = 0;
3040     item.pszText    = buff;
3041     item.cchTextMax = sizeof(buff)/sizeof(CHAR);
3042     res = SendMessageA(hwnd, LVM_GETITEM, 0, (LPARAM)&item);
3043     expect(TRUE, res);
3044     ok(lstrcmp(buff, testA) == 0, "Expected (%s), got (%s)\n", testA, buff);
3045
3046     item.mask = LVIF_TEXT;
3047     item.iItem = 1;
3048     item.pszText = LPSTR_TEXTCALLBACK;
3049     res = SendMessageA(hwnd, LVM_INSERTITEM, 0, (LPARAM)&item);
3050     expect(1, res);
3051
3052     item.mask  = LVIF_TEXT | LVIF_NORECOMPUTE;
3053     item.iItem = 1;
3054     item.pszText    = buff;
3055     item.cchTextMax = sizeof(buff)/sizeof(CHAR);
3056
3057     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3058     res = SendMessageA(hwnd, LVM_GETITEM, 0, (LPARAM)&item);
3059     expect(TRUE, res);
3060     ok(item.pszText == LPSTR_TEXTCALLBACK, "Expected (%p), got (%p)\n",
3061        LPSTR_TEXTCALLBACK, (VOID*)item.pszText);
3062     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "retrieve with LVIF_NORECOMPUTE seq", FALSE);
3063
3064     DestroyWindow(hwnd);
3065
3066     /* LVS_OWNERDATA */
3067     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
3068     ok(hwnd != NULL, "failed to create a listview window\n");
3069
3070     item.mask = LVIF_STATE;
3071     item.stateMask = LVIS_SELECTED;
3072     item.state     = LVIS_SELECTED;
3073     item.iItem = 0;
3074     res = SendMessageA(hwnd, LVM_INSERTITEM, 0, (LPARAM)&item);
3075     expect(0, res);
3076
3077     item.mask  = LVIF_TEXT | LVIF_NORECOMPUTE;
3078     item.iItem = 0;
3079     item.pszText    = buff;
3080     item.cchTextMax = sizeof(buff)/sizeof(CHAR);
3081     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3082     res = SendMessageA(hwnd, LVM_GETITEM, 0, (LPARAM)&item);
3083     expect(TRUE, res);
3084     ok(item.pszText == LPSTR_TEXTCALLBACK, "Expected (%p), got (%p)\n",
3085        LPSTR_TEXTCALLBACK, (VOID*)item.pszText);
3086     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "retrieve with LVIF_NORECOMPUTE seq 2", FALSE);
3087
3088     DestroyWindow(hwnd);
3089 }
3090
3091 static void test_nosortheader(void)
3092 {
3093     HWND hwnd, header;
3094     LONG_PTR style;
3095
3096     hwnd = create_listview_control(LVS_REPORT);
3097     ok(hwnd != NULL, "failed to create a listview window\n");
3098
3099     header = (HWND)SendMessageA(hwnd, LVM_GETHEADER, 0, 0);
3100     ok(IsWindow(header), "header expected\n");
3101
3102     style = GetWindowLongPtr(header, GWL_STYLE);
3103     ok(style & HDS_BUTTONS, "expected header to have HDS_BUTTONS\n");
3104
3105     style = GetWindowLongPtr(hwnd, GWL_STYLE);
3106     SetWindowLongPtr(hwnd, GWL_STYLE, style | LVS_NOSORTHEADER);
3107     /* HDS_BUTTONS retained */
3108     style = GetWindowLongPtr(header, GWL_STYLE);
3109     ok(style & HDS_BUTTONS, "expected header to retain HDS_BUTTONS\n");
3110
3111     DestroyWindow(hwnd);
3112
3113     /* create with LVS_NOSORTHEADER */
3114     hwnd = create_listview_control(LVS_NOSORTHEADER | LVS_REPORT);
3115     ok(hwnd != NULL, "failed to create a listview window\n");
3116
3117     header = (HWND)SendMessageA(hwnd, LVM_GETHEADER, 0, 0);
3118     ok(IsWindow(header), "header expected\n");
3119
3120     style = GetWindowLongPtr(header, GWL_STYLE);
3121     ok(!(style & HDS_BUTTONS), "expected header to have no HDS_BUTTONS\n");
3122
3123     style = GetWindowLongPtr(hwnd, GWL_STYLE);
3124     SetWindowLongPtr(hwnd, GWL_STYLE, style & ~LVS_NOSORTHEADER);
3125     /* not changed here */
3126     style = GetWindowLongPtr(header, GWL_STYLE);
3127     ok(!(style & HDS_BUTTONS), "expected header to have no HDS_BUTTONS\n");
3128
3129     DestroyWindow(hwnd);
3130 }
3131
3132 static void test_setredraw(void)
3133 {
3134     HWND hwnd;
3135     DWORD_PTR style;
3136     DWORD ret;
3137     HDC hdc;
3138     RECT rect;
3139
3140     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
3141     ok(hwnd != NULL, "failed to create a listview window\n");
3142
3143     /* Passing WM_SETREDRAW to DefWinProc removes WS_VISIBLE.
3144        ListView seems to handle it internally without DefWinProc */
3145
3146     /* default value first */
3147     ret = SendMessage(hwnd, WM_SETREDRAW, TRUE, 0);
3148     expect(0, ret);
3149     /* disable */
3150     style = GetWindowLongPtr(hwnd, GWL_STYLE);
3151     ok(style & WS_VISIBLE, "Expected WS_VISIBLE to be set\n");
3152     ret = SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
3153     expect(0, ret);
3154     style = GetWindowLongPtr(hwnd, GWL_STYLE);
3155     ok(style & WS_VISIBLE, "Expected WS_VISIBLE to be set\n");
3156     ret = SendMessage(hwnd, WM_SETREDRAW, TRUE, 0);
3157     expect(0, ret);
3158
3159     /* check update rect after redrawing */
3160     ret = SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
3161     expect(0, ret);
3162     InvalidateRect(hwnd, NULL, FALSE);
3163     RedrawWindow(hwnd, NULL, NULL, RDW_UPDATENOW);
3164     rect.right = rect.bottom = 1;
3165     GetUpdateRect(hwnd, &rect, FALSE);
3166     expect(0, rect.right);
3167     expect(0, rect.bottom);
3168
3169     /* WM_ERASEBKGND */
3170     hdc = GetWindowDC(hwndparent);
3171     ret = SendMessage(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
3172     expect(TRUE, ret);
3173     ret = SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
3174     expect(0, ret);
3175     ret = SendMessage(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
3176     expect(TRUE, ret);
3177     ret = SendMessage(hwnd, WM_SETREDRAW, TRUE, 0);
3178     expect(0, ret);
3179     ReleaseDC(hwndparent, hdc);
3180
3181     /* check notification messages to show that repainting is disabled */
3182     ret = SendMessage(hwnd, LVM_SETITEMCOUNT, 1, 0);
3183     expect(TRUE, ret);
3184     ret = SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
3185     expect(0, ret);
3186     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3187
3188     InvalidateRect(hwnd, NULL, TRUE);
3189     UpdateWindow(hwnd);
3190     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
3191                 "redraw after WM_SETREDRAW (FALSE)", FALSE);
3192
3193     ret = SendMessage(hwnd, LVM_SETBKCOLOR, 0, CLR_NONE);
3194     expect(TRUE, ret);
3195     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3196     InvalidateRect(hwnd, NULL, TRUE);
3197     UpdateWindow(hwnd);
3198     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
3199                 "redraw after WM_SETREDRAW (FALSE) with CLR_NONE bkgnd", FALSE);
3200
3201     /* message isn't forwarded to header */
3202     subclass_header(hwnd);
3203     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3204     ret = SendMessage(hwnd, WM_SETREDRAW, FALSE, 0);
3205     expect(0, ret);
3206     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, setredraw_seq,
3207                 "WM_SETREDRAW: not forwarded to header", FALSE);
3208
3209     DestroyWindow(hwnd);
3210 }
3211
3212 static void test_hittest(void)
3213 {
3214     HWND hwnd;
3215     DWORD r;
3216     RECT bounds;
3217     LVITEMA item;
3218     static CHAR text[] = "1234567890ABCDEFGHIJKLMNOPQRST";
3219     POINT pos;
3220     INT x, y, i;
3221     WORD vert;
3222     HIMAGELIST himl, himl2;
3223     HBITMAP hbmp;
3224
3225     hwnd = create_listview_control(LVS_REPORT);
3226     ok(hwnd != NULL, "failed to create a listview window\n");
3227
3228     /* LVS_REPORT with a single subitem (2 columns) */
3229     insert_column(hwnd, 0);
3230     insert_column(hwnd, 1);
3231     insert_item(hwnd, 0);
3232
3233     item.iSubItem = 0;
3234     /* the only purpose of that line is to be as long as a half item rect */
3235     item.pszText  = text;
3236     r = SendMessage(hwnd, LVM_SETITEMTEXT, 0, (LPARAM)&item);
3237     expect(TRUE, r);
3238
3239     r = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 0, MAKELPARAM(100, 0));
3240     expect(TRUE, r);
3241     r = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 1, MAKELPARAM(100, 0));
3242     expect(TRUE, r);
3243
3244     memset(&bounds, 0, sizeof(bounds));
3245     bounds.left = LVIR_BOUNDS;
3246     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&bounds);
3247     expect(1, r);
3248     ok(bounds.bottom - bounds.top > 0, "Expected non zero item height\n");
3249     ok(bounds.right - bounds.left > 0, "Expected non zero item width\n");
3250     r = SendMessage(hwnd, LVM_GETITEMSPACING, TRUE, 0);
3251     vert = HIWORD(r);
3252     ok(bounds.bottom - bounds.top == vert,
3253         "Vertical spacing inconsistent (%d != %d)\n", bounds.bottom - bounds.top, vert);
3254     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM)&pos);
3255     expect(TRUE, r);
3256
3257     /* LVS_EX_FULLROWSELECT not set, no icons attached */
3258
3259     /* outside columns by x position - valid is [0, 199] */
3260     x = -1;
3261     y = pos.y + (bounds.bottom - bounds.top) / 2;
3262     test_lvm_hittest(hwnd, x, y, -1, LVHT_TOLEFT, 0, FALSE, FALSE);
3263     test_lvm_subitemhittest(hwnd, x, y, -1, -1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3264
3265     x = pos.x + 50; /* column half width */
3266     y = pos.y + (bounds.bottom - bounds.top) / 2;
3267     test_lvm_hittest(hwnd, x, y, 0, LVHT_ONITEMLABEL, 0, FALSE, FALSE);
3268     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3269     x = pos.x + 150; /* outside column */
3270     y = pos.y + (bounds.bottom - bounds.top) / 2;
3271     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, FALSE);
3272     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3273     y = (bounds.bottom - bounds.top) / 2;
3274     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, TRUE);
3275     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3276     /* outside possible client rectangle (to right) */
3277     x = pos.x + 500;
3278     y = pos.y + (bounds.bottom - bounds.top) / 2;
3279     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, FALSE);
3280     test_lvm_subitemhittest(hwnd, x, y, -1, -1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3281     y = (bounds.bottom - bounds.top) / 2;
3282     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, TRUE);
3283     test_lvm_subitemhittest(hwnd, x, y, -1, -1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3284     /* subitem returned with -1 item too */
3285     x = pos.x + 150;
3286     y = bounds.top - vert;
3287     test_lvm_subitemhittest(hwnd, x, y, -1, 1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3288     test_lvm_subitemhittest(hwnd, x, y - vert + 1, -1, 1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3289     /* return values appear to underflow with negative indices */
3290     i = -2;
3291     y = y - vert;
3292     while (i > -10) {
3293         test_lvm_subitemhittest(hwnd, x, y, i, 1, LVHT_ONITEMLABEL, TRUE, FALSE, TRUE);
3294         test_lvm_subitemhittest(hwnd, x, y - vert + 1, i, 1, LVHT_ONITEMLABEL, TRUE, FALSE, TRUE);
3295         y = y - vert;
3296         i--;
3297     }
3298     /* parent client area is 100x100 by default */
3299     MoveWindow(hwnd, 0, 0, 300, 100, FALSE);
3300     x = pos.x + 150; /* outside column */
3301     y = pos.y + (bounds.bottom - bounds.top) / 2;
3302     test_lvm_hittest(hwnd, x, y, -1, LVHT_NOWHERE, 0, FALSE, FALSE);
3303     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3304     y = (bounds.bottom - bounds.top) / 2;
3305     test_lvm_hittest(hwnd, x, y, -1, LVHT_NOWHERE, 0, FALSE, TRUE);
3306     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3307     /* the same with LVS_EX_FULLROWSELECT */
3308     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_FULLROWSELECT);
3309     x = pos.x + 150; /* outside column */
3310     y = pos.y + (bounds.bottom - bounds.top) / 2;
3311     test_lvm_hittest(hwnd, x, y, 0, LVHT_ONITEM, LVHT_ONITEMLABEL, FALSE, FALSE);
3312     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3313     y = (bounds.bottom - bounds.top) / 2;
3314     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3315     MoveWindow(hwnd, 0, 0, 100, 100, FALSE);
3316     x = pos.x + 150; /* outside column */
3317     y = pos.y + (bounds.bottom - bounds.top) / 2;
3318     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, FALSE);
3319     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3320     y = (bounds.bottom - bounds.top) / 2;
3321     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, TRUE);
3322     test_lvm_subitemhittest(hwnd, x, y, 0, 1, LVHT_ONITEMLABEL, FALSE, FALSE, FALSE);
3323     /* outside possible client rectangle (to right) */
3324     x = pos.x + 500;
3325     y = pos.y + (bounds.bottom - bounds.top) / 2;
3326     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, FALSE);
3327     test_lvm_subitemhittest(hwnd, x, y, -1, -1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3328     y = (bounds.bottom - bounds.top) / 2;
3329     test_lvm_hittest(hwnd, x, y, -1, LVHT_TORIGHT, 0, FALSE, TRUE);
3330     test_lvm_subitemhittest(hwnd, x, y, -1, -1, LVHT_NOWHERE, FALSE, FALSE, FALSE);
3331     /* try with icons, state icons index is 1 based so at least 2 bitmaps needed */
3332     himl = ImageList_Create(16, 16, 0, 4, 4);
3333     ok(himl != NULL, "failed to create imagelist\n");
3334     hbmp = CreateBitmap(16, 16, 1, 1, NULL);
3335     ok(hbmp != NULL, "failed to create bitmap\n");
3336     r = ImageList_Add(himl, hbmp, 0);
3337     ok(r == 0, "should be zero\n");
3338     hbmp = CreateBitmap(16, 16, 1, 1, NULL);
3339     ok(hbmp != NULL, "failed to create bitmap\n");
3340     r = ImageList_Add(himl, hbmp, 0);
3341     ok(r == 1, "should be one\n");
3342
3343     r = SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_STATE, (LPARAM)himl);
3344     expect(0, r);
3345
3346     item.mask = LVIF_IMAGE;
3347     item.iImage = 0;
3348     item.iItem = 0;
3349     item.iSubItem = 0;
3350     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
3351     expect(TRUE, r);
3352     /* on state icon */
3353     x = pos.x + 8;
3354     y = pos.y + (bounds.bottom - bounds.top) / 2;
3355     test_lvm_hittest(hwnd, x, y, 0, LVHT_ONITEMSTATEICON, 0, FALSE, FALSE);
3356     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMSTATEICON, FALSE, FALSE, FALSE);
3357     y = (bounds.bottom - bounds.top) / 2;
3358     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMSTATEICON, FALSE, FALSE, FALSE);
3359
3360     /* state icons indices are 1 based, check with valid index */
3361     item.mask = LVIF_STATE;
3362     item.state = INDEXTOSTATEIMAGEMASK(1);
3363     item.stateMask = LVIS_STATEIMAGEMASK;
3364     item.iItem = 0;
3365     item.iSubItem = 0;
3366     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
3367     expect(TRUE, r);
3368     /* on state icon */
3369     x = pos.x + 8;
3370     y = pos.y + (bounds.bottom - bounds.top) / 2;
3371     test_lvm_hittest(hwnd, x, y, 0, LVHT_ONITEMSTATEICON, 0, FALSE, FALSE);
3372     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMSTATEICON, FALSE, FALSE, FALSE);
3373     y = (bounds.bottom - bounds.top) / 2;
3374     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMSTATEICON, FALSE, FALSE, FALSE);
3375
3376     himl2 = (HIMAGELIST)SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_STATE, 0);
3377     ok(himl2 == himl, "should return handle\n");
3378
3379     r = SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_SMALL, (LPARAM)himl);
3380     expect(0, r);
3381     /* on item icon */
3382     x = pos.x + 8;
3383     y = pos.y + (bounds.bottom - bounds.top) / 2;
3384     test_lvm_hittest(hwnd, x, y, 0, LVHT_ONITEMICON, 0, FALSE, FALSE);
3385     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMICON, FALSE, FALSE, FALSE);
3386     y = (bounds.bottom - bounds.top) / 2;
3387     test_lvm_subitemhittest(hwnd, x, y, 0, 0, LVHT_ONITEMICON, FALSE, FALSE, FALSE);
3388
3389     DestroyWindow(hwnd);
3390 }
3391
3392 static void test_getviewrect(void)
3393 {
3394     HWND hwnd;
3395     DWORD r;
3396     RECT rect;
3397     LVITEMA item;
3398
3399     hwnd = create_listview_control(LVS_REPORT);
3400     ok(hwnd != NULL, "failed to create a listview window\n");
3401
3402     /* empty */
3403     r = SendMessage(hwnd, LVM_GETVIEWRECT, 0, (LPARAM)&rect);
3404     expect(TRUE, r);
3405
3406     insert_column(hwnd, 0);
3407     insert_column(hwnd, 1);
3408
3409     memset(&item, 0, sizeof(item));
3410     item.iItem = 0;
3411     item.iSubItem = 0;
3412     SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
3413
3414     r = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 0, MAKELPARAM(100, 0));
3415     expect(TRUE, r);
3416     r = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 1, MAKELPARAM(120, 0));
3417     expect(TRUE, r);
3418
3419     rect.left = rect.right = rect.top = rect.bottom = -1;
3420     r = SendMessage(hwnd, LVM_GETVIEWRECT, 0, (LPARAM)&rect);
3421     expect(TRUE, r);
3422     /* left is set to (2e31-1) - XP SP2 */
3423     expect(0, rect.right);
3424     expect(0, rect.top);
3425     expect(0, rect.bottom);
3426
3427     /* switch to LVS_ICON */
3428     SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~LVS_REPORT);
3429
3430     rect.left = rect.right = rect.top = rect.bottom = -1;
3431     r = SendMessage(hwnd, LVM_GETVIEWRECT, 0, (LPARAM)&rect);
3432     expect(TRUE, r);
3433     expect(0, rect.left);
3434     expect(0, rect.top);
3435     /* precise value differs for 2k, XP and Vista */
3436     ok(rect.bottom > 0, "Expected positive bottom value, got %d\n", rect.bottom);
3437     ok(rect.right  > 0, "Expected positive right value, got %d\n", rect.right);
3438
3439     DestroyWindow(hwnd);
3440 }
3441
3442 static void test_getitemposition(void)
3443 {
3444     HWND hwnd, header;
3445     DWORD r;
3446     POINT pt;
3447     RECT rect;
3448
3449     hwnd = create_listview_control(LVS_REPORT);
3450     ok(hwnd != NULL, "failed to create a listview window\n");
3451     header = subclass_header(hwnd);
3452
3453     /* LVS_REPORT, single item, no columns added */
3454     insert_item(hwnd, 0);
3455
3456     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3457
3458     pt.x = pt.y = -1;
3459     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM)&pt);
3460     expect(TRUE, r);
3461     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, getitemposition_seq1, "get item position 1", FALSE);
3462
3463     /* LVS_REPORT, single item, single column */
3464     insert_column(hwnd, 0);
3465
3466     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3467
3468     pt.x = pt.y = -1;
3469     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM)&pt);
3470     expect(TRUE, r);
3471     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, getitemposition_seq2, "get item position 2", TRUE);
3472
3473     memset(&rect, 0, sizeof(rect));
3474     SendMessage(header, HDM_GETITEMRECT, 0, (LPARAM)&rect);
3475     /* some padding? */
3476     expect(2, pt.x);
3477     /* offset by header height */
3478     expect(rect.bottom - rect.top, pt.y);
3479
3480     DestroyWindow(hwnd);
3481 }
3482
3483 static void test_columnscreation(void)
3484 {
3485     HWND hwnd, header;
3486     DWORD r;
3487
3488     hwnd = create_listview_control(LVS_REPORT);
3489     ok(hwnd != NULL, "failed to create a listview window\n");
3490
3491     insert_item(hwnd, 0);
3492
3493     /* headers columns aren't created automatically */
3494     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
3495     ok(IsWindow(header), "Expected header handle\n");
3496     r = SendMessage(header, HDM_GETITEMCOUNT, 0, 0);
3497     expect(0, r);
3498
3499     DestroyWindow(hwnd);
3500 }
3501
3502 static void test_getitemrect(void)
3503 {
3504     HWND hwnd;
3505     HIMAGELIST himl, himl_ret;
3506     HBITMAP hbm;
3507     RECT rect;
3508     DWORD r;
3509     LVITEMA item;
3510     LVCOLUMNA col;
3511     INT order[2];
3512     POINT pt;
3513     HDC hdc;
3514
3515     /* rectangle isn't empty for empty text items */
3516     hwnd = create_listview_control(LVS_LIST);
3517     memset(&item, 0, sizeof(item));
3518     item.mask = 0;
3519     item.iItem = 0;
3520     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
3521     expect(0, r);
3522     rect.left = LVIR_LABEL;
3523     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3524     expect(TRUE, r);
3525     expect(0, rect.left);
3526     expect(0, rect.top);
3527     hdc = GetDC(hwnd);
3528     todo_wine expect(((GetDeviceCaps(hdc, LOGPIXELSX) + 15) / 16) * 16, rect.right);
3529     ReleaseDC(hwnd, hdc);
3530     DestroyWindow(hwnd);
3531
3532     hwnd = create_listview_control(LVS_REPORT);
3533     ok(hwnd != NULL, "failed to create a listview window\n");
3534
3535     /* empty item */
3536     memset(&item, 0, sizeof(item));
3537     item.iItem = 0;
3538     item.iSubItem = 0;
3539     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
3540     expect(0, r);
3541
3542     rect.left = LVIR_BOUNDS;
3543     rect.right = rect.top = rect.bottom = -1;
3544     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3545     expect(TRUE, r);
3546
3547     /* zero width rectangle with no padding */
3548     expect(0, rect.left);
3549     expect(0, rect.right);
3550
3551     insert_column(hwnd, 0);
3552     insert_column(hwnd, 1);
3553
3554     col.mask = LVCF_WIDTH;
3555     col.cx   = 50;
3556     r = SendMessage(hwnd, LVM_SETCOLUMN, 0, (LPARAM)&col);
3557     expect(TRUE, r);
3558
3559     col.mask = LVCF_WIDTH;
3560     col.cx   = 100;
3561     r = SendMessage(hwnd, LVM_SETCOLUMN, 1, (LPARAM)&col);
3562     expect(TRUE, r);
3563
3564     rect.left = LVIR_BOUNDS;
3565     rect.right = rect.top = rect.bottom = -1;
3566     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3567     expect(TRUE, r);
3568
3569     /* still no left padding */
3570     expect(0, rect.left);
3571     expect(150, rect.right);
3572
3573     rect.left = LVIR_SELECTBOUNDS;
3574     rect.right = rect.top = rect.bottom = -1;
3575     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3576     expect(TRUE, r);
3577     /* padding */
3578     expect(2, rect.left);
3579
3580     rect.left = LVIR_LABEL;
3581     rect.right = rect.top = rect.bottom = -1;
3582     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3583     expect(TRUE, r);
3584     /* padding, column width */
3585     expect(2, rect.left);
3586     expect(50, rect.right);
3587
3588     /* no icons attached */
3589     rect.left = LVIR_ICON;
3590     rect.right = rect.top = rect.bottom = -1;
3591     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3592     expect(TRUE, r);
3593     /* padding */
3594     expect(2, rect.left);
3595     expect(2, rect.right);
3596
3597     /* change order */
3598     order[0] = 1; order[1] = 0;
3599     r = SendMessage(hwnd, LVM_SETCOLUMNORDERARRAY, 2, (LPARAM)&order);
3600     expect(TRUE, r);
3601     pt.x = -1;
3602     r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM)&pt);
3603     expect(TRUE, r);
3604     /* 1 indexed column width + padding */
3605     expect(102, pt.x);
3606     /* rect is at zero too */
3607     rect.left = LVIR_BOUNDS;
3608     rect.right = rect.top = rect.bottom = -1;
3609     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3610     expect(TRUE, r);
3611     expect(0, rect.left);
3612     /* just width sum */
3613     expect(150, rect.right);
3614
3615     rect.left = LVIR_SELECTBOUNDS;
3616     rect.right = rect.top = rect.bottom = -1;
3617     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3618     expect(TRUE, r);
3619     /* column width + padding */
3620     expect(102, rect.left);
3621
3622     /* back to initial order */
3623     order[0] = 0; order[1] = 1;
3624     r = SendMessage(hwnd, LVM_SETCOLUMNORDERARRAY, 2, (LPARAM)&order);
3625     expect(TRUE, r);
3626
3627     /* state icons */
3628     himl = ImageList_Create(16, 16, 0, 2, 2);
3629     ok(himl != NULL, "failed to create imagelist\n");
3630     hbm = CreateBitmap(16, 16, 1, 1, NULL);
3631     ok(hbm != NULL, "failed to create bitmap\n");
3632     r = ImageList_Add(himl, hbm, 0);
3633     expect(0, r);
3634     hbm = CreateBitmap(16, 16, 1, 1, NULL);
3635     ok(hbm != NULL, "failed to create bitmap\n");
3636     r = ImageList_Add(himl, hbm, 0);
3637     expect(1, r);
3638
3639     r = SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_STATE, (LPARAM)himl);
3640     expect(0, r);
3641
3642     item.mask = LVIF_STATE;
3643     item.state = INDEXTOSTATEIMAGEMASK(1);
3644     item.stateMask = LVIS_STATEIMAGEMASK;
3645     item.iItem = 0;
3646     item.iSubItem = 0;
3647     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
3648     expect(TRUE, r);
3649
3650     /* icon bounds */
3651     rect.left = LVIR_ICON;
3652     rect.right = rect.top = rect.bottom = -1;
3653     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3654     expect(TRUE, r);
3655     /* padding + stateicon width */
3656     expect(18, rect.left);
3657     expect(18, rect.right);
3658     /* label bounds */
3659     rect.left = LVIR_LABEL;
3660     rect.right = rect.top = rect.bottom = -1;
3661     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3662     expect(TRUE, r);
3663     /* padding + stateicon width -> column width */
3664     expect(18, rect.left);
3665     expect(50, rect.right);
3666
3667     himl_ret = (HIMAGELIST)SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_STATE, 0);
3668     ok(himl_ret == himl, "got %p, expected %p\n", himl_ret, himl);
3669
3670     r = SendMessage(hwnd, LVM_SETIMAGELIST, LVSIL_SMALL, (LPARAM)himl);
3671     expect(0, r);
3672
3673     item.mask = LVIF_STATE | LVIF_IMAGE;
3674     item.iImage = 1;
3675     item.state = 0;
3676     item.stateMask = ~0;
3677     item.iItem = 0;
3678     item.iSubItem = 0;
3679     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
3680     expect(TRUE, r);
3681
3682     /* icon bounds */
3683     rect.left = LVIR_ICON;
3684     rect.right = rect.top = rect.bottom = -1;
3685     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3686     expect(TRUE, r);
3687     /* padding, icon width */
3688     expect(2, rect.left);
3689     expect(18, rect.right);
3690     /* label bounds */
3691     rect.left = LVIR_LABEL;
3692     rect.right = rect.top = rect.bottom = -1;
3693     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3694     expect(TRUE, r);
3695     /* padding + icon width -> column width */
3696     expect(18, rect.left);
3697     expect(50, rect.right);
3698
3699     /* select bounds */
3700     rect.left = LVIR_SELECTBOUNDS;
3701     rect.right = rect.top = rect.bottom = -1;
3702     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3703     expect(TRUE, r);
3704     /* padding, column width */
3705     expect(2, rect.left);
3706     expect(50, rect.right);
3707
3708     /* try with indentation */
3709     item.mask = LVIF_INDENT;
3710     item.iIndent = 1;
3711     item.iItem = 0;
3712     item.iSubItem = 0;
3713     r = SendMessage(hwnd, LVM_SETITEM, 0, (LPARAM)&item);
3714     expect(TRUE, r);
3715
3716     /* bounds */
3717     rect.left = LVIR_BOUNDS;
3718     rect.right = rect.top = rect.bottom = -1;
3719     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3720     expect(TRUE, r);
3721     /* padding + 1 icon width, column width */
3722     expect(0, rect.left);
3723     expect(150, rect.right);
3724
3725     /* select bounds */
3726     rect.left = LVIR_SELECTBOUNDS;
3727     rect.right = rect.top = rect.bottom = -1;
3728     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3729     expect(TRUE, r);
3730     /* padding + 1 icon width, column width */
3731     expect(2 + 16, rect.left);
3732     expect(50, rect.right);
3733
3734     /* label bounds */
3735     rect.left = LVIR_LABEL;
3736     rect.right = rect.top = rect.bottom = -1;
3737     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3738     expect(TRUE, r);
3739     /* padding + 2 icon widths, column width */
3740     expect(2 + 16*2, rect.left);
3741     expect(50, rect.right);
3742
3743     /* icon bounds */
3744     rect.left = LVIR_ICON;
3745     rect.right = rect.top = rect.bottom = -1;
3746     r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
3747     expect(TRUE, r);
3748     /* padding + 1 icon width indentation, icon width */
3749     expect(2 + 16, rect.left);
3750     expect(34, rect.right);
3751
3752     DestroyWindow(hwnd);
3753 }
3754
3755 static void test_editbox(void)
3756 {
3757     static CHAR testitemA[]  = "testitem";
3758     static CHAR testitem1A[] = "testitem_quitelongname";
3759     static CHAR testitem2A[] = "testITEM_quitelongname";
3760     static CHAR buffer[25];
3761     HWND hwnd, hwndedit, hwndedit2, header;
3762     LVITEMA item;
3763     INT r;
3764
3765     hwnd = create_listview_control(LVS_EDITLABELS | LVS_REPORT);
3766     ok(hwnd != NULL, "failed to create a listview window\n");
3767
3768     insert_column(hwnd, 0);
3769
3770     memset(&item, 0, sizeof(item));
3771     item.mask = LVIF_TEXT;
3772     item.pszText = testitemA;
3773     item.iItem = 0;
3774     item.iSubItem = 0;
3775     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
3776     expect(0, r);
3777
3778     /* test notifications without edit created */
3779     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3780     r = SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0, EN_SETFOCUS), (LPARAM)0xdeadbeef);
3781     expect(0, r);
3782     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
3783                 "edit box WM_COMMAND (EN_SETFOCUS), no edit created", FALSE);
3784     /* same thing but with valid window */
3785     hwndedit = CreateWindowA("Edit", "Test edit", WS_VISIBLE | WS_CHILD, 0, 0, 20,
3786                 10, hwnd, (HMENU)1, (HINSTANCE)GetWindowLongPtrA(hwnd, GWLP_HINSTANCE), 0);
3787     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3788     r = SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0, EN_SETFOCUS), (LPARAM)hwndedit);
3789     expect(0, r);
3790     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
3791                 "edit box WM_COMMAND (EN_SETFOCUS), no edit created #2", FALSE);
3792     DestroyWindow(hwndedit);
3793
3794     /* setting focus is necessary */
3795     SetFocus(hwnd);
3796     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3797     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3798
3799     /* test children Z-order after Edit box created */
3800     header = (HWND)SendMessageA(hwnd, LVM_GETHEADER, 0, 0);
3801     ok(IsWindow(header), "Expected header to be created\n");
3802     ok(GetTopWindow(hwnd) == header, "Expected header to be on top\n");
3803     ok(GetNextWindow(header, GW_HWNDNEXT) == hwndedit, "got %p\n", GetNextWindow(header, GW_HWNDNEXT));
3804
3805     /* modify initial string */
3806     r = SendMessage(hwndedit, WM_SETTEXT, 0, (LPARAM)testitem1A);
3807     expect(TRUE, r);
3808
3809     /* edit window is resized and repositioned,
3810        check again for Z-order - it should be preserved */
3811     ok(GetTopWindow(hwnd) == header, "Expected header to be on top\n");
3812     ok(GetNextWindow(header, GW_HWNDNEXT) == hwndedit, "got %p\n", GetNextWindow(header, GW_HWNDNEXT));
3813
3814     /* return focus to listview */
3815     SetFocus(hwnd);
3816
3817     memset(&item, 0, sizeof(item));
3818     item.mask = LVIF_TEXT;
3819     item.pszText = buffer;
3820     item.cchTextMax = sizeof(buffer);
3821     item.iItem = 0;
3822     item.iSubItem = 0;
3823     r = SendMessage(hwnd, LVM_GETITEMA, 0, (LPARAM)&item);
3824     expect(TRUE, r);
3825
3826     ok(strcmp(buffer, testitem1A) == 0, "Expected item text to change\n");
3827
3828     /* send LVM_EDITLABEL on already created edit */
3829     SetFocus(hwnd);
3830     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3831     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3832     /* focus will be set to edit */
3833     ok(GetFocus() == hwndedit, "Expected Edit window to be focused\n");
3834     hwndedit2 = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3835     ok(IsWindow(hwndedit2), "Expected Edit window to be created\n");
3836
3837     /* creating label disabled when control isn't focused */
3838     SetFocus(0);
3839     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3840     todo_wine ok(hwndedit == NULL, "Expected Edit window not to be created\n");
3841
3842     /* check EN_KILLFOCUS handling */
3843     memset(&item, 0, sizeof(item));
3844     item.pszText = testitemA;
3845     item.iItem = 0;
3846     item.iSubItem = 0;
3847     r = SendMessage(hwnd, LVM_SETITEMTEXTA, 0, (LPARAM)&item);
3848     expect(TRUE, r);
3849
3850     SetFocus(hwnd);
3851     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3852     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3853     /* modify edit and notify control that it lost focus */
3854     r = SendMessage(hwndedit, WM_SETTEXT, 0, (LPARAM)testitem1A);
3855     expect(TRUE, r);
3856     g_editbox_disp_info.item.pszText = NULL;
3857     r = SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0, EN_KILLFOCUS), (LPARAM)hwndedit);
3858     expect(0, r);
3859     ok(g_editbox_disp_info.item.pszText != NULL, "expected notification with not null text\n");
3860
3861     memset(&item, 0, sizeof(item));
3862     item.pszText = buffer;
3863     item.cchTextMax = sizeof(buffer);
3864     item.iItem = 0;
3865     item.iSubItem = 0;
3866     r = SendMessage(hwnd, LVM_GETITEMTEXTA, 0, (LPARAM)&item);
3867     expect(lstrlen(item.pszText), r);
3868     ok(strcmp(buffer, testitem1A) == 0, "Expected item text to change\n");
3869     ok(!IsWindow(hwndedit), "Expected Edit window to be freed\n");
3870
3871     /* change item name to differ in casing only */
3872     SetFocus(hwnd);
3873     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3874     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3875     /* modify edit and notify control that it lost focus */
3876     r = SendMessage(hwndedit, WM_SETTEXT, 0, (LPARAM)testitem2A);
3877     expect(TRUE, r);
3878     g_editbox_disp_info.item.pszText = NULL;
3879     r = SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0, EN_KILLFOCUS), (LPARAM)hwndedit);
3880     expect(0, r);
3881     ok(g_editbox_disp_info.item.pszText != NULL, "got %p\n", g_editbox_disp_info.item.pszText);
3882
3883     memset(&item, 0, sizeof(item));
3884     item.pszText = buffer;
3885     item.cchTextMax = sizeof(buffer);
3886     item.iItem = 0;
3887     item.iSubItem = 0;
3888     r = SendMessage(hwnd, LVM_GETITEMTEXTA, 0, (LPARAM)&item);
3889     expect(lstrlen(item.pszText), r);
3890     ok(strcmp(buffer, testitem2A) == 0, "got %s, expected %s\n", buffer, testitem2A);
3891     ok(!IsWindow(hwndedit), "Expected Edit window to be freed\n");
3892
3893     /* end edit without saving */
3894     SetFocus(hwnd);
3895     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3896     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3897     r = SendMessage(hwndedit, WM_KEYDOWN, VK_ESCAPE, 0);
3898     expect(0, r);
3899     ok_sequence(sequences, PARENT_SEQ_INDEX, edit_end_nochange,
3900                 "edit box - end edit, no change, escape", TRUE);
3901     /* end edit with saving */
3902     SetFocus(hwnd);
3903     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3904     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3905     r = SendMessage(hwndedit, WM_KEYDOWN, VK_RETURN, 0);
3906     expect(0, r);
3907     ok_sequence(sequences, PARENT_SEQ_INDEX, edit_end_nochange,
3908                 "edit box - end edit, no change, return", TRUE);
3909
3910     memset(&item, 0, sizeof(item));
3911     item.pszText = buffer;
3912     item.cchTextMax = sizeof(buffer);
3913     item.iItem = 0;
3914     item.iSubItem = 0;
3915     r = SendMessage(hwnd, LVM_GETITEMTEXTA, 0, (LPARAM)&item);
3916     expect(lstrlen(item.pszText), r);
3917     ok(strcmp(buffer, testitem2A) == 0, "Expected item text to change\n");
3918
3919     /* LVM_EDITLABEL with -1 destroys current edit */
3920     hwndedit = (HWND)SendMessage(hwnd, LVM_GETEDITCONTROL, 0, 0);
3921     ok(hwndedit == NULL, "Expected Edit window not to be created\n");
3922     /* no edit present */
3923     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, -1, 0);
3924     ok(hwndedit == NULL, "Expected Edit window not to be created\n");
3925     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3926     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3927     /* edit present */
3928     ok(GetFocus() == hwndedit, "Expected Edit to be focused\n");
3929     hwndedit2 = (HWND)SendMessage(hwnd, LVM_EDITLABEL, -1, 0);
3930     ok(hwndedit2 == NULL, "Expected Edit window not to be created\n");
3931     ok(!IsWindow(hwndedit), "Expected Edit window to be destroyed\n");
3932     ok(GetFocus() == hwnd, "Expected List to be focused\n");
3933     /* check another negative value */
3934     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3935     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3936     ok(GetFocus() == hwndedit, "Expected Edit to be focused\n");
3937     hwndedit2 = (HWND)SendMessage(hwnd, LVM_EDITLABEL, -2, 0);
3938     ok(hwndedit2 == NULL, "Expected Edit window not to be created\n");
3939     ok(!IsWindow(hwndedit), "Expected Edit window to be destroyed\n");
3940     ok(GetFocus() == hwnd, "Expected List to be focused\n");
3941     /* and value greater than max item index */
3942     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3943     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3944     ok(GetFocus() == hwndedit, "Expected Edit to be focused\n");
3945     r = SendMessage(hwnd, LVM_GETITEMCOUNT, 0, 0);
3946     hwndedit2 = (HWND)SendMessage(hwnd, LVM_EDITLABEL, r, 0);
3947     ok(hwndedit2 == NULL, "Expected Edit window not to be created\n");
3948     ok(!IsWindow(hwndedit), "Expected Edit window to be destroyed\n");
3949     ok(GetFocus() == hwnd, "Expected List to be focused\n");
3950
3951     /* messaging tests */
3952     SetFocus(hwnd);
3953     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3954     blockEdit = FALSE;
3955     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3956     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3957     /* testing only sizing messages */
3958     ok_sequence(sequences, EDITBOX_SEQ_INDEX, editbox_create_pos,
3959                 "edit box create - sizing", FALSE);
3960
3961     /* WM_COMMAND with EN_KILLFOCUS isn't forwarded to parent */
3962     SetFocus(hwnd);
3963     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
3964     ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
3965     flush_sequences(sequences, NUM_MSG_SEQUENCES);
3966     r = SendMessage(hwnd, WM_COMMAND, MAKEWPARAM(0, EN_KILLFOCUS), (LPARAM)hwndedit);
3967     expect(0, r);
3968     ok_sequence(sequences, PARENT_SEQ_INDEX, edit_end_nochange,
3969                 "edit box WM_COMMAND (EN_KILLFOCUS)", TRUE);
3970
3971     DestroyWindow(hwnd);
3972 }
3973
3974 static void test_notifyformat(void)
3975 {
3976     HWND hwnd, header;
3977     DWORD r;
3978
3979     hwnd = create_listview_control(LVS_REPORT);
3980     ok(hwnd != NULL, "failed to create a listview window\n");
3981
3982     /* CCM_GETUNICODEFORMAT == LVM_GETUNICODEFORMAT,
3983        CCM_SETUNICODEFORMAT == LVM_SETUNICODEFORMAT */
3984     r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
3985     expect(0, r);
3986     SendMessage(hwnd, WM_NOTIFYFORMAT, 0, NF_QUERY);
3987     /* set */
3988     r = SendMessage(hwnd, LVM_SETUNICODEFORMAT, 1, 0);
3989     expect(0, r);
3990     r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
3991     if (r == 1)
3992     {
3993         r = SendMessage(hwnd, LVM_SETUNICODEFORMAT, 0, 0);
3994         expect(1, r);
3995         r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
3996         expect(0, r);
3997     }
3998     else
3999     {
4000         win_skip("LVM_GETUNICODEFORMAT is unsupported\n");
4001         DestroyWindow(hwnd);
4002         return;
4003     }
4004
4005     DestroyWindow(hwnd);
4006
4007     /* test failure in parent WM_NOTIFYFORMAT  */
4008     notifyFormat = 0;
4009     hwnd = create_listview_control(LVS_REPORT);
4010     ok(hwnd != NULL, "failed to create a listview window\n");
4011     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4012     ok(IsWindow(header), "expected header to be created\n");
4013     r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4014     expect(0, r);
4015     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4016     ok( r == 1, "Expected 1, got %d\n", r );
4017     r = SendMessage(hwnd, WM_NOTIFYFORMAT, 0, NF_QUERY);
4018     ok(r != 0, "Expected valid format\n");
4019
4020     notifyFormat = NFR_UNICODE;
4021     r = SendMessage(hwnd, WM_NOTIFYFORMAT, 0, NF_REQUERY);
4022     expect(NFR_UNICODE, r);
4023     r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4024     expect(1, r);
4025     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4026     ok( r == 1, "Expected 1, got %d\n", r );
4027
4028     notifyFormat = NFR_ANSI;
4029     r = SendMessage(hwnd, WM_NOTIFYFORMAT, 0, NF_REQUERY);
4030     expect(NFR_ANSI, r);
4031     r = SendMessage(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4032     expect(0, r);
4033     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4034     ok( r == 1, "Expected 1, got %d\n", r );
4035
4036     DestroyWindow(hwnd);
4037
4038     hwndparentW = create_parent_window(TRUE);
4039     ok(IsWindow(hwndparentW), "Unicode parent creation failed\n");
4040     if (!IsWindow(hwndparentW))  return;
4041
4042     notifyFormat = -1;
4043     hwnd = create_listview_controlW(LVS_REPORT, hwndparentW);
4044     ok(hwnd != NULL, "failed to create a listview window\n");
4045     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4046     ok(IsWindow(header), "expected header to be created\n");
4047     r = SendMessageW(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4048     expect(1, r);
4049     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4050     expect(1, r);
4051     DestroyWindow(hwnd);
4052     /* receiving error code defaulting to ansi */
4053     notifyFormat = 0;
4054     hwnd = create_listview_controlW(LVS_REPORT, hwndparentW);
4055     ok(hwnd != NULL, "failed to create a listview window\n");
4056     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4057     ok(IsWindow(header), "expected header to be created\n");
4058     r = SendMessageW(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4059     expect(0, r);
4060     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4061     expect(1, r);
4062     DestroyWindow(hwnd);
4063     /* receiving ansi code from unicode window, use it */
4064     notifyFormat = NFR_ANSI;
4065     hwnd = create_listview_controlW(LVS_REPORT, hwndparentW);
4066     ok(hwnd != NULL, "failed to create a listview window\n");
4067     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4068     ok(IsWindow(header), "expected header to be created\n");
4069     r = SendMessageW(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4070     expect(0, r);
4071     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4072     expect(1, r);
4073     DestroyWindow(hwnd);
4074     /* unicode listview with ansi parent window */
4075     notifyFormat = -1;
4076     hwnd = create_listview_controlW(LVS_REPORT, hwndparent);
4077     ok(hwnd != NULL, "failed to create a listview window\n");
4078     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4079     ok(IsWindow(header), "expected header to be created\n");
4080     r = SendMessageW(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4081     expect(0, r);
4082     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4083     expect(1, r);
4084     DestroyWindow(hwnd);
4085     /* unicode listview with ansi parent window, return error code */
4086     notifyFormat = 0;
4087     hwnd = create_listview_controlW(LVS_REPORT, hwndparent);
4088     ok(hwnd != NULL, "failed to create a listview window\n");
4089     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4090     ok(IsWindow(header), "expected header to be created\n");
4091     r = SendMessageW(hwnd, LVM_GETUNICODEFORMAT, 0, 0);
4092     expect(0, r);
4093     r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
4094     expect(1, r);
4095     DestroyWindow(hwnd);
4096
4097     DestroyWindow(hwndparentW);
4098 }
4099
4100 static void test_indentation(void)
4101 {
4102     HWND hwnd;
4103     LVITEMA item;
4104     DWORD r;
4105
4106     hwnd = create_listview_control(LVS_REPORT);
4107     ok(hwnd != NULL, "failed to create a listview window\n");
4108
4109     memset(&item, 0, sizeof(item));
4110     item.mask = LVIF_INDENT;
4111     item.iItem = 0;
4112     item.iIndent = I_INDENTCALLBACK;
4113     r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
4114     expect(0, r);
4115
4116     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4117
4118     item.iItem = 0;
4119     item.mask = LVIF_INDENT;
4120     r = SendMessage(hwnd, LVM_GETITEM, 0, (LPARAM)&item);
4121     expect(TRUE, r);
4122
4123     ok_sequence(sequences, PARENT_SEQ_INDEX, single_getdispinfo_parent_seq,
4124                 "get indent dispinfo", FALSE);
4125
4126     DestroyWindow(hwnd);
4127 }
4128
4129 static INT CALLBACK DummyCompareEx(LPARAM first, LPARAM second, LPARAM param)
4130 {
4131     return 0;
4132 }
4133
4134 static BOOL is_below_comctl_5(void)
4135 {
4136     HWND hwnd;
4137     BOOL ret;
4138
4139     hwnd = create_listview_control(LVS_REPORT);
4140     ok(hwnd != NULL, "failed to create a listview window\n");
4141     insert_item(hwnd, 0);
4142
4143     ret = SendMessage(hwnd, LVM_SORTITEMSEX, 0, (LPARAM)&DummyCompareEx);
4144
4145     DestroyWindow(hwnd);
4146
4147     return !ret;
4148 }
4149
4150 static void test_get_set_view(void)
4151 {
4152     HWND hwnd;
4153     DWORD ret;
4154     DWORD_PTR style;
4155
4156     /* test style->view mapping */
4157     hwnd = create_listview_control(LVS_REPORT);
4158     ok(hwnd != NULL, "failed to create a listview window\n");
4159
4160     ret = SendMessage(hwnd, LVM_GETVIEW, 0, 0);
4161     expect(LV_VIEW_DETAILS, ret);
4162
4163     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4164     /* LVS_ICON == 0 */
4165     SetWindowLongPtr(hwnd, GWL_STYLE, style & ~LVS_REPORT);
4166     ret = SendMessage(hwnd, LVM_GETVIEW, 0, 0);
4167     expect(LV_VIEW_ICON, ret);
4168
4169     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4170     SetWindowLongPtr(hwnd, GWL_STYLE, style | LVS_SMALLICON);
4171     ret = SendMessage(hwnd, LVM_GETVIEW, 0, 0);
4172     expect(LV_VIEW_SMALLICON, ret);
4173
4174     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4175     SetWindowLongPtr(hwnd, GWL_STYLE, (style & ~LVS_SMALLICON) | LVS_LIST);
4176     ret = SendMessage(hwnd, LVM_GETVIEW, 0, 0);
4177     expect(LV_VIEW_LIST, ret);
4178
4179     /* switching view doesn't touch window style */
4180     ret = SendMessage(hwnd, LVM_SETVIEW, LV_VIEW_DETAILS, 0);
4181     expect(1, ret);
4182     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4183     ok(style & LVS_LIST, "Expected style to be preserved\n");
4184     ret = SendMessage(hwnd, LVM_SETVIEW, LV_VIEW_ICON, 0);
4185     expect(1, ret);
4186     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4187     ok(style & LVS_LIST, "Expected style to be preserved\n");
4188     ret = SendMessage(hwnd, LVM_SETVIEW, LV_VIEW_SMALLICON, 0);
4189     expect(1, ret);
4190     style = GetWindowLongPtr(hwnd, GWL_STYLE);
4191     ok(style & LVS_LIST, "Expected style to be preserved\n");
4192
4193     DestroyWindow(hwnd);
4194 }
4195
4196 static void test_canceleditlabel(void)
4197 {
4198     HWND hwnd, hwndedit;
4199     DWORD ret;
4200     CHAR buff[10];
4201     LVITEMA itema;
4202     static CHAR test[] = "test";
4203     static const CHAR test1[] = "test1";
4204
4205     hwnd = create_listview_control(LVS_EDITLABELS | LVS_REPORT);
4206     ok(hwnd != NULL, "failed to create a listview window\n");
4207
4208     insert_item(hwnd, 0);
4209
4210     /* try without edit created */
4211     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4212     ret = SendMessage(hwnd, LVM_CANCELEDITLABEL, 0, 0);
4213     expect(TRUE, ret);
4214     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
4215                 "cancel edit label without edit", FALSE);
4216
4217     /* cancel without data change */
4218     SetFocus(hwnd);
4219     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
4220     ok(IsWindow(hwndedit), "Expected edit control to be created\n");
4221     ret = SendMessage(hwnd, LVM_CANCELEDITLABEL, 0, 0);
4222     expect(TRUE, ret);
4223     ok(!IsWindow(hwndedit), "Expected edit control to be destroyed\n");
4224
4225     /* cancel after data change */
4226     memset(&itema, 0, sizeof(itema));
4227     itema.pszText = test;
4228     ret = SendMessage(hwnd, LVM_SETITEMTEXT, 0, (LPARAM)&itema);
4229     expect(TRUE, ret);
4230     SetFocus(hwnd);
4231     hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
4232     ok(IsWindow(hwndedit), "Expected edit control to be created\n");
4233     ret = SetWindowText(hwndedit, test1);
4234     expect(1, ret);
4235     ret = SendMessage(hwnd, LVM_CANCELEDITLABEL, 0, 0);
4236     expect(TRUE, ret);
4237     ok(!IsWindow(hwndedit), "Expected edit control to be destroyed\n");
4238     memset(&itema, 0, sizeof(itema));
4239     itema.pszText = buff;
4240     itema.cchTextMax = sizeof(buff)/sizeof(CHAR);
4241     ret = SendMessage(hwnd, LVM_GETITEMTEXT, 0, (LPARAM)&itema);
4242     expect(5, ret);
4243     ok(strcmp(buff, test1) == 0, "Expected label text not to change\n");
4244
4245     DestroyWindow(hwnd);
4246 }
4247
4248 static void test_mapidindex(void)
4249 {
4250     HWND hwnd;
4251     INT ret;
4252
4253     /* LVM_MAPINDEXTOID unsupported with LVS_OWNERDATA */
4254     hwnd = create_listview_control(LVS_OWNERDATA | LVS_REPORT);
4255     ok(hwnd != NULL, "failed to create a listview window\n");
4256     insert_item(hwnd, 0);
4257     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 0, 0);
4258     expect(-1, ret);
4259     DestroyWindow(hwnd);
4260
4261     hwnd = create_listview_control(LVS_REPORT);
4262     ok(hwnd != NULL, "failed to create a listview window\n");
4263
4264     /* LVM_MAPINDEXTOID with invalid index */
4265     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 0, 0);
4266     expect(-1, ret);
4267
4268     insert_item(hwnd, 0);
4269     insert_item(hwnd, 1);
4270
4271     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, -1, 0);
4272     expect(-1, ret);
4273     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 2, 0);
4274     expect(-1, ret);
4275
4276     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 0, 0);
4277     expect(0, ret);
4278     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 1, 0);
4279     expect(1, ret);
4280     /* remove 0 indexed item, id retained */
4281     SendMessage(hwnd, LVM_DELETEITEM, 0, 0);
4282     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 0, 0);
4283     expect(1, ret);
4284     /* new id starts from previous value */
4285     insert_item(hwnd, 1);
4286     ret = SendMessage(hwnd, LVM_MAPINDEXTOID, 1, 0);
4287     expect(2, ret);
4288
4289     /* get index by id */
4290     ret = SendMessage(hwnd, LVM_MAPIDTOINDEX, -1, 0);
4291     expect(-1, ret);
4292     ret = SendMessage(hwnd, LVM_MAPIDTOINDEX, 0, 0);
4293     expect(-1, ret);
4294     ret = SendMessage(hwnd, LVM_MAPIDTOINDEX, 1, 0);
4295     expect(0, ret);
4296     ret = SendMessage(hwnd, LVM_MAPIDTOINDEX, 2, 0);
4297     expect(1, ret);
4298
4299     DestroyWindow(hwnd);
4300 }
4301
4302 static void test_getitemspacing(void)
4303 {
4304     HWND hwnd;
4305     DWORD ret;
4306     INT cx, cy;
4307     HIMAGELIST himl;
4308     HBITMAP hbmp;
4309     LVITEMA itema;
4310
4311     cx = GetSystemMetrics(SM_CXICONSPACING) - GetSystemMetrics(SM_CXICON);
4312     cy = GetSystemMetrics(SM_CYICONSPACING) - GetSystemMetrics(SM_CYICON);
4313
4314     /* LVS_ICON */
4315     hwnd = create_listview_control(LVS_ICON);
4316     ret = SendMessage(hwnd, LVM_GETITEMSPACING, FALSE, 0);
4317 todo_wine {
4318     expect(cx, LOWORD(ret));
4319     expect(cy, HIWORD(ret));
4320 }
4321     /* now try with icons */
4322     himl = ImageList_Create(40, 40, 0, 4, 4);
4323     ok(himl != NULL, "failed to create imagelist\n");
4324     hbmp = CreateBitmap(40, 40, 1, 1, NULL);
4325     ok(hbmp != NULL, "failed to create bitmap\n");
4326     ret = ImageList_Add(himl, hbmp, 0);
4327     expect(0, ret);
4328     ret = SendMessage(hwnd, LVM_SETIMAGELIST, 0, (LPARAM)himl);
4329     expect(0, ret);
4330
4331     itema.mask = LVIF_IMAGE;
4332     itema.iImage = 0;
4333     itema.iItem = 0;
4334     itema.iSubItem = 0;
4335     ret = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM)&itema);
4336     expect(0, ret);
4337     ret = SendMessage(hwnd, LVM_GETITEMSPACING, FALSE, 0);
4338 todo_wine {
4339     /* spacing + icon size returned */
4340     expect(cx + 40, LOWORD(ret));
4341     expect(cy + 40, HIWORD(ret));
4342 }
4343     DestroyWindow(hwnd);
4344     /* LVS_SMALLICON */
4345     hwnd = create_listview_control(LVS_SMALLICON);
4346     ret = SendMessage(hwnd, LVM_GETITEMSPACING, FALSE, 0);
4347 todo_wine {
4348     expect(cx, LOWORD(ret));
4349     expect(cy, HIWORD(ret));
4350 }
4351     DestroyWindow(hwnd);
4352     /* LVS_REPORT */
4353     hwnd = create_listview_control(LVS_REPORT);
4354     ret = SendMessage(hwnd, LVM_GETITEMSPACING, FALSE, 0);
4355 todo_wine {
4356     expect(cx, LOWORD(ret));
4357     expect(cy, HIWORD(ret));
4358 }
4359     DestroyWindow(hwnd);
4360     /* LVS_LIST */
4361     hwnd = create_listview_control(LVS_LIST);
4362     ret = SendMessage(hwnd, LVM_GETITEMSPACING, FALSE, 0);
4363 todo_wine {
4364     expect(cx, LOWORD(ret));
4365     expect(cy, HIWORD(ret));
4366 }
4367     DestroyWindow(hwnd);
4368 }
4369
4370 static void test_getcolumnwidth(void)
4371 {
4372     HWND hwnd;
4373     INT ret;
4374     DWORD_PTR style;
4375     LVCOLUMNA col;
4376     LVITEMA itema;
4377     HDC hdc;
4378
4379     /* default column width */
4380     hwnd = create_listview_control(LVS_ICON);
4381     ret = SendMessage(hwnd, LVM_GETCOLUMNWIDTH, 0, 0);
4382     expect(0, ret);
4383     style = GetWindowLong(hwnd, GWL_STYLE);
4384     SetWindowLong(hwnd, GWL_STYLE, style | LVS_LIST);
4385     ret = SendMessage(hwnd, LVM_GETCOLUMNWIDTH, 0, 0);
4386     todo_wine expect(8, ret);
4387     style = GetWindowLong(hwnd, GWL_STYLE) & ~LVS_LIST;
4388     SetWindowLong(hwnd, GWL_STYLE, style | LVS_REPORT);
4389     col.mask = 0;
4390     ret = SendMessage(hwnd, LVM_INSERTCOLUMNA, 0, (LPARAM)&col);
4391     expect(0, ret);
4392     ret = SendMessage(hwnd, LVM_GETCOLUMNWIDTH, 0, 0);
4393     expect(10, ret);
4394     DestroyWindow(hwnd);
4395
4396     /* default column width with item added */
4397     hwnd = create_listview_control(LVS_LIST);
4398     memset(&itema, 0, sizeof(itema));
4399     SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&itema);
4400     ret = SendMessage(hwnd, LVM_GETCOLUMNWIDTH, 0, 0);
4401     hdc = GetDC(hwnd);
4402     todo_wine expect(((GetDeviceCaps(hdc, LOGPIXELSX) + 15) / 16) * 16, ret);
4403     ReleaseDC(hwnd, hdc);
4404     DestroyWindow(hwnd);
4405 }
4406
4407 static void test_scrollnotify(void)
4408 {
4409     HWND hwnd;
4410     DWORD ret;
4411
4412     hwnd = create_listview_control(LVS_REPORT);
4413
4414     insert_column(hwnd, 0);
4415     insert_column(hwnd, 1);
4416     insert_item(hwnd, 0);
4417
4418     /* make it scrollable - resize */
4419     ret = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 0, MAKELPARAM(100, 0));
4420     expect(TRUE, ret);
4421     ret = SendMessage(hwnd, LVM_SETCOLUMNWIDTH, 1, MAKELPARAM(100, 0));
4422     expect(TRUE, ret);
4423
4424     /* try with dummy call */
4425     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4426     ret = SendMessage(hwnd, LVM_SCROLL, 0, 0);
4427     expect(TRUE, ret);
4428     ok_sequence(sequences, PARENT_SEQ_INDEX, scroll_parent_seq,
4429                 "scroll notify 1", TRUE);
4430
4431     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4432     ret = SendMessage(hwnd, LVM_SCROLL, 1, 0);
4433     expect(TRUE, ret);
4434     ok_sequence(sequences, PARENT_SEQ_INDEX, scroll_parent_seq,
4435                 "scroll notify 2", TRUE);
4436
4437     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4438     ret = SendMessage(hwnd, LVM_SCROLL, 1, 1);
4439     expect(TRUE, ret);
4440     ok_sequence(sequences, PARENT_SEQ_INDEX, scroll_parent_seq,
4441                 "scroll notify 3", TRUE);
4442
4443     DestroyWindow(hwnd);
4444 }
4445
4446 static void test_LVS_EX_TRANSPARENTBKGND(void)
4447 {
4448     HWND hwnd;
4449     DWORD ret;
4450     HDC hdc;
4451
4452     hwnd = create_listview_control(LVS_REPORT);
4453
4454     ret = SendMessage(hwnd, LVM_SETBKCOLOR, 0, RGB(0, 0, 0));
4455     expect(TRUE, ret);
4456
4457     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_TRANSPARENTBKGND,
4458                                                     LVS_EX_TRANSPARENTBKGND);
4459
4460     ret = SendMessage(hwnd, LVM_GETBKCOLOR, 0, 0);
4461     if (ret != CLR_NONE)
4462     {
4463         win_skip("LVS_EX_TRANSPARENTBKGND unsupported\n");
4464         DestroyWindow(hwnd);
4465         return;
4466     }
4467
4468     /* try to set some back color and check this style bit */
4469     ret = SendMessage(hwnd, LVM_SETBKCOLOR, 0, RGB(0, 0, 0));
4470     expect(TRUE, ret);
4471     ret = SendMessage(hwnd, LVM_GETEXTENDEDLISTVIEWSTYLE, 0, 0);
4472     ok(!(ret & LVS_EX_TRANSPARENTBKGND), "Expected LVS_EX_TRANSPARENTBKGND to unset\n");
4473
4474     /* now test what this style actually does */
4475     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_TRANSPARENTBKGND,
4476                                                     LVS_EX_TRANSPARENTBKGND);
4477
4478     hdc = GetWindowDC(hwndparent);
4479
4480     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4481     SendMessageA(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
4482     ok_sequence(sequences, PARENT_SEQ_INDEX, lvs_ex_transparentbkgnd_seq,
4483                 "LVS_EX_TRANSPARENTBKGND parent", FALSE);
4484
4485     ReleaseDC(hwndparent, hdc);
4486
4487     DestroyWindow(hwnd);
4488 }
4489
4490 static void test_approximate_viewrect(void)
4491 {
4492     HWND hwnd;
4493     DWORD ret;
4494     HIMAGELIST himl;
4495     HBITMAP hbmp;
4496     LVITEMA itema;
4497     static CHAR test[] = "abracadabra, a very long item label";
4498
4499     hwnd = create_listview_control(LVS_ICON);
4500     himl = ImageList_Create(40, 40, 0, 4, 4);
4501     ok(himl != NULL, "failed to create imagelist\n");
4502     hbmp = CreateBitmap(40, 40, 1, 1, NULL);
4503     ok(hbmp != NULL, "failed to create bitmap\n");
4504     ret = ImageList_Add(himl, hbmp, 0);
4505     expect(0, ret);
4506     ret = SendMessage(hwnd, LVM_SETIMAGELIST, 0, (LPARAM)himl);
4507     expect(0, ret);
4508
4509     itema.mask = LVIF_IMAGE;
4510     itema.iImage = 0;
4511     itema.iItem = 0;
4512     itema.iSubItem = 0;
4513     ret = SendMessage(hwnd, LVM_INSERTITEM, 0, (LPARAM)&itema);
4514     expect(0, ret);
4515
4516     ret = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(75, 75));
4517     if (ret == 0)
4518     {
4519         /* version 4.0 */
4520         win_skip("LVM_SETICONSPACING unimplemented. Skipping.\n");
4521         return;
4522     }
4523
4524     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 11, MAKELPARAM(100,100));
4525     expect(MAKELONG(77,827), ret);
4526
4527     ret = SendMessage(hwnd, LVM_SETICONSPACING, 0, MAKELPARAM(50, 50));
4528     ok(ret != 0, "got 0\n");
4529
4530     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 11, MAKELPARAM(100,100));
4531     expect(MAKELONG(102,302), ret);
4532
4533     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, -1, MAKELPARAM(100,100));
4534     expect(MAKELONG(52,52), ret);
4535
4536     itema.pszText = test;
4537     ret = SendMessage(hwnd, LVM_SETITEMTEXT, 0, (LPARAM)&itema);
4538     expect(TRUE, ret);
4539     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, -1, MAKELPARAM(100,100));
4540     expect(MAKELONG(52,52), ret);
4541
4542     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 0, MAKELPARAM(100,100));
4543     expect(MAKELONG(52,2), ret);
4544     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 1, MAKELPARAM(100,100));
4545     expect(MAKELONG(52,52), ret);
4546     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 2, MAKELPARAM(100,100));
4547     expect(MAKELONG(102,52), ret);
4548     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 3, MAKELPARAM(100,100));
4549     expect(MAKELONG(102,102), ret);
4550     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 4, MAKELPARAM(100,100));
4551     expect(MAKELONG(102,102), ret);
4552     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 5, MAKELPARAM(100,100));
4553     expect(MAKELONG(102,152), ret);
4554     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 6, MAKELPARAM(100,100));
4555     expect(MAKELONG(102,152), ret);
4556     ret = SendMessage(hwnd, LVM_APPROXIMATEVIEWRECT, 7, MAKELPARAM(160,100));
4557     expect(MAKELONG(152,152), ret);
4558
4559     DestroyWindow(hwnd);
4560 }
4561
4562 static void test_finditem(void)
4563 {
4564     LVFINDINFOA fi;
4565     static char f[5];
4566     HWND hwnd;
4567     INT r;
4568
4569     hwnd = create_listview_control(LVS_REPORT);
4570     insert_item(hwnd, 0);
4571
4572     memset(&fi, 0, sizeof(fi));
4573
4574     /* full string search, inserted text was "foo" */
4575     strcpy(f, "foo");
4576     fi.flags = LVFI_STRING;
4577     fi.psz = f;
4578     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4579     expect(0, r);
4580     /* partial string search, inserted text was "foo" */
4581     strcpy(f, "fo");
4582     fi.flags = LVFI_STRING | LVFI_PARTIAL;
4583     fi.psz = f;
4584     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4585     expect(0, r);
4586     /* partial string search, part after start char */
4587     strcpy(f, "oo");
4588     fi.flags = LVFI_STRING | LVFI_PARTIAL;
4589     fi.psz = f;
4590     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4591     expect(-1, r);
4592
4593     /* try with LVFI_SUBSTRING */
4594     strcpy(f, "fo");
4595     fi.flags = LVFI_SUBSTRING;
4596     fi.psz = f;
4597     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4598     if (r == -1)
4599     {
4600         win_skip("LVFI_SUBSTRING not supported\n");
4601         DestroyWindow(hwnd);
4602         return;
4603     }
4604     expect(0, r);
4605     strcpy(f, "f");
4606     fi.flags = LVFI_SUBSTRING;
4607     fi.psz = f;
4608     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4609     expect(0, r);
4610     strcpy(f, "o");
4611     fi.flags = LVFI_SUBSTRING;
4612     fi.psz = f;
4613     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4614     expect(-1, r);
4615
4616     strcpy(f, "f");
4617     fi.flags = LVFI_SUBSTRING | LVFI_STRING;
4618     fi.psz = f;
4619     r = SendMessage(hwnd, LVM_FINDITEMA, -1, (LPARAM)&fi);
4620     expect(0, r);
4621
4622     DestroyWindow(hwnd);
4623 }
4624
4625 static void test_LVS_EX_HEADERINALLVIEWS(void)
4626 {
4627     HWND hwnd, header;
4628     DWORD style;
4629
4630     hwnd = create_listview_control(LVS_ICON);
4631
4632     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_HEADERINALLVIEWS,
4633                                                     LVS_EX_HEADERINALLVIEWS);
4634
4635     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4636     if (!IsWindow(header))
4637     {
4638         win_skip("LVS_EX_HEADERINALLVIEWS unsupported\n");
4639         DestroyWindow(hwnd);
4640         return;
4641     }
4642
4643     /* LVS_NOCOLUMNHEADER works as before */
4644     style = GetWindowLongA(hwnd, GWL_STYLE);
4645     SetWindowLongW(hwnd, GWL_STYLE, style | LVS_NOCOLUMNHEADER);
4646     style = GetWindowLongA(header, GWL_STYLE);
4647     ok(style & HDS_HIDDEN, "Expected HDS_HIDDEN\n");
4648     style = GetWindowLongA(hwnd, GWL_STYLE);
4649     SetWindowLongW(hwnd, GWL_STYLE, style & ~LVS_NOCOLUMNHEADER);
4650     style = GetWindowLongA(header, GWL_STYLE);
4651     ok(!(style & HDS_HIDDEN), "Expected HDS_HIDDEN to be unset\n");
4652
4653     /* try to remove style */
4654     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_HEADERINALLVIEWS, 0);
4655     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4656     ok(IsWindow(header), "Expected header to be created\n");
4657     style = GetWindowLongA(header, GWL_STYLE);
4658     ok(!(style & HDS_HIDDEN), "HDS_HIDDEN not expected\n");
4659
4660     DestroyWindow(hwnd);
4661
4662     /* check other styles */
4663     hwnd = create_listview_control(LVS_LIST);
4664     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_HEADERINALLVIEWS,
4665                                                     LVS_EX_HEADERINALLVIEWS);
4666     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4667     ok(IsWindow(header), "Expected header to be created\n");
4668     DestroyWindow(hwnd);
4669
4670     hwnd = create_listview_control(LVS_SMALLICON);
4671     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_HEADERINALLVIEWS,
4672                                                     LVS_EX_HEADERINALLVIEWS);
4673     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4674     ok(IsWindow(header), "Expected header to be created\n");
4675     DestroyWindow(hwnd);
4676
4677     hwnd = create_listview_control(LVS_REPORT);
4678     SendMessage(hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_HEADERINALLVIEWS,
4679                                                     LVS_EX_HEADERINALLVIEWS);
4680     header = (HWND)SendMessage(hwnd, LVM_GETHEADER, 0, 0);
4681     ok(IsWindow(header), "Expected header to be created\n");
4682     DestroyWindow(hwnd);
4683 }
4684
4685 static void test_hover(void)
4686 {
4687     HWND hwnd;
4688     DWORD r;
4689
4690     hwnd = create_listview_control(LVS_ICON);
4691
4692     /* test WM_MOUSEHOVER forwarding */
4693     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4694     r = SendMessage(hwnd, WM_MOUSEHOVER, 0, 0);
4695     expect(0, r);
4696     ok_sequence(sequences, PARENT_SEQ_INDEX, hover_parent, "NM_HOVER allow test", TRUE);
4697     g_block_hover = TRUE;
4698     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4699     r = SendMessage(hwnd, WM_MOUSEHOVER, 0, 0);
4700     expect(0, r);
4701     ok_sequence(sequences, PARENT_SEQ_INDEX, hover_parent, "NM_HOVER block test", TRUE);
4702     g_block_hover = FALSE;
4703
4704     r = SendMessage(hwnd, LVM_SETHOVERTIME, 0, 500);
4705     expect(HOVER_DEFAULT, r);
4706     r = SendMessage(hwnd, LVM_GETHOVERTIME, 0, 0);
4707     expect(500, r);
4708
4709     DestroyWindow(hwnd);
4710 }
4711
4712 static void test_destroynotify(void)
4713 {
4714     HWND hwnd;
4715
4716     hwnd = create_listview_control(LVS_REPORT);
4717     ok(hwnd != NULL, "failed to create listview window\n");
4718
4719     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4720     DestroyWindow(hwnd);
4721     ok_sequence(sequences, COMBINED_SEQ_INDEX, listview_destroy, "check destroy order", FALSE);
4722 }
4723
4724 static void test_header_notification(void)
4725 {
4726     static char textA[] = "newtext";
4727     HWND list, header;
4728     HDITEMA item;
4729     NMHEADER nmh;
4730     LVCOLUMNA col;
4731     DWORD ret;
4732     BOOL r;
4733
4734     list = create_listview_control(LVS_REPORT);
4735     ok(list != NULL, "failed to create listview window\n");
4736
4737     memset(&col, 0, sizeof(col));
4738     col.mask = LVCF_WIDTH;
4739     col.cx = 100;
4740     ret = SendMessage(list, LVM_INSERTCOLUMNA, 0, (LPARAM)&col);
4741     expect(0, ret);
4742
4743     /* check list parent notification after header item changed,
4744        this test should be placed before header subclassing to avoid
4745        Listview -> Header messages to be logged */
4746     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4747
4748     col.mask = LVCF_TEXT;
4749     col.pszText = textA;
4750     r = SendMessage(list, LVM_SETCOLUMNA, 0, (LPARAM)&col);
4751     expect(TRUE, r);
4752
4753     ok_sequence(sequences, LISTVIEW_SEQ_INDEX, listview_header_changed_seq,
4754                 "header notify, listview", FALSE);
4755     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
4756                 "header notify, parent", FALSE);
4757
4758     header = subclass_header(list);
4759
4760     ret = SendMessage(header, HDM_GETITEMCOUNT, 0, 0);
4761     expect(1, ret);
4762
4763     memset(&item, 0, sizeof(item));
4764     item.mask = HDI_WIDTH;
4765     ret = SendMessage(header, HDM_GETITEMA, 0, (LPARAM)&item);
4766     expect(1, ret);
4767     expect(100, item.cxy);
4768
4769     nmh.hdr.hwndFrom = header;
4770     nmh.hdr.idFrom = GetWindowLongPtr(header, GWLP_ID);
4771     nmh.hdr.code = HDN_ITEMCHANGEDA;
4772     nmh.iItem = 0;
4773     nmh.iButton = 0;
4774     item.mask = HDI_WIDTH;
4775     item.cxy = 50;
4776     nmh.pitem = &item;
4777     ret = SendMessage(list, WM_NOTIFY, 0, (LPARAM)&nmh);
4778     expect(0, ret);
4779
4780     DestroyWindow(list);
4781 }
4782
4783 static void test_createdragimage(void)
4784 {
4785     HIMAGELIST himl;
4786     POINT pt;
4787     HWND list;
4788
4789     list = create_listview_control(LVS_ICON);
4790     ok(list != NULL, "failed to create listview window\n");
4791
4792     insert_item(list, 0);
4793
4794     /* NULL point */
4795     himl = (HIMAGELIST)SendMessageA(list, LVM_CREATEDRAGIMAGE, 0, 0);
4796     ok(himl == NULL, "got %p\n", himl);
4797
4798     himl = (HIMAGELIST)SendMessageA(list, LVM_CREATEDRAGIMAGE, 0, (LPARAM)&pt);
4799     ok(himl != NULL, "got %p\n", himl);
4800     ImageList_Destroy(himl);
4801
4802     DestroyWindow(list);
4803 }
4804
4805 static void test_dispinfo(void)
4806 {
4807     static const char testA[] = "TEST";
4808     WCHAR buff[10];
4809     LVITEMA item;
4810     HWND hwnd;
4811     DWORD ret;
4812
4813     hwnd = create_listview_control(LVS_ICON);
4814     ok(hwnd != NULL, "failed to create listview window\n");
4815
4816     insert_item(hwnd, 0);
4817
4818     memset(&item, 0, sizeof(item));
4819     item.pszText = LPSTR_TEXTCALLBACKA;
4820     ret = SendMessageA(hwnd, LVM_SETITEMTEXTA, 0, (LPARAM)&item);
4821     expect(1, ret);
4822
4823     g_disp_A_to_W = TRUE;
4824     item.pszText = (char*)buff;
4825     item.cchTextMax = sizeof(buff)/sizeof(WCHAR);
4826     ret = SendMessageA(hwnd, LVM_GETITEMTEXTA, 0, (LPARAM)&item);
4827     ok(ret == sizeof(testA)-1, "got %d, expected 4\n", ret);
4828     g_disp_A_to_W = FALSE;
4829
4830     ok(memcmp(item.pszText, testA, sizeof(testA)) == 0,
4831         "got %s, expected %s\n", item.pszText, testA);
4832
4833     DestroyWindow(hwnd);
4834 }
4835
4836 static void test_LVM_SETITEMTEXT(void)
4837 {
4838     static char testA[] = "TEST";
4839     LVITEMA item;
4840     HWND hwnd;
4841     DWORD ret;
4842
4843     hwnd = create_listview_control(LVS_ICON);
4844     ok(hwnd != NULL, "failed to create listview window\n");
4845
4846     insert_item(hwnd, 0);
4847
4848     /* null item pointer */
4849     ret = SendMessage(hwnd, LVM_SETITEMTEXTA, 0, 0);
4850     expect(FALSE, ret);
4851
4852     ret = SendMessage(hwnd, LVM_SETITEMTEXTW, 0, 0);
4853     expect(FALSE, ret);
4854
4855     /* index out of bounds */
4856     item.pszText = testA;
4857     item.cchTextMax = 0; /* ignored */
4858     item.iSubItem = 0;
4859
4860     ret = SendMessageA(hwnd, LVM_SETITEMTEXTA, 1, (LPARAM)&item);
4861     expect(FALSE, ret);
4862
4863     ret = SendMessageA(hwnd, LVM_SETITEMTEXTA, -1, (LPARAM)&item);
4864     expect(FALSE, ret);
4865
4866     ret = SendMessageA(hwnd, LVM_SETITEMTEXTA, 0, (LPARAM)&item);
4867     expect(TRUE, ret);
4868
4869     DestroyWindow(hwnd);
4870 }
4871
4872 START_TEST(listview)
4873 {
4874     HMODULE hComctl32;
4875     BOOL (WINAPI *pInitCommonControlsEx)(const INITCOMMONCONTROLSEX*);
4876
4877     ULONG_PTR ctx_cookie;
4878     HANDLE hCtx;
4879     HWND hwnd;
4880
4881     hComctl32 = GetModuleHandleA("comctl32.dll");
4882     pInitCommonControlsEx = (void*)GetProcAddress(hComctl32, "InitCommonControlsEx");
4883     if (pInitCommonControlsEx)
4884     {
4885         INITCOMMONCONTROLSEX iccex;
4886         iccex.dwSize = sizeof(iccex);
4887         iccex.dwICC  = ICC_LISTVIEW_CLASSES;
4888         pInitCommonControlsEx(&iccex);
4889     }
4890     else
4891         InitCommonControls();
4892
4893     init_msg_sequences(sequences, NUM_MSG_SEQUENCES);
4894
4895     hwndparent = create_parent_window(FALSE);
4896     flush_sequences(sequences, NUM_MSG_SEQUENCES);
4897
4898     g_is_below_5 = is_below_comctl_5();
4899
4900     test_header_notification();
4901     test_images();
4902     test_checkboxes();
4903     test_items();
4904     test_create();
4905     test_redraw();
4906     test_customdraw();
4907     test_icon_spacing();
4908     test_color();
4909     test_item_count();
4910     test_item_position();
4911     test_columns();
4912     test_getorigin();
4913     test_multiselect();
4914     test_getitemrect();
4915     test_subitem_rect();
4916     test_sorting();
4917     test_ownerdata();
4918     test_norecompute();
4919     test_nosortheader();
4920     test_setredraw();
4921     test_hittest();
4922     test_getviewrect();
4923     test_getitemposition();
4924     test_columnscreation();
4925     test_editbox();
4926     test_notifyformat();
4927     test_indentation();
4928     test_getitemspacing();
4929     test_getcolumnwidth();
4930     test_approximate_viewrect();
4931     test_finditem();
4932     test_hover();
4933     test_destroynotify();
4934     test_createdragimage();
4935     test_dispinfo();
4936     test_LVM_SETITEMTEXT();
4937
4938     if (!load_v6_module(&ctx_cookie, &hCtx))
4939     {
4940         DestroyWindow(hwndparent);
4941         return;
4942     }
4943
4944     /* this is a XP SP3 failure workaround */
4945     hwnd = CreateWindowExA(0, WC_LISTVIEW, "foo",
4946                            WS_CHILD | WS_BORDER | WS_VISIBLE | LVS_REPORT,
4947                            0, 0, 100, 100,
4948                            hwndparent, NULL, GetModuleHandleA(NULL), NULL);
4949     if (!IsWindow(hwnd))
4950     {
4951         win_skip("FIXME: failed to create ListView window.\n");
4952         unload_v6_module(ctx_cookie, hCtx);
4953         DestroyWindow(hwndparent);
4954         return;
4955     }
4956     else
4957         DestroyWindow(hwnd);
4958
4959     /* comctl32 version 6 tests start here */
4960     test_get_set_view();
4961     test_canceleditlabel();
4962     test_mapidindex();
4963     test_scrollnotify();
4964     test_LVS_EX_TRANSPARENTBKGND();
4965     test_LVS_EX_HEADERINALLVIEWS();
4966
4967     unload_v6_module(ctx_cookie, hCtx);
4968
4969     DestroyWindow(hwndparent);
4970 }