[CMAKE]
[reactos.git] / dll / win32 / user32 / windows / cursoricon.c
1 /*
2 * Cursor and icon support
3 *
4 * Copyright 1995 Alexandre Julliard
5 * 1996 Martin Von Loewis
6 * 1997 Alex Korobka
7 * 1998 Turchanov Sergey
8 * 2007 Henri Verbeet
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25 #include <user32.h>
26
27 #include <wine/debug.h>
28
29 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
30 WINE_DECLARE_DEBUG_CHANNEL(icon);
31 WINE_DECLARE_DEBUG_CHANNEL(resource);
32
33 #include "pshpack1.h"
34
35 typedef struct {
36 BYTE bWidth;
37 BYTE bHeight;
38 BYTE bColorCount;
39 BYTE bReserved;
40 WORD xHotspot;
41 WORD yHotspot;
42 DWORD dwDIBSize;
43 DWORD dwDIBOffset;
44 } CURSORICONFILEDIRENTRY;
45
46 typedef struct
47 {
48 WORD idReserved;
49 WORD idType;
50 WORD idCount;
51 CURSORICONFILEDIRENTRY idEntries[1];
52 } CURSORICONFILEDIR;
53
54 #include "poppack.h"
55
56 static HDC screen_dc;
57
58 static const WCHAR DISPLAYW[] = {'D','I','S','P','L','A','Y',0};
59
60
61 static CRITICAL_SECTION IconCrst;
62 static CRITICAL_SECTION_DEBUG critsect_debug =
63 {
64 0, 0, &IconCrst,
65 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
66 0, 0, { (DWORD_PTR)(__FILE__ ": IconCrst") }
67 };
68 static CRITICAL_SECTION IconCrst = { &critsect_debug, -1, 0, 0, 0, 0 };
69
70 /***********************************************************************
71 * CreateCursorIconHandle
72 *
73 * Creates a handle with everything in there
74 */
75 static
76 HICON
77 CreateCursorIconHandle( PICONINFO IconInfo )
78 {
79 HICON hIcon = (HICON)NtUserCallOneParam(0,
80 ONEPARAM_ROUTINE_CREATEEMPTYCUROBJECT);
81 if(!hIcon)
82 return NULL;
83
84 NtUserSetCursorContents(hIcon, IconInfo);
85 return hIcon;
86 }
87
88
89
90 /***********************************************************************
91 * map_fileW
92 *
93 * Helper function to map a file to memory:
94 * name - file name
95 * [RETURN] ptr - pointer to mapped file
96 * [RETURN] filesize - pointer size of file to be stored if not NULL
97 */
98 static void *map_fileW( LPCWSTR name, LPDWORD filesize )
99 {
100 HANDLE hFile, hMapping;
101 LPVOID ptr = NULL;
102
103 hFile = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ, NULL,
104 OPEN_EXISTING, FILE_FLAG_RANDOM_ACCESS, 0 );
105 if (hFile != INVALID_HANDLE_VALUE)
106 {
107 hMapping = CreateFileMappingW( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
108 if (hMapping)
109 {
110 ptr = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
111 CloseHandle( hMapping );
112 if (filesize)
113 *filesize = GetFileSize( hFile, NULL );
114 }
115 CloseHandle( hFile );
116 }
117 return ptr;
118 }
119
120
121 /***********************************************************************
122 * get_dib_width_bytes
123 *
124 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
125 */
126 static int get_dib_width_bytes( int width, int depth )
127 {
128 int words;
129
130 switch(depth)
131 {
132 case 1: words = (width + 31) / 32; break;
133 case 4: words = (width + 7) / 8; break;
134 case 8: words = (width + 3) / 4; break;
135 case 15:
136 case 16: words = (width + 1) / 2; break;
137 case 24: words = (width * 3 + 3)/4; break;
138 default:
139 WARN("(%d): Unsupported depth\n", depth );
140 /* fall through */
141 case 32:
142 words = width;
143 }
144 return 4 * words;
145 }
146
147
148 /***********************************************************************
149 * bitmap_info_size
150 *
151 * Return the size of the bitmap info structure including color table.
152 */
153 static int bitmap_info_size( const BITMAPINFO * info, WORD coloruse )
154 {
155 unsigned int colors, size, masks = 0;
156
157 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
158 {
159 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)info;
160 colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
161 return sizeof(BITMAPCOREHEADER) + colors *
162 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
163 }
164 else /* assume BITMAPINFOHEADER */
165 {
166 colors = info->bmiHeader.biClrUsed;
167 if (colors > 256) /* buffer overflow otherwise */
168 colors = 256;
169 if (!colors && (info->bmiHeader.biBitCount <= 8))
170 colors = 1 << info->bmiHeader.biBitCount;
171 if (info->bmiHeader.biCompression == BI_BITFIELDS) masks = 3;
172 size = max( info->bmiHeader.biSize, sizeof(BITMAPINFOHEADER) + masks * sizeof(DWORD) );
173 return size + colors * ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
174 }
175 }
176
177
178 /***********************************************************************
179 * is_dib_monochrome
180 *
181 * Returns whether a DIB can be converted to a monochrome DDB.
182 *
183 * A DIB can be converted if its color table contains only black and
184 * white. Black must be the first color in the color table.
185 *
186 * Note : If the first color in the color table is white followed by
187 * black, we can't convert it to a monochrome DDB with
188 * SetDIBits, because black and white would be inverted.
189 */
190 static BOOL is_dib_monochrome( const BITMAPINFO* info )
191 {
192 if (info->bmiHeader.biBitCount != 1) return FALSE;
193
194 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
195 {
196 const RGBTRIPLE *rgb = ((const BITMAPCOREINFO*)info)->bmciColors;
197
198 /* Check if the first color is black */
199 if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
200 {
201 rgb++;
202
203 /* Check if the second color is white */
204 return ((rgb->rgbtRed == 0xff) && (rgb->rgbtGreen == 0xff)
205 && (rgb->rgbtBlue == 0xff));
206 }
207 else return FALSE;
208 }
209 else /* assume BITMAPINFOHEADER */
210 {
211 const RGBQUAD *rgb = info->bmiColors;
212
213 /* Check if the first color is black */
214 if ((rgb->rgbRed == 0) && (rgb->rgbGreen == 0) &&
215 (rgb->rgbBlue == 0) && (rgb->rgbReserved == 0))
216 {
217 rgb++;
218
219 /* Check if the second color is white */
220 return ((rgb->rgbRed == 0xff) && (rgb->rgbGreen == 0xff)
221 && (rgb->rgbBlue == 0xff) && (rgb->rgbReserved == 0));
222 }
223 else return FALSE;
224 }
225 }
226
227 /***********************************************************************
228 * DIB_GetBitmapInfo
229 *
230 * Get the info from a bitmap header.
231 * Return 1 for INFOHEADER, 0 for COREHEADER,
232 */
233 static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
234 LONG *height, WORD *bpp, DWORD *compr )
235 {
236 if (header->biSize == sizeof(BITMAPCOREHEADER))
237 {
238 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)header;
239 *width = core->bcWidth;
240 *height = core->bcHeight;
241 *bpp = core->bcBitCount;
242 *compr = 0;
243 return 0;
244 }
245 else if (header->biSize >= sizeof(BITMAPINFOHEADER))
246 {
247 *width = header->biWidth;
248 *height = header->biHeight;
249 *bpp = header->biBitCount;
250 *compr = header->biCompression;
251 return 1;
252 }
253 ERR("(%d): unknown/wrong size for header\n", header->biSize );
254 return -1;
255 }
256
257
258 /*
259 * The following macro functions account for the irregularities of
260 * accessing cursor and icon resources in files and resource entries.
261 */
262 typedef BOOL (*fnGetCIEntry)( LPVOID dir, int n,
263 int *width, int *height, int *bits );
264
265 /**********************************************************************
266 * CURSORICON_FindBestIcon
267 *
268 * Find the icon closest to the requested size and bit depth.
269 */
270 static int CURSORICON_FindBestIcon( LPVOID dir, fnGetCIEntry get_entry,
271 int width, int height, int depth )
272 {
273 int i, cx, cy, bits, bestEntry = -1;
274 UINT iTotalDiff, iXDiff=0, iYDiff=0, iColorDiff;
275 UINT iTempXDiff, iTempYDiff, iTempColorDiff;
276
277 /* Find Best Fit */
278 iTotalDiff = 0xFFFFFFFF;
279 iColorDiff = 0xFFFFFFFF;
280 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
281 {
282 iTempXDiff = abs(width - cx);
283 iTempYDiff = abs(height - cy);
284
285 if(iTotalDiff > (iTempXDiff + iTempYDiff))
286 {
287 iXDiff = iTempXDiff;
288 iYDiff = iTempYDiff;
289 iTotalDiff = iXDiff + iYDiff;
290 }
291 }
292
293 /* Find Best Colors for Best Fit */
294 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
295 {
296 if(abs(width - cx) == iXDiff && abs(height - cy) == iYDiff)
297 {
298 iTempColorDiff = abs(depth - bits);
299 if(iColorDiff > iTempColorDiff)
300 {
301 bestEntry = i;
302 iColorDiff = iTempColorDiff;
303 }
304 }
305 }
306
307 return bestEntry;
308 }
309
310 static BOOL CURSORICON_GetResIconEntry( LPVOID dir, int n,
311 int *width, int *height, int *bits )
312 {
313 CURSORICONDIR *resdir = dir;
314 ICONRESDIR *icon;
315
316 if ( resdir->idCount <= n )
317 return FALSE;
318 icon = &resdir->idEntries[n].ResInfo.icon;
319 *width = icon->bWidth;
320 *height = icon->bHeight;
321 *bits = resdir->idEntries[n].wBitCount;
322 return TRUE;
323 }
324
325 /**********************************************************************
326 * CURSORICON_FindBestCursor
327 *
328 * Find the cursor closest to the requested size.
329 *
330 * FIXME: parameter 'color' ignored.
331 */
332 static int CURSORICON_FindBestCursor( LPVOID dir, fnGetCIEntry get_entry,
333 int width, int height, int depth )
334 {
335 int i, maxwidth, maxheight, cx, cy, bits, bestEntry = -1;
336
337 /* Double height to account for AND and XOR masks */
338
339 height *= 2;
340
341 /* First find the largest one smaller than or equal to the requested size*/
342
343 maxwidth = maxheight = 0;
344 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
345 {
346 if ((cx <= width) && (cy <= height) &&
347 (cx > maxwidth) && (cy > maxheight))
348 {
349 bestEntry = i;
350 maxwidth = cx;
351 maxheight = cy;
352 }
353 }
354 if (bestEntry != -1) return bestEntry;
355
356 /* Now find the smallest one larger than the requested size */
357
358 maxwidth = maxheight = 255;
359 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
360 {
361 if (((cx < maxwidth) && (cy < maxheight)) || (bestEntry == -1))
362 {
363 bestEntry = i;
364 maxwidth = cx;
365 maxheight = cy;
366 }
367 }
368
369 return bestEntry;
370 }
371
372 static BOOL CURSORICON_GetResCursorEntry( LPVOID dir, int n,
373 int *width, int *height, int *bits )
374 {
375 CURSORICONDIR *resdir = dir;
376 CURSORDIR *cursor;
377
378 if ( resdir->idCount <= n )
379 return FALSE;
380 cursor = &resdir->idEntries[n].ResInfo.cursor;
381 *width = cursor->wWidth;
382 *height = cursor->wHeight;
383 *bits = resdir->idEntries[n].wBitCount;
384 return TRUE;
385 }
386
387 static CURSORICONDIRENTRY *CURSORICON_FindBestIconRes( CURSORICONDIR * dir,
388 int width, int height, int depth )
389 {
390 int n;
391
392 n = CURSORICON_FindBestIcon( dir, CURSORICON_GetResIconEntry,
393 width, height, depth );
394 if ( n < 0 )
395 return NULL;
396 return &dir->idEntries[n];
397 }
398
399 static CURSORICONDIRENTRY *CURSORICON_FindBestCursorRes( CURSORICONDIR *dir,
400 int width, int height, int depth )
401 {
402 int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetResCursorEntry,
403 width, height, depth );
404 if ( n < 0 )
405 return NULL;
406 return &dir->idEntries[n];
407 }
408
409 static BOOL CURSORICON_GetFileEntry( LPVOID dir, int n,
410 int *width, int *height, int *bits )
411 {
412 CURSORICONFILEDIR *filedir = dir;
413 CURSORICONFILEDIRENTRY *entry;
414 BITMAPINFOHEADER *info;
415
416 if ( filedir->idCount <= n )
417 return FALSE;
418 entry = &filedir->idEntries[n];
419 /* FIXME: check against file size */
420 info = (BITMAPINFOHEADER *)((char *)dir + entry->dwDIBOffset);
421 *width = entry->bWidth;
422 *height = entry->bHeight;
423 *bits = info->biBitCount;
424 return TRUE;
425 }
426
427 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestCursorFile( CURSORICONFILEDIR *dir,
428 int width, int height, int depth )
429 {
430 int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetFileEntry,
431 width, height, depth );
432 if ( n < 0 )
433 return NULL;
434 return &dir->idEntries[n];
435 }
436
437 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestIconFile( CURSORICONFILEDIR *dir,
438 int width, int height, int depth )
439 {
440 int n = CURSORICON_FindBestIcon( dir, CURSORICON_GetFileEntry,
441 width, height, depth );
442 if ( n < 0 )
443 return NULL;
444 return &dir->idEntries[n];
445 }
446
447 /***********************************************************************
448 * create_icon_bitmaps
449 *
450 * Create the color, mask and alpha bitmaps from the DIB info.
451 */
452 static BOOL create_icon_bitmaps( const BITMAPINFO *bmi, int width, int height,
453 HBITMAP *color, HBITMAP *mask )
454 {
455 BOOL monochrome = is_dib_monochrome( bmi );
456 unsigned int size = bitmap_info_size( bmi, DIB_RGB_COLORS );
457 BITMAPINFO *info;
458 void *color_bits, *mask_bits;
459 BOOL ret = FALSE;
460 HDC hdc = 0;
461
462 if (!(info = HeapAlloc( GetProcessHeap(), 0, max( size, FIELD_OFFSET( BITMAPINFO, bmiColors[2] )))))
463 return FALSE;
464 if (!(hdc = CreateCompatibleDC(NULL))) goto done;
465
466 memcpy( info, bmi, size );
467 info->bmiHeader.biHeight /= 2;
468
469 color_bits = (char *)bmi + size;
470 mask_bits = (char *)color_bits +
471 get_dib_width_bytes( bmi->bmiHeader.biWidth,
472 bmi->bmiHeader.biBitCount ) * abs(info->bmiHeader.biHeight);
473
474 if (monochrome)
475 {
476 if (!(*mask = CreateBitmap( width, height * 2, 1, 1, NULL ))) goto done;
477 *color = 0;
478
479 /* copy color data into second half of mask bitmap */
480 SelectObject( hdc, *mask );
481 StretchDIBits( hdc, 0, height, width, height,
482 0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
483 color_bits, info, DIB_RGB_COLORS, SRCCOPY );
484 }
485 else
486 {
487 if (!(*mask = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
488 if (!(*color = CreateBitmap( width, height, GetDeviceCaps(hdc, PLANES),
489 GetDeviceCaps(hdc, BITSPIXEL), NULL )))
490 {
491 DeleteObject( *mask );
492 goto done;
493 }
494 SelectObject( hdc, *color );
495 StretchDIBits( hdc, 0, 0, width, height,
496 0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
497 color_bits, info, DIB_RGB_COLORS, SRCCOPY );
498
499 /* convert info to monochrome to copy the mask */
500 info->bmiHeader.biBitCount = 1;
501 if (info->bmiHeader.biSize != sizeof(BITMAPCOREHEADER))
502 {
503 RGBQUAD *rgb = info->bmiColors;
504
505 info->bmiHeader.biClrUsed = info->bmiHeader.biClrImportant = 2;
506 rgb[0].rgbBlue = rgb[0].rgbGreen = rgb[0].rgbRed = 0x00;
507 rgb[1].rgbBlue = rgb[1].rgbGreen = rgb[1].rgbRed = 0xff;
508 rgb[0].rgbReserved = rgb[1].rgbReserved = 0;
509 }
510 else
511 {
512 RGBTRIPLE *rgb = (RGBTRIPLE *)(((BITMAPCOREHEADER *)info) + 1);
513
514 rgb[0].rgbtBlue = rgb[0].rgbtGreen = rgb[0].rgbtRed = 0x00;
515 rgb[1].rgbtBlue = rgb[1].rgbtGreen = rgb[1].rgbtRed = 0xff;
516 }
517 }
518
519 SelectObject( hdc, *mask );
520 StretchDIBits( hdc, 0, 0, width, height,
521 0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
522 mask_bits, info, DIB_RGB_COLORS, SRCCOPY );
523 ret = TRUE;
524
525 done:
526 if(hdc) DeleteDC( hdc );
527 HeapFree( GetProcessHeap(), 0, info );
528 return ret;
529 }
530
531 static HICON CURSORICON_CreateIconFromBMI( BITMAPINFO *bmi,
532 POINT hotspot, BOOL bIcon,
533 DWORD dwVersion,
534 INT width, INT height,
535 UINT cFlag )
536 {
537 HBITMAP color = 0, mask = 0;
538 BOOL do_stretch;
539 ICONINFO IconInfo;
540
541 if (dwVersion == 0x00020000)
542 {
543 FIXME_(cursor)("\t2.xx resources are not supported\n");
544 return 0;
545 }
546
547 /* Check bitmap header */
548
549 if ( (bmi->bmiHeader.biSize != sizeof(BITMAPCOREHEADER)) &&
550 (bmi->bmiHeader.biSize != sizeof(BITMAPINFOHEADER) ||
551 bmi->bmiHeader.biCompression != BI_RGB) )
552 {
553 WARN_(cursor)("\tinvalid resource bitmap header.\n");
554 return 0;
555 }
556
557 if (!width) width = bmi->bmiHeader.biWidth;
558 if (!height) height = bmi->bmiHeader.biHeight/2;
559 do_stretch = (bmi->bmiHeader.biHeight/2 != height) ||
560 (bmi->bmiHeader.biWidth != width);
561
562 /* Scale the hotspot */
563 if (bIcon)
564 {
565 hotspot.x = width / 2;
566 hotspot.y = height / 2;
567 }
568 else if (do_stretch)
569 {
570 hotspot.x = (hotspot.x * width) / bmi->bmiHeader.biWidth;
571 hotspot.y = (hotspot.y * height) / (bmi->bmiHeader.biHeight / 2);
572 }
573
574 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
575 if (!screen_dc) return 0;
576
577 if (!create_icon_bitmaps( bmi, width, height, &color, &mask )) return 0;
578
579 IconInfo.xHotspot = hotspot.x;
580 IconInfo.yHotspot = hotspot.y;
581 IconInfo.fIcon = bIcon;
582 IconInfo.hbmColor = color;
583 IconInfo.hbmMask = mask;
584
585 return CreateCursorIconHandle(&IconInfo);
586 }
587
588
589 /**********************************************************************
590 * .ANI cursor support
591 */
592 #define RIFF_FOURCC( c0, c1, c2, c3 ) \
593 ( (DWORD)(BYTE)(c0) | ( (DWORD)(BYTE)(c1) << 8 ) | \
594 ( (DWORD)(BYTE)(c2) << 16 ) | ( (DWORD)(BYTE)(c3) << 24 ) )
595
596 #define ANI_RIFF_ID RIFF_FOURCC('R', 'I', 'F', 'F')
597 #define ANI_LIST_ID RIFF_FOURCC('L', 'I', 'S', 'T')
598 #define ANI_ACON_ID RIFF_FOURCC('A', 'C', 'O', 'N')
599 #define ANI_anih_ID RIFF_FOURCC('a', 'n', 'i', 'h')
600 #define ANI_seq__ID RIFF_FOURCC('s', 'e', 'q', ' ')
601 #define ANI_fram_ID RIFF_FOURCC('f', 'r', 'a', 'm')
602
603 #define ANI_FLAG_ICON 0x1
604 #define ANI_FLAG_SEQUENCE 0x2
605
606 typedef struct {
607 DWORD header_size;
608 DWORD num_frames;
609 DWORD num_steps;
610 DWORD width;
611 DWORD height;
612 DWORD bpp;
613 DWORD num_planes;
614 DWORD display_rate;
615 DWORD flags;
616 } ani_header;
617
618 typedef struct {
619 DWORD data_size;
620 const unsigned char *data;
621 } riff_chunk_t;
622
623 static void dump_ani_header( const ani_header *header )
624 {
625 TRACE(" header size: %d\n", header->header_size);
626 TRACE(" frames: %d\n", header->num_frames);
627 TRACE(" steps: %d\n", header->num_steps);
628 TRACE(" width: %d\n", header->width);
629 TRACE(" height: %d\n", header->height);
630 TRACE(" bpp: %d\n", header->bpp);
631 TRACE(" planes: %d\n", header->num_planes);
632 TRACE(" display rate: %d\n", header->display_rate);
633 TRACE(" flags: 0x%08x\n", header->flags);
634 }
635
636
637 /*
638 * RIFF:
639 * DWORD "RIFF"
640 * DWORD size
641 * DWORD riff_id
642 * BYTE[] data
643 *
644 * LIST:
645 * DWORD "LIST"
646 * DWORD size
647 * DWORD list_id
648 * BYTE[] data
649 *
650 * CHUNK:
651 * DWORD chunk_id
652 * DWORD size
653 * BYTE[] data
654 */
655 static void riff_find_chunk( DWORD chunk_id, DWORD chunk_type, const riff_chunk_t *parent_chunk, riff_chunk_t *chunk )
656 {
657 const unsigned char *ptr = parent_chunk->data;
658 const unsigned char *end = parent_chunk->data + (parent_chunk->data_size - (2 * sizeof(DWORD)));
659
660 if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) end -= sizeof(DWORD);
661
662 while (ptr < end)
663 {
664 if ((!chunk_type && *(const DWORD *)ptr == chunk_id )
665 || (chunk_type && *(const DWORD *)ptr == chunk_type && *((const DWORD *)ptr + 2) == chunk_id ))
666 {
667 ptr += sizeof(DWORD);
668 chunk->data_size = (*(const DWORD *)ptr + 1) & ~1;
669 ptr += sizeof(DWORD);
670 if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) ptr += sizeof(DWORD);
671 chunk->data = ptr;
672
673 return;
674 }
675
676 ptr += sizeof(DWORD);
677 ptr += (*(const DWORD *)ptr + 1) & ~1;
678 ptr += sizeof(DWORD);
679 }
680 }
681
682
683 /*
684 * .ANI layout:
685 *
686 * RIFF:'ACON' RIFF chunk
687 * |- CHUNK:'anih' Header
688 * |- CHUNK:'seq ' Sequence information (optional)
689 * \- LIST:'fram' Frame list
690 * |- CHUNK:icon Cursor frames
691 * |- CHUNK:icon
692 * |- ...
693 * \- CHUNK:icon
694 */
695 static HCURSOR CURSORICON_CreateIconFromANI( const LPBYTE bits, DWORD bits_size,
696 INT width, INT height, INT depth )
697 {
698 HCURSOR cursor;
699 ani_header header = {0};
700 LPBYTE frame_bits = 0;
701 POINT hotspot;
702 CURSORICONFILEDIRENTRY *entry;
703
704 riff_chunk_t root_chunk = { bits_size, bits };
705 riff_chunk_t ACON_chunk = {0};
706 riff_chunk_t anih_chunk = {0};
707 riff_chunk_t fram_chunk = {0};
708 const unsigned char *icon_data;
709
710 TRACE("bits %p, bits_size %d\n", bits, bits_size);
711
712 if (!bits) return 0;
713
714 riff_find_chunk( ANI_ACON_ID, ANI_RIFF_ID, &root_chunk, &ACON_chunk );
715 if (!ACON_chunk.data)
716 {
717 ERR("Failed to get root chunk.\n");
718 return 0;
719 }
720
721 riff_find_chunk( ANI_anih_ID, 0, &ACON_chunk, &anih_chunk );
722 if (!anih_chunk.data)
723 {
724 ERR("Failed to get 'anih' chunk.\n");
725 return 0;
726 }
727 memcpy( &header, anih_chunk.data, sizeof(header) );
728 dump_ani_header( &header );
729
730 riff_find_chunk( ANI_fram_ID, ANI_LIST_ID, &ACON_chunk, &fram_chunk );
731 if (!fram_chunk.data)
732 {
733 ERR("Failed to get icon list.\n");
734 return 0;
735 }
736
737 /* FIXME: For now, just load the first frame. Before we can load all the
738 * frames, we need to write the needed code in wineserver, etc. to handle
739 * cursors. Once this code is written, we can extend it to support .ani
740 * cursors and then update user32 and winex11.drv to load all frames.
741 *
742 * Hopefully this will at least make some games (C&C3, etc.) more playable
743 * in the meantime.
744 */
745 FIXME("Loading all frames for .ani cursors not implemented.\n");
746 icon_data = fram_chunk.data + (2 * sizeof(DWORD));
747
748 entry = CURSORICON_FindBestIconFile( (CURSORICONFILEDIR *) icon_data,
749 width, height, depth );
750
751 frame_bits = HeapAlloc( GetProcessHeap(), 0, entry->dwDIBSize );
752 memcpy( frame_bits, icon_data + entry->dwDIBOffset, entry->dwDIBSize );
753
754 if (!header.width || !header.height)
755 {
756 header.width = entry->bWidth;
757 header.height = entry->bHeight;
758 }
759
760 hotspot.x = entry->xHotspot;
761 hotspot.y = entry->yHotspot;
762
763 cursor = CURSORICON_CreateIconFromBMI( (BITMAPINFO *) frame_bits, hotspot,
764 FALSE, 0x00030000, header.width, header.height, 0 );
765
766 HeapFree( GetProcessHeap(), 0, frame_bits );
767
768 return cursor;
769 }
770
771
772 /**********************************************************************
773 * CreateIconFromResourceEx (USER32.@)
774 *
775 * FIXME: Convert to mono when cFlag is LR_MONOCHROME. Do something
776 * with cbSize parameter as well.
777 */
778 HICON WINAPI CreateIconFromResourceEx( PBYTE bits, DWORD cbSize,
779 BOOL bIcon, DWORD dwVersion,
780 int width, int height,
781 UINT cFlag )
782 {
783 POINT hotspot;
784 BITMAPINFO *bmi;
785
786 TRACE_(cursor)("%p (%u bytes), ver %08x, %ix%i %s %s\n",
787 bits, cbSize, dwVersion, width, height,
788 bIcon ? "icon" : "cursor", (cFlag & LR_MONOCHROME) ? "mono" : "" );
789
790 if (bIcon)
791 {
792 hotspot.x = width / 2;
793 hotspot.y = height / 2;
794 bmi = (BITMAPINFO *)bits;
795 }
796 else /* get the hotspot */
797 {
798 SHORT *pt = (SHORT *)bits;
799 hotspot.x = pt[0];
800 hotspot.y = pt[1];
801 bmi = (BITMAPINFO *)(pt + 2);
802 }
803
804 return CURSORICON_CreateIconFromBMI( bmi, hotspot, bIcon, dwVersion,
805 width, height, cFlag );
806 }
807
808
809 /**********************************************************************
810 * CreateIconFromResource (USER32.@)
811 */
812 HICON WINAPI CreateIconFromResource( PBYTE bits, DWORD cbSize,
813 BOOL bIcon, DWORD dwVersion)
814 {
815 return CreateIconFromResourceEx( bits, cbSize, bIcon, dwVersion, 0,0,0);
816 }
817
818
819 static HICON CURSORICON_LoadFromFile( LPCWSTR filename,
820 INT width, INT height, INT depth,
821 BOOL fCursor, UINT loadflags)
822 {
823 CURSORICONFILEDIRENTRY *entry;
824 CURSORICONFILEDIR *dir;
825 DWORD filesize = 0;
826 HICON hIcon = 0;
827 LPBYTE bits;
828 POINT hotspot;
829
830 TRACE("loading %s\n", debugstr_w( filename ));
831
832 bits = map_fileW( filename, &filesize );
833 if (!bits)
834 return hIcon;
835
836 /* Check for .ani. */
837 if (memcmp( bits, "RIFF", 4 ) == 0)
838 {
839 hIcon = CURSORICON_CreateIconFromANI( bits, filesize, width, height,
840 depth );
841 goto end;
842 }
843
844 dir = (CURSORICONFILEDIR*) bits;
845 if ( filesize < sizeof(*dir) )
846 goto end;
847
848 if ( filesize < (sizeof(*dir) + sizeof(dir->idEntries[0])*(dir->idCount-1)) )
849 goto end;
850
851 if ( fCursor )
852 entry = CURSORICON_FindBestCursorFile( dir, width, height, depth );
853 else
854 entry = CURSORICON_FindBestIconFile( dir, width, height, depth );
855
856 if ( !entry )
857 goto end;
858
859 /* check that we don't run off the end of the file */
860 if ( entry->dwDIBOffset > filesize )
861 goto end;
862 if ( entry->dwDIBOffset + entry->dwDIBSize > filesize )
863 goto end;
864
865 hotspot.x = entry->xHotspot;
866 hotspot.y = entry->yHotspot;
867 hIcon = CURSORICON_CreateIconFromBMI( (BITMAPINFO *)&bits[entry->dwDIBOffset],
868 hotspot, !fCursor, 0x00030000,
869 width, height, loadflags );
870 end:
871 TRACE("loaded %s -> %p\n", debugstr_w( filename ), hIcon );
872 UnmapViewOfFile( bits );
873 return hIcon;
874 }
875
876 /**********************************************************************
877 * CURSORICON_Load
878 *
879 * Load a cursor or icon from resource or file.
880 */
881 static HICON CURSORICON_Load(HINSTANCE hInstance, LPCWSTR name,
882 INT width, INT height, INT depth,
883 BOOL fCursor, UINT loadflags)
884 {
885 HANDLE handle = 0;
886 HICON hIcon = 0;
887 HRSRC hRsrc, hGroupRsrc;
888 CURSORICONDIR *dir;
889 CURSORICONDIRENTRY *dirEntry;
890 LPBYTE bits;
891 WORD wResId;
892 DWORD dwBytesInRes;
893
894 TRACE("%p, %s, %dx%d, depth %d, fCursor %d, flags 0x%04x\n",
895 hInstance, debugstr_w(name), width, height, depth, fCursor, loadflags);
896
897 if ( loadflags & LR_LOADFROMFILE ) /* Load from file */
898 return CURSORICON_LoadFromFile( name, width, height, depth, fCursor, loadflags );
899
900 if (!hInstance) hInstance = User32Instance; /* Load OEM cursor/icon */
901
902 /* don't cache 16-bit instances (FIXME: should never get 16-bit instances in the first place) */
903 if ((ULONG_PTR)hInstance >> 16 == 0) loadflags &= ~LR_SHARED;
904
905 /* Get directory resource ID */
906
907 if (!(hRsrc = FindResourceW( hInstance, name,
908 (LPWSTR)(fCursor ? RT_GROUP_CURSOR : RT_GROUP_ICON) )))
909 return 0;
910 hGroupRsrc = hRsrc;
911
912 /* Find the best entry in the directory */
913
914 if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
915 if (!(dir = LockResource( handle ))) return 0;
916 if (fCursor)
917 dirEntry = CURSORICON_FindBestCursorRes( dir, width, height, depth );
918 else
919 dirEntry = CURSORICON_FindBestIconRes( dir, width, height, depth );
920 if (!dirEntry) return 0;
921 wResId = dirEntry->wResId;
922 dwBytesInRes = dirEntry->dwBytesInRes;
923 FreeResource( handle );
924
925 /* Load the resource */
926
927 if (!(hRsrc = FindResourceW(hInstance,MAKEINTRESOURCEW(wResId),
928 (LPWSTR)(fCursor ? RT_CURSOR : RT_ICON) ))) return 0;
929
930 /* If shared icon, check whether it was already loaded */
931 if ( (loadflags & LR_SHARED)
932 && (hIcon = NtUserFindExistingCursorIcon( hInstance, hRsrc, 0, 0 ) ) != 0 )
933 return hIcon;
934
935 if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
936 bits = LockResource( handle );
937 hIcon = CreateIconFromResourceEx( bits, dwBytesInRes,
938 !fCursor, 0x00030000, width, height, loadflags);
939 FreeResource( handle );
940
941 /* If shared icon, add to icon cache */
942
943 if (hIcon && 0 != (loadflags & LR_SHARED))
944 {
945 #if 1
946 NtUserSetCursorIconData((HICON)hIcon, NULL, NULL, hInstance, hRsrc,
947 (HRSRC)NULL);
948 #else
949 ICONINFO iconInfo;
950
951 if(NtUserGetIconInfo(ResIcon, &iconInfo, NULL, NULL, NULL, FALSE))
952 NtUserSetCursorIconData((HICON)hIcon, hinst, NULL, &iconInfo);
953 #endif
954 }
955
956 return hIcon;
957 }
958
959
960 /*************************************************************************
961 * CURSORICON_ExtCopy
962 *
963 * Copies an Image from the Cache if LR_COPYFROMRESOURCE is specified
964 *
965 * PARAMS
966 * Handle [I] handle to an Image
967 * nType [I] Type of Handle (IMAGE_CURSOR | IMAGE_ICON)
968 * iDesiredCX [I] The Desired width of the Image
969 * iDesiredCY [I] The desired height of the Image
970 * nFlags [I] The flags from CopyImage
971 *
972 * RETURNS
973 * Success: The new handle of the Image
974 *
975 * NOTES
976 * LR_COPYDELETEORG and LR_MONOCHROME are currently not implemented.
977 * LR_MONOCHROME should be implemented by CreateIconFromResourceEx.
978 * LR_COPYFROMRESOURCE will only work if the Image is in the Cache.
979 *
980 *
981 */
982
983 static HICON CURSORICON_ExtCopy(HICON hIcon, UINT nType,
984 INT iDesiredCX, INT iDesiredCY,
985 UINT nFlags)
986 {
987 HICON hNew=0;
988
989 TRACE_(icon)("hIcon %p, nType %u, iDesiredCX %i, iDesiredCY %i, nFlags %u\n",
990 hIcon, nType, iDesiredCX, iDesiredCY, nFlags);
991
992 if(hIcon == 0)
993 {
994 return 0;
995 }
996
997 /* Best Fit or Monochrome */
998 if( (nFlags & LR_COPYFROMRESOURCE
999 && (iDesiredCX > 0 || iDesiredCY > 0))
1000 || nFlags & LR_MONOCHROME)
1001 {
1002 TRACE("Copying from resource isn't implemented yet\n");
1003 hNew = CopyIcon(hIcon);
1004
1005 #if 0
1006 ICONCACHE* pIconCache = CURSORICON_FindCache(hIcon);
1007
1008 /* Not Found in Cache, then do a straight copy
1009 */
1010 if(pIconCache == NULL)
1011 {
1012 hNew = CopyIcon( hIcon );
1013 if(nFlags & LR_COPYFROMRESOURCE)
1014 {
1015 TRACE_(icon)("LR_COPYFROMRESOURCE: Failed to load from cache\n");
1016 }
1017 }
1018 else
1019 {
1020 int iTargetCY = iDesiredCY, iTargetCX = iDesiredCX;
1021 LPBYTE pBits;
1022 HANDLE hMem;
1023 HRSRC hRsrc;
1024 DWORD dwBytesInRes;
1025 WORD wResId;
1026 CURSORICONDIR *pDir;
1027 CURSORICONDIRENTRY *pDirEntry;
1028 BOOL bIsIcon = (nType == IMAGE_ICON);
1029
1030 /* Completing iDesiredCX CY for Monochrome Bitmaps if needed
1031 */
1032 if(((nFlags & LR_MONOCHROME) && !(nFlags & LR_COPYFROMRESOURCE))
1033 || (iDesiredCX == 0 && iDesiredCY == 0))
1034 {
1035 iDesiredCY = GetSystemMetrics(bIsIcon ?
1036 SM_CYICON : SM_CYCURSOR);
1037 iDesiredCX = GetSystemMetrics(bIsIcon ?
1038 SM_CXICON : SM_CXCURSOR);
1039 }
1040
1041 /* Retrieve the CURSORICONDIRENTRY
1042 */
1043 if (!(hMem = LoadResource( pIconCache->hModule ,
1044 pIconCache->hGroupRsrc)))
1045 {
1046 return 0;
1047 }
1048 if (!(pDir = LockResource( hMem )))
1049 {
1050 return 0;
1051 }
1052
1053 /* Find Best Fit
1054 */
1055 if(bIsIcon)
1056 {
1057 pDirEntry = CURSORICON_FindBestIconRes(
1058 pDir, iDesiredCX, iDesiredCY, 256 );
1059 }
1060 else
1061 {
1062 pDirEntry = CURSORICON_FindBestCursorRes(
1063 pDir, iDesiredCX, iDesiredCY, 1);
1064 }
1065
1066 wResId = pDirEntry->wResId;
1067 dwBytesInRes = pDirEntry->dwBytesInRes;
1068 FreeResource(hMem);
1069
1070 TRACE_(icon)("ResID %u, BytesInRes %u, Width %d, Height %d DX %d, DY %d\n",
1071 wResId, dwBytesInRes, pDirEntry->ResInfo.icon.bWidth,
1072 pDirEntry->ResInfo.icon.bHeight, iDesiredCX, iDesiredCY);
1073
1074 /* Get the Best Fit
1075 */
1076 if (!(hRsrc = FindResourceW(pIconCache->hModule ,
1077 MAKEINTRESOURCEW(wResId), (LPWSTR)(bIsIcon ? RT_ICON : RT_CURSOR))))
1078 {
1079 return 0;
1080 }
1081 if (!(hMem = LoadResource( pIconCache->hModule , hRsrc )))
1082 {
1083 return 0;
1084 }
1085
1086 pBits = LockResource( hMem );
1087
1088 if(nFlags & LR_DEFAULTSIZE)
1089 {
1090 iTargetCY = GetSystemMetrics(SM_CYICON);
1091 iTargetCX = GetSystemMetrics(SM_CXICON);
1092 }
1093
1094 /* Create a New Icon with the proper dimension
1095 */
1096 hNew = CreateIconFromResourceEx( pBits, dwBytesInRes,
1097 bIsIcon, 0x00030000, iTargetCX, iTargetCY, nFlags);
1098 FreeResource(hMem);
1099 }
1100 #endif
1101 }
1102 else hNew = CopyIcon( hIcon );
1103 return hNew;
1104 }
1105
1106
1107 /***********************************************************************
1108 * CreateCursor (USER32.@)
1109 */
1110 HCURSOR WINAPI CreateCursor( HINSTANCE hInstance,
1111 INT xHotSpot, INT yHotSpot,
1112 INT nWidth, INT nHeight,
1113 LPCVOID lpANDbits, LPCVOID lpXORbits )
1114 {
1115 ICONINFO info;
1116 HCURSOR hCursor;
1117
1118 TRACE_(cursor)("%dx%d spot=%d,%d xor=%p and=%p\n",
1119 nWidth, nHeight, xHotSpot, yHotSpot, lpXORbits, lpANDbits);
1120
1121 info.fIcon = FALSE;
1122 info.xHotspot = xHotSpot;
1123 info.yHotspot = yHotSpot;
1124 info.hbmMask = CreateBitmap( nWidth, nHeight, 1, 1, lpANDbits );
1125 info.hbmColor = CreateBitmap( nWidth, nHeight, 1, 1, lpXORbits );
1126 hCursor = CreateIconIndirect( &info );
1127 DeleteObject( info.hbmMask );
1128 DeleteObject( info.hbmColor );
1129 return hCursor;
1130 }
1131
1132
1133 /***********************************************************************
1134 * CreateIcon (USER32.@)
1135 *
1136 * Creates an icon based on the specified bitmaps. The bitmaps must be
1137 * provided in a device dependent format and will be resized to
1138 * (SM_CXICON,SM_CYICON) and depth converted to match the screen's color
1139 * depth. The provided bitmaps must be top-down bitmaps.
1140 * Although Windows does not support 15bpp(*) this API must support it
1141 * for Winelib applications.
1142 *
1143 * (*) Windows does not support 15bpp but it supports the 555 RGB 16bpp
1144 * format!
1145 *
1146 * RETURNS
1147 * Success: handle to an icon
1148 * Failure: NULL
1149 *
1150 * FIXME: Do we need to resize the bitmaps?
1151 */
1152 HICON WINAPI CreateIcon(
1153 HINSTANCE hInstance, /* [in] the application's hInstance */
1154 int nWidth, /* [in] the width of the provided bitmaps */
1155 int nHeight, /* [in] the height of the provided bitmaps */
1156 BYTE bPlanes, /* [in] the number of planes in the provided bitmaps */
1157 BYTE bBitsPixel, /* [in] the number of bits per pixel of the lpXORbits bitmap */
1158 const BYTE* lpANDbits, /* [in] a monochrome bitmap representing the icon's mask */
1159 const BYTE* lpXORbits) /* [in] the icon's 'color' bitmap */
1160 {
1161 ICONINFO iinfo;
1162 HICON hIcon;
1163
1164 TRACE_(icon)("%dx%d, planes %d, bpp %d, xor %p, and %p\n",
1165 nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits, lpANDbits);
1166
1167 iinfo.fIcon = TRUE;
1168 iinfo.xHotspot = nWidth / 2;
1169 iinfo.yHotspot = nHeight / 2;
1170 if (bPlanes * bBitsPixel > 1)
1171 {
1172 iinfo.hbmColor = CreateBitmap( nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits );
1173 iinfo.hbmMask = CreateBitmap( nWidth, nHeight, 1, 1, lpANDbits );
1174 }
1175 else
1176 {
1177 iinfo.hbmMask = CreateBitmap( nWidth, nHeight * 2, 1, 1, lpANDbits );
1178 iinfo.hbmColor = NULL;
1179 }
1180
1181 hIcon = CreateIconIndirect( &iinfo );
1182
1183 DeleteObject( iinfo.hbmMask );
1184 if (iinfo.hbmColor) DeleteObject( iinfo.hbmColor );
1185
1186 return hIcon;
1187 }
1188
1189
1190 /***********************************************************************
1191 * CopyIcon (USER32.@)
1192 */
1193 HICON WINAPI CopyIcon( HICON hIcon )
1194 {
1195 HICON hRetIcon = NULL;
1196 ICONINFO IconInfo;
1197
1198 if(GetIconInfo(hIcon, &IconInfo))
1199 {
1200 hRetIcon = CreateIconIndirect(&IconInfo);
1201 DeleteObject(IconInfo.hbmColor);
1202 DeleteObject(IconInfo.hbmMask);
1203 }
1204
1205 return hRetIcon;
1206 }
1207
1208
1209 /***********************************************************************
1210 * DestroyIcon (USER32.@)
1211 */
1212 BOOL WINAPI DestroyIcon( HICON hIcon )
1213 {
1214 TRACE_(icon)("%p\n", hIcon );
1215
1216 return NtUserDestroyCursor(hIcon, 0);
1217 }
1218
1219
1220 /***********************************************************************
1221 * DestroyCursor (USER32.@)
1222 */
1223 BOOL WINAPI DestroyCursor( HCURSOR hCursor )
1224 {
1225 if (GetCursor() == hCursor)
1226 {
1227 WARN_(cursor)("Destroying active cursor!\n" );
1228 return FALSE;
1229 }
1230 return DestroyIcon( hCursor );
1231 }
1232
1233 /***********************************************************************
1234 * DrawIcon (USER32.@)
1235 */
1236 BOOL WINAPI DrawIcon( HDC hdc, INT x, INT y, HICON hIcon )
1237 {
1238 return DrawIconEx( hdc, x, y, hIcon, 0, 0, 0, 0, DI_NORMAL | DI_COMPAT | DI_DEFAULTSIZE );
1239 }
1240
1241 /***********************************************************************
1242 * ShowCursor (USER32.@)
1243 */
1244 INT WINAPI /*DECLSPEC_HOTPATCH*/ ShowCursor( BOOL bShow )
1245 {
1246 return NtUserShowCursor(bShow);
1247 }
1248
1249 /***********************************************************************
1250 * GetCursor (USER32.@)
1251 */
1252 HCURSOR WINAPI GetCursor(void)
1253 {
1254 CURSORINFO ci;
1255 ci.cbSize = sizeof(CURSORINFO);
1256 if(NtUserGetCursorInfo(&ci))
1257 return ci.hCursor;
1258 else
1259 return (HCURSOR)0;
1260 }
1261
1262
1263
1264 /***********************************************************************
1265 * SetSystemCursor (USER32.@)
1266 */
1267 BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
1268 {
1269 FIXME("(%p,%08x),stub!\n", hcur, id);
1270 return TRUE;
1271 }
1272
1273
1274 /**********************************************************************
1275 * LookupIconIdFromDirectoryEx (USER32.@)
1276 */
1277 INT WINAPI LookupIconIdFromDirectoryEx( LPBYTE xdir, BOOL bIcon,
1278 INT width, INT height, UINT cFlag )
1279 {
1280 CURSORICONDIR *dir = (CURSORICONDIR*)xdir;
1281 UINT retVal = 0;
1282 if( dir && !dir->idReserved && (dir->idType & 3) )
1283 {
1284 CURSORICONDIRENTRY* entry;
1285
1286 const HDC hdc = GetDC(0);
1287 const int depth = (cFlag & LR_MONOCHROME) ?
1288 1 : GetDeviceCaps(hdc, BITSPIXEL);
1289 ReleaseDC(0, hdc);
1290
1291 if( bIcon )
1292 entry = CURSORICON_FindBestIconRes( dir, width, height, depth );
1293 else
1294 entry = CURSORICON_FindBestCursorRes( dir, width, height, depth );
1295
1296 if( entry ) retVal = entry->wResId;
1297 }
1298 else WARN_(cursor)("invalid resource directory\n");
1299 return retVal;
1300 }
1301
1302 /**********************************************************************
1303 * LookupIconIdFromDirectory (USER32.@)
1304 */
1305 INT WINAPI LookupIconIdFromDirectory( LPBYTE dir, BOOL bIcon )
1306 {
1307 return LookupIconIdFromDirectoryEx( dir, bIcon,
1308 bIcon ? GetSystemMetrics(SM_CXICON) : GetSystemMetrics(SM_CXCURSOR),
1309 bIcon ? GetSystemMetrics(SM_CYICON) : GetSystemMetrics(SM_CYCURSOR), bIcon ? 0 : LR_MONOCHROME );
1310 }
1311
1312 /***********************************************************************
1313 * LoadCursorW (USER32.@)
1314 */
1315 HCURSOR WINAPI LoadCursorW(HINSTANCE hInstance, LPCWSTR name)
1316 {
1317 TRACE("%p, %s\n", hInstance, debugstr_w(name));
1318
1319 return LoadImageW( hInstance, name, IMAGE_CURSOR, 0, 0,
1320 LR_SHARED | LR_DEFAULTSIZE );
1321 }
1322
1323 /***********************************************************************
1324 * LoadCursorA (USER32.@)
1325 */
1326 HCURSOR WINAPI LoadCursorA(HINSTANCE hInstance, LPCSTR name)
1327 {
1328 TRACE("%p, %s\n", hInstance, debugstr_a(name));
1329
1330 return LoadImageA( hInstance, name, IMAGE_CURSOR, 0, 0,
1331 LR_SHARED | LR_DEFAULTSIZE );
1332 }
1333
1334 /***********************************************************************
1335 * LoadCursorFromFileW (USER32.@)
1336 */
1337 HCURSOR WINAPI LoadCursorFromFileW (LPCWSTR name)
1338 {
1339 TRACE("%s\n", debugstr_w(name));
1340
1341 return LoadImageW( 0, name, IMAGE_CURSOR, 0, 0,
1342 LR_LOADFROMFILE | LR_DEFAULTSIZE );
1343 }
1344
1345 /***********************************************************************
1346 * LoadCursorFromFileA (USER32.@)
1347 */
1348 HCURSOR WINAPI LoadCursorFromFileA (LPCSTR name)
1349 {
1350 TRACE("%s\n", debugstr_a(name));
1351
1352 return LoadImageA( 0, name, IMAGE_CURSOR, 0, 0,
1353 LR_LOADFROMFILE | LR_DEFAULTSIZE );
1354 }
1355
1356 /***********************************************************************
1357 * LoadIconW (USER32.@)
1358 */
1359 HICON WINAPI LoadIconW(HINSTANCE hInstance, LPCWSTR name)
1360 {
1361 TRACE("%p, %s\n", hInstance, debugstr_w(name));
1362
1363 return LoadImageW( hInstance, name, IMAGE_ICON, 0, 0,
1364 LR_SHARED | LR_DEFAULTSIZE );
1365 }
1366
1367 /***********************************************************************
1368 * LoadIconA (USER32.@)
1369 */
1370 HICON WINAPI LoadIconA(HINSTANCE hInstance, LPCSTR name)
1371 {
1372 TRACE("%p, %s\n", hInstance, debugstr_a(name));
1373
1374 return LoadImageA( hInstance, name, IMAGE_ICON, 0, 0,
1375 LR_SHARED | LR_DEFAULTSIZE );
1376 }
1377
1378 /**********************************************************************
1379 * GetIconInfo (USER32.@)
1380 */
1381 BOOL WINAPI GetIconInfo(HICON hIcon, PICONINFO iconinfo)
1382 {
1383 return NtUserGetIconInfo(hIcon, iconinfo, 0, 0, 0, 0);
1384 }
1385
1386 /* copy an icon bitmap, even when it can't be selected into a DC */
1387 /* helper for CreateIconIndirect */
1388 static void stretch_blt_icon( HDC hdc_dst, int dst_x, int dst_y, int dst_width, int dst_height,
1389 HBITMAP src, int width, int height )
1390 {
1391 HDC hdc = CreateCompatibleDC( 0 );
1392
1393 if (!SelectObject( hdc, src )) /* do it the hard way */
1394 {
1395 BITMAPINFO *info;
1396 void *bits;
1397
1398 if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) return;
1399 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1400 info->bmiHeader.biWidth = width;
1401 info->bmiHeader.biHeight = height;
1402 info->bmiHeader.biPlanes = GetDeviceCaps( hdc_dst, PLANES );
1403 info->bmiHeader.biBitCount = GetDeviceCaps( hdc_dst, BITSPIXEL );
1404 info->bmiHeader.biCompression = BI_RGB;
1405 info->bmiHeader.biSizeImage = height * get_dib_width_bytes( width, info->bmiHeader.biBitCount );
1406 info->bmiHeader.biXPelsPerMeter = 0;
1407 info->bmiHeader.biYPelsPerMeter = 0;
1408 info->bmiHeader.biClrUsed = 0;
1409 info->bmiHeader.biClrImportant = 0;
1410 bits = HeapAlloc( GetProcessHeap(), 0, info->bmiHeader.biSizeImage );
1411 if (bits && GetDIBits( hdc, src, 0, height, bits, info, DIB_RGB_COLORS ))
1412 StretchDIBits( hdc_dst, dst_x, dst_y, dst_width, dst_height,
1413 0, 0, width, height, bits, info, DIB_RGB_COLORS, SRCCOPY );
1414
1415 HeapFree( GetProcessHeap(), 0, bits );
1416 HeapFree( GetProcessHeap(), 0, info );
1417 }
1418 else StretchBlt( hdc_dst, dst_x, dst_y, dst_width, dst_height, hdc, 0, 0, width, height, SRCCOPY );
1419
1420 DeleteDC( hdc );
1421 }
1422
1423 /**********************************************************************
1424 * CreateIconIndirect (USER32.@)
1425 */
1426 HICON WINAPI CreateIconIndirect(PICONINFO iconinfo)
1427 {
1428 BITMAP bmpXor, bmpAnd;
1429 HBITMAP color = 0, mask;
1430 int width, height;
1431 HDC hdc;
1432 ICONINFO iinfo;
1433
1434 TRACE("color %p, mask %p, hotspot %ux%u, fIcon %d\n",
1435 iconinfo->hbmColor, iconinfo->hbmMask,
1436 iconinfo->xHotspot, iconinfo->yHotspot, iconinfo->fIcon);
1437
1438 if (!iconinfo->hbmMask) return 0;
1439
1440 GetObjectW( iconinfo->hbmMask, sizeof(bmpAnd), &bmpAnd );
1441 TRACE("mask: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
1442 bmpAnd.bmWidth, bmpAnd.bmHeight, bmpAnd.bmWidthBytes,
1443 bmpAnd.bmPlanes, bmpAnd.bmBitsPixel);
1444
1445 if (iconinfo->hbmColor)
1446 {
1447 GetObjectW( iconinfo->hbmColor, sizeof(bmpXor), &bmpXor );
1448 TRACE("color: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
1449 bmpXor.bmWidth, bmpXor.bmHeight, bmpXor.bmWidthBytes,
1450 bmpXor.bmPlanes, bmpXor.bmBitsPixel);
1451
1452 // the size of the mask bitmap always determines the icon size!
1453 width = bmpAnd.bmWidth;
1454 height = bmpAnd.bmHeight;
1455 if (bmpXor.bmPlanes * bmpXor.bmBitsPixel != 1)
1456 {
1457 color = CreateBitmap( width, height, bmpXor.bmPlanes, bmpXor.bmBitsPixel, NULL );
1458 if(!color)
1459 {
1460 ERR("Unable to create color bitmap!\n");
1461 return NULL;
1462 }
1463 mask = CreateBitmap( width, height, 1, 1, NULL );
1464 if(!mask)
1465 {
1466 ERR("Unable to create mask bitmap!\n");
1467 DeleteObject(color);
1468 return NULL;
1469 }
1470 }
1471 else
1472 {
1473 mask = CreateBitmap( width, height * 2, 1, 1, NULL );
1474 if(!mask)
1475 {
1476 ERR("Unable to create mask bitmap!\n");
1477 return NULL;
1478 }
1479 }
1480 }
1481 else
1482 {
1483 width = bmpAnd.bmWidth;
1484 height = bmpAnd.bmHeight;
1485 mask = CreateBitmap( width, height, 1, 1, NULL );
1486 }
1487
1488 hdc = CreateCompatibleDC( 0 );
1489 SelectObject( hdc, mask );
1490 stretch_blt_icon( hdc, 0, 0, width, height, iconinfo->hbmMask, bmpAnd.bmWidth, bmpAnd.bmHeight );
1491
1492 if (color)
1493 {
1494 SelectObject( hdc, color );
1495 stretch_blt_icon( hdc, 0, 0, width, height, iconinfo->hbmColor, width, height );
1496 }
1497 else if (iconinfo->hbmColor)
1498 {
1499 stretch_blt_icon( hdc, 0, height, width, height, iconinfo->hbmColor, width, height );
1500 }
1501 else height /= 2;
1502
1503 DeleteDC( hdc );
1504
1505 iinfo.hbmColor = color ;
1506 iinfo.hbmMask = mask ;
1507 iinfo.fIcon = iconinfo->fIcon;
1508 if (iinfo.fIcon)
1509 {
1510 iinfo.xHotspot = width / 2;
1511 iinfo.yHotspot = height / 2;
1512 }
1513 else
1514 {
1515 iinfo.xHotspot = iconinfo->xHotspot;
1516 iinfo.yHotspot = iconinfo->yHotspot;
1517 }
1518
1519 return CreateCursorIconHandle(&iinfo);
1520 }
1521
1522 /******************************************************************************
1523 * DrawIconEx (USER32.@) Draws an icon or cursor on device context
1524 *
1525 * NOTES
1526 * Why is this using SM_CXICON instead of SM_CXCURSOR?
1527 *
1528 * PARAMS
1529 * hdc [I] Handle to device context
1530 * x0 [I] X coordinate of upper left corner
1531 * y0 [I] Y coordinate of upper left corner
1532 * hIcon [I] Handle to icon to draw
1533 * cxWidth [I] Width of icon
1534 * cyWidth [I] Height of icon
1535 * istep [I] Index of frame in animated cursor
1536 * hbr [I] Handle to background brush
1537 * flags [I] Icon-drawing flags
1538 *
1539 * RETURNS
1540 * Success: TRUE
1541 * Failure: FALSE
1542 */
1543 BOOL WINAPI DrawIconEx( HDC hdc, INT xLeft, INT yTop, HICON hIcon,
1544 INT cxWidth, INT cyWidth, UINT istepIfAniCur,
1545 HBRUSH hbrFlickerFreeDraw, UINT diFlags )
1546 {
1547 return NtUserDrawIconEx(hdc, xLeft, yTop, hIcon, cxWidth, cyWidth,
1548 istepIfAniCur, hbrFlickerFreeDraw, diFlags,
1549 0, 0);
1550 }
1551
1552 /***********************************************************************
1553 * DIB_FixColorsToLoadflags
1554 *
1555 * Change color table entries when LR_LOADTRANSPARENT or LR_LOADMAP3DCOLORS
1556 * are in loadflags
1557 */
1558 static void DIB_FixColorsToLoadflags(BITMAPINFO * bmi, UINT loadflags, BYTE pix)
1559 {
1560 int colors;
1561 COLORREF c_W, c_S, c_F, c_L, c_C;
1562 int incr,i;
1563 RGBQUAD *ptr;
1564 int bitmap_type;
1565 LONG width;
1566 LONG height;
1567 WORD bpp;
1568 DWORD compr;
1569
1570 if (((bitmap_type = DIB_GetBitmapInfo((BITMAPINFOHEADER*) bmi, &width, &height, &bpp, &compr)) == -1))
1571 {
1572 WARN_(resource)("Invalid bitmap\n");
1573 return;
1574 }
1575
1576 if (bpp > 8) return;
1577
1578 if (bitmap_type == 0) /* BITMAPCOREHEADER */
1579 {
1580 incr = 3;
1581 colors = 1 << bpp;
1582 }
1583 else
1584 {
1585 incr = 4;
1586 colors = bmi->bmiHeader.biClrUsed;
1587 if (colors > 256) colors = 256;
1588 if (!colors && (bpp <= 8)) colors = 1 << bpp;
1589 }
1590
1591 c_W = GetSysColor(COLOR_WINDOW);
1592 c_S = GetSysColor(COLOR_3DSHADOW);
1593 c_F = GetSysColor(COLOR_3DFACE);
1594 c_L = GetSysColor(COLOR_3DLIGHT);
1595
1596 if (loadflags & LR_LOADTRANSPARENT) {
1597 switch (bpp) {
1598 case 1: pix = pix >> 7; break;
1599 case 4: pix = pix >> 4; break;
1600 case 8: break;
1601 default:
1602 WARN_(resource)("(%d): Unsupported depth\n", bpp);
1603 return;
1604 }
1605 if (pix >= colors) {
1606 WARN_(resource)("pixel has color index greater than biClrUsed!\n");
1607 return;
1608 }
1609 if (loadflags & LR_LOADMAP3DCOLORS) c_W = c_F;
1610 ptr = (RGBQUAD*)((char*)bmi->bmiColors+pix*incr);
1611 ptr->rgbBlue = GetBValue(c_W);
1612 ptr->rgbGreen = GetGValue(c_W);
1613 ptr->rgbRed = GetRValue(c_W);
1614 }
1615 if (loadflags & LR_LOADMAP3DCOLORS)
1616 for (i=0; i<colors; i++) {
1617 ptr = (RGBQUAD*)((char*)bmi->bmiColors+i*incr);
1618 c_C = RGB(ptr->rgbRed, ptr->rgbGreen, ptr->rgbBlue);
1619 if (c_C == RGB(128, 128, 128)) {
1620 ptr->rgbRed = GetRValue(c_S);
1621 ptr->rgbGreen = GetGValue(c_S);
1622 ptr->rgbBlue = GetBValue(c_S);
1623 } else if (c_C == RGB(192, 192, 192)) {
1624 ptr->rgbRed = GetRValue(c_F);
1625 ptr->rgbGreen = GetGValue(c_F);
1626 ptr->rgbBlue = GetBValue(c_F);
1627 } else if (c_C == RGB(223, 223, 223)) {
1628 ptr->rgbRed = GetRValue(c_L);
1629 ptr->rgbGreen = GetGValue(c_L);
1630 ptr->rgbBlue = GetBValue(c_L);
1631 }
1632 }
1633 }
1634
1635
1636 /**********************************************************************
1637 * BITMAP_Load
1638 */
1639 static HBITMAP BITMAP_Load( HINSTANCE instance, LPCWSTR name,
1640 INT desiredx, INT desiredy, UINT loadflags )
1641 {
1642 HBITMAP hbitmap = 0, orig_bm;
1643 HRSRC hRsrc;
1644 HGLOBAL handle;
1645 char *ptr = NULL;
1646 BITMAPINFO *info, *fix_info = NULL, *scaled_info = NULL;
1647 int size;
1648 BYTE pix;
1649 char *bits;
1650 LONG width, height, new_width, new_height;
1651 WORD bpp_dummy;
1652 DWORD compr_dummy, offbits = 0;
1653 INT bm_type;
1654 HDC screen_mem_dc = NULL;
1655
1656 if (!(loadflags & LR_LOADFROMFILE))
1657 {
1658 if (!instance)
1659 {
1660 /* OEM bitmap: try to load the resource from user32.dll */
1661 instance = User32Instance;
1662 }
1663
1664 if (!(hRsrc = FindResourceW( instance, name, (LPWSTR)RT_BITMAP ))) return 0;
1665 if (!(handle = LoadResource( instance, hRsrc ))) return 0;
1666
1667 if ((info = LockResource( handle )) == NULL) return 0;
1668 }
1669 else
1670 {
1671 BITMAPFILEHEADER * bmfh;
1672
1673 if (!(ptr = map_fileW( name, NULL ))) return 0;
1674 info = (BITMAPINFO *)(ptr + sizeof(BITMAPFILEHEADER));
1675 bmfh = (BITMAPFILEHEADER *)ptr;
1676 if (bmfh->bfType != 0x4d42 /* 'BM' */)
1677 {
1678 WARN("Invalid/unsupported bitmap format!\n");
1679 goto end_close;
1680 }
1681 if (bmfh->bfOffBits) offbits = bmfh->bfOffBits - sizeof(BITMAPFILEHEADER);
1682 }
1683
1684 size = bitmap_info_size(info, DIB_RGB_COLORS);
1685 fix_info = HeapAlloc(GetProcessHeap(), 0, size);
1686 scaled_info = HeapAlloc(GetProcessHeap(), 0, size);
1687
1688 if (!fix_info || !scaled_info) goto end;
1689 memcpy(fix_info, info, size);
1690
1691 pix = *((LPBYTE)info + size);
1692 DIB_FixColorsToLoadflags(fix_info, loadflags, pix);
1693
1694 memcpy(scaled_info, fix_info, size);
1695 bm_type = DIB_GetBitmapInfo( &fix_info->bmiHeader, &width, &height,
1696 &bpp_dummy, &compr_dummy);
1697 if(desiredx != 0)
1698 new_width = desiredx;
1699 else
1700 new_width = width;
1701
1702 if(desiredy != 0)
1703 new_height = height > 0 ? desiredy : -desiredy;
1704 else
1705 new_height = height;
1706
1707 if(bm_type == 0)
1708 {
1709 BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)&scaled_info->bmiHeader;
1710 core->bcWidth = new_width;
1711 core->bcHeight = new_height;
1712 }
1713 else
1714 {
1715 /* Some sanity checks for BITMAPINFO (not applicable to BITMAPCOREINFO) */
1716 if (info->bmiHeader.biHeight > 65535 || info->bmiHeader.biWidth > 65535) {
1717 WARN("Broken BitmapInfoHeader!\n");
1718 goto end;
1719 }
1720
1721 scaled_info->bmiHeader.biWidth = new_width;
1722 scaled_info->bmiHeader.biHeight = new_height;
1723 }
1724
1725 if (new_height < 0) new_height = -new_height;
1726
1727 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
1728 if (!(screen_mem_dc = CreateCompatibleDC( screen_dc ))) goto end;
1729
1730 bits = (char *)info + (offbits ? offbits : size);
1731
1732 if (loadflags & LR_CREATEDIBSECTION)
1733 {
1734 scaled_info->bmiHeader.biCompression = 0; /* DIBSection can't be compressed */
1735 hbitmap = CreateDIBSection(screen_dc, scaled_info, DIB_RGB_COLORS, NULL, 0, 0);
1736 }
1737 else
1738 {
1739 if (is_dib_monochrome(fix_info))
1740 hbitmap = CreateBitmap(new_width, new_height, 1, 1, NULL);
1741 else
1742 hbitmap = CreateCompatibleBitmap(screen_dc, new_width, new_height);
1743 }
1744
1745 orig_bm = SelectObject(screen_mem_dc, hbitmap);
1746 StretchDIBits(screen_mem_dc, 0, 0, new_width, new_height, 0, 0, width, height, bits, fix_info, DIB_RGB_COLORS, SRCCOPY);
1747 SelectObject(screen_mem_dc, orig_bm);
1748
1749 end:
1750 if (screen_mem_dc) DeleteDC(screen_mem_dc);
1751 HeapFree(GetProcessHeap(), 0, scaled_info);
1752 HeapFree(GetProcessHeap(), 0, fix_info);
1753 end_close:
1754 if (loadflags & LR_LOADFROMFILE) UnmapViewOfFile( ptr );
1755
1756 return hbitmap;
1757 }
1758
1759 /**********************************************************************
1760 * LoadImageA (USER32.@)
1761 *
1762 * See LoadImageW.
1763 */
1764 HANDLE WINAPI LoadImageA( HINSTANCE hinst, LPCSTR name, UINT type,
1765 INT desiredx, INT desiredy, UINT loadflags)
1766 {
1767 HANDLE res;
1768 LPWSTR u_name;
1769
1770 if (IS_INTRESOURCE(name))
1771 return LoadImageW(hinst, (LPCWSTR)name, type, desiredx, desiredy, loadflags);
1772
1773 __TRY {
1774 DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
1775 u_name = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1776 MultiByteToWideChar( CP_ACP, 0, name, -1, u_name, len );
1777 }
1778 __EXCEPT_PAGE_FAULT {
1779 SetLastError( ERROR_INVALID_PARAMETER );
1780 return 0;
1781 }
1782 __ENDTRY
1783 res = LoadImageW(hinst, u_name, type, desiredx, desiredy, loadflags);
1784 HeapFree(GetProcessHeap(), 0, u_name);
1785 return res;
1786 }
1787
1788
1789 /******************************************************************************
1790 * LoadImageW (USER32.@) Loads an icon, cursor, or bitmap
1791 *
1792 * PARAMS
1793 * hinst [I] Handle of instance that contains image
1794 * name [I] Name of image
1795 * type [I] Type of image
1796 * desiredx [I] Desired width
1797 * desiredy [I] Desired height
1798 * loadflags [I] Load flags
1799 *
1800 * RETURNS
1801 * Success: Handle to newly loaded image
1802 * Failure: NULL
1803 *
1804 * FIXME: Implementation lacks some features, see LR_ defines in winuser.h
1805 */
1806 HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
1807 INT desiredx, INT desiredy, UINT loadflags )
1808 {
1809 TRACE_(resource)("(%p,%s,%d,%d,%d,0x%08x)\n",
1810 hinst,debugstr_w(name),type,desiredx,desiredy,loadflags);
1811
1812 if (loadflags & LR_DEFAULTSIZE) {
1813 if (type == IMAGE_ICON) {
1814 if (!desiredx) desiredx = GetSystemMetrics(SM_CXICON);
1815 if (!desiredy) desiredy = GetSystemMetrics(SM_CYICON);
1816 } else if (type == IMAGE_CURSOR) {
1817 if (!desiredx) desiredx = GetSystemMetrics(SM_CXCURSOR);
1818 if (!desiredy) desiredy = GetSystemMetrics(SM_CYCURSOR);
1819 }
1820 }
1821 if (loadflags & LR_LOADFROMFILE) loadflags &= ~LR_SHARED;
1822 switch (type) {
1823 case IMAGE_BITMAP:
1824 return BITMAP_Load( hinst, name, desiredx, desiredy, loadflags );
1825
1826 case IMAGE_ICON:
1827 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
1828 if (screen_dc)
1829 {
1830 return CURSORICON_Load(hinst, name, desiredx, desiredy,
1831 GetDeviceCaps(screen_dc, BITSPIXEL),
1832 FALSE, loadflags);
1833 }
1834 break;
1835
1836 case IMAGE_CURSOR:
1837 return CURSORICON_Load(hinst, name, desiredx, desiredy,
1838 1, TRUE, loadflags);
1839 }
1840 return 0;
1841 }
1842
1843 /******************************************************************************
1844 * CopyImage (USER32.@) Creates new image and copies attributes to it
1845 *
1846 * PARAMS
1847 * hnd [I] Handle to image to copy
1848 * type [I] Type of image to copy
1849 * desiredx [I] Desired width of new image
1850 * desiredy [I] Desired height of new image
1851 * flags [I] Copy flags
1852 *
1853 * RETURNS
1854 * Success: Handle to newly created image
1855 * Failure: NULL
1856 *
1857 * BUGS
1858 * Only Windows NT 4.0 supports the LR_COPYRETURNORG flag for bitmaps,
1859 * all other versions (95/2000/XP have been tested) ignore it.
1860 *
1861 * NOTES
1862 * If LR_CREATEDIBSECTION is absent, the copy will be monochrome for
1863 * a monochrome source bitmap or if LR_MONOCHROME is present, otherwise
1864 * the copy will have the same depth as the screen.
1865 * The content of the image will only be copied if the bit depth of the
1866 * original image is compatible with the bit depth of the screen, or
1867 * if the source is a DIB section.
1868 * The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
1869 */
1870 HANDLE WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
1871 INT desiredy, UINT flags )
1872 {
1873 TRACE("hnd=%p, type=%u, desiredx=%d, desiredy=%d, flags=%x\n",
1874 hnd, type, desiredx, desiredy, flags);
1875
1876 switch (type)
1877 {
1878 case IMAGE_BITMAP:
1879 {
1880 HBITMAP res = NULL;
1881 DIBSECTION ds;
1882 int objSize;
1883 BITMAPINFO * bi;
1884
1885 objSize = GetObjectW( hnd, sizeof(ds), &ds );
1886 if (!objSize) return 0;
1887 if ((desiredx < 0) || (desiredy < 0)) return 0;
1888
1889 if (flags & LR_COPYFROMRESOURCE)
1890 {
1891 FIXME("The flag LR_COPYFROMRESOURCE is not implemented for bitmaps\n");
1892 }
1893
1894 if (desiredx == 0) desiredx = ds.dsBm.bmWidth;
1895 if (desiredy == 0) desiredy = ds.dsBm.bmHeight;
1896
1897 /* Allocate memory for a BITMAPINFOHEADER structure and a
1898 color table. The maximum number of colors in a color table
1899 is 256 which corresponds to a bitmap with depth 8.
1900 Bitmaps with higher depths don't have color tables. */
1901 bi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1902 if (!bi) return 0;
1903
1904 bi->bmiHeader.biSize = sizeof(bi->bmiHeader);
1905 bi->bmiHeader.biPlanes = ds.dsBm.bmPlanes;
1906 bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel;
1907 bi->bmiHeader.biCompression = BI_RGB;
1908
1909 if (flags & LR_CREATEDIBSECTION)
1910 {
1911 /* Create a DIB section. LR_MONOCHROME is ignored */
1912 void * bits;
1913 HDC dc = CreateCompatibleDC(NULL);
1914
1915 if (objSize == sizeof(DIBSECTION))
1916 {
1917 /* The source bitmap is a DIB.
1918 Get its attributes to create an exact copy */
1919 memcpy(bi, &ds.dsBmih, sizeof(BITMAPINFOHEADER));
1920 }
1921
1922 /* Get the color table or the color masks */
1923 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
1924
1925 bi->bmiHeader.biWidth = desiredx;
1926 bi->bmiHeader.biHeight = desiredy;
1927 bi->bmiHeader.biSizeImage = 0;
1928
1929 res = CreateDIBSection(dc, bi, DIB_RGB_COLORS, &bits, NULL, 0);
1930 DeleteDC(dc);
1931 }
1932 else
1933 {
1934 /* Create a device-dependent bitmap */
1935
1936 BOOL monochrome = (flags & LR_MONOCHROME);
1937
1938 if (objSize == sizeof(DIBSECTION))
1939 {
1940 /* The source bitmap is a DIB section.
1941 Get its attributes */
1942 HDC dc = CreateCompatibleDC(NULL);
1943 bi->bmiHeader.biSize = sizeof(bi->bmiHeader);
1944 bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel;
1945 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
1946 DeleteDC(dc);
1947
1948 if (!monochrome && ds.dsBm.bmBitsPixel == 1)
1949 {
1950 /* Look if the colors of the DIB are black and white */
1951
1952 monochrome =
1953 (bi->bmiColors[0].rgbRed == 0xff
1954 && bi->bmiColors[0].rgbGreen == 0xff
1955 && bi->bmiColors[0].rgbBlue == 0xff
1956 && bi->bmiColors[0].rgbReserved == 0
1957 && bi->bmiColors[1].rgbRed == 0
1958 && bi->bmiColors[1].rgbGreen == 0
1959 && bi->bmiColors[1].rgbBlue == 0
1960 && bi->bmiColors[1].rgbReserved == 0)
1961 ||
1962 (bi->bmiColors[0].rgbRed == 0
1963 && bi->bmiColors[0].rgbGreen == 0
1964 && bi->bmiColors[0].rgbBlue == 0
1965 && bi->bmiColors[0].rgbReserved == 0
1966 && bi->bmiColors[1].rgbRed == 0xff
1967 && bi->bmiColors[1].rgbGreen == 0xff
1968 && bi->bmiColors[1].rgbBlue == 0xff
1969 && bi->bmiColors[1].rgbReserved == 0);
1970 }
1971 }
1972 else if (!monochrome)
1973 {
1974 monochrome = ds.dsBm.bmBitsPixel == 1;
1975 }
1976
1977 if (monochrome)
1978 {
1979 res = CreateBitmap(desiredx, desiredy, 1, 1, NULL);
1980 }
1981 else
1982 {
1983 HDC screenDC = GetDC(NULL);
1984 res = CreateCompatibleBitmap(screenDC, desiredx, desiredy);
1985 ReleaseDC(NULL, screenDC);
1986 }
1987 }
1988
1989 if (res)
1990 {
1991 /* Only copy the bitmap if it's a DIB section or if it's
1992 compatible to the screen */
1993 BOOL copyContents;
1994
1995 if (objSize == sizeof(DIBSECTION))
1996 {
1997 copyContents = TRUE;
1998 }
1999 else
2000 {
2001 HDC screenDC = GetDC(NULL);
2002 int screen_depth = GetDeviceCaps(screenDC, BITSPIXEL);
2003 ReleaseDC(NULL, screenDC);
2004
2005 copyContents = (ds.dsBm.bmBitsPixel == 1 || ds.dsBm.bmBitsPixel == screen_depth);
2006 }
2007
2008 if (copyContents)
2009 {
2010 /* The source bitmap may already be selected in a device context,
2011 use GetDIBits/StretchDIBits and not StretchBlt */
2012
2013 HDC dc;
2014 void * bits;
2015
2016 dc = CreateCompatibleDC(NULL);
2017
2018 bi->bmiHeader.biWidth = ds.dsBm.bmWidth;
2019 bi->bmiHeader.biHeight = ds.dsBm.bmHeight;
2020 bi->bmiHeader.biSizeImage = 0;
2021 bi->bmiHeader.biClrUsed = 0;
2022 bi->bmiHeader.biClrImportant = 0;
2023
2024 /* Fill in biSizeImage */
2025 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2026 bits = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, bi->bmiHeader.biSizeImage);
2027
2028 if (bits)
2029 {
2030 HBITMAP oldBmp;
2031
2032 /* Get the image bits of the source bitmap */
2033 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, bits, bi, DIB_RGB_COLORS);
2034
2035 /* Copy it to the destination bitmap */
2036 oldBmp = SelectObject(dc, res);
2037 StretchDIBits(dc, 0, 0, desiredx, desiredy,
2038 0, 0, ds.dsBm.bmWidth, ds.dsBm.bmHeight,
2039 bits, bi, DIB_RGB_COLORS, SRCCOPY);
2040 SelectObject(dc, oldBmp);
2041
2042 HeapFree(GetProcessHeap(), 0, bits);
2043 }
2044
2045 DeleteDC(dc);
2046 }
2047
2048 if (flags & LR_COPYDELETEORG)
2049 {
2050 DeleteObject(hnd);
2051 }
2052 }
2053 HeapFree(GetProcessHeap(), 0, bi);
2054 return res;
2055 }
2056 case IMAGE_ICON:
2057 return CURSORICON_ExtCopy(hnd,type, desiredx, desiredy, flags);
2058 case IMAGE_CURSOR:
2059 /* Should call CURSORICON_ExtCopy but more testing
2060 * needs to be done before we change this
2061 */
2062 if (flags) FIXME("Flags are ignored\n");
2063 return CopyCursor(hnd);
2064 }
2065 return 0;
2066 }
2067
2068
2069 /******************************************************************************
2070 * LoadBitmapW (USER32.@) Loads bitmap from the executable file
2071 *
2072 * RETURNS
2073 * Success: Handle to specified bitmap
2074 * Failure: NULL
2075 */
2076 HBITMAP WINAPI LoadBitmapW(
2077 HINSTANCE instance, /* [in] Handle to application instance */
2078 LPCWSTR name) /* [in] Address of bitmap resource name */
2079 {
2080 return LoadImageW( instance, name, IMAGE_BITMAP, 0, 0, 0 );
2081 }
2082
2083 /**********************************************************************
2084 * LoadBitmapA (USER32.@)
2085 *
2086 * See LoadBitmapW.
2087 */
2088 HBITMAP WINAPI LoadBitmapA( HINSTANCE instance, LPCSTR name )
2089 {
2090 return LoadImageA( instance, name, IMAGE_BITMAP, 0, 0, 0 );
2091 }
2092
2093 HCURSOR
2094 CursorIconToCursor(HICON hIcon,
2095 BOOL SemiTransparent)
2096 {
2097 UNIMPLEMENTED;
2098 return 0;
2099 }
2100
2101 /*
2102 * @implemented
2103 */
2104 BOOL
2105 WINAPI
2106 SetCursorPos(int X,
2107 int Y)
2108 {
2109 return NtUserSetCursorPos(X,Y);
2110 }
2111
2112 /*
2113 * @implemented
2114 */
2115 BOOL
2116 WINAPI
2117 GetCursorPos(LPPOINT lpPoint)
2118 {
2119 BOOL res;
2120 /* Windows doesn't check if lpPoint == NULL, we do */
2121 if(!lpPoint)
2122 {
2123 SetLastError(ERROR_INVALID_PARAMETER);
2124 return FALSE;
2125 }
2126
2127 res = NtUserGetCursorPos(lpPoint);
2128
2129 return res;
2130 }
2131
2132 /* INTERNAL ******************************************************************/
2133
2134 /* This callback routine is called directly after switching to gui mode */
2135 NTSTATUS
2136 WINAPI
2137 User32SetupDefaultCursors(PVOID Arguments,
2138 ULONG ArgumentLength)
2139 {
2140 BOOL *DefaultCursor = (BOOL*)Arguments;
2141 LRESULT Result = TRUE;
2142
2143 if(*DefaultCursor)
2144 {
2145 /* set default cursor */
2146 SetCursor(LoadCursorW(0, (LPCWSTR)IDC_ARROW));
2147 }
2148 else
2149 {
2150 /* FIXME load system cursor scheme */
2151 SetCursor(0);
2152 SetCursor(LoadCursorW(0, (LPCWSTR)IDC_ARROW));
2153 }
2154
2155 return(ZwCallbackReturn(&Result, sizeof(LRESULT), STATUS_SUCCESS));
2156 }
2157
2158 BOOL get_icon_size(HICON hIcon, SIZE *size)
2159 {
2160 ICONINFO info;
2161 BITMAP bitmap;
2162
2163 if (!GetIconInfo(hIcon, &info)) return FALSE;
2164 if (!GetObject(info.hbmMask, sizeof(bitmap), &bitmap)) return FALSE;
2165
2166 size->cx = bitmap.bmWidth;
2167 size->cy = bitmap.bmHeight;
2168
2169 /* Black and white icons store both the XOR and AND bitmap in hbmMask */
2170 if (!info.hbmColor)
2171 {
2172 size->cy /= 2;
2173 }
2174
2175 return TRUE;
2176 }