winex11: add owned windows to taskbar if owner is not mapped
[wine] / dlls / user32 / tests / cursoricon.c
1 /*
2  * Unit test suite for cursors and icons.
3  *
4  * Copyright 2006 Michael Kaufmann
5  * Copyright 2007 Dmitry Timoshkov
6  * Copyright 2007-2008 Andrew Riedi
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 <assert.h>
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27
28 #include "wine/test.h"
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winreg.h"
32 #include "wingdi.h"
33 #include "winuser.h"
34
35 #include "pshpack1.h"
36
37 typedef struct
38 {
39     BYTE bWidth;
40     BYTE bHeight;
41     BYTE bColorCount;
42     BYTE bReserved;
43     WORD xHotspot;
44     WORD yHotspot;
45     DWORD dwDIBSize;
46     DWORD dwDIBOffset;
47 } CURSORICONFILEDIRENTRY;
48
49 typedef struct
50 {
51     WORD idReserved;
52     WORD idType;
53     WORD idCount;
54     CURSORICONFILEDIRENTRY idEntries[1];
55 } CURSORICONFILEDIR;
56
57 #include "poppack.h"
58
59 static char **test_argv;
60 static int test_argc;
61 static HWND child = 0;
62 static HWND parent = 0;
63 static HANDLE child_process;
64
65 #define PROC_INIT (WM_USER+1)
66
67 static LRESULT CALLBACK callback_child(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
68 {
69     BOOL ret;
70     DWORD error;
71
72     switch (msg)
73     {
74         /* Destroy the cursor. */
75         case WM_USER+1:
76             SetLastError(0xdeadbeef);
77             ret = DestroyCursor((HCURSOR) lParam);
78             error = GetLastError();
79             todo_wine {
80             ok(!ret, "DestroyCursor on the active cursor succeeded.\n");
81             ok(error == ERROR_DESTROY_OBJECT_OF_OTHER_THREAD,
82                 "Last error: %u\n", error);
83             }
84             return TRUE;
85         case WM_DESTROY:
86             PostQuitMessage(0);
87             return 0;
88     }
89
90     return DefWindowProc(hwnd, msg, wParam, lParam);
91 }
92
93 static LRESULT CALLBACK callback_parent(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
94 {
95     if (msg == PROC_INIT)
96     {
97         child = (HWND) wParam;
98         return TRUE;
99     }
100
101     return DefWindowProc(hwnd, msg, wParam, lParam);
102 }
103
104 static void do_child(void)
105 {
106     WNDCLASS class;
107     MSG msg;
108     BOOL ret;
109
110     /* Register a new class. */
111     class.style = CS_GLOBALCLASS;
112     class.lpfnWndProc = callback_child;
113     class.cbClsExtra = 0;
114     class.cbWndExtra = 0;
115     class.hInstance = GetModuleHandle(NULL);
116     class.hIcon = NULL;
117     class.hCursor = NULL;
118     class.hbrBackground = NULL;
119     class.lpszMenuName = NULL;
120     class.lpszClassName = "cursor_child";
121
122     SetLastError(0xdeadbeef);
123     ret = RegisterClass(&class);
124     ok(ret, "Failed to register window class.  Error: %u\n", GetLastError());
125
126     /* Create a window. */
127     child = CreateWindowA("cursor_child", "cursor_child", WS_POPUP | WS_VISIBLE,
128         0, 0, 200, 200, 0, 0, 0, NULL);
129     ok(child != 0, "CreateWindowA failed.  Error: %u\n", GetLastError());
130
131     /* Let the parent know our HWND. */
132     PostMessage(parent, PROC_INIT, (WPARAM) child, 0);
133
134     /* Receive messages. */
135     while ((ret = GetMessage(&msg, child, 0, 0)))
136     {
137         ok(ret != -1, "GetMessage failed.  Error: %u\n", GetLastError());
138         TranslateMessage(&msg);
139         DispatchMessage(&msg);
140     }
141 }
142
143 static void do_parent(void)
144 {
145     char path_name[MAX_PATH];
146     PROCESS_INFORMATION info;
147     STARTUPINFOA startup;
148     WNDCLASS class;
149     MSG msg;
150     BOOL ret;
151
152     /* Register a new class. */
153     class.style = CS_GLOBALCLASS;
154     class.lpfnWndProc = callback_parent;
155     class.cbClsExtra = 0;
156     class.cbWndExtra = 0;
157     class.hInstance = GetModuleHandle(NULL);
158     class.hIcon = NULL;
159     class.hCursor = NULL;
160     class.hbrBackground = NULL;
161     class.lpszMenuName = NULL;
162     class.lpszClassName = "cursor_parent";
163
164     SetLastError(0xdeadbeef);
165     ret = RegisterClass(&class);
166     ok(ret, "Failed to register window class.  Error: %u\n", GetLastError());
167
168     /* Create a window. */
169     parent = CreateWindowA("cursor_parent", "cursor_parent", WS_POPUP | WS_VISIBLE,
170         0, 0, 200, 200, 0, 0, 0, NULL);
171     ok(parent != 0, "CreateWindowA failed.  Error: %u\n", GetLastError());
172
173     /* Start child process. */
174     memset(&startup, 0, sizeof(startup));
175     startup.cb = sizeof(startup);
176     startup.dwFlags = STARTF_USESHOWWINDOW;
177     startup.wShowWindow = SW_SHOWNORMAL;
178
179     sprintf(path_name, "%s cursoricon %x", test_argv[0], (unsigned int) parent);
180     ok(CreateProcessA(NULL, path_name, NULL, NULL, FALSE, 0L, NULL, NULL, &startup, &info), "CreateProcess failed.\n");
181     child_process = info.hProcess;
182
183     /* Wait for child window handle. */
184     while ((child == 0) && (ret = GetMessage(&msg, parent, 0, 0)))
185     {
186         ok(ret != -1, "GetMessage failed.  Error: %u\n", GetLastError());
187         TranslateMessage(&msg);
188         DispatchMessage(&msg);
189     }
190 }
191
192 static void finish_child_process(void)
193 {
194     SendMessage(child, WM_CLOSE, 0, 0);
195     winetest_wait_child_process( child_process );
196     CloseHandle(child_process);
197 }
198
199 static void test_child_process(void)
200 {
201     static const BYTE bmp_bits[4096];
202     HCURSOR cursor;
203     ICONINFO cursorInfo;
204     UINT display_bpp;
205     HDC hdc;
206
207     /* Create and set a dummy cursor. */
208     hdc = GetDC(0);
209     display_bpp = GetDeviceCaps(hdc, BITSPIXEL);
210     ReleaseDC(0, hdc);
211
212     cursorInfo.fIcon = FALSE;
213     cursorInfo.xHotspot = 0;
214     cursorInfo.yHotspot = 0;
215     cursorInfo.hbmMask = CreateBitmap(32, 32, 1, 1, bmp_bits);
216     cursorInfo.hbmColor = CreateBitmap(32, 32, 1, display_bpp, bmp_bits);
217
218     cursor = CreateIconIndirect(&cursorInfo);
219     ok(cursor != NULL, "CreateIconIndirect returned %p.\n", cursor);
220
221     SetCursor(cursor);
222
223     /* Destroy the cursor. */
224     SendMessage(child, WM_USER+1, 0, (LPARAM) cursor);
225 }
226
227 static void test_CopyImage_Check(HBITMAP bitmap, UINT flags, INT copyWidth, INT copyHeight,
228                                   INT expectedWidth, INT expectedHeight, WORD expectedDepth, BOOL dibExpected)
229 {
230     HBITMAP copy;
231     BITMAP origBitmap;
232     BITMAP copyBitmap;
233     BOOL orig_is_dib;
234     BOOL copy_is_dib;
235
236     copy = (HBITMAP) CopyImage(bitmap, IMAGE_BITMAP, copyWidth, copyHeight, flags);
237     ok(copy != NULL, "CopyImage() failed\n");
238     if (copy != NULL)
239     {
240         GetObject(bitmap, sizeof(origBitmap), &origBitmap);
241         GetObject(copy, sizeof(copyBitmap), &copyBitmap);
242         orig_is_dib = (origBitmap.bmBits != NULL);
243         copy_is_dib = (copyBitmap.bmBits != NULL);
244
245         if (copy_is_dib && dibExpected
246             && copyBitmap.bmBitsPixel == 24
247             && (expectedDepth == 16 || expectedDepth == 32))
248         {
249             /* Windows 95 doesn't create DIBs with a depth of 16 or 32 bit */
250             if (GetVersion() & 0x80000000)
251             {
252                 expectedDepth = 24;
253             }
254         }
255
256         if (copy_is_dib && !dibExpected && !(flags & LR_CREATEDIBSECTION))
257         {
258             /* It's not forbidden to create a DIB section if the flag
259                LR_CREATEDIBSECTION is absent.
260                Windows 9x does this if the bitmap has a depth that doesn't
261                match the screen depth, Windows NT doesn't */
262             dibExpected = TRUE;
263             expectedDepth = origBitmap.bmBitsPixel;
264         }
265
266         ok((!(dibExpected ^ copy_is_dib)
267              && (copyBitmap.bmWidth == expectedWidth)
268              && (copyBitmap.bmHeight == expectedHeight)
269              && (copyBitmap.bmBitsPixel == expectedDepth)),
270              "CopyImage ((%s, %dx%d, %u bpp), %d, %d, %#x): Expected (%s, %dx%d, %u bpp), got (%s, %dx%d, %u bpp)\n",
271                   orig_is_dib ? "DIB" : "DDB", origBitmap.bmWidth, origBitmap.bmHeight, origBitmap.bmBitsPixel,
272                   copyWidth, copyHeight, flags,
273                   dibExpected ? "DIB" : "DDB", expectedWidth, expectedHeight, expectedDepth,
274                   copy_is_dib ? "DIB" : "DDB", copyBitmap.bmWidth, copyBitmap.bmHeight, copyBitmap.bmBitsPixel);
275
276         DeleteObject(copy);
277     }
278 }
279
280 static void test_CopyImage_Bitmap(int depth)
281 {
282     HBITMAP ddb, dib;
283     HDC screenDC;
284     BITMAPINFO * info;
285     VOID * bits;
286     int screen_depth;
287     unsigned int i;
288
289     /* Create a device-independent bitmap (DIB) */
290     info = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
291     info->bmiHeader.biSize = sizeof(info->bmiHeader);
292     info->bmiHeader.biWidth = 2;
293     info->bmiHeader.biHeight = 2;
294     info->bmiHeader.biPlanes = 1;
295     info->bmiHeader.biBitCount = depth;
296     info->bmiHeader.biCompression = BI_RGB;
297
298     for (i=0; i < 256; i++)
299     {
300         info->bmiColors[i].rgbRed = i;
301         info->bmiColors[i].rgbGreen = i;
302         info->bmiColors[i].rgbBlue = 255 - i;
303         info->bmiColors[i].rgbReserved = 0;
304     }
305
306     dib = CreateDIBSection(NULL, info, DIB_RGB_COLORS, &bits, NULL, 0);
307
308     /* Create a device-dependent bitmap (DDB) */
309     screenDC = GetDC(NULL);
310     screen_depth = GetDeviceCaps(screenDC, BITSPIXEL);
311     if (depth == 1 || depth == screen_depth)
312     {
313         ddb = CreateBitmap(2, 2, 1, depth, NULL);
314     }
315     else
316     {
317         ddb = NULL;
318     }
319     ReleaseDC(NULL, screenDC);
320
321     if (ddb != NULL)
322     {
323         test_CopyImage_Check(ddb, 0, 0, 0, 2, 2, depth == 1 ? 1 : screen_depth, FALSE);
324         test_CopyImage_Check(ddb, 0, 0, 5, 2, 5, depth == 1 ? 1 : screen_depth, FALSE);
325         test_CopyImage_Check(ddb, 0, 5, 0, 5, 2, depth == 1 ? 1 : screen_depth, FALSE);
326         test_CopyImage_Check(ddb, 0, 5, 5, 5, 5, depth == 1 ? 1 : screen_depth, FALSE);
327
328         test_CopyImage_Check(ddb, LR_MONOCHROME, 0, 0, 2, 2, 1, FALSE);
329         test_CopyImage_Check(ddb, LR_MONOCHROME, 5, 0, 5, 2, 1, FALSE);
330         test_CopyImage_Check(ddb, LR_MONOCHROME, 0, 5, 2, 5, 1, FALSE);
331         test_CopyImage_Check(ddb, LR_MONOCHROME, 5, 5, 5, 5, 1, FALSE);
332
333         test_CopyImage_Check(ddb, LR_CREATEDIBSECTION, 0, 0, 2, 2, depth, TRUE);
334         test_CopyImage_Check(ddb, LR_CREATEDIBSECTION, 5, 0, 5, 2, depth, TRUE);
335         test_CopyImage_Check(ddb, LR_CREATEDIBSECTION, 0, 5, 2, 5, depth, TRUE);
336         test_CopyImage_Check(ddb, LR_CREATEDIBSECTION, 5, 5, 5, 5, depth, TRUE);
337
338         /* LR_MONOCHROME is ignored if LR_CREATEDIBSECTION is present */
339         test_CopyImage_Check(ddb, LR_MONOCHROME | LR_CREATEDIBSECTION, 0, 0, 2, 2, depth, TRUE);
340         test_CopyImage_Check(ddb, LR_MONOCHROME | LR_CREATEDIBSECTION, 5, 0, 5, 2, depth, TRUE);
341         test_CopyImage_Check(ddb, LR_MONOCHROME | LR_CREATEDIBSECTION, 0, 5, 2, 5, depth, TRUE);
342         test_CopyImage_Check(ddb, LR_MONOCHROME | LR_CREATEDIBSECTION, 5, 5, 5, 5, depth, TRUE);
343
344         DeleteObject(ddb);
345     }
346
347     if (depth != 1)
348     {
349         test_CopyImage_Check(dib, 0, 0, 0, 2, 2, screen_depth, FALSE);
350         test_CopyImage_Check(dib, 0, 5, 0, 5, 2, screen_depth, FALSE);
351         test_CopyImage_Check(dib, 0, 0, 5, 2, 5, screen_depth, FALSE);
352         test_CopyImage_Check(dib, 0, 5, 5, 5, 5, screen_depth, FALSE);
353     }
354
355     test_CopyImage_Check(dib, LR_MONOCHROME, 0, 0, 2, 2, 1, FALSE);
356     test_CopyImage_Check(dib, LR_MONOCHROME, 5, 0, 5, 2, 1, FALSE);
357     test_CopyImage_Check(dib, LR_MONOCHROME, 0, 5, 2, 5, 1, FALSE);
358     test_CopyImage_Check(dib, LR_MONOCHROME, 5, 5, 5, 5, 1, FALSE);
359
360     test_CopyImage_Check(dib, LR_CREATEDIBSECTION, 0, 0, 2, 2, depth, TRUE);
361     test_CopyImage_Check(dib, LR_CREATEDIBSECTION, 5, 0, 5, 2, depth, TRUE);
362     test_CopyImage_Check(dib, LR_CREATEDIBSECTION, 0, 5, 2, 5, depth, TRUE);
363     test_CopyImage_Check(dib, LR_CREATEDIBSECTION, 5, 5, 5, 5, depth, TRUE);
364
365     /* LR_MONOCHROME is ignored if LR_CREATEDIBSECTION is present */
366     test_CopyImage_Check(dib, LR_MONOCHROME | LR_CREATEDIBSECTION, 0, 0, 2, 2, depth, TRUE);
367     test_CopyImage_Check(dib, LR_MONOCHROME | LR_CREATEDIBSECTION, 5, 0, 5, 2, depth, TRUE);
368     test_CopyImage_Check(dib, LR_MONOCHROME | LR_CREATEDIBSECTION, 0, 5, 2, 5, depth, TRUE);
369     test_CopyImage_Check(dib, LR_MONOCHROME | LR_CREATEDIBSECTION, 5, 5, 5, 5, depth, TRUE);
370
371     DeleteObject(dib);
372
373     if (depth == 1)
374     {
375         /* Special case: A monochrome DIB is converted to a monochrome DDB if
376            the colors in the color table are black and white.
377
378            Skip this test on Windows 95, it always creates a monochrome DDB
379            in this case */
380
381         if (!(GetVersion() & 0x80000000))
382         {
383             info->bmiHeader.biBitCount = 1;
384             info->bmiColors[0].rgbRed = 0xFF;
385             info->bmiColors[0].rgbGreen = 0;
386             info->bmiColors[0].rgbBlue = 0;
387             info->bmiColors[1].rgbRed = 0;
388             info->bmiColors[1].rgbGreen = 0xFF;
389             info->bmiColors[1].rgbBlue = 0;
390
391             dib = CreateDIBSection(NULL, info, DIB_RGB_COLORS, &bits, NULL, 0);
392             test_CopyImage_Check(dib, 0, 0, 0, 2, 2, screen_depth, FALSE);
393             test_CopyImage_Check(dib, 0, 5, 0, 5, 2, screen_depth, FALSE);
394             test_CopyImage_Check(dib, 0, 0, 5, 2, 5, screen_depth, FALSE);
395             test_CopyImage_Check(dib, 0, 5, 5, 5, 5, screen_depth, FALSE);
396             DeleteObject(dib);
397
398             info->bmiHeader.biBitCount = 1;
399             info->bmiColors[0].rgbRed = 0;
400             info->bmiColors[0].rgbGreen = 0;
401             info->bmiColors[0].rgbBlue = 0;
402             info->bmiColors[1].rgbRed = 0xFF;
403             info->bmiColors[1].rgbGreen = 0xFF;
404             info->bmiColors[1].rgbBlue = 0xFF;
405
406             dib = CreateDIBSection(NULL, info, DIB_RGB_COLORS, &bits, NULL, 0);
407             test_CopyImage_Check(dib, 0, 0, 0, 2, 2, 1, FALSE);
408             test_CopyImage_Check(dib, 0, 5, 0, 5, 2, 1, FALSE);
409             test_CopyImage_Check(dib, 0, 0, 5, 2, 5, 1, FALSE);
410             test_CopyImage_Check(dib, 0, 5, 5, 5, 5, 1, FALSE);
411             DeleteObject(dib);
412
413             info->bmiHeader.biBitCount = 1;
414             info->bmiColors[0].rgbRed = 0xFF;
415             info->bmiColors[0].rgbGreen = 0xFF;
416             info->bmiColors[0].rgbBlue = 0xFF;
417             info->bmiColors[1].rgbRed = 0;
418             info->bmiColors[1].rgbGreen = 0;
419             info->bmiColors[1].rgbBlue = 0;
420
421             dib = CreateDIBSection(NULL, info, DIB_RGB_COLORS, &bits, NULL, 0);
422             test_CopyImage_Check(dib, 0, 0, 0, 2, 2, 1, FALSE);
423             test_CopyImage_Check(dib, 0, 5, 0, 5, 2, 1, FALSE);
424             test_CopyImage_Check(dib, 0, 0, 5, 2, 5, 1, FALSE);
425             test_CopyImage_Check(dib, 0, 5, 5, 5, 5, 1, FALSE);
426             DeleteObject(dib);
427         }
428     }
429
430     HeapFree(GetProcessHeap(), 0, info);
431 }
432
433 static void test_initial_cursor(void)
434 {
435     HCURSOR cursor, cursor2;
436     DWORD error;
437
438     cursor = GetCursor();
439
440     /* Check what handle GetCursor() returns if a cursor is not set yet. */
441     SetLastError(0xdeadbeef);
442     cursor2 = LoadCursor(NULL, IDC_WAIT);
443     todo_wine {
444         ok(cursor == cursor2, "cursor (%p) is not IDC_WAIT (%p).\n", cursor, cursor2);
445     }
446     error = GetLastError();
447     ok(error == 0xdeadbeef, "Last error: 0x%08x\n", error);
448 }
449
450 static void test_icon_info_dbg(HICON hIcon, UINT exp_cx, UINT exp_cy, UINT exp_bpp, int line)
451 {
452     ICONINFO info;
453     DWORD ret;
454     BITMAP bmMask, bmColor;
455
456     ret = GetIconInfo(hIcon, &info);
457     ok_(__FILE__, line)(ret, "GetIconInfo failed\n");
458
459     /* CreateIcon under XP causes info.fIcon to be 0 */
460     ok_(__FILE__, line)(info.xHotspot == exp_cx/2, "info.xHotspot = %u\n", info.xHotspot);
461     ok_(__FILE__, line)(info.yHotspot == exp_cy/2, "info.yHotspot = %u\n", info.yHotspot);
462     ok_(__FILE__, line)(info.hbmMask != 0, "info.hbmMask is NULL\n");
463
464     ret = GetObject(info.hbmMask, sizeof(bmMask), &bmMask);
465     ok_(__FILE__, line)(ret == sizeof(bmMask), "GetObject(info.hbmMask) failed, ret %u\n", ret);
466
467     if (exp_bpp == 1)
468         ok_(__FILE__, line)(info.hbmColor == 0, "info.hbmColor should be NULL\n");
469
470     if (info.hbmColor)
471     {
472         HDC hdc;
473         UINT display_bpp;
474
475         hdc = GetDC(0);
476         display_bpp = GetDeviceCaps(hdc, BITSPIXEL);
477         ReleaseDC(0, hdc);
478
479         ret = GetObject(info.hbmColor, sizeof(bmColor), &bmColor);
480         ok_(__FILE__, line)(ret == sizeof(bmColor), "GetObject(info.hbmColor) failed, ret %u\n", ret);
481
482         ok_(__FILE__, line)(bmColor.bmBitsPixel == display_bpp /* XP */ ||
483            bmColor.bmBitsPixel == exp_bpp /* Win98 */,
484            "bmColor.bmBitsPixel = %d\n", bmColor.bmBitsPixel);
485         ok_(__FILE__, line)(bmColor.bmWidth == exp_cx, "bmColor.bmWidth = %d\n", bmColor.bmWidth);
486         ok_(__FILE__, line)(bmColor.bmHeight == exp_cy, "bmColor.bmHeight = %d\n", bmColor.bmHeight);
487
488         ok_(__FILE__, line)(bmMask.bmBitsPixel == 1, "bmMask.bmBitsPixel = %d\n", bmMask.bmBitsPixel);
489         ok_(__FILE__, line)(bmMask.bmWidth == exp_cx, "bmMask.bmWidth = %d\n", bmMask.bmWidth);
490         ok_(__FILE__, line)(bmMask.bmHeight == exp_cy, "bmMask.bmHeight = %d\n", bmMask.bmHeight);
491     }
492     else
493     {
494         ok_(__FILE__, line)(bmMask.bmBitsPixel == 1, "bmMask.bmBitsPixel = %d\n", bmMask.bmBitsPixel);
495         ok_(__FILE__, line)(bmMask.bmWidth == exp_cx, "bmMask.bmWidth = %d\n", bmMask.bmWidth);
496         ok_(__FILE__, line)(bmMask.bmHeight == exp_cy * 2, "bmMask.bmHeight = %d\n", bmMask.bmHeight);
497     }
498 }
499
500 #define test_icon_info(a,b,c,d) test_icon_info_dbg((a),(b),(c),(d),__LINE__)
501
502 static void test_CreateIcon(void)
503 {
504     static const BYTE bmp_bits[1024];
505     HICON hIcon;
506     HBITMAP hbmMask, hbmColor;
507     ICONINFO info;
508     HDC hdc;
509     UINT display_bpp;
510
511     hdc = GetDC(0);
512     display_bpp = GetDeviceCaps(hdc, BITSPIXEL);
513     ReleaseDC(0, hdc);
514
515     /* these crash under XP
516     hIcon = CreateIcon(0, 16, 16, 1, 1, bmp_bits, NULL);
517     hIcon = CreateIcon(0, 16, 16, 1, 1, NULL, bmp_bits);
518     */
519
520     hIcon = CreateIcon(0, 16, 16, 1, 1, bmp_bits, bmp_bits);
521     ok(hIcon != 0, "CreateIcon failed\n");
522     test_icon_info(hIcon, 16, 16, 1);
523     DestroyIcon(hIcon);
524
525     hIcon = CreateIcon(0, 16, 16, 1, display_bpp, bmp_bits, bmp_bits);
526     ok(hIcon != 0, "CreateIcon failed\n");
527     test_icon_info(hIcon, 16, 16, display_bpp);
528     DestroyIcon(hIcon);
529
530     hbmMask = CreateBitmap(16, 16, 1, 1, bmp_bits);
531     ok(hbmMask != 0, "CreateBitmap failed\n");
532     hbmColor = CreateBitmap(16, 16, 1, display_bpp, bmp_bits);
533     ok(hbmColor != 0, "CreateBitmap failed\n");
534
535     info.fIcon = TRUE;
536     info.xHotspot = 8;
537     info.yHotspot = 8;
538     info.hbmMask = 0;
539     info.hbmColor = 0;
540     SetLastError(0xdeadbeaf);
541     hIcon = CreateIconIndirect(&info);
542     ok(!hIcon, "CreateIconIndirect should fail\n");
543     ok(GetLastError() == 0xdeadbeaf, "wrong error %u\n", GetLastError());
544
545     info.fIcon = TRUE;
546     info.xHotspot = 8;
547     info.yHotspot = 8;
548     info.hbmMask = 0;
549     info.hbmColor = hbmColor;
550     SetLastError(0xdeadbeaf);
551     hIcon = CreateIconIndirect(&info);
552     ok(!hIcon, "CreateIconIndirect should fail\n");
553     ok(GetLastError() == 0xdeadbeaf, "wrong error %u\n", GetLastError());
554
555     info.fIcon = TRUE;
556     info.xHotspot = 8;
557     info.yHotspot = 8;
558     info.hbmMask = hbmMask;
559     info.hbmColor = hbmColor;
560     hIcon = CreateIconIndirect(&info);
561     ok(hIcon != 0, "CreateIconIndirect failed\n");
562     test_icon_info(hIcon, 16, 16, display_bpp);
563     DestroyIcon(hIcon);
564
565     DeleteObject(hbmMask);
566     DeleteObject(hbmColor);
567
568     hbmMask = CreateBitmap(16, 32, 1, 1, bmp_bits);
569     ok(hbmMask != 0, "CreateBitmap failed\n");
570
571     info.fIcon = TRUE;
572     info.xHotspot = 8;
573     info.yHotspot = 8;
574     info.hbmMask = hbmMask;
575     info.hbmColor = 0;
576     SetLastError(0xdeadbeaf);
577     hIcon = CreateIconIndirect(&info);
578     ok(hIcon != 0, "CreateIconIndirect failed\n");
579     test_icon_info(hIcon, 16, 16, 1);
580     DestroyIcon(hIcon);
581
582     DeleteObject(hbmMask);
583     DeleteObject(hbmColor);
584 }
585
586 /* Shamelessly ripped from dlls/oleaut32/tests/olepicture.c */
587 /* 1x1 pixel gif */
588 static const unsigned char gifimage[35] = {
589 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x00,0xff,0xff,0xff,
590 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44,
591 0x01,0x00,0x3b
592 };
593
594 /* 1x1 pixel jpg */
595 static const unsigned char jpgimage[285] = {
596 0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x01,0x2c,
597 0x01,0x2c,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x05,0x03,0x04,0x04,0x04,0x03,0x05,
598 0x04,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x0c,0x08,0x07,0x07,0x07,0x07,0x0f,0x0b,
599 0x0b,0x09,0x0c,0x11,0x0f,0x12,0x12,0x11,0x0f,0x11,0x11,0x13,0x16,0x1c,0x17,0x13,
600 0x14,0x1a,0x15,0x11,0x11,0x18,0x21,0x18,0x1a,0x1d,0x1d,0x1f,0x1f,0x1f,0x13,0x17,
601 0x22,0x24,0x22,0x1e,0x24,0x1c,0x1e,0x1f,0x1e,0xff,0xdb,0x00,0x43,0x01,0x05,0x05,
602 0x05,0x07,0x06,0x07,0x0e,0x08,0x08,0x0e,0x1e,0x14,0x11,0x14,0x1e,0x1e,0x1e,0x1e,
603 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
604 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
605 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0xff,0xc0,
606 0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
607 0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
608 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00,
609 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4,
610 0x00,0x14,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
611 0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
612 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,0x03,0x01,
613 0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xb2,0xc0,0x07,0xff,0xd9
614 };
615
616 /* 1x1 pixel png */
617 static const unsigned char pngimage[285] = {
618 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
619 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x90,0x77,0x53,
620 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,
621 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,0x07,0xd5,
622 0x06,0x03,0x0f,0x07,0x2d,0x12,0x10,0xf0,0xfd,0x00,0x00,0x00,0x0c,0x49,0x44,0x41,
623 0x54,0x08,0xd7,0x63,0xf8,0xff,0xff,0x3f,0x00,0x05,0xfe,0x02,0xfe,0xdc,0xcc,0x59,
624 0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
625 };
626
627 /* 1x1 pixel bmp */
628 static const unsigned char bmpimage[66] = {
629 0x42,0x4d,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x28,0x00,
630 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,
631 0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x12,0x0b,0x00,0x00,0x02,0x00,
632 0x00,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,
633 0x00,0x00
634 };
635
636 /* 2x2 pixel gif */
637 static const unsigned char gif4pixel[42] = {
638 0x47,0x49,0x46,0x38,0x37,0x61,0x02,0x00,0x02,0x00,0xa1,0x00,0x00,0x00,0x00,0x00,
639 0x39,0x62,0xfc,0xff,0x1a,0xe5,0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x02,0x00,
640 0x02,0x00,0x00,0x02,0x03,0x14,0x16,0x05,0x00,0x3b
641 };
642
643 static void test_LoadImageFile(const unsigned char * image_data,
644     unsigned int image_size, const char * ext, BOOL expect_success)
645 {
646     HANDLE handle;
647     BOOL ret;
648     DWORD error, bytes_written;
649     char filename[64];
650
651     strcpy(filename, "test.");
652     strcat(filename, ext);
653
654     /* Create the test image. */
655     handle = CreateFileA(filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_NEW,
656         FILE_ATTRIBUTE_NORMAL, NULL);
657     ok(handle != INVALID_HANDLE_VALUE, "CreateFileA failed. %u\n", GetLastError());
658     ret = WriteFile(handle, image_data, image_size, &bytes_written, NULL);
659     ok(bytes_written == image_size, "test file created improperly.\n");
660     CloseHandle(handle);
661
662     /* Load as cursor. For all tested formats, this should fail */
663     SetLastError(0xdeadbeef);
664     handle = LoadImageA(NULL, filename, IMAGE_CURSOR, 0, 0, LR_LOADFROMFILE);
665     ok(handle == NULL, "LoadImage(%s) as IMAGE_CURSOR succeeded incorrectly.\n", ext);
666     error = GetLastError();
667     ok(error == 0, "Last error: %u\n", error);
668     if (handle != NULL) DestroyCursor(handle);
669
670     /* Load as icon. For all tested formats, this should fail */
671     SetLastError(0xdeadbeef);
672     handle = LoadImageA(NULL, filename, IMAGE_ICON, 0, 0, LR_LOADFROMFILE);
673     ok(handle == NULL, "LoadImage(%s) as IMAGE_ICON succeeded incorrectly.\n", ext);
674     error = GetLastError();
675     ok(error == 0, "Last error: %u\n", error);
676     if (handle != NULL) DestroyIcon(handle);
677
678     /* Load as bitmap. Should succeed if bmp, fail for everything else */
679     SetLastError(0xdeadbeef);
680     handle = LoadImageA(NULL, filename, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
681     if (expect_success)
682         ok(handle != NULL, "LoadImage(%s) as IMAGE_BITMAP failed.\n", ext);
683     else ok(handle == NULL, "LoadImage(%s) as IMAGE_BITMAP succeeded incorrectly.\n", ext);
684     error = GetLastError();
685     ok(error == 0, "Last error: %u\n", error);
686     if (handle != NULL) DeleteObject(handle);
687
688     DeleteFileA(filename);
689 }
690
691 static void test_LoadImage(void)
692 {
693     HANDLE handle;
694     BOOL ret;
695     DWORD error, bytes_written;
696     CURSORICONFILEDIR *icon_data;
697     CURSORICONFILEDIRENTRY *icon_entry;
698     BITMAPINFOHEADER *icon_header;
699     ICONINFO icon_info;
700
701 #define ICON_WIDTH 32
702 #define ICON_HEIGHT 32
703 #define ICON_AND_SIZE (ICON_WIDTH*ICON_HEIGHT/8)
704 #define ICON_BPP 32
705 #define ICON_SIZE \
706     (sizeof(CURSORICONFILEDIR) + sizeof(BITMAPINFOHEADER) \
707     + ICON_AND_SIZE + ICON_AND_SIZE*ICON_BPP)
708
709     /* Set icon data. */
710     icon_data = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, ICON_SIZE);
711     icon_data->idReserved = 0;
712     icon_data->idType = 1;
713     icon_data->idCount = 1;
714
715     icon_entry = icon_data->idEntries;
716     icon_entry->bWidth = ICON_WIDTH;
717     icon_entry->bHeight = ICON_HEIGHT;
718     icon_entry->bColorCount = 0;
719     icon_entry->bReserved = 0;
720     icon_entry->xHotspot = 1;
721     icon_entry->yHotspot = 1;
722     icon_entry->dwDIBSize = ICON_SIZE - sizeof(CURSORICONFILEDIR);
723     icon_entry->dwDIBOffset = sizeof(CURSORICONFILEDIR);
724
725     icon_header = (BITMAPINFOHEADER *) ((BYTE *) icon_data + icon_entry->dwDIBOffset);
726     icon_header->biSize = sizeof(BITMAPINFOHEADER);
727     icon_header->biWidth = ICON_WIDTH;
728     icon_header->biHeight = ICON_HEIGHT*2;
729     icon_header->biPlanes = 1;
730     icon_header->biBitCount = ICON_BPP;
731     icon_header->biSizeImage = 0; /* Uncompressed bitmap. */
732
733     /* Create the icon. */
734     handle = CreateFileA("icon.ico", GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_NEW,
735         FILE_ATTRIBUTE_NORMAL, NULL);
736     ok(handle != INVALID_HANDLE_VALUE, "CreateFileA failed. %u\n", GetLastError());
737     ret = WriteFile(handle, icon_data, ICON_SIZE, &bytes_written, NULL);
738     ok(bytes_written == ICON_SIZE, "icon.ico created improperly.\n");
739     CloseHandle(handle);
740
741     /* Test loading an icon as a cursor. */
742     SetLastError(0xdeadbeef);
743     handle = LoadImageA(NULL, "icon.ico", IMAGE_CURSOR, 0, 0, LR_LOADFROMFILE);
744     todo_wine
745     ok(handle != NULL, "LoadImage() failed.\n");
746     error = GetLastError();
747     ok(error == 0, "Last error: %u\n", error);
748
749     /* Test the icon information. */
750     SetLastError(0xdeadbeef);
751     ret = GetIconInfo(handle, &icon_info);
752     todo_wine
753     ok(ret, "GetIconInfo() failed.\n");
754     error = GetLastError();
755     ok(error == 0xdeadbeef, "Last error: %u\n", error);
756
757     if (ret)
758     {
759         ok(icon_info.fIcon == FALSE, "fIcon != FALSE.\n");
760         ok(icon_info.xHotspot == 1, "xHotspot is %u.\n", icon_info.xHotspot);
761         ok(icon_info.yHotspot == 1, "yHotspot is %u.\n", icon_info.yHotspot);
762         ok(icon_info.hbmColor != NULL, "No hbmColor!\n");
763         ok(icon_info.hbmMask != NULL, "No hbmMask!\n");
764     }
765
766     /* Clean up. */
767     SetLastError(0xdeadbeef);
768     ret = DestroyCursor(handle);
769     todo_wine
770     ok(ret, "DestroyCursor() failed.\n");
771     error = GetLastError();
772     ok(error == 0xdeadbeef, "Last error: %u\n", error);
773
774     HeapFree(GetProcessHeap(), 0, icon_data);
775     DeleteFileA("icon.ico");
776
777     test_LoadImageFile(bmpimage, sizeof(bmpimage), "bmp", 1);
778     test_LoadImageFile(gifimage, sizeof(gifimage), "gif", 0);
779     test_LoadImageFile(gif4pixel, sizeof(gif4pixel), "gif", 0);
780     test_LoadImageFile(jpgimage, sizeof(jpgimage), "jpg", 0);
781     test_LoadImageFile(pngimage, sizeof(pngimage), "png", 0);
782 }
783
784 static void test_DestroyCursor(void)
785 {
786     static const BYTE bmp_bits[4096];
787     ICONINFO cursorInfo;
788     HCURSOR cursor, cursor2;
789     BOOL ret;
790     DWORD error;
791     UINT display_bpp;
792     HDC hdc;
793
794     hdc = GetDC(0);
795     display_bpp = GetDeviceCaps(hdc, BITSPIXEL);
796     ReleaseDC(0, hdc);
797
798     cursorInfo.fIcon = FALSE;
799     cursorInfo.xHotspot = 0;
800     cursorInfo.yHotspot = 0;
801     cursorInfo.hbmMask = CreateBitmap(32, 32, 1, 1, bmp_bits);
802     cursorInfo.hbmColor = CreateBitmap(32, 32, 1, display_bpp, bmp_bits);
803
804     cursor = CreateIconIndirect(&cursorInfo);
805     ok(cursor != NULL, "CreateIconIndirect returned %p\n", cursor);
806     if(!cursor) {
807         return;
808     }
809     SetCursor(cursor);
810
811     SetLastError(0xdeadbeef);
812     ret = DestroyCursor(cursor);
813     ok(!ret, "DestroyCursor on the active cursor succeeded\n");
814     error = GetLastError();
815     ok(error == 0xdeadbeef, "Last error: %u\n", error);
816
817     cursor2 = GetCursor();
818     ok(cursor2 == cursor, "Active was set to %p when trying to destroy it\n", cursor2);
819
820     SetCursor(NULL);
821
822     /* Trying to destroy the cursor properly fails now with
823      * ERROR_INVALID_CURSOR_HANDLE.  This happens because we called
824      * DestroyCursor() 2+ times after calling SetCursor().  The calls to
825      * GetCursor() and SetCursor(NULL) in between make no difference. */
826     ret = DestroyCursor(cursor);
827     todo_wine {
828         ok(!ret, "DestroyCursor succeeded.\n");
829         error = GetLastError();
830         ok(error == ERROR_INVALID_CURSOR_HANDLE, "Last error: 0x%08x\n", error);
831     }
832
833     DeleteObject(cursorInfo.hbmMask);
834     DeleteObject(cursorInfo.hbmColor);
835
836     /* Try testing DestroyCursor() now using LoadCursor() cursors. */
837     cursor = LoadCursor(NULL, IDC_ARROW);
838
839     SetLastError(0xdeadbeef);
840     ret = DestroyCursor(cursor);
841     ok(ret, "DestroyCursor on the active cursor failed.\n");
842     error = GetLastError();
843     ok(error == 0xdeadbeef, "Last error: 0x%08x\n", error);
844
845     /* Try setting the cursor to a destroyed OEM cursor. */
846     SetLastError(0xdeadbeef);
847     SetCursor(cursor);
848     error = GetLastError();
849     todo_wine {
850         ok(error == 0xdeadbeef, "Last error: 0x%08x\n", error);
851     }
852
853     /* Check if LoadCursor() returns the same handle with the same icon. */
854     cursor2 = LoadCursor(NULL, IDC_ARROW);
855     ok(cursor2 == cursor, "cursor == %p, cursor2 == %p\n", cursor, cursor2);
856
857     /* Check if LoadCursor() returns the same handle with a different icon. */
858     cursor2 = LoadCursor(NULL, IDC_WAIT);
859     ok(cursor2 != cursor, "cursor == %p, cursor2 == %p\n", cursor, cursor2);
860 }
861
862 START_TEST(cursoricon)
863 {
864     test_argc = winetest_get_mainargs(&test_argv);
865
866     if (test_argc >= 3)
867     {
868         /* Child process. */
869         sscanf (test_argv[2], "%x", (unsigned int *) &parent);
870
871         ok(parent != NULL, "Parent not found.\n");
872         if (parent == NULL)
873             ExitProcess(1);
874
875         do_child();
876         return;
877     }
878
879     test_CopyImage_Bitmap(1);
880     test_CopyImage_Bitmap(4);
881     test_CopyImage_Bitmap(8);
882     test_CopyImage_Bitmap(16);
883     test_CopyImage_Bitmap(24);
884     test_CopyImage_Bitmap(32);
885     test_initial_cursor();
886     test_CreateIcon();
887     test_LoadImage();
888     test_DestroyCursor();
889     do_parent();
890     test_child_process();
891     finish_child_process();
892 }