rsaenh: Simplify store_key_container_permissions.
[wine] / dlls / user32 / 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 "config.h"
26 #include "wine/port.h"
27
28 #include <stdarg.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "winerror.h"
36 #include "winnls.h"
37 #include "wine/exception.h"
38 #include "wine/server.h"
39 #include "controls.h"
40 #include "user_private.h"
41 #include "wine/debug.h"
42
43 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
44 WINE_DECLARE_DEBUG_CHANNEL(icon);
45 WINE_DECLARE_DEBUG_CHANNEL(resource);
46
47 #include "pshpack1.h"
48
49 typedef struct {
50     BYTE bWidth;
51     BYTE bHeight;
52     BYTE bColorCount;
53     BYTE bReserved;
54     WORD xHotspot;
55     WORD yHotspot;
56     DWORD dwDIBSize;
57     DWORD dwDIBOffset;
58 } CURSORICONFILEDIRENTRY;
59
60 typedef struct
61 {
62     WORD                idReserved;
63     WORD                idType;
64     WORD                idCount;
65     CURSORICONFILEDIRENTRY  idEntries[1];
66 } CURSORICONFILEDIR;
67
68 #include "poppack.h"
69
70 static RECT CURSOR_ClipRect;       /* Cursor clipping rect */
71
72 static HDC screen_dc;
73
74 static const WCHAR DISPLAYW[] = {'D','I','S','P','L','A','Y',0};
75
76
77 /**********************************************************************
78  * ICONCACHE for cursors/icons loaded with LR_SHARED.
79  *
80  * FIXME: This should not be allocated on the system heap, but on a
81  *        subsystem-global heap (i.e. one for all Win16 processes,
82  *        and one for each Win32 process).
83  */
84 typedef struct tagICONCACHE
85 {
86     struct tagICONCACHE *next;
87
88     HMODULE              hModule;
89     HRSRC                hRsrc;
90     HRSRC                hGroupRsrc;
91     HICON                hIcon;
92
93     INT                  count;
94
95 } ICONCACHE;
96
97 static ICONCACHE *IconAnchor = NULL;
98
99 static CRITICAL_SECTION IconCrst;
100 static CRITICAL_SECTION_DEBUG critsect_debug =
101 {
102     0, 0, &IconCrst,
103     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
104       0, 0, { (DWORD_PTR)(__FILE__ ": IconCrst") }
105 };
106 static CRITICAL_SECTION IconCrst = { &critsect_debug, -1, 0, 0, 0, 0 };
107
108
109 /**********************************************************************
110  * User objects management
111  */
112
113 struct cursoricon_object
114 {
115     struct user_object obj;      /* object header */
116     ULONG_PTR          param;    /* opaque param used by 16-bit code */
117     HBITMAP            color;    /* color bitmap */
118     HBITMAP            alpha;    /* pre-multiplied alpha bitmap for 32-bpp icons */
119     HBITMAP            mask;     /* mask bitmap (followed by color for 1-bpp icons) */
120     BOOL               is_icon;  /* whether icon or cursor */
121     UINT               width;
122     UINT               height;
123     POINT              hotspot;
124 };
125
126 static HICON alloc_icon_handle(void)
127 {
128     struct cursoricon_object *obj = HeapAlloc( GetProcessHeap(), 0, sizeof(*obj) );
129     if (!obj) return 0;
130     obj->param = 0;
131     obj->color = 0;
132     obj->alpha = 0;
133     obj->mask  = 0;
134     return alloc_user_handle( &obj->obj, USER_ICON );
135 }
136
137 static struct cursoricon_object *get_icon_ptr( HICON handle )
138 {
139     struct cursoricon_object *obj = get_user_handle_ptr( handle, USER_ICON );
140     if (obj == OBJ_OTHER_PROCESS)
141     {
142         WARN( "icon handle %p from other process\n", handle );
143         obj = NULL;
144     }
145     return obj;
146 }
147
148 static void release_icon_ptr( HICON handle, struct cursoricon_object *ptr )
149 {
150     release_user_handle_ptr( ptr );
151 }
152
153 static BOOL free_icon_handle( HICON handle )
154 {
155     struct cursoricon_object *obj = free_user_handle( handle, USER_ICON );
156
157     if (obj == OBJ_OTHER_PROCESS) WARN( "icon handle %p from other process\n", handle );
158     else if (obj)
159     {
160         ULONG_PTR param = obj->param;
161         if (obj->color) DeleteObject( obj->color );
162         if (obj->alpha) DeleteObject( obj->alpha );
163         DeleteObject( obj->mask );
164         HeapFree( GetProcessHeap(), 0, obj );
165         if (wow_handlers.free_icon_param && param) wow_handlers.free_icon_param( param );
166         USER_Driver->pDestroyCursorIcon( handle );
167         return TRUE;
168     }
169     return FALSE;
170 }
171
172 ULONG_PTR get_icon_param( HICON handle )
173 {
174     ULONG_PTR ret = 0;
175     struct cursoricon_object *obj = get_user_handle_ptr( handle, USER_ICON );
176
177     if (obj == OBJ_OTHER_PROCESS) WARN( "icon handle %p from other process\n", handle );
178     else if (obj)
179     {
180         ret = obj->param;
181         release_user_handle_ptr( obj );
182     }
183     return ret;
184 }
185
186 ULONG_PTR set_icon_param( HICON handle, ULONG_PTR param )
187 {
188     ULONG_PTR ret = 0;
189     struct cursoricon_object *obj = get_user_handle_ptr( handle, USER_ICON );
190
191     if (obj == OBJ_OTHER_PROCESS) WARN( "icon handle %p from other process\n", handle );
192     else if (obj)
193     {
194         ret = obj->param;
195         obj->param = param;
196         release_user_handle_ptr( obj );
197     }
198     return ret;
199 }
200
201
202 /***********************************************************************
203  *             map_fileW
204  *
205  * Helper function to map a file to memory:
206  *  name                        -       file name
207  *  [RETURN] ptr                -       pointer to mapped file
208  *  [RETURN] filesize           -       pointer size of file to be stored if not NULL
209  */
210 static void *map_fileW( LPCWSTR name, LPDWORD filesize )
211 {
212     HANDLE hFile, hMapping;
213     LPVOID ptr = NULL;
214
215     hFile = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ, NULL,
216                          OPEN_EXISTING, FILE_FLAG_RANDOM_ACCESS, 0 );
217     if (hFile != INVALID_HANDLE_VALUE)
218     {
219         hMapping = CreateFileMappingW( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
220         if (hMapping)
221         {
222             ptr = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
223             CloseHandle( hMapping );
224             if (filesize)
225                 *filesize = GetFileSize( hFile, NULL );
226         }
227         CloseHandle( hFile );
228     }
229     return ptr;
230 }
231
232
233 /***********************************************************************
234  *          get_dib_width_bytes
235  *
236  * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
237  */
238 static int get_dib_width_bytes( int width, int depth )
239 {
240     int words;
241
242     switch(depth)
243     {
244     case 1:  words = (width + 31) / 32; break;
245     case 4:  words = (width + 7) / 8; break;
246     case 8:  words = (width + 3) / 4; break;
247     case 15:
248     case 16: words = (width + 1) / 2; break;
249     case 24: words = (width * 3 + 3)/4; break;
250     default:
251         WARN("(%d): Unsupported depth\n", depth );
252         /* fall through */
253     case 32:
254         words = width;
255     }
256     return 4 * words;
257 }
258
259
260 /***********************************************************************
261  *           bitmap_info_size
262  *
263  * Return the size of the bitmap info structure including color table.
264  */
265 static int bitmap_info_size( const BITMAPINFO * info, WORD coloruse )
266 {
267     unsigned int colors, size, masks = 0;
268
269     if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
270     {
271         const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)info;
272         colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
273         return sizeof(BITMAPCOREHEADER) + colors *
274              ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
275     }
276     else  /* assume BITMAPINFOHEADER */
277     {
278         colors = info->bmiHeader.biClrUsed;
279         if (colors > 256) /* buffer overflow otherwise */
280                 colors = 256;
281         if (!colors && (info->bmiHeader.biBitCount <= 8))
282             colors = 1 << info->bmiHeader.biBitCount;
283         if (info->bmiHeader.biCompression == BI_BITFIELDS) masks = 3;
284         size = max( info->bmiHeader.biSize, sizeof(BITMAPINFOHEADER) + masks * sizeof(DWORD) );
285         return size + colors * ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
286     }
287 }
288
289
290 /***********************************************************************
291  *             copy_bitmap
292  *
293  * Helper function to duplicate a bitmap.
294  */
295 static HBITMAP copy_bitmap( HBITMAP bitmap )
296 {
297     HDC src, dst;
298     HBITMAP new_bitmap;
299     BITMAP bmp;
300
301     if (!bitmap) return 0;
302     if (!GetObjectW( bitmap, sizeof(bmp), &bmp )) return 0;
303
304     src = CreateCompatibleDC( 0 );
305     dst = CreateCompatibleDC( 0 );
306     SelectObject( src, bitmap );
307     new_bitmap = CreateCompatibleBitmap( src, bmp.bmWidth, bmp.bmHeight );
308     SelectObject( dst, new_bitmap );
309     BitBlt( dst, 0, 0, bmp.bmWidth, bmp.bmHeight, src, 0, 0, SRCCOPY );
310     DeleteDC( dst );
311     DeleteDC( src );
312     return new_bitmap;
313 }
314
315
316 /***********************************************************************
317  *          is_dib_monochrome
318  *
319  * Returns whether a DIB can be converted to a monochrome DDB.
320  *
321  * A DIB can be converted if its color table contains only black and
322  * white. Black must be the first color in the color table.
323  *
324  * Note : If the first color in the color table is white followed by
325  *        black, we can't convert it to a monochrome DDB with
326  *        SetDIBits, because black and white would be inverted.
327  */
328 static BOOL is_dib_monochrome( const BITMAPINFO* info )
329 {
330     if (info->bmiHeader.biBitCount != 1) return FALSE;
331
332     if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
333     {
334         const RGBTRIPLE *rgb = ((const BITMAPCOREINFO*)info)->bmciColors;
335
336         /* Check if the first color is black */
337         if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
338         {
339             rgb++;
340
341             /* Check if the second color is white */
342             return ((rgb->rgbtRed == 0xff) && (rgb->rgbtGreen == 0xff)
343                  && (rgb->rgbtBlue == 0xff));
344         }
345         else return FALSE;
346     }
347     else  /* assume BITMAPINFOHEADER */
348     {
349         const RGBQUAD *rgb = info->bmiColors;
350
351         /* Check if the first color is black */
352         if ((rgb->rgbRed == 0) && (rgb->rgbGreen == 0) &&
353             (rgb->rgbBlue == 0) && (rgb->rgbReserved == 0))
354         {
355             rgb++;
356
357             /* Check if the second color is white */
358             return ((rgb->rgbRed == 0xff) && (rgb->rgbGreen == 0xff)
359                  && (rgb->rgbBlue == 0xff) && (rgb->rgbReserved == 0));
360         }
361         else return FALSE;
362     }
363 }
364
365 /***********************************************************************
366  *           DIB_GetBitmapInfo
367  *
368  * Get the info from a bitmap header.
369  * Return 1 for INFOHEADER, 0 for COREHEADER,
370  */
371 static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
372                               LONG *height, WORD *bpp, DWORD *compr )
373 {
374     if (header->biSize == sizeof(BITMAPCOREHEADER))
375     {
376         const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)header;
377         *width  = core->bcWidth;
378         *height = core->bcHeight;
379         *bpp    = core->bcBitCount;
380         *compr  = 0;
381         return 0;
382     }
383     else if (header->biSize >= sizeof(BITMAPINFOHEADER))
384     {
385         *width  = header->biWidth;
386         *height = header->biHeight;
387         *bpp    = header->biBitCount;
388         *compr  = header->biCompression;
389         return 1;
390     }
391     ERR("(%d): unknown/wrong size for header\n", header->biSize );
392     return -1;
393 }
394
395 /**********************************************************************
396  *          CURSORICON_FindSharedIcon
397  */
398 static HICON CURSORICON_FindSharedIcon( HMODULE hModule, HRSRC hRsrc )
399 {
400     HICON hIcon = 0;
401     ICONCACHE *ptr;
402
403     EnterCriticalSection( &IconCrst );
404
405     for ( ptr = IconAnchor; ptr; ptr = ptr->next )
406         if ( ptr->hModule == hModule && ptr->hRsrc == hRsrc )
407         {
408             ptr->count++;
409             hIcon = ptr->hIcon;
410             break;
411         }
412
413     LeaveCriticalSection( &IconCrst );
414
415     return hIcon;
416 }
417
418 /*************************************************************************
419  * CURSORICON_FindCache
420  *
421  * Given a handle, find the corresponding cache element
422  *
423  * PARAMS
424  *      Handle     [I] handle to an Image
425  *
426  * RETURNS
427  *     Success: The cache entry
428  *     Failure: NULL
429  *
430  */
431 static ICONCACHE* CURSORICON_FindCache(HICON hIcon)
432 {
433     ICONCACHE *ptr;
434     ICONCACHE *pRet=NULL;
435     BOOL IsFound = FALSE;
436
437     EnterCriticalSection( &IconCrst );
438
439     for (ptr = IconAnchor; ptr != NULL && !IsFound; ptr = ptr->next)
440     {
441         if ( hIcon == ptr->hIcon )
442         {
443             IsFound = TRUE;
444             pRet = ptr;
445         }
446     }
447
448     LeaveCriticalSection( &IconCrst );
449
450     return pRet;
451 }
452
453 /**********************************************************************
454  *          CURSORICON_AddSharedIcon
455  */
456 static void CURSORICON_AddSharedIcon( HMODULE hModule, HRSRC hRsrc, HRSRC hGroupRsrc, HICON hIcon )
457 {
458     ICONCACHE *ptr = HeapAlloc( GetProcessHeap(), 0, sizeof(ICONCACHE) );
459     if ( !ptr ) return;
460
461     ptr->hModule = hModule;
462     ptr->hRsrc   = hRsrc;
463     ptr->hIcon  = hIcon;
464     ptr->hGroupRsrc = hGroupRsrc;
465     ptr->count   = 1;
466
467     EnterCriticalSection( &IconCrst );
468     ptr->next    = IconAnchor;
469     IconAnchor   = ptr;
470     LeaveCriticalSection( &IconCrst );
471 }
472
473 /**********************************************************************
474  *          CURSORICON_DelSharedIcon
475  */
476 static INT CURSORICON_DelSharedIcon( HICON hIcon )
477 {
478     INT count = -1;
479     ICONCACHE *ptr;
480
481     EnterCriticalSection( &IconCrst );
482
483     for ( ptr = IconAnchor; ptr; ptr = ptr->next )
484         if ( ptr->hIcon == hIcon )
485         {
486             if ( ptr->count > 0 ) ptr->count--;
487             count = ptr->count;
488             break;
489         }
490
491     LeaveCriticalSection( &IconCrst );
492
493     return count;
494 }
495
496 /**********************************************************************
497  *              get_icon_size
498  */
499 BOOL get_icon_size( HICON handle, SIZE *size )
500 {
501     struct cursoricon_object *info;
502
503     if (!(info = get_icon_ptr( handle ))) return FALSE;
504     size->cx = info->width;
505     size->cy = info->height;
506     release_icon_ptr( handle, info );
507     return TRUE;
508 }
509
510 /*
511  *  The following macro functions account for the irregularities of
512  *   accessing cursor and icon resources in files and resource entries.
513  */
514 typedef BOOL (*fnGetCIEntry)( LPVOID dir, int n,
515                               int *width, int *height, int *bits );
516
517 /**********************************************************************
518  *          CURSORICON_FindBestIcon
519  *
520  * Find the icon closest to the requested size and bit depth.
521  */
522 static int CURSORICON_FindBestIcon( LPVOID dir, fnGetCIEntry get_entry,
523                                     int width, int height, int depth )
524 {
525     int i, cx, cy, bits, bestEntry = -1;
526     UINT iTotalDiff, iXDiff=0, iYDiff=0, iColorDiff;
527     UINT iTempXDiff, iTempYDiff, iTempColorDiff;
528
529     /* Find Best Fit */
530     iTotalDiff = 0xFFFFFFFF;
531     iColorDiff = 0xFFFFFFFF;
532     for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
533     {
534         iTempXDiff = abs(width - cx);
535         iTempYDiff = abs(height - cy);
536
537         if(iTotalDiff > (iTempXDiff + iTempYDiff))
538         {
539             iXDiff = iTempXDiff;
540             iYDiff = iTempYDiff;
541             iTotalDiff = iXDiff + iYDiff;
542         }
543     }
544
545     /* Find Best Colors for Best Fit */
546     for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
547     {
548         if(abs(width - cx) == iXDiff && abs(height - cy) == iYDiff)
549         {
550             iTempColorDiff = abs(depth - bits);
551             if(iColorDiff > iTempColorDiff)
552             {
553                 bestEntry = i;
554                 iColorDiff = iTempColorDiff;
555             }
556         }
557     }
558
559     return bestEntry;
560 }
561
562 static BOOL CURSORICON_GetResIconEntry( LPVOID dir, int n,
563                                         int *width, int *height, int *bits )
564 {
565     CURSORICONDIR *resdir = dir;
566     ICONRESDIR *icon;
567
568     if ( resdir->idCount <= n )
569         return FALSE;
570     icon = &resdir->idEntries[n].ResInfo.icon;
571     *width = icon->bWidth;
572     *height = icon->bHeight;
573     *bits = resdir->idEntries[n].wBitCount;
574     return TRUE;
575 }
576
577 /**********************************************************************
578  *          CURSORICON_FindBestCursor
579  *
580  * Find the cursor closest to the requested size.
581  *
582  * FIXME: parameter 'color' ignored.
583  */
584 static int CURSORICON_FindBestCursor( LPVOID dir, fnGetCIEntry get_entry,
585                                       int width, int height, int depth )
586 {
587     int i, maxwidth, maxheight, cx, cy, bits, bestEntry = -1;
588
589     /* Double height to account for AND and XOR masks */
590
591     height *= 2;
592
593     /* First find the largest one smaller than or equal to the requested size*/
594
595     maxwidth = maxheight = 0;
596     for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
597     {
598         if ((cx <= width) && (cy <= height) &&
599             (cx > maxwidth) && (cy > maxheight))
600         {
601             bestEntry = i;
602             maxwidth  = cx;
603             maxheight = cy;
604         }
605     }
606     if (bestEntry != -1) return bestEntry;
607
608     /* Now find the smallest one larger than the requested size */
609
610     maxwidth = maxheight = 255;
611     for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
612     {
613         if (((cx < maxwidth) && (cy < maxheight)) || (bestEntry == -1))
614         {
615             bestEntry = i;
616             maxwidth  = cx;
617             maxheight = cy;
618         }
619     }
620
621     return bestEntry;
622 }
623
624 static BOOL CURSORICON_GetResCursorEntry( LPVOID dir, int n,
625                                           int *width, int *height, int *bits )
626 {
627     CURSORICONDIR *resdir = dir;
628     CURSORDIR *cursor;
629
630     if ( resdir->idCount <= n )
631         return FALSE;
632     cursor = &resdir->idEntries[n].ResInfo.cursor;
633     *width = cursor->wWidth;
634     *height = cursor->wHeight;
635     *bits = resdir->idEntries[n].wBitCount;
636     return TRUE;
637 }
638
639 static CURSORICONDIRENTRY *CURSORICON_FindBestIconRes( CURSORICONDIR * dir,
640                                       int width, int height, int depth )
641 {
642     int n;
643
644     n = CURSORICON_FindBestIcon( dir, CURSORICON_GetResIconEntry,
645                                  width, height, depth );
646     if ( n < 0 )
647         return NULL;
648     return &dir->idEntries[n];
649 }
650
651 static CURSORICONDIRENTRY *CURSORICON_FindBestCursorRes( CURSORICONDIR *dir,
652                                       int width, int height, int depth )
653 {
654     int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetResCursorEntry,
655                                    width, height, depth );
656     if ( n < 0 )
657         return NULL;
658     return &dir->idEntries[n];
659 }
660
661 static BOOL CURSORICON_GetFileEntry( LPVOID dir, int n,
662                                      int *width, int *height, int *bits )
663 {
664     CURSORICONFILEDIR *filedir = dir;
665     CURSORICONFILEDIRENTRY *entry;
666     BITMAPINFOHEADER *info;
667
668     if ( filedir->idCount <= n )
669         return FALSE;
670     entry = &filedir->idEntries[n];
671     /* FIXME: check against file size */
672     info = (BITMAPINFOHEADER *)((char *)dir + entry->dwDIBOffset);
673     *width = entry->bWidth;
674     *height = entry->bHeight;
675     *bits = info->biBitCount;
676     return TRUE;
677 }
678
679 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestCursorFile( CURSORICONFILEDIR *dir,
680                                       int width, int height, int depth )
681 {
682     int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetFileEntry,
683                                        width, height, depth );
684     if ( n < 0 )
685         return NULL;
686     return &dir->idEntries[n];
687 }
688
689 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestIconFile( CURSORICONFILEDIR *dir,
690                                       int width, int height, int depth )
691 {
692     int n = CURSORICON_FindBestIcon( dir, CURSORICON_GetFileEntry,
693                                      width, height, depth );
694     if ( n < 0 )
695         return NULL;
696     return &dir->idEntries[n];
697 }
698
699 /***********************************************************************
700  *          bmi_has_alpha
701  */
702 static BOOL bmi_has_alpha( const BITMAPINFO *info, const void *bits )
703 {
704     int i;
705     BOOL has_alpha = FALSE;
706     const unsigned char *ptr = bits;
707
708     if (info->bmiHeader.biBitCount != 32) return FALSE;
709     for (i = 0; i < info->bmiHeader.biWidth * abs(info->bmiHeader.biHeight); i++, ptr += 4)
710         if ((has_alpha = (ptr[3] != 0))) break;
711     return has_alpha;
712 }
713
714 /***********************************************************************
715  *          create_alpha_bitmap
716  *
717  * Create the alpha bitmap for a 32-bpp icon that has an alpha channel.
718  */
719 static HBITMAP create_alpha_bitmap( HBITMAP color, HBITMAP mask,
720                                     const BITMAPINFO *src_info, const void *color_bits )
721 {
722     HBITMAP alpha = 0;
723     BITMAPINFO *info = NULL;
724     BITMAP bm;
725     HDC hdc;
726     void *bits;
727     unsigned char *ptr;
728     int i;
729
730     if (!GetObjectW( color, sizeof(bm), &bm )) return 0;
731     if (bm.bmBitsPixel != 32) return 0;
732
733     if (!(hdc = CreateCompatibleDC( 0 ))) return 0;
734     if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto done;
735     info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
736     info->bmiHeader.biWidth = bm.bmWidth;
737     info->bmiHeader.biHeight = -bm.bmHeight;
738     info->bmiHeader.biPlanes = 1;
739     info->bmiHeader.biBitCount = 32;
740     info->bmiHeader.biCompression = BI_RGB;
741     info->bmiHeader.biSizeImage = bm.bmWidth * bm.bmHeight * 4;
742     info->bmiHeader.biXPelsPerMeter = 0;
743     info->bmiHeader.biYPelsPerMeter = 0;
744     info->bmiHeader.biClrUsed = 0;
745     info->bmiHeader.biClrImportant = 0;
746     if (!(alpha = CreateDIBSection( hdc, info, DIB_RGB_COLORS, &bits, NULL, 0 ))) goto done;
747
748     if (src_info)
749     {
750         SelectObject( hdc, alpha );
751         StretchDIBits( hdc, 0, 0, bm.bmWidth, bm.bmHeight,
752                        0, 0, src_info->bmiHeader.biWidth, src_info->bmiHeader.biHeight,
753                        color_bits, src_info, DIB_RGB_COLORS, SRCCOPY );
754
755     }
756     else
757     {
758         GetDIBits( hdc, color, 0, bm.bmHeight, bits, info, DIB_RGB_COLORS );
759         if (!bmi_has_alpha( info, bits ))
760         {
761             DeleteObject( alpha );
762             alpha = 0;
763             goto done;
764         }
765     }
766
767     /* pre-multiply by alpha */
768     for (i = 0, ptr = bits; i < bm.bmWidth * bm.bmHeight; i++, ptr += 4)
769     {
770         unsigned int alpha = ptr[3];
771         ptr[0] = ptr[0] * alpha / 255;
772         ptr[1] = ptr[1] * alpha / 255;
773         ptr[2] = ptr[2] * alpha / 255;
774     }
775
776 done:
777     DeleteDC( hdc );
778     HeapFree( GetProcessHeap(), 0, info );
779     return alpha;
780 }
781
782
783 /***********************************************************************
784  *          create_icon_bitmaps
785  *
786  * Create the color, mask and alpha bitmaps from the DIB info.
787  */
788 static BOOL create_icon_bitmaps( const BITMAPINFO *bmi, int width, int height,
789                                  HBITMAP *color, HBITMAP *mask, HBITMAP *alpha )
790 {
791     BOOL monochrome = is_dib_monochrome( bmi );
792     unsigned int size = bitmap_info_size( bmi, DIB_RGB_COLORS );
793     BITMAPINFO *info;
794     void *color_bits, *mask_bits;
795     BOOL ret = FALSE;
796     HDC hdc = 0;
797
798     if (!(info = HeapAlloc( GetProcessHeap(), 0, max( size, FIELD_OFFSET( BITMAPINFO, bmiColors[2] )))))
799         return FALSE;
800     if (!(hdc = CreateCompatibleDC( 0 ))) goto done;
801
802     memcpy( info, bmi, size );
803     info->bmiHeader.biHeight /= 2;
804
805     color_bits = (char *)bmi + size;
806     mask_bits = (char *)color_bits +
807         get_dib_width_bytes( bmi->bmiHeader.biWidth,
808                              bmi->bmiHeader.biBitCount ) * abs(info->bmiHeader.biHeight);
809
810     *alpha = 0;
811     if (monochrome)
812     {
813         if (!(*mask = CreateBitmap( width, height * 2, 1, 1, NULL ))) goto done;
814         *color = 0;
815
816         /* copy color data into second half of mask bitmap */
817         SelectObject( hdc, *mask );
818         StretchDIBits( hdc, 0, height, width, height,
819                        0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
820                        color_bits, info, DIB_RGB_COLORS, SRCCOPY );
821     }
822     else
823     {
824         if (!(*mask = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
825         if (!(*color = CreateBitmap( width, height, GetDeviceCaps( screen_dc, PLANES ),
826                                      GetDeviceCaps( screen_dc, BITSPIXEL ), NULL )))
827         {
828             DeleteObject( *mask );
829             goto done;
830         }
831         SelectObject( hdc, *color );
832         StretchDIBits( hdc, 0, 0, width, height,
833                        0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
834                        color_bits, info, DIB_RGB_COLORS, SRCCOPY );
835
836         if (bmi_has_alpha( info, color_bits ))
837             *alpha = create_alpha_bitmap( *color, *mask, info, color_bits );
838
839         /* convert info to monochrome to copy the mask */
840         info->bmiHeader.biBitCount = 1;
841         if (info->bmiHeader.biSize != sizeof(BITMAPCOREHEADER))
842         {
843             RGBQUAD *rgb = info->bmiColors;
844
845             info->bmiHeader.biClrUsed = info->bmiHeader.biClrImportant = 2;
846             rgb[0].rgbBlue = rgb[0].rgbGreen = rgb[0].rgbRed = 0x00;
847             rgb[1].rgbBlue = rgb[1].rgbGreen = rgb[1].rgbRed = 0xff;
848             rgb[0].rgbReserved = rgb[1].rgbReserved = 0;
849         }
850         else
851         {
852             RGBTRIPLE *rgb = (RGBTRIPLE *)(((BITMAPCOREHEADER *)info) + 1);
853
854             rgb[0].rgbtBlue = rgb[0].rgbtGreen = rgb[0].rgbtRed = 0x00;
855             rgb[1].rgbtBlue = rgb[1].rgbtGreen = rgb[1].rgbtRed = 0xff;
856         }
857     }
858
859     SelectObject( hdc, *mask );
860     StretchDIBits( hdc, 0, 0, width, height,
861                    0, 0, info->bmiHeader.biWidth, info->bmiHeader.biHeight,
862                    mask_bits, info, DIB_RGB_COLORS, SRCCOPY );
863     ret = TRUE;
864
865 done:
866     DeleteDC( hdc );
867     HeapFree( GetProcessHeap(), 0, info );
868     return ret;
869 }
870
871 static HICON CURSORICON_CreateIconFromBMI( BITMAPINFO *bmi,
872                                            POINT hotspot, BOOL bIcon,
873                                            DWORD dwVersion,
874                                            INT width, INT height,
875                                            UINT cFlag )
876 {
877     HICON hObj;
878     HBITMAP color = 0, mask = 0, alpha = 0;
879     BOOL do_stretch;
880
881     if (dwVersion == 0x00020000)
882     {
883         FIXME_(cursor)("\t2.xx resources are not supported\n");
884         return 0;
885     }
886
887     /* Check bitmap header */
888
889     if ( (bmi->bmiHeader.biSize != sizeof(BITMAPCOREHEADER)) &&
890          (bmi->bmiHeader.biSize != sizeof(BITMAPINFOHEADER)  ||
891           bmi->bmiHeader.biCompression != BI_RGB) )
892     {
893           WARN_(cursor)("\tinvalid resource bitmap header.\n");
894           return 0;
895     }
896
897     if (!width) width = bmi->bmiHeader.biWidth;
898     if (!height) height = bmi->bmiHeader.biHeight/2;
899     do_stretch = (bmi->bmiHeader.biHeight/2 != height) ||
900                  (bmi->bmiHeader.biWidth != width);
901
902     /* Scale the hotspot */
903     if (bIcon)
904     {
905         hotspot.x = width / 2;
906         hotspot.y = height / 2;
907     }
908     else if (do_stretch)
909     {
910         hotspot.x = (hotspot.x * width) / bmi->bmiHeader.biWidth;
911         hotspot.y = (hotspot.y * height) / (bmi->bmiHeader.biHeight / 2);
912     }
913
914     if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
915     if (!screen_dc) return 0;
916
917     if (!create_icon_bitmaps( bmi, width, height, &color, &mask, &alpha )) return 0;
918
919     hObj = alloc_icon_handle();
920     if (hObj)
921     {
922         struct cursoricon_object *info = get_icon_ptr( hObj );
923
924         info->color   = color;
925         info->mask    = mask;
926         info->alpha   = alpha;
927         info->is_icon = bIcon;
928         info->hotspot = hotspot;
929         info->width   = width;
930         info->height  = height;
931         release_icon_ptr( hObj, info );
932         USER_Driver->pCreateCursorIcon( hObj );
933     }
934     else
935     {
936         DeleteObject( color );
937         DeleteObject( alpha );
938         DeleteObject( mask );
939     }
940     return hObj;
941 }
942
943
944 /**********************************************************************
945  *          .ANI cursor support
946  */
947 #define RIFF_FOURCC( c0, c1, c2, c3 ) \
948         ( (DWORD)(BYTE)(c0) | ( (DWORD)(BYTE)(c1) << 8 ) | \
949         ( (DWORD)(BYTE)(c2) << 16 ) | ( (DWORD)(BYTE)(c3) << 24 ) )
950
951 #define ANI_RIFF_ID RIFF_FOURCC('R', 'I', 'F', 'F')
952 #define ANI_LIST_ID RIFF_FOURCC('L', 'I', 'S', 'T')
953 #define ANI_ACON_ID RIFF_FOURCC('A', 'C', 'O', 'N')
954 #define ANI_anih_ID RIFF_FOURCC('a', 'n', 'i', 'h')
955 #define ANI_seq__ID RIFF_FOURCC('s', 'e', 'q', ' ')
956 #define ANI_fram_ID RIFF_FOURCC('f', 'r', 'a', 'm')
957
958 #define ANI_FLAG_ICON       0x1
959 #define ANI_FLAG_SEQUENCE   0x2
960
961 typedef struct {
962     DWORD header_size;
963     DWORD num_frames;
964     DWORD num_steps;
965     DWORD width;
966     DWORD height;
967     DWORD bpp;
968     DWORD num_planes;
969     DWORD display_rate;
970     DWORD flags;
971 } ani_header;
972
973 typedef struct {
974     DWORD           data_size;
975     const unsigned char   *data;
976 } riff_chunk_t;
977
978 static void dump_ani_header( const ani_header *header )
979 {
980     TRACE("     header size: %d\n", header->header_size);
981     TRACE("          frames: %d\n", header->num_frames);
982     TRACE("           steps: %d\n", header->num_steps);
983     TRACE("           width: %d\n", header->width);
984     TRACE("          height: %d\n", header->height);
985     TRACE("             bpp: %d\n", header->bpp);
986     TRACE("          planes: %d\n", header->num_planes);
987     TRACE("    display rate: %d\n", header->display_rate);
988     TRACE("           flags: 0x%08x\n", header->flags);
989 }
990
991
992 /*
993  * RIFF:
994  * DWORD "RIFF"
995  * DWORD size
996  * DWORD riff_id
997  * BYTE[] data
998  *
999  * LIST:
1000  * DWORD "LIST"
1001  * DWORD size
1002  * DWORD list_id
1003  * BYTE[] data
1004  *
1005  * CHUNK:
1006  * DWORD chunk_id
1007  * DWORD size
1008  * BYTE[] data
1009  */
1010 static void riff_find_chunk( DWORD chunk_id, DWORD chunk_type, const riff_chunk_t *parent_chunk, riff_chunk_t *chunk )
1011 {
1012     const unsigned char *ptr = parent_chunk->data;
1013     const unsigned char *end = parent_chunk->data + (parent_chunk->data_size - (2 * sizeof(DWORD)));
1014
1015     if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) end -= sizeof(DWORD);
1016
1017     while (ptr < end)
1018     {
1019         if ((!chunk_type && *(const DWORD *)ptr == chunk_id )
1020                 || (chunk_type && *(const DWORD *)ptr == chunk_type && *((const DWORD *)ptr + 2) == chunk_id ))
1021         {
1022             ptr += sizeof(DWORD);
1023             chunk->data_size = (*(const DWORD *)ptr + 1) & ~1;
1024             ptr += sizeof(DWORD);
1025             if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) ptr += sizeof(DWORD);
1026             chunk->data = ptr;
1027
1028             return;
1029         }
1030
1031         ptr += sizeof(DWORD);
1032         ptr += (*(const DWORD *)ptr + 1) & ~1;
1033         ptr += sizeof(DWORD);
1034     }
1035 }
1036
1037
1038 /*
1039  * .ANI layout:
1040  *
1041  * RIFF:'ACON'                  RIFF chunk
1042  *     |- CHUNK:'anih'          Header
1043  *     |- CHUNK:'seq '          Sequence information (optional)
1044  *     \- LIST:'fram'           Frame list
1045  *            |- CHUNK:icon     Cursor frames
1046  *            |- CHUNK:icon
1047  *            |- ...
1048  *            \- CHUNK:icon
1049  */
1050 static HCURSOR CURSORICON_CreateIconFromANI( const LPBYTE bits, DWORD bits_size,
1051     INT width, INT height, INT depth )
1052 {
1053     HCURSOR cursor;
1054     ani_header header = {0};
1055     LPBYTE frame_bits = 0;
1056     POINT hotspot;
1057     CURSORICONFILEDIRENTRY *entry;
1058
1059     riff_chunk_t root_chunk = { bits_size, bits };
1060     riff_chunk_t ACON_chunk = {0};
1061     riff_chunk_t anih_chunk = {0};
1062     riff_chunk_t fram_chunk = {0};
1063     const unsigned char *icon_data;
1064
1065     TRACE("bits %p, bits_size %d\n", bits, bits_size);
1066
1067     if (!bits) return 0;
1068
1069     riff_find_chunk( ANI_ACON_ID, ANI_RIFF_ID, &root_chunk, &ACON_chunk );
1070     if (!ACON_chunk.data)
1071     {
1072         ERR("Failed to get root chunk.\n");
1073         return 0;
1074     }
1075
1076     riff_find_chunk( ANI_anih_ID, 0, &ACON_chunk, &anih_chunk );
1077     if (!anih_chunk.data)
1078     {
1079         ERR("Failed to get 'anih' chunk.\n");
1080         return 0;
1081     }
1082     memcpy( &header, anih_chunk.data, sizeof(header) );
1083     dump_ani_header( &header );
1084
1085     riff_find_chunk( ANI_fram_ID, ANI_LIST_ID, &ACON_chunk, &fram_chunk );
1086     if (!fram_chunk.data)
1087     {
1088         ERR("Failed to get icon list.\n");
1089         return 0;
1090     }
1091
1092     /* FIXME: For now, just load the first frame.  Before we can load all the
1093      * frames, we need to write the needed code in wineserver, etc. to handle
1094      * cursors.  Once this code is written, we can extend it to support .ani
1095      * cursors and then update user32 and winex11.drv to load all frames.
1096      *
1097      * Hopefully this will at least make some games (C&C3, etc.) more playable
1098      * in the meantime.
1099      */
1100     FIXME("Loading all frames for .ani cursors not implemented.\n");
1101     icon_data = fram_chunk.data + (2 * sizeof(DWORD));
1102
1103     entry = CURSORICON_FindBestIconFile( (CURSORICONFILEDIR *) icon_data,
1104         width, height, depth );
1105
1106     frame_bits = HeapAlloc( GetProcessHeap(), 0, entry->dwDIBSize );
1107     memcpy( frame_bits, icon_data + entry->dwDIBOffset, entry->dwDIBSize );
1108
1109     if (!header.width || !header.height)
1110     {
1111         header.width = entry->bWidth;
1112         header.height = entry->bHeight;
1113     }
1114
1115     hotspot.x = entry->xHotspot;
1116     hotspot.y = entry->yHotspot;
1117
1118     cursor = CURSORICON_CreateIconFromBMI( (BITMAPINFO *) frame_bits, hotspot,
1119         FALSE, 0x00030000, header.width, header.height, 0 );
1120
1121     HeapFree( GetProcessHeap(), 0, frame_bits );
1122
1123     return cursor;
1124 }
1125
1126
1127 /**********************************************************************
1128  *              CreateIconFromResourceEx (USER32.@)
1129  *
1130  * FIXME: Convert to mono when cFlag is LR_MONOCHROME. Do something
1131  *        with cbSize parameter as well.
1132  */
1133 HICON WINAPI CreateIconFromResourceEx( LPBYTE bits, UINT cbSize,
1134                                        BOOL bIcon, DWORD dwVersion,
1135                                        INT width, INT height,
1136                                        UINT cFlag )
1137 {
1138     POINT hotspot;
1139     BITMAPINFO *bmi;
1140
1141     TRACE_(cursor)("%p (%u bytes), ver %08x, %ix%i %s %s\n",
1142                    bits, cbSize, dwVersion, width, height,
1143                    bIcon ? "icon" : "cursor", (cFlag & LR_MONOCHROME) ? "mono" : "" );
1144
1145     if (bIcon)
1146     {
1147         hotspot.x = width / 2;
1148         hotspot.y = height / 2;
1149         bmi = (BITMAPINFO *)bits;
1150     }
1151     else /* get the hotspot */
1152     {
1153         SHORT *pt = (SHORT *)bits;
1154         hotspot.x = pt[0];
1155         hotspot.y = pt[1];
1156         bmi = (BITMAPINFO *)(pt + 2);
1157     }
1158
1159     return CURSORICON_CreateIconFromBMI( bmi, hotspot, bIcon, dwVersion,
1160                                          width, height, cFlag );
1161 }
1162
1163
1164 /**********************************************************************
1165  *              CreateIconFromResource (USER32.@)
1166  */
1167 HICON WINAPI CreateIconFromResource( LPBYTE bits, UINT cbSize,
1168                                            BOOL bIcon, DWORD dwVersion)
1169 {
1170     return CreateIconFromResourceEx( bits, cbSize, bIcon, dwVersion, 0,0,0);
1171 }
1172
1173
1174 static HICON CURSORICON_LoadFromFile( LPCWSTR filename,
1175                              INT width, INT height, INT depth,
1176                              BOOL fCursor, UINT loadflags)
1177 {
1178     CURSORICONFILEDIRENTRY *entry;
1179     CURSORICONFILEDIR *dir;
1180     DWORD filesize = 0;
1181     HICON hIcon = 0;
1182     LPBYTE bits;
1183     POINT hotspot;
1184
1185     TRACE("loading %s\n", debugstr_w( filename ));
1186
1187     bits = map_fileW( filename, &filesize );
1188     if (!bits)
1189         return hIcon;
1190
1191     /* Check for .ani. */
1192     if (memcmp( bits, "RIFF", 4 ) == 0)
1193     {
1194         hIcon = CURSORICON_CreateIconFromANI( bits, filesize, width, height,
1195             depth );
1196         goto end;
1197     }
1198
1199     dir = (CURSORICONFILEDIR*) bits;
1200     if ( filesize < sizeof(*dir) )
1201         goto end;
1202
1203     if ( filesize < (sizeof(*dir) + sizeof(dir->idEntries[0])*(dir->idCount-1)) )
1204         goto end;
1205
1206     if ( fCursor )
1207         entry = CURSORICON_FindBestCursorFile( dir, width, height, depth );
1208     else
1209         entry = CURSORICON_FindBestIconFile( dir, width, height, depth );
1210
1211     if ( !entry )
1212         goto end;
1213
1214     /* check that we don't run off the end of the file */
1215     if ( entry->dwDIBOffset > filesize )
1216         goto end;
1217     if ( entry->dwDIBOffset + entry->dwDIBSize > filesize )
1218         goto end;
1219
1220     hotspot.x = entry->xHotspot;
1221     hotspot.y = entry->yHotspot;
1222     hIcon = CURSORICON_CreateIconFromBMI( (BITMAPINFO *)&bits[entry->dwDIBOffset],
1223                                           hotspot, !fCursor, 0x00030000,
1224                                           width, height, loadflags );
1225 end:
1226     TRACE("loaded %s -> %p\n", debugstr_w( filename ), hIcon );
1227     UnmapViewOfFile( bits );
1228     return hIcon;
1229 }
1230
1231 /**********************************************************************
1232  *          CURSORICON_Load
1233  *
1234  * Load a cursor or icon from resource or file.
1235  */
1236 static HICON CURSORICON_Load(HINSTANCE hInstance, LPCWSTR name,
1237                              INT width, INT height, INT depth,
1238                              BOOL fCursor, UINT loadflags)
1239 {
1240     HANDLE handle = 0;
1241     HICON hIcon = 0;
1242     HRSRC hRsrc, hGroupRsrc;
1243     CURSORICONDIR *dir;
1244     CURSORICONDIRENTRY *dirEntry;
1245     LPBYTE bits;
1246     WORD wResId;
1247     DWORD dwBytesInRes;
1248
1249     TRACE("%p, %s, %dx%d, depth %d, fCursor %d, flags 0x%04x\n",
1250           hInstance, debugstr_w(name), width, height, depth, fCursor, loadflags);
1251
1252     if ( loadflags & LR_LOADFROMFILE )    /* Load from file */
1253         return CURSORICON_LoadFromFile( name, width, height, depth, fCursor, loadflags );
1254
1255     if (!hInstance) hInstance = user32_module;  /* Load OEM cursor/icon */
1256
1257     /* don't cache 16-bit instances (FIXME: should never get 16-bit instances in the first place) */
1258     if ((ULONG_PTR)hInstance >> 16 == 0) loadflags &= ~LR_SHARED;
1259
1260     /* Get directory resource ID */
1261
1262     if (!(hRsrc = FindResourceW( hInstance, name,
1263                                  (LPWSTR)(fCursor ? RT_GROUP_CURSOR : RT_GROUP_ICON) )))
1264         return 0;
1265     hGroupRsrc = hRsrc;
1266
1267     /* Find the best entry in the directory */
1268
1269     if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
1270     if (!(dir = LockResource( handle ))) return 0;
1271     if (fCursor)
1272         dirEntry = CURSORICON_FindBestCursorRes( dir, width, height, depth );
1273     else
1274         dirEntry = CURSORICON_FindBestIconRes( dir, width, height, depth );
1275     if (!dirEntry) return 0;
1276     wResId = dirEntry->wResId;
1277     dwBytesInRes = dirEntry->dwBytesInRes;
1278     FreeResource( handle );
1279
1280     /* Load the resource */
1281
1282     if (!(hRsrc = FindResourceW(hInstance,MAKEINTRESOURCEW(wResId),
1283                                 (LPWSTR)(fCursor ? RT_CURSOR : RT_ICON) ))) return 0;
1284
1285     /* If shared icon, check whether it was already loaded */
1286     if (    (loadflags & LR_SHARED)
1287          && (hIcon = CURSORICON_FindSharedIcon( hInstance, hRsrc ) ) != 0 )
1288         return hIcon;
1289
1290     if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
1291     bits = LockResource( handle );
1292     hIcon = CreateIconFromResourceEx( bits, dwBytesInRes,
1293                                       !fCursor, 0x00030000, width, height, loadflags);
1294     FreeResource( handle );
1295
1296     /* If shared icon, add to icon cache */
1297
1298     if ( hIcon && (loadflags & LR_SHARED) )
1299         CURSORICON_AddSharedIcon( hInstance, hRsrc, hGroupRsrc, hIcon );
1300
1301     return hIcon;
1302 }
1303
1304
1305 /*************************************************************************
1306  * CURSORICON_ExtCopy
1307  *
1308  * Copies an Image from the Cache if LR_COPYFROMRESOURCE is specified
1309  *
1310  * PARAMS
1311  *      Handle     [I] handle to an Image
1312  *      nType      [I] Type of Handle (IMAGE_CURSOR | IMAGE_ICON)
1313  *      iDesiredCX [I] The Desired width of the Image
1314  *      iDesiredCY [I] The desired height of the Image
1315  *      nFlags     [I] The flags from CopyImage
1316  *
1317  * RETURNS
1318  *     Success: The new handle of the Image
1319  *
1320  * NOTES
1321  *     LR_COPYDELETEORG and LR_MONOCHROME are currently not implemented.
1322  *     LR_MONOCHROME should be implemented by CreateIconFromResourceEx.
1323  *     LR_COPYFROMRESOURCE will only work if the Image is in the Cache.
1324  *
1325  *
1326  */
1327
1328 static HICON CURSORICON_ExtCopy(HICON hIcon, UINT nType,
1329                                 INT iDesiredCX, INT iDesiredCY,
1330                                 UINT nFlags)
1331 {
1332     HICON hNew=0;
1333
1334     TRACE_(icon)("hIcon %p, nType %u, iDesiredCX %i, iDesiredCY %i, nFlags %u\n",
1335                  hIcon, nType, iDesiredCX, iDesiredCY, nFlags);
1336
1337     if(hIcon == 0)
1338     {
1339         return 0;
1340     }
1341
1342     /* Best Fit or Monochrome */
1343     if( (nFlags & LR_COPYFROMRESOURCE
1344         && (iDesiredCX > 0 || iDesiredCY > 0))
1345         || nFlags & LR_MONOCHROME)
1346     {
1347         ICONCACHE* pIconCache = CURSORICON_FindCache(hIcon);
1348
1349         /* Not Found in Cache, then do a straight copy
1350         */
1351         if(pIconCache == NULL)
1352         {
1353             hNew = CopyIcon( hIcon );
1354             if(nFlags & LR_COPYFROMRESOURCE)
1355             {
1356                 TRACE_(icon)("LR_COPYFROMRESOURCE: Failed to load from cache\n");
1357             }
1358         }
1359         else
1360         {
1361             int iTargetCY = iDesiredCY, iTargetCX = iDesiredCX;
1362             LPBYTE pBits;
1363             HANDLE hMem;
1364             HRSRC hRsrc;
1365             DWORD dwBytesInRes;
1366             WORD wResId;
1367             CURSORICONDIR *pDir;
1368             CURSORICONDIRENTRY *pDirEntry;
1369             BOOL bIsIcon = (nType == IMAGE_ICON);
1370
1371             /* Completing iDesiredCX CY for Monochrome Bitmaps if needed
1372             */
1373             if(((nFlags & LR_MONOCHROME) && !(nFlags & LR_COPYFROMRESOURCE))
1374                 || (iDesiredCX == 0 && iDesiredCY == 0))
1375             {
1376                 iDesiredCY = GetSystemMetrics(bIsIcon ?
1377                     SM_CYICON : SM_CYCURSOR);
1378                 iDesiredCX = GetSystemMetrics(bIsIcon ?
1379                     SM_CXICON : SM_CXCURSOR);
1380             }
1381
1382             /* Retrieve the CURSORICONDIRENTRY
1383             */
1384             if (!(hMem = LoadResource( pIconCache->hModule ,
1385                             pIconCache->hGroupRsrc)))
1386             {
1387                 return 0;
1388             }
1389             if (!(pDir = LockResource( hMem )))
1390             {
1391                 return 0;
1392             }
1393
1394             /* Find Best Fit
1395             */
1396             if(bIsIcon)
1397             {
1398                 pDirEntry = CURSORICON_FindBestIconRes(
1399                                 pDir, iDesiredCX, iDesiredCY, 256 );
1400             }
1401             else
1402             {
1403                 pDirEntry = CURSORICON_FindBestCursorRes(
1404                                 pDir, iDesiredCX, iDesiredCY, 1);
1405             }
1406
1407             wResId = pDirEntry->wResId;
1408             dwBytesInRes = pDirEntry->dwBytesInRes;
1409             FreeResource(hMem);
1410
1411             TRACE_(icon)("ResID %u, BytesInRes %u, Width %d, Height %d DX %d, DY %d\n",
1412                 wResId, dwBytesInRes,  pDirEntry->ResInfo.icon.bWidth,
1413                 pDirEntry->ResInfo.icon.bHeight, iDesiredCX, iDesiredCY);
1414
1415             /* Get the Best Fit
1416             */
1417             if (!(hRsrc = FindResourceW(pIconCache->hModule ,
1418                 MAKEINTRESOURCEW(wResId), (LPWSTR)(bIsIcon ? RT_ICON : RT_CURSOR))))
1419             {
1420                 return 0;
1421             }
1422             if (!(hMem = LoadResource( pIconCache->hModule , hRsrc )))
1423             {
1424                 return 0;
1425             }
1426
1427             pBits = LockResource( hMem );
1428
1429             if(nFlags & LR_DEFAULTSIZE)
1430             {
1431                 iTargetCY = GetSystemMetrics(SM_CYICON);
1432                 iTargetCX = GetSystemMetrics(SM_CXICON);
1433             }
1434
1435             /* Create a New Icon with the proper dimension
1436             */
1437             hNew = CreateIconFromResourceEx( pBits, dwBytesInRes,
1438                        bIsIcon, 0x00030000, iTargetCX, iTargetCY, nFlags);
1439             FreeResource(hMem);
1440         }
1441     }
1442     else hNew = CopyIcon( hIcon );
1443     return hNew;
1444 }
1445
1446
1447 /***********************************************************************
1448  *              CreateCursor (USER32.@)
1449  */
1450 HCURSOR WINAPI CreateCursor( HINSTANCE hInstance,
1451                                  INT xHotSpot, INT yHotSpot,
1452                                  INT nWidth, INT nHeight,
1453                                  LPCVOID lpANDbits, LPCVOID lpXORbits )
1454 {
1455     ICONINFO info;
1456     HCURSOR hCursor;
1457
1458     TRACE_(cursor)("%dx%d spot=%d,%d xor=%p and=%p\n",
1459                     nWidth, nHeight, xHotSpot, yHotSpot, lpXORbits, lpANDbits);
1460
1461     info.fIcon = FALSE;
1462     info.xHotspot = xHotSpot;
1463     info.yHotspot = yHotSpot;
1464     info.hbmMask = CreateBitmap( nWidth, nHeight, 1, 1, lpANDbits );
1465     info.hbmColor = CreateBitmap( nWidth, nHeight, 1, 1, lpXORbits );
1466     hCursor = CreateIconIndirect( &info );
1467     DeleteObject( info.hbmMask );
1468     DeleteObject( info.hbmColor );
1469     return hCursor;
1470 }
1471
1472
1473 /***********************************************************************
1474  *              CreateIcon (USER32.@)
1475  *
1476  *  Creates an icon based on the specified bitmaps. The bitmaps must be
1477  *  provided in a device dependent format and will be resized to
1478  *  (SM_CXICON,SM_CYICON) and depth converted to match the screen's color
1479  *  depth. The provided bitmaps must be top-down bitmaps.
1480  *  Although Windows does not support 15bpp(*) this API must support it
1481  *  for Winelib applications.
1482  *
1483  *  (*) Windows does not support 15bpp but it supports the 555 RGB 16bpp
1484  *      format!
1485  *
1486  * RETURNS
1487  *  Success: handle to an icon
1488  *  Failure: NULL
1489  *
1490  * FIXME: Do we need to resize the bitmaps?
1491  */
1492 HICON WINAPI CreateIcon(
1493     HINSTANCE hInstance,  /* [in] the application's hInstance */
1494     INT       nWidth,     /* [in] the width of the provided bitmaps */
1495     INT       nHeight,    /* [in] the height of the provided bitmaps */
1496     BYTE      bPlanes,    /* [in] the number of planes in the provided bitmaps */
1497     BYTE      bBitsPixel, /* [in] the number of bits per pixel of the lpXORbits bitmap */
1498     LPCVOID   lpANDbits,  /* [in] a monochrome bitmap representing the icon's mask */
1499     LPCVOID   lpXORbits)  /* [in] the icon's 'color' bitmap */
1500 {
1501     ICONINFO iinfo;
1502     HICON hIcon;
1503
1504     TRACE_(icon)("%dx%d, planes %d, bpp %d, xor %p, and %p\n",
1505                  nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits, lpANDbits);
1506
1507     iinfo.fIcon = TRUE;
1508     iinfo.xHotspot = nWidth / 2;
1509     iinfo.yHotspot = nHeight / 2;
1510     iinfo.hbmMask = CreateBitmap( nWidth, nHeight, 1, 1, lpANDbits );
1511     iinfo.hbmColor = CreateBitmap( nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits );
1512
1513     hIcon = CreateIconIndirect( &iinfo );
1514
1515     DeleteObject( iinfo.hbmMask );
1516     DeleteObject( iinfo.hbmColor );
1517
1518     return hIcon;
1519 }
1520
1521
1522 /***********************************************************************
1523  *              CopyIcon (USER32.@)
1524  */
1525 HICON WINAPI CopyIcon( HICON hIcon )
1526 {
1527     struct cursoricon_object *ptrOld, *ptrNew;
1528     HICON hNew;
1529
1530     if (!(ptrOld = get_icon_ptr( hIcon ))) return 0;
1531     if ((hNew = alloc_icon_handle()))
1532     {
1533         ptrNew = get_icon_ptr( hNew );
1534         ptrNew->color   = copy_bitmap( ptrOld->color );
1535         ptrNew->alpha   = copy_bitmap( ptrOld->alpha );
1536         ptrNew->mask    = copy_bitmap( ptrOld->mask );
1537         ptrNew->is_icon = ptrOld->is_icon;
1538         ptrNew->width   = ptrOld->width;
1539         ptrNew->height  = ptrOld->height;
1540         ptrNew->hotspot = ptrOld->hotspot;
1541         release_icon_ptr( hNew, ptrNew );
1542     }
1543     release_icon_ptr( hIcon, ptrOld );
1544     if (hNew) USER_Driver->pCreateCursorIcon( hNew );
1545     return hNew;
1546 }
1547
1548
1549 /***********************************************************************
1550  *              DestroyIcon (USER32.@)
1551  */
1552 BOOL WINAPI DestroyIcon( HICON hIcon )
1553 {
1554     TRACE_(icon)("%p\n", hIcon );
1555
1556     if (CURSORICON_DelSharedIcon( hIcon ) == -1)
1557         free_icon_handle( hIcon );
1558     return TRUE;
1559 }
1560
1561
1562 /***********************************************************************
1563  *              DestroyCursor (USER32.@)
1564  */
1565 BOOL WINAPI DestroyCursor( HCURSOR hCursor )
1566 {
1567     if (GetCursor() == hCursor)
1568     {
1569         WARN_(cursor)("Destroying active cursor!\n" );
1570         return FALSE;
1571     }
1572     return DestroyIcon( hCursor );
1573 }
1574
1575 /***********************************************************************
1576  *              DrawIcon (USER32.@)
1577  */
1578 BOOL WINAPI DrawIcon( HDC hdc, INT x, INT y, HICON hIcon )
1579 {
1580     return DrawIconEx( hdc, x, y, hIcon, 0, 0, 0, 0, DI_NORMAL | DI_COMPAT | DI_DEFAULTSIZE );
1581 }
1582
1583 /***********************************************************************
1584  *              SetCursor (USER32.@)
1585  *
1586  * Set the cursor shape.
1587  *
1588  * RETURNS
1589  *      A handle to the previous cursor shape.
1590  */
1591 HCURSOR WINAPI DECLSPEC_HOTPATCH SetCursor( HCURSOR hCursor /* [in] Handle of cursor to show */ )
1592 {
1593     HCURSOR hOldCursor;
1594     int show_count;
1595     BOOL ret;
1596
1597     TRACE("%p\n", hCursor);
1598
1599     SERVER_START_REQ( set_cursor )
1600     {
1601         req->flags = SET_CURSOR_HANDLE;
1602         req->handle = wine_server_user_handle( hCursor );
1603         if ((ret = !wine_server_call_err( req )))
1604         {
1605             hOldCursor = wine_server_ptr_handle( reply->prev_handle );
1606             show_count = reply->prev_count;
1607         }
1608     }
1609     SERVER_END_REQ;
1610
1611     if (!ret) return 0;
1612
1613     /* Change the cursor shape only if it is visible */
1614     if (show_count >= 0 && hOldCursor != hCursor) USER_Driver->pSetCursor( hCursor );
1615     return hOldCursor;
1616 }
1617
1618 /***********************************************************************
1619  *              ShowCursor (USER32.@)
1620  */
1621 INT WINAPI DECLSPEC_HOTPATCH ShowCursor( BOOL bShow )
1622 {
1623     HCURSOR cursor;
1624     int increment = bShow ? 1 : -1;
1625     int count;
1626
1627     SERVER_START_REQ( set_cursor )
1628     {
1629         req->flags = SET_CURSOR_COUNT;
1630         req->show_count = increment;
1631         wine_server_call( req );
1632         cursor = wine_server_ptr_handle( reply->prev_handle );
1633         count = reply->prev_count + increment;
1634     }
1635     SERVER_END_REQ;
1636
1637     TRACE("%d, count=%d\n", bShow, count );
1638
1639     if (bShow && !count) USER_Driver->pSetCursor( cursor );
1640     else if (!bShow && count == -1) USER_Driver->pSetCursor( 0 );
1641
1642     return count;
1643 }
1644
1645 /***********************************************************************
1646  *              GetCursor (USER32.@)
1647  */
1648 HCURSOR WINAPI GetCursor(void)
1649 {
1650     HCURSOR ret;
1651
1652     SERVER_START_REQ( set_cursor )
1653     {
1654         req->flags = 0;
1655         wine_server_call( req );
1656         ret = wine_server_ptr_handle( reply->prev_handle );
1657     }
1658     SERVER_END_REQ;
1659     return ret;
1660 }
1661
1662
1663 /***********************************************************************
1664  *              ClipCursor (USER32.@)
1665  */
1666 BOOL WINAPI DECLSPEC_HOTPATCH ClipCursor( const RECT *rect )
1667 {
1668     RECT virt;
1669
1670     SetRect( &virt, 0, 0, GetSystemMetrics( SM_CXVIRTUALSCREEN ),
1671                           GetSystemMetrics( SM_CYVIRTUALSCREEN ) );
1672     OffsetRect( &virt, GetSystemMetrics( SM_XVIRTUALSCREEN ),
1673                        GetSystemMetrics( SM_YVIRTUALSCREEN ) );
1674
1675     TRACE( "Clipping to: %s was: %s screen: %s\n", wine_dbgstr_rect(rect),
1676            wine_dbgstr_rect(&CURSOR_ClipRect), wine_dbgstr_rect(&virt) );
1677
1678     if (!IntersectRect( &CURSOR_ClipRect, &virt, rect ))
1679         CURSOR_ClipRect = virt;
1680
1681     USER_Driver->pClipCursor( rect );
1682     return TRUE;
1683 }
1684
1685
1686 /***********************************************************************
1687  *              GetClipCursor (USER32.@)
1688  */
1689 BOOL WINAPI DECLSPEC_HOTPATCH GetClipCursor( RECT *rect )
1690 {
1691     /* If this is first time - initialize the rect */
1692     if (IsRectEmpty( &CURSOR_ClipRect )) ClipCursor( NULL );
1693
1694     return CopyRect( rect, &CURSOR_ClipRect );
1695 }
1696
1697
1698 /***********************************************************************
1699  *              SetSystemCursor (USER32.@)
1700  */
1701 BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
1702 {
1703     FIXME("(%p,%08x),stub!\n",  hcur, id);
1704     return TRUE;
1705 }
1706
1707
1708 /**********************************************************************
1709  *              LookupIconIdFromDirectoryEx (USER32.@)
1710  */
1711 INT WINAPI LookupIconIdFromDirectoryEx( LPBYTE xdir, BOOL bIcon,
1712              INT width, INT height, UINT cFlag )
1713 {
1714     CURSORICONDIR       *dir = (CURSORICONDIR*)xdir;
1715     UINT retVal = 0;
1716     if( dir && !dir->idReserved && (dir->idType & 3) )
1717     {
1718         CURSORICONDIRENTRY* entry;
1719
1720         const HDC hdc = GetDC(0);
1721         const int depth = (cFlag & LR_MONOCHROME) ?
1722             1 : GetDeviceCaps(hdc, BITSPIXEL);
1723         ReleaseDC(0, hdc);
1724
1725         if( bIcon )
1726             entry = CURSORICON_FindBestIconRes( dir, width, height, depth );
1727         else
1728             entry = CURSORICON_FindBestCursorRes( dir, width, height, depth );
1729
1730         if( entry ) retVal = entry->wResId;
1731     }
1732     else WARN_(cursor)("invalid resource directory\n");
1733     return retVal;
1734 }
1735
1736 /**********************************************************************
1737  *              LookupIconIdFromDirectory (USER32.@)
1738  */
1739 INT WINAPI LookupIconIdFromDirectory( LPBYTE dir, BOOL bIcon )
1740 {
1741     return LookupIconIdFromDirectoryEx( dir, bIcon,
1742            bIcon ? GetSystemMetrics(SM_CXICON) : GetSystemMetrics(SM_CXCURSOR),
1743            bIcon ? GetSystemMetrics(SM_CYICON) : GetSystemMetrics(SM_CYCURSOR), bIcon ? 0 : LR_MONOCHROME );
1744 }
1745
1746 /***********************************************************************
1747  *              LoadCursorW (USER32.@)
1748  */
1749 HCURSOR WINAPI LoadCursorW(HINSTANCE hInstance, LPCWSTR name)
1750 {
1751     TRACE("%p, %s\n", hInstance, debugstr_w(name));
1752
1753     return LoadImageW( hInstance, name, IMAGE_CURSOR, 0, 0,
1754                        LR_SHARED | LR_DEFAULTSIZE );
1755 }
1756
1757 /***********************************************************************
1758  *              LoadCursorA (USER32.@)
1759  */
1760 HCURSOR WINAPI LoadCursorA(HINSTANCE hInstance, LPCSTR name)
1761 {
1762     TRACE("%p, %s\n", hInstance, debugstr_a(name));
1763
1764     return LoadImageA( hInstance, name, IMAGE_CURSOR, 0, 0,
1765                        LR_SHARED | LR_DEFAULTSIZE );
1766 }
1767
1768 /***********************************************************************
1769  *              LoadCursorFromFileW (USER32.@)
1770  */
1771 HCURSOR WINAPI LoadCursorFromFileW (LPCWSTR name)
1772 {
1773     TRACE("%s\n", debugstr_w(name));
1774
1775     return LoadImageW( 0, name, IMAGE_CURSOR, 0, 0,
1776                        LR_LOADFROMFILE | LR_DEFAULTSIZE );
1777 }
1778
1779 /***********************************************************************
1780  *              LoadCursorFromFileA (USER32.@)
1781  */
1782 HCURSOR WINAPI LoadCursorFromFileA (LPCSTR name)
1783 {
1784     TRACE("%s\n", debugstr_a(name));
1785
1786     return LoadImageA( 0, name, IMAGE_CURSOR, 0, 0,
1787                        LR_LOADFROMFILE | LR_DEFAULTSIZE );
1788 }
1789
1790 /***********************************************************************
1791  *              LoadIconW (USER32.@)
1792  */
1793 HICON WINAPI LoadIconW(HINSTANCE hInstance, LPCWSTR name)
1794 {
1795     TRACE("%p, %s\n", hInstance, debugstr_w(name));
1796
1797     return LoadImageW( hInstance, name, IMAGE_ICON, 0, 0,
1798                        LR_SHARED | LR_DEFAULTSIZE );
1799 }
1800
1801 /***********************************************************************
1802  *              LoadIconA (USER32.@)
1803  */
1804 HICON WINAPI LoadIconA(HINSTANCE hInstance, LPCSTR name)
1805 {
1806     TRACE("%p, %s\n", hInstance, debugstr_a(name));
1807
1808     return LoadImageA( hInstance, name, IMAGE_ICON, 0, 0,
1809                        LR_SHARED | LR_DEFAULTSIZE );
1810 }
1811
1812 /**********************************************************************
1813  *              GetIconInfo (USER32.@)
1814  */
1815 BOOL WINAPI GetIconInfo(HICON hIcon, PICONINFO iconinfo)
1816 {
1817     struct cursoricon_object *ptr;
1818
1819     if (!(ptr = get_icon_ptr( hIcon ))) return FALSE;
1820
1821     TRACE("%p => %dx%d\n", hIcon, ptr->width, ptr->height);
1822
1823     iconinfo->fIcon    = ptr->is_icon;
1824     iconinfo->xHotspot = ptr->hotspot.x;
1825     iconinfo->yHotspot = ptr->hotspot.y;
1826     iconinfo->hbmColor = copy_bitmap( ptr->color );
1827     iconinfo->hbmMask  = copy_bitmap( ptr->mask );
1828     release_icon_ptr( hIcon, ptr );
1829
1830     return TRUE;
1831 }
1832
1833 /**********************************************************************
1834  *              CreateIconIndirect (USER32.@)
1835  */
1836 HICON WINAPI CreateIconIndirect(PICONINFO iconinfo)
1837 {
1838     BITMAP bmpXor, bmpAnd;
1839     HICON hObj;
1840     HBITMAP color = 0, mask;
1841     int width, height;
1842     HDC src, dst;
1843
1844     TRACE("color %p, mask %p, hotspot %ux%u, fIcon %d\n",
1845            iconinfo->hbmColor, iconinfo->hbmMask,
1846            iconinfo->xHotspot, iconinfo->yHotspot, iconinfo->fIcon);
1847
1848     if (!iconinfo->hbmMask) return 0;
1849
1850     GetObjectW( iconinfo->hbmMask, sizeof(bmpAnd), &bmpAnd );
1851     TRACE("mask: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
1852            bmpAnd.bmWidth, bmpAnd.bmHeight, bmpAnd.bmWidthBytes,
1853            bmpAnd.bmPlanes, bmpAnd.bmBitsPixel);
1854
1855     if (iconinfo->hbmColor)
1856     {
1857         GetObjectW( iconinfo->hbmColor, sizeof(bmpXor), &bmpXor );
1858         TRACE("color: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
1859                bmpXor.bmWidth, bmpXor.bmHeight, bmpXor.bmWidthBytes,
1860                bmpXor.bmPlanes, bmpXor.bmBitsPixel);
1861
1862         width = bmpXor.bmWidth;
1863         height = bmpXor.bmHeight;
1864         if (bmpXor.bmPlanes * bmpXor.bmBitsPixel != 1)
1865         {
1866             color = CreateCompatibleBitmap( screen_dc, width, height );
1867             mask = CreateBitmap( width, height, 1, 1, NULL );
1868         }
1869         else mask = CreateBitmap( width, height * 2, 1, 1, NULL );
1870     }
1871     else
1872     {
1873         width = bmpAnd.bmWidth;
1874         height = bmpAnd.bmHeight;
1875         mask = CreateBitmap( width, height, 1, 1, NULL );
1876     }
1877
1878     src = CreateCompatibleDC( 0 );
1879     dst = CreateCompatibleDC( 0 );
1880
1881     SelectObject( src, iconinfo->hbmMask );
1882     SelectObject( dst, mask );
1883     StretchBlt( dst, 0, 0, width, height, src, 0, 0, bmpAnd.bmWidth, bmpAnd.bmHeight, SRCCOPY );
1884
1885     if (color)
1886     {
1887         SelectObject( src, iconinfo->hbmColor );
1888         SelectObject( dst, color );
1889         BitBlt( dst, 0, 0, width, height, src, 0, 0, SRCCOPY );
1890     }
1891     else if (iconinfo->hbmColor)
1892     {
1893         SelectObject( src, iconinfo->hbmColor );
1894         BitBlt( dst, 0, height, width, height, src, 0, 0, SRCCOPY );
1895     }
1896     else height /= 2;
1897
1898     DeleteDC( src );
1899     DeleteDC( dst );
1900
1901     hObj = alloc_icon_handle();
1902     if (hObj)
1903     {
1904         struct cursoricon_object *info = get_icon_ptr( hObj );
1905
1906         info->color   = color;
1907         info->mask    = mask;
1908         info->alpha   = create_alpha_bitmap( iconinfo->hbmColor, mask, NULL, NULL );
1909         info->is_icon = iconinfo->fIcon;
1910         info->width   = width;
1911         info->height  = height;
1912         if (info->is_icon)
1913         {
1914             info->hotspot.x = width / 2;
1915             info->hotspot.y = height / 2;
1916         }
1917         else
1918         {
1919             info->hotspot.x = iconinfo->xHotspot;
1920             info->hotspot.y = iconinfo->yHotspot;
1921         }
1922
1923         release_icon_ptr( hObj, info );
1924         USER_Driver->pCreateCursorIcon( hObj );
1925     }
1926     return hObj;
1927 }
1928
1929 /******************************************************************************
1930  *              DrawIconEx (USER32.@) Draws an icon or cursor on device context
1931  *
1932  * NOTES
1933  *    Why is this using SM_CXICON instead of SM_CXCURSOR?
1934  *
1935  * PARAMS
1936  *    hdc     [I] Handle to device context
1937  *    x0      [I] X coordinate of upper left corner
1938  *    y0      [I] Y coordinate of upper left corner
1939  *    hIcon   [I] Handle to icon to draw
1940  *    cxWidth [I] Width of icon
1941  *    cyWidth [I] Height of icon
1942  *    istep   [I] Index of frame in animated cursor
1943  *    hbr     [I] Handle to background brush
1944  *    flags   [I] Icon-drawing flags
1945  *
1946  * RETURNS
1947  *    Success: TRUE
1948  *    Failure: FALSE
1949  */
1950 BOOL WINAPI DrawIconEx( HDC hdc, INT x0, INT y0, HICON hIcon,
1951                             INT cxWidth, INT cyWidth, UINT istep,
1952                             HBRUSH hbr, UINT flags )
1953 {
1954     struct cursoricon_object *ptr;
1955     HDC hdc_dest, hMemDC;
1956     BOOL result = FALSE, DoOffscreen;
1957     HBITMAP hB_off = 0;
1958     COLORREF oldFg, oldBg;
1959     INT x, y, nStretchMode;
1960
1961     TRACE_(icon)("(hdc=%p,pos=%d.%d,hicon=%p,extend=%d.%d,istep=%d,br=%p,flags=0x%08x)\n",
1962                  hdc,x0,y0,hIcon,cxWidth,cyWidth,istep,hbr,flags );
1963
1964     if (!(ptr = get_icon_ptr( hIcon ))) return FALSE;
1965     if (!(hMemDC = CreateCompatibleDC( hdc )))
1966     {
1967         release_icon_ptr( hIcon, ptr );
1968         return FALSE;
1969     }
1970
1971     if (istep)
1972         FIXME_(icon)("Ignoring istep=%d\n", istep);
1973     if (flags & DI_NOMIRROR)
1974         FIXME_(icon)("Ignoring flag DI_NOMIRROR\n");
1975
1976     /* Calculate the size of the destination image.  */
1977     if (cxWidth == 0)
1978     {
1979         if (flags & DI_DEFAULTSIZE)
1980             cxWidth = GetSystemMetrics (SM_CXICON);
1981         else
1982             cxWidth = ptr->width;
1983     }
1984     if (cyWidth == 0)
1985     {
1986         if (flags & DI_DEFAULTSIZE)
1987             cyWidth = GetSystemMetrics (SM_CYICON);
1988         else
1989             cyWidth = ptr->height;
1990     }
1991
1992     DoOffscreen = (GetObjectType( hbr ) == OBJ_BRUSH);
1993
1994     if (DoOffscreen) {
1995         RECT r;
1996
1997         r.left = 0;
1998         r.top = 0;
1999         r.right = cxWidth;
2000         r.bottom = cxWidth;
2001
2002         if (!(hdc_dest = CreateCompatibleDC(hdc))) goto done;
2003         if (!(hB_off = CreateCompatibleBitmap(hdc, cxWidth, cyWidth)))
2004         {
2005             DeleteDC( hdc_dest );
2006             goto done;
2007         }
2008         SelectObject(hdc_dest, hB_off);
2009         FillRect(hdc_dest, &r, hbr);
2010         x = y = 0;
2011     }
2012     else
2013     {
2014         hdc_dest = hdc;
2015         x = x0;
2016         y = y0;
2017     }
2018
2019     nStretchMode = SetStretchBltMode (hdc, STRETCH_DELETESCANS);
2020
2021     oldFg = SetTextColor( hdc, RGB(0,0,0) );
2022     oldBg = SetBkColor( hdc, RGB(255,255,255) );
2023
2024     if ((flags & DI_MASK) && (!ptr->alpha || !(flags & DI_IMAGE)))
2025     {
2026         SelectObject( hMemDC, ptr->mask );
2027         StretchBlt( hdc_dest, x, y, cxWidth, cyWidth,
2028                     hMemDC, 0, 0, ptr->width, ptr->height, SRCAND );
2029     }
2030
2031     if (flags & DI_IMAGE)
2032     {
2033         if (ptr->alpha)
2034         {
2035             BLENDFUNCTION pixelblend = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA };
2036
2037             SelectObject( hMemDC, ptr->alpha );
2038             GdiAlphaBlend( hdc_dest, x, y, cxWidth, cyWidth, hMemDC,
2039                            0, 0, ptr->width, ptr->height, pixelblend );
2040         }
2041         else if (ptr->color)
2042         {
2043             DWORD rop = (flags & DI_MASK) ? SRCINVERT : SRCCOPY;
2044             SelectObject( hMemDC, ptr->color );
2045             StretchBlt( hdc_dest, x, y, cxWidth, cyWidth,
2046                         hMemDC, 0, 0, ptr->width, ptr->height, rop );
2047         }
2048         else
2049         {
2050             DWORD rop = (flags & DI_MASK) ? SRCINVERT : SRCCOPY;
2051             SelectObject( hMemDC, ptr->mask );
2052             StretchBlt( hdc_dest, x, y, cxWidth, cyWidth,
2053                         hMemDC, 0, ptr->height, ptr->width, ptr->height, rop );
2054         }
2055     }
2056
2057     if (DoOffscreen) BitBlt( hdc, x0, y0, cxWidth, cyWidth, hdc_dest, 0, 0, SRCCOPY );
2058
2059     SetTextColor( hdc, oldFg );
2060     SetBkColor( hdc, oldBg );
2061     SetStretchBltMode (hdc, nStretchMode);
2062     result = TRUE;
2063     if (hdc_dest != hdc) DeleteDC( hdc_dest );
2064     if (hB_off) DeleteObject(hB_off);
2065 done:
2066     DeleteDC( hMemDC );
2067     release_icon_ptr( hIcon, ptr );
2068     return result;
2069 }
2070
2071 /***********************************************************************
2072  *           DIB_FixColorsToLoadflags
2073  *
2074  * Change color table entries when LR_LOADTRANSPARENT or LR_LOADMAP3DCOLORS
2075  * are in loadflags
2076  */
2077 static void DIB_FixColorsToLoadflags(BITMAPINFO * bmi, UINT loadflags, BYTE pix)
2078 {
2079     int colors;
2080     COLORREF c_W, c_S, c_F, c_L, c_C;
2081     int incr,i;
2082     RGBQUAD *ptr;
2083     int bitmap_type;
2084     LONG width;
2085     LONG height;
2086     WORD bpp;
2087     DWORD compr;
2088
2089     if (((bitmap_type = DIB_GetBitmapInfo((BITMAPINFOHEADER*) bmi, &width, &height, &bpp, &compr)) == -1))
2090     {
2091         WARN_(resource)("Invalid bitmap\n");
2092         return;
2093     }
2094
2095     if (bpp > 8) return;
2096
2097     if (bitmap_type == 0) /* BITMAPCOREHEADER */
2098     {
2099         incr = 3;
2100         colors = 1 << bpp;
2101     }
2102     else
2103     {
2104         incr = 4;
2105         colors = bmi->bmiHeader.biClrUsed;
2106         if (colors > 256) colors = 256;
2107         if (!colors && (bpp <= 8)) colors = 1 << bpp;
2108     }
2109
2110     c_W = GetSysColor(COLOR_WINDOW);
2111     c_S = GetSysColor(COLOR_3DSHADOW);
2112     c_F = GetSysColor(COLOR_3DFACE);
2113     c_L = GetSysColor(COLOR_3DLIGHT);
2114
2115     if (loadflags & LR_LOADTRANSPARENT) {
2116         switch (bpp) {
2117         case 1: pix = pix >> 7; break;
2118         case 4: pix = pix >> 4; break;
2119         case 8: break;
2120         default:
2121             WARN_(resource)("(%d): Unsupported depth\n", bpp);
2122             return;
2123         }
2124         if (pix >= colors) {
2125             WARN_(resource)("pixel has color index greater than biClrUsed!\n");
2126             return;
2127         }
2128         if (loadflags & LR_LOADMAP3DCOLORS) c_W = c_F;
2129         ptr = (RGBQUAD*)((char*)bmi->bmiColors+pix*incr);
2130         ptr->rgbBlue = GetBValue(c_W);
2131         ptr->rgbGreen = GetGValue(c_W);
2132         ptr->rgbRed = GetRValue(c_W);
2133     }
2134     if (loadflags & LR_LOADMAP3DCOLORS)
2135         for (i=0; i<colors; i++) {
2136             ptr = (RGBQUAD*)((char*)bmi->bmiColors+i*incr);
2137             c_C = RGB(ptr->rgbRed, ptr->rgbGreen, ptr->rgbBlue);
2138             if (c_C == RGB(128, 128, 128)) {
2139                 ptr->rgbRed = GetRValue(c_S);
2140                 ptr->rgbGreen = GetGValue(c_S);
2141                 ptr->rgbBlue = GetBValue(c_S);
2142             } else if (c_C == RGB(192, 192, 192)) {
2143                 ptr->rgbRed = GetRValue(c_F);
2144                 ptr->rgbGreen = GetGValue(c_F);
2145                 ptr->rgbBlue = GetBValue(c_F);
2146             } else if (c_C == RGB(223, 223, 223)) {
2147                 ptr->rgbRed = GetRValue(c_L);
2148                 ptr->rgbGreen = GetGValue(c_L);
2149                 ptr->rgbBlue = GetBValue(c_L);
2150             }
2151         }
2152 }
2153
2154
2155 /**********************************************************************
2156  *       BITMAP_Load
2157  */
2158 static HBITMAP BITMAP_Load( HINSTANCE instance, LPCWSTR name,
2159                             INT desiredx, INT desiredy, UINT loadflags )
2160 {
2161     HBITMAP hbitmap = 0, orig_bm;
2162     HRSRC hRsrc;
2163     HGLOBAL handle;
2164     char *ptr = NULL;
2165     BITMAPINFO *info, *fix_info = NULL, *scaled_info = NULL;
2166     int size;
2167     BYTE pix;
2168     char *bits;
2169     LONG width, height, new_width, new_height;
2170     WORD bpp_dummy;
2171     DWORD compr_dummy, offbits = 0;
2172     INT bm_type;
2173     HDC screen_mem_dc = NULL;
2174
2175     if (!(loadflags & LR_LOADFROMFILE))
2176     {
2177         if (!instance)
2178         {
2179             /* OEM bitmap: try to load the resource from user32.dll */
2180             instance = user32_module;
2181         }
2182
2183         if (!(hRsrc = FindResourceW( instance, name, (LPWSTR)RT_BITMAP ))) return 0;
2184         if (!(handle = LoadResource( instance, hRsrc ))) return 0;
2185
2186         if ((info = LockResource( handle )) == NULL) return 0;
2187     }
2188     else
2189     {
2190         BITMAPFILEHEADER * bmfh;
2191
2192         if (!(ptr = map_fileW( name, NULL ))) return 0;
2193         info = (BITMAPINFO *)(ptr + sizeof(BITMAPFILEHEADER));
2194         bmfh = (BITMAPFILEHEADER *)ptr;
2195         if (bmfh->bfType != 0x4d42 /* 'BM' */)
2196         {
2197             WARN("Invalid/unsupported bitmap format!\n");
2198             goto end_close;
2199         }
2200         if (bmfh->bfOffBits) offbits = bmfh->bfOffBits - sizeof(BITMAPFILEHEADER);
2201     }
2202
2203     if (info->bmiHeader.biHeight > 65535 || info->bmiHeader.biWidth > 65535) {
2204         WARN("Broken BitmapInfoHeader!\n");
2205         goto end_close;
2206     }
2207
2208     size = bitmap_info_size(info, DIB_RGB_COLORS);
2209     fix_info = HeapAlloc(GetProcessHeap(), 0, size);
2210     scaled_info = HeapAlloc(GetProcessHeap(), 0, size);
2211
2212     if (!fix_info || !scaled_info) goto end;
2213     memcpy(fix_info, info, size);
2214
2215     pix = *((LPBYTE)info + size);
2216     DIB_FixColorsToLoadflags(fix_info, loadflags, pix);
2217
2218     memcpy(scaled_info, fix_info, size);
2219     bm_type = DIB_GetBitmapInfo( &fix_info->bmiHeader, &width, &height,
2220                                  &bpp_dummy, &compr_dummy);
2221     if(desiredx != 0)
2222         new_width = desiredx;
2223     else
2224         new_width = width;
2225
2226     if(desiredy != 0)
2227         new_height = height > 0 ? desiredy : -desiredy;
2228     else
2229         new_height = height;
2230
2231     if(bm_type == 0)
2232     {
2233         BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)&scaled_info->bmiHeader;
2234         core->bcWidth = new_width;
2235         core->bcHeight = new_height;
2236     }
2237     else
2238     {
2239         scaled_info->bmiHeader.biWidth = new_width;
2240         scaled_info->bmiHeader.biHeight = new_height;
2241     }
2242
2243     if (new_height < 0) new_height = -new_height;
2244
2245     if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
2246     if (!(screen_mem_dc = CreateCompatibleDC( screen_dc ))) goto end;
2247
2248     bits = (char *)info + (offbits ? offbits : size);
2249
2250     if (loadflags & LR_CREATEDIBSECTION)
2251     {
2252         scaled_info->bmiHeader.biCompression = 0; /* DIBSection can't be compressed */
2253         hbitmap = CreateDIBSection(screen_dc, scaled_info, DIB_RGB_COLORS, NULL, 0, 0);
2254     }
2255     else
2256     {
2257         if (is_dib_monochrome(fix_info))
2258             hbitmap = CreateBitmap(new_width, new_height, 1, 1, NULL);
2259         else
2260             hbitmap = CreateCompatibleBitmap(screen_dc, new_width, new_height);        
2261     }
2262
2263     orig_bm = SelectObject(screen_mem_dc, hbitmap);
2264     StretchDIBits(screen_mem_dc, 0, 0, new_width, new_height, 0, 0, width, height, bits, fix_info, DIB_RGB_COLORS, SRCCOPY);
2265     SelectObject(screen_mem_dc, orig_bm);
2266
2267 end:
2268     if (screen_mem_dc) DeleteDC(screen_mem_dc);
2269     HeapFree(GetProcessHeap(), 0, scaled_info);
2270     HeapFree(GetProcessHeap(), 0, fix_info);
2271 end_close:
2272     if (loadflags & LR_LOADFROMFILE) UnmapViewOfFile( ptr );
2273
2274     return hbitmap;
2275 }
2276
2277 /**********************************************************************
2278  *              LoadImageA (USER32.@)
2279  *
2280  * See LoadImageW.
2281  */
2282 HANDLE WINAPI LoadImageA( HINSTANCE hinst, LPCSTR name, UINT type,
2283                               INT desiredx, INT desiredy, UINT loadflags)
2284 {
2285     HANDLE res;
2286     LPWSTR u_name;
2287
2288     if (IS_INTRESOURCE(name))
2289         return LoadImageW(hinst, (LPCWSTR)name, type, desiredx, desiredy, loadflags);
2290
2291     __TRY {
2292         DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
2293         u_name = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2294         MultiByteToWideChar( CP_ACP, 0, name, -1, u_name, len );
2295     }
2296     __EXCEPT_PAGE_FAULT {
2297         SetLastError( ERROR_INVALID_PARAMETER );
2298         return 0;
2299     }
2300     __ENDTRY
2301     res = LoadImageW(hinst, u_name, type, desiredx, desiredy, loadflags);
2302     HeapFree(GetProcessHeap(), 0, u_name);
2303     return res;
2304 }
2305
2306
2307 /******************************************************************************
2308  *              LoadImageW (USER32.@) Loads an icon, cursor, or bitmap
2309  *
2310  * PARAMS
2311  *    hinst     [I] Handle of instance that contains image
2312  *    name      [I] Name of image
2313  *    type      [I] Type of image
2314  *    desiredx  [I] Desired width
2315  *    desiredy  [I] Desired height
2316  *    loadflags [I] Load flags
2317  *
2318  * RETURNS
2319  *    Success: Handle to newly loaded image
2320  *    Failure: NULL
2321  *
2322  * FIXME: Implementation lacks some features, see LR_ defines in winuser.h
2323  */
2324 HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
2325                 INT desiredx, INT desiredy, UINT loadflags )
2326 {
2327     TRACE_(resource)("(%p,%s,%d,%d,%d,0x%08x)\n",
2328                      hinst,debugstr_w(name),type,desiredx,desiredy,loadflags);
2329
2330     if (loadflags & LR_DEFAULTSIZE) {
2331         if (type == IMAGE_ICON) {
2332             if (!desiredx) desiredx = GetSystemMetrics(SM_CXICON);
2333             if (!desiredy) desiredy = GetSystemMetrics(SM_CYICON);
2334         } else if (type == IMAGE_CURSOR) {
2335             if (!desiredx) desiredx = GetSystemMetrics(SM_CXCURSOR);
2336             if (!desiredy) desiredy = GetSystemMetrics(SM_CYCURSOR);
2337         }
2338     }
2339     if (loadflags & LR_LOADFROMFILE) loadflags &= ~LR_SHARED;
2340     switch (type) {
2341     case IMAGE_BITMAP:
2342         return BITMAP_Load( hinst, name, desiredx, desiredy, loadflags );
2343
2344     case IMAGE_ICON:
2345         if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
2346         if (screen_dc)
2347         {
2348             return CURSORICON_Load(hinst, name, desiredx, desiredy,
2349                                    GetDeviceCaps(screen_dc, BITSPIXEL),
2350                                    FALSE, loadflags);
2351         }
2352         break;
2353
2354     case IMAGE_CURSOR:
2355         return CURSORICON_Load(hinst, name, desiredx, desiredy,
2356                                1, TRUE, loadflags);
2357     }
2358     return 0;
2359 }
2360
2361 /******************************************************************************
2362  *              CopyImage (USER32.@) Creates new image and copies attributes to it
2363  *
2364  * PARAMS
2365  *    hnd      [I] Handle to image to copy
2366  *    type     [I] Type of image to copy
2367  *    desiredx [I] Desired width of new image
2368  *    desiredy [I] Desired height of new image
2369  *    flags    [I] Copy flags
2370  *
2371  * RETURNS
2372  *    Success: Handle to newly created image
2373  *    Failure: NULL
2374  *
2375  * BUGS
2376  *    Only Windows NT 4.0 supports the LR_COPYRETURNORG flag for bitmaps,
2377  *    all other versions (95/2000/XP have been tested) ignore it.
2378  *
2379  * NOTES
2380  *    If LR_CREATEDIBSECTION is absent, the copy will be monochrome for
2381  *    a monochrome source bitmap or if LR_MONOCHROME is present, otherwise
2382  *    the copy will have the same depth as the screen.
2383  *    The content of the image will only be copied if the bit depth of the
2384  *    original image is compatible with the bit depth of the screen, or
2385  *    if the source is a DIB section.
2386  *    The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
2387  */
2388 HANDLE WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
2389                              INT desiredy, UINT flags )
2390 {
2391     TRACE("hnd=%p, type=%u, desiredx=%d, desiredy=%d, flags=%x\n",
2392           hnd, type, desiredx, desiredy, flags);
2393
2394     switch (type)
2395     {
2396         case IMAGE_BITMAP:
2397         {
2398             HBITMAP res = NULL;
2399             DIBSECTION ds;
2400             int objSize;
2401             BITMAPINFO * bi;
2402
2403             objSize = GetObjectW( hnd, sizeof(ds), &ds );
2404             if (!objSize) return 0;
2405             if ((desiredx < 0) || (desiredy < 0)) return 0;
2406
2407             if (flags & LR_COPYFROMRESOURCE)
2408             {
2409                 FIXME("The flag LR_COPYFROMRESOURCE is not implemented for bitmaps\n");
2410             }
2411
2412             if (desiredx == 0) desiredx = ds.dsBm.bmWidth;
2413             if (desiredy == 0) desiredy = ds.dsBm.bmHeight;
2414
2415             /* Allocate memory for a BITMAPINFOHEADER structure and a
2416                color table. The maximum number of colors in a color table
2417                is 256 which corresponds to a bitmap with depth 8.
2418                Bitmaps with higher depths don't have color tables. */
2419             bi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
2420             if (!bi) return 0;
2421
2422             bi->bmiHeader.biSize        = sizeof(bi->bmiHeader);
2423             bi->bmiHeader.biPlanes      = ds.dsBm.bmPlanes;
2424             bi->bmiHeader.biBitCount    = ds.dsBm.bmBitsPixel;
2425             bi->bmiHeader.biCompression = BI_RGB;
2426
2427             if (flags & LR_CREATEDIBSECTION)
2428             {
2429                 /* Create a DIB section. LR_MONOCHROME is ignored */
2430                 void * bits;
2431                 HDC dc = CreateCompatibleDC(NULL);
2432
2433                 if (objSize == sizeof(DIBSECTION))
2434                 {
2435                     /* The source bitmap is a DIB.
2436                        Get its attributes to create an exact copy */
2437                     memcpy(bi, &ds.dsBmih, sizeof(BITMAPINFOHEADER));
2438                 }
2439
2440                 /* Get the color table or the color masks */
2441                 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2442
2443                 bi->bmiHeader.biWidth  = desiredx;
2444                 bi->bmiHeader.biHeight = desiredy;
2445                 bi->bmiHeader.biSizeImage = 0;
2446
2447                 res = CreateDIBSection(dc, bi, DIB_RGB_COLORS, &bits, NULL, 0);
2448                 DeleteDC(dc);
2449             }
2450             else
2451             {
2452                 /* Create a device-dependent bitmap */
2453
2454                 BOOL monochrome = (flags & LR_MONOCHROME);
2455
2456                 if (objSize == sizeof(DIBSECTION))
2457                 {
2458                     /* The source bitmap is a DIB section.
2459                        Get its attributes */
2460                     HDC dc = CreateCompatibleDC(NULL);
2461                     bi->bmiHeader.biSize = sizeof(bi->bmiHeader);
2462                     bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel;
2463                     GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2464                     DeleteDC(dc);
2465
2466                     if (!monochrome && ds.dsBm.bmBitsPixel == 1)
2467                     {
2468                         /* Look if the colors of the DIB are black and white */
2469
2470                         monochrome = 
2471                               (bi->bmiColors[0].rgbRed == 0xff
2472                             && bi->bmiColors[0].rgbGreen == 0xff
2473                             && bi->bmiColors[0].rgbBlue == 0xff
2474                             && bi->bmiColors[0].rgbReserved == 0
2475                             && bi->bmiColors[1].rgbRed == 0
2476                             && bi->bmiColors[1].rgbGreen == 0
2477                             && bi->bmiColors[1].rgbBlue == 0
2478                             && bi->bmiColors[1].rgbReserved == 0)
2479                             ||
2480                               (bi->bmiColors[0].rgbRed == 0
2481                             && bi->bmiColors[0].rgbGreen == 0
2482                             && bi->bmiColors[0].rgbBlue == 0
2483                             && bi->bmiColors[0].rgbReserved == 0
2484                             && bi->bmiColors[1].rgbRed == 0xff
2485                             && bi->bmiColors[1].rgbGreen == 0xff
2486                             && bi->bmiColors[1].rgbBlue == 0xff
2487                             && bi->bmiColors[1].rgbReserved == 0);
2488                     }
2489                 }
2490                 else if (!monochrome)
2491                 {
2492                     monochrome = ds.dsBm.bmBitsPixel == 1;
2493                 }
2494
2495                 if (monochrome)
2496                 {
2497                     res = CreateBitmap(desiredx, desiredy, 1, 1, NULL);
2498                 }
2499                 else
2500                 {
2501                     HDC screenDC = GetDC(NULL);
2502                     res = CreateCompatibleBitmap(screenDC, desiredx, desiredy);
2503                     ReleaseDC(NULL, screenDC);
2504                 }
2505             }
2506
2507             if (res)
2508             {
2509                 /* Only copy the bitmap if it's a DIB section or if it's
2510                    compatible to the screen */
2511                 BOOL copyContents;
2512
2513                 if (objSize == sizeof(DIBSECTION))
2514                 {
2515                     copyContents = TRUE;
2516                 }
2517                 else
2518                 {
2519                     HDC screenDC = GetDC(NULL);
2520                     int screen_depth = GetDeviceCaps(screenDC, BITSPIXEL);
2521                     ReleaseDC(NULL, screenDC);
2522
2523                     copyContents = (ds.dsBm.bmBitsPixel == 1 || ds.dsBm.bmBitsPixel == screen_depth);
2524                 }
2525
2526                 if (copyContents)
2527                 {
2528                     /* The source bitmap may already be selected in a device context,
2529                        use GetDIBits/StretchDIBits and not StretchBlt  */
2530
2531                     HDC dc;
2532                     void * bits;
2533
2534                     dc = CreateCompatibleDC(NULL);
2535
2536                     bi->bmiHeader.biWidth = ds.dsBm.bmWidth;
2537                     bi->bmiHeader.biHeight = ds.dsBm.bmHeight;
2538                     bi->bmiHeader.biSizeImage = 0;
2539                     bi->bmiHeader.biClrUsed = 0;
2540                     bi->bmiHeader.biClrImportant = 0;
2541
2542                     /* Fill in biSizeImage */
2543                     GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2544                     bits = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, bi->bmiHeader.biSizeImage);
2545
2546                     if (bits)
2547                     {
2548                         HBITMAP oldBmp;
2549
2550                         /* Get the image bits of the source bitmap */
2551                         GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, bits, bi, DIB_RGB_COLORS);
2552
2553                         /* Copy it to the destination bitmap */
2554                         oldBmp = SelectObject(dc, res);
2555                         StretchDIBits(dc, 0, 0, desiredx, desiredy,
2556                                       0, 0, ds.dsBm.bmWidth, ds.dsBm.bmHeight,
2557                                       bits, bi, DIB_RGB_COLORS, SRCCOPY);
2558                         SelectObject(dc, oldBmp);
2559
2560                         HeapFree(GetProcessHeap(), 0, bits);
2561                     }
2562
2563                     DeleteDC(dc);
2564                 }
2565
2566                 if (flags & LR_COPYDELETEORG)
2567                 {
2568                     DeleteObject(hnd);
2569                 }
2570             }
2571             HeapFree(GetProcessHeap(), 0, bi);
2572             return res;
2573         }
2574         case IMAGE_ICON:
2575                 return CURSORICON_ExtCopy(hnd,type, desiredx, desiredy, flags);
2576         case IMAGE_CURSOR:
2577                 /* Should call CURSORICON_ExtCopy but more testing
2578                  * needs to be done before we change this
2579                  */
2580                 if (flags) FIXME("Flags are ignored\n");
2581                 return CopyCursor(hnd);
2582     }
2583     return 0;
2584 }
2585
2586
2587 /******************************************************************************
2588  *              LoadBitmapW (USER32.@) Loads bitmap from the executable file
2589  *
2590  * RETURNS
2591  *    Success: Handle to specified bitmap
2592  *    Failure: NULL
2593  */
2594 HBITMAP WINAPI LoadBitmapW(
2595     HINSTANCE instance, /* [in] Handle to application instance */
2596     LPCWSTR name)         /* [in] Address of bitmap resource name */
2597 {
2598     return LoadImageW( instance, name, IMAGE_BITMAP, 0, 0, 0 );
2599 }
2600
2601 /**********************************************************************
2602  *              LoadBitmapA (USER32.@)
2603  *
2604  * See LoadBitmapW.
2605  */
2606 HBITMAP WINAPI LoadBitmapA( HINSTANCE instance, LPCSTR name )
2607 {
2608     return LoadImageA( instance, name, IMAGE_BITMAP, 0, 0, 0 );
2609 }