2 * Cursor and icon support
4 * Copyright 1995 Alexandre Julliard
5 * 1996 Martin Von Loewis
7 * 1998 Turchanov Sergey
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwui/html/msdn_icons.asp
29 * Cursors and icons are stored in a global heap block, with the
32 * CURSORICONINFO info;
36 * The bits structures are in the format of a device-dependent bitmap.
38 * This layout is very sub-optimal, as the bitmap bits are stored in
39 * the X client instead of in the server like other bitmaps; however,
40 * some programs (notably Paint Brush) expect to be able to manipulate
41 * the bits directly :-(
43 * FIXME: what are we going to do with animation and color (bpp > 1) cursors ?!
47 #include "wine/port.h"
60 #include "wine/winbase16.h"
61 #include "wine/winuser16.h"
62 #include "wine/exception.h"
63 #include "cursoricon.h"
65 #include "wine/debug.h"
69 WINE_DEFAULT_DEBUG_CHANNEL(cursor
);
70 WINE_DECLARE_DEBUG_CHANNEL(icon
);
71 WINE_DECLARE_DEBUG_CHANNEL(resource
);
74 static RECT CURSOR_ClipRect
; /* Cursor clipping rect */
78 static const WCHAR DISPLAYW
[] = {'D','I','S','P','L','A','Y',0};
80 /**********************************************************************
81 * ICONCACHE for cursors/icons loaded with LR_SHARED.
83 * FIXME: This should not be allocated on the system heap, but on a
84 * subsystem-global heap (i.e. one for all Win16 processes,
85 * and one for each Win32 process).
87 typedef struct tagICONCACHE
89 struct tagICONCACHE
*next
;
100 static ICONCACHE
*IconAnchor
= NULL
;
102 static CRITICAL_SECTION IconCrst
;
103 static CRITICAL_SECTION_DEBUG critsect_debug
=
106 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
107 0, 0, { 0, (DWORD
)(__FILE__
": IconCrst") }
109 static CRITICAL_SECTION IconCrst
= { &critsect_debug
, -1, 0, 0, 0, 0 };
111 static WORD ICON_HOTSPOT
= 0x4242;
114 /***********************************************************************
117 * Helper function to map a file to memory:
119 * [RETURN] ptr - pointer to mapped file
121 static void *map_fileW( LPCWSTR name
)
123 HANDLE hFile
, hMapping
;
126 hFile
= CreateFileW( name
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
127 OPEN_EXISTING
, FILE_FLAG_RANDOM_ACCESS
, 0 );
128 if (hFile
!= INVALID_HANDLE_VALUE
)
130 hMapping
= CreateFileMappingA( hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
131 CloseHandle( hFile
);
134 ptr
= MapViewOfFile( hMapping
, FILE_MAP_READ
, 0, 0, 0 );
135 CloseHandle( hMapping
);
142 /***********************************************************************
143 * get_bitmap_width_bytes
145 * Return number of bytes taken by a scanline of 16-bit aligned Windows DDB
148 static int get_bitmap_width_bytes( int width
, int bpp
)
153 return 2 * ((width
+15) / 16);
155 return 2 * ((width
+3) / 4);
160 return width
+ (width
& 1);
167 WARN("Unknown depth %d, please report.\n", bpp
);
173 /***********************************************************************
174 * get_dib_width_bytes
176 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
178 static int get_dib_width_bytes( int width
, int depth
)
184 case 1: words
= (width
+ 31) / 32; break;
185 case 4: words
= (width
+ 7) / 8; break;
186 case 8: words
= (width
+ 3) / 4; break;
188 case 16: words
= (width
+ 1) / 2; break;
189 case 24: words
= (width
* 3 + 3)/4; break;
191 WARN("(%d): Unsupported depth\n", depth
);
200 /***********************************************************************
203 * Return the size of the bitmap info structure including color table.
205 static int bitmap_info_size( const BITMAPINFO
* info
, WORD coloruse
)
209 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
211 BITMAPCOREHEADER
*core
= (BITMAPCOREHEADER
*)info
;
212 colors
= (core
->bcBitCount
<= 8) ? 1 << core
->bcBitCount
: 0;
213 return sizeof(BITMAPCOREHEADER
) + colors
*
214 ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBTRIPLE
) : sizeof(WORD
));
216 else /* assume BITMAPINFOHEADER */
218 colors
= info
->bmiHeader
.biClrUsed
;
219 if (!colors
&& (info
->bmiHeader
.biBitCount
<= 8))
220 colors
= 1 << info
->bmiHeader
.biBitCount
;
221 return sizeof(BITMAPINFOHEADER
) + colors
*
222 ((coloruse
== DIB_RGB_COLORS
) ? sizeof(RGBQUAD
) : sizeof(WORD
));
227 /**********************************************************************
228 * CURSORICON_FindSharedIcon
230 static HICON
CURSORICON_FindSharedIcon( HMODULE hModule
, HRSRC hRsrc
)
235 EnterCriticalSection( &IconCrst
);
237 for ( ptr
= IconAnchor
; ptr
; ptr
= ptr
->next
)
238 if ( ptr
->hModule
== hModule
&& ptr
->hRsrc
== hRsrc
)
245 LeaveCriticalSection( &IconCrst
);
250 /*************************************************************************
251 * CURSORICON_FindCache
253 * Given a handle, find the corresponding cache element
256 * Handle [I] handle to an Image
259 * Success: The cache entry
263 static ICONCACHE
* CURSORICON_FindCache(HICON hIcon
)
266 ICONCACHE
*pRet
=NULL
;
267 BOOL IsFound
= FALSE
;
270 EnterCriticalSection( &IconCrst
);
272 for (count
= 0, ptr
= IconAnchor
; ptr
!= NULL
&& !IsFound
; ptr
= ptr
->next
, count
++ )
274 if ( hIcon
== ptr
->hIcon
)
281 LeaveCriticalSection( &IconCrst
);
286 /**********************************************************************
287 * CURSORICON_AddSharedIcon
289 static void CURSORICON_AddSharedIcon( HMODULE hModule
, HRSRC hRsrc
, HRSRC hGroupRsrc
, HICON hIcon
)
291 ICONCACHE
*ptr
= HeapAlloc( GetProcessHeap(), 0, sizeof(ICONCACHE
) );
294 ptr
->hModule
= hModule
;
297 ptr
->hGroupRsrc
= hGroupRsrc
;
300 EnterCriticalSection( &IconCrst
);
301 ptr
->next
= IconAnchor
;
303 LeaveCriticalSection( &IconCrst
);
306 /**********************************************************************
307 * CURSORICON_DelSharedIcon
309 static INT
CURSORICON_DelSharedIcon( HICON hIcon
)
314 EnterCriticalSection( &IconCrst
);
316 for ( ptr
= IconAnchor
; ptr
; ptr
= ptr
->next
)
317 if ( ptr
->hIcon
== hIcon
)
319 if ( ptr
->count
> 0 ) ptr
->count
--;
324 LeaveCriticalSection( &IconCrst
);
329 /**********************************************************************
330 * CURSORICON_FreeModuleIcons
332 void CURSORICON_FreeModuleIcons( HMODULE16 hMod16
)
334 ICONCACHE
**ptr
= &IconAnchor
;
335 HMODULE hModule
= HMODULE_32(GetExePtr( hMod16
));
337 EnterCriticalSection( &IconCrst
);
341 if ( (*ptr
)->hModule
== hModule
)
343 ICONCACHE
*freePtr
= *ptr
;
344 *ptr
= freePtr
->next
;
346 GlobalFree16(HICON_16(freePtr
->hIcon
));
347 HeapFree( GetProcessHeap(), 0, freePtr
);
353 LeaveCriticalSection( &IconCrst
);
356 /**********************************************************************
357 * CURSORICON_FindBestIcon
359 * Find the icon closest to the requested size and number of colors.
361 static CURSORICONDIRENTRY
*CURSORICON_FindBestIcon( CURSORICONDIR
*dir
, int width
,
362 int height
, int colors
)
365 CURSORICONDIRENTRY
*entry
, *bestEntry
= NULL
;
366 UINT iTotalDiff
, iXDiff
=0, iYDiff
=0, iColorDiff
;
367 UINT iTempXDiff
, iTempYDiff
, iTempColorDiff
;
369 if (dir
->idCount
< 1)
371 WARN_(icon
)("Empty directory!\n" );
374 if (dir
->idCount
== 1) return &dir
->idEntries
[0]; /* No choice... */
377 iTotalDiff
= 0xFFFFFFFF;
378 iColorDiff
= 0xFFFFFFFF;
379 for (i
= 0, entry
= &dir
->idEntries
[0]; i
< dir
->idCount
; i
++,entry
++)
381 iTempXDiff
= abs(width
- entry
->ResInfo
.icon
.bWidth
);
382 iTempYDiff
= abs(height
- entry
->ResInfo
.icon
.bHeight
);
384 if(iTotalDiff
> (iTempXDiff
+ iTempYDiff
))
388 iTotalDiff
= iXDiff
+ iYDiff
;
392 /* Find Best Colors for Best Fit */
393 for (i
= 0, entry
= &dir
->idEntries
[0]; i
< dir
->idCount
; i
++,entry
++)
395 if(abs(width
- entry
->ResInfo
.icon
.bWidth
) == iXDiff
&&
396 abs(height
- entry
->ResInfo
.icon
.bHeight
) == iYDiff
)
398 iTempColorDiff
= abs(colors
- (1<<entry
->wBitCount
));
399 if(iColorDiff
> iTempColorDiff
)
402 iColorDiff
= iTempColorDiff
;
411 /**********************************************************************
412 * CURSORICON_FindBestCursor
414 * Find the cursor closest to the requested size.
415 * FIXME: parameter 'color' ignored and entries with more than 1 bpp
418 static CURSORICONDIRENTRY
*CURSORICON_FindBestCursor( CURSORICONDIR
*dir
,
419 int width
, int height
, int color
)
421 int i
, maxwidth
, maxheight
;
422 CURSORICONDIRENTRY
*entry
, *bestEntry
= NULL
;
424 if (dir
->idCount
< 1)
426 WARN_(cursor
)("Empty directory!\n" );
429 if (dir
->idCount
== 1) return &dir
->idEntries
[0]; /* No choice... */
431 /* Double height to account for AND and XOR masks */
435 /* First find the largest one smaller than or equal to the requested size*/
437 maxwidth
= maxheight
= 0;
438 for(i
= 0,entry
= &dir
->idEntries
[0]; i
< dir
->idCount
; i
++,entry
++)
439 if ((entry
->ResInfo
.cursor
.wWidth
<= width
) && (entry
->ResInfo
.cursor
.wHeight
<= height
) &&
440 (entry
->ResInfo
.cursor
.wWidth
> maxwidth
) && (entry
->ResInfo
.cursor
.wHeight
> maxheight
) &&
441 (entry
->wBitCount
== 1))
444 maxwidth
= entry
->ResInfo
.cursor
.wWidth
;
445 maxheight
= entry
->ResInfo
.cursor
.wHeight
;
447 if (bestEntry
) return bestEntry
;
449 /* Now find the smallest one larger than the requested size */
451 maxwidth
= maxheight
= 255;
452 for(i
= 0,entry
= &dir
->idEntries
[0]; i
< dir
->idCount
; i
++,entry
++)
453 if ((entry
->ResInfo
.cursor
.wWidth
< maxwidth
) && (entry
->ResInfo
.cursor
.wHeight
< maxheight
) &&
454 (entry
->wBitCount
== 1))
457 maxwidth
= entry
->ResInfo
.cursor
.wWidth
;
458 maxheight
= entry
->ResInfo
.cursor
.wHeight
;
464 /*********************************************************************
465 * The main purpose of this function is to create fake resource directory
466 * and fake resource entries. There are several reasons for this:
467 * - CURSORICONDIR and CURSORICONFILEDIR differ in sizes and their
469 * There are some "bad" cursor files which do not have
470 * bColorCount initialized but instead one must read this info
471 * directly from corresponding DIB sections
472 * Note: wResId is index to array of pointer returned in ptrs (origin is 1)
474 static BOOL
CURSORICON_SimulateLoadingFromResourceW( LPWSTR filename
, BOOL fCursor
,
475 CURSORICONDIR
**res
, LPBYTE
**ptr
)
478 CURSORICONFILEDIR
*bits
;
479 int entries
, size
, i
;
483 if (!(bits
= map_fileW( filename
))) return FALSE
;
485 /* FIXME: test for inimated icons
486 * hack to load the first icon from the *.ani file
488 if ( *(LPDWORD
)bits
==0x46464952 ) /* "RIFF" */
489 { LPBYTE pos
= (LPBYTE
) bits
;
490 FIXME_(cursor
)("Animated icons not correctly implemented! %p \n", bits
);
493 { if (*(LPDWORD
)pos
==0x6e6f6369) /* "icon" */
494 { FIXME_(cursor
)("icon entry found! %p\n", bits
);
496 if ( !*(LPWORD
) pos
==0x2fe) /* iconsize */
499 bits
=(CURSORICONFILEDIR
*)(pos
+4);
500 FIXME_(cursor
)("icon size ok. offset=%p \n", bits
);
504 if (pos
>=(LPBYTE
)bits
+766) goto fail
;
507 if (!(entries
= bits
->idCount
)) goto fail
;
508 size
= sizeof(CURSORICONDIR
) + sizeof(CURSORICONDIRENTRY
) * (entries
- 1);
509 _free
= (LPBYTE
) size
;
511 for (i
=0; i
< entries
; i
++)
512 size
+= bits
->idEntries
[i
].dwDIBSize
+ (fCursor
? sizeof(POINT16
): 0);
514 if (!(*ptr
= HeapAlloc( GetProcessHeap(), 0,
515 entries
* sizeof (CURSORICONDIRENTRY
*)))) goto fail
;
516 if (!(*res
= HeapAlloc( GetProcessHeap(), 0, size
))) goto fail
;
518 _free
= (LPBYTE
)(*res
) + (int)_free
;
519 memcpy((*res
), bits
, 6);
520 for (i
=0; i
<entries
; i
++)
522 ((LPBYTE
*)(*ptr
))[i
] = _free
;
524 (*res
)->idEntries
[i
].ResInfo
.cursor
.wWidth
=bits
->idEntries
[i
].bWidth
;
525 (*res
)->idEntries
[i
].ResInfo
.cursor
.wHeight
=bits
->idEntries
[i
].bHeight
;
526 ((LPPOINT16
)_free
)->x
=bits
->idEntries
[i
].xHotspot
;
527 ((LPPOINT16
)_free
)->y
=bits
->idEntries
[i
].yHotspot
;
528 _free
+=sizeof(POINT16
);
530 (*res
)->idEntries
[i
].ResInfo
.icon
.bWidth
=bits
->idEntries
[i
].bWidth
;
531 (*res
)->idEntries
[i
].ResInfo
.icon
.bHeight
=bits
->idEntries
[i
].bHeight
;
532 (*res
)->idEntries
[i
].ResInfo
.icon
.bColorCount
= bits
->idEntries
[i
].bColorCount
;
534 (*res
)->idEntries
[i
].wPlanes
=1;
535 (*res
)->idEntries
[i
].wBitCount
= ((LPBITMAPINFOHEADER
)((LPBYTE
)bits
+
536 bits
->idEntries
[i
].dwDIBOffset
))->biBitCount
;
537 (*res
)->idEntries
[i
].dwBytesInRes
= bits
->idEntries
[i
].dwDIBSize
;
538 (*res
)->idEntries
[i
].wResId
=i
+1;
540 memcpy(_free
,(LPBYTE
)bits
+bits
->idEntries
[i
].dwDIBOffset
,
541 (*res
)->idEntries
[i
].dwBytesInRes
);
542 _free
+= (*res
)->idEntries
[i
].dwBytesInRes
;
544 UnmapViewOfFile( bits
);
547 if (*res
) HeapFree( GetProcessHeap(), 0, *res
);
548 if (*ptr
) HeapFree( GetProcessHeap(), 0, *ptr
);
549 UnmapViewOfFile( bits
);
554 /**********************************************************************
555 * CURSORICON_CreateFromResource
557 * Create a cursor or icon from in-memory resource template.
559 * FIXME: Convert to mono when cFlag is LR_MONOCHROME. Do something
560 * with cbSize parameter as well.
562 static HICON
CURSORICON_CreateFromResource( HMODULE16 hModule
, HGLOBAL16 hObj
, LPBYTE bits
,
563 UINT cbSize
, BOOL bIcon
, DWORD dwVersion
,
564 INT width
, INT height
, UINT loadflags
)
567 int sizeAnd
, sizeXor
;
568 HBITMAP hAndBits
= 0, hXorBits
= 0; /* error condition for later */
569 BITMAP bmpXor
, bmpAnd
;
575 hotspot
.x
= ICON_HOTSPOT
;
576 hotspot
.y
= ICON_HOTSPOT
;
578 TRACE_(cursor
)("%08x (%u bytes), ver %08x, %ix%i %s %s\n",
579 (unsigned)bits
, cbSize
, (unsigned)dwVersion
, width
, height
,
580 bIcon
? "icon" : "cursor", (loadflags
& LR_MONOCHROME
) ? "mono" : "" );
581 if (dwVersion
== 0x00020000)
583 FIXME_(cursor
)("\t2.xx resources are not supported\n");
588 bmi
= (BITMAPINFO
*)bits
;
589 else /* get the hotspot */
591 POINT16
*pt
= (POINT16
*)bits
;
593 bmi
= (BITMAPINFO
*)(pt
+ 1);
595 size
= bitmap_info_size( bmi
, DIB_RGB_COLORS
);
597 if (!width
) width
= bmi
->bmiHeader
.biWidth
;
598 if (!height
) height
= bmi
->bmiHeader
.biHeight
/2;
599 DoStretch
= (bmi
->bmiHeader
.biHeight
/2 != height
) ||
600 (bmi
->bmiHeader
.biWidth
!= width
);
602 /* Check bitmap header */
604 if ( (bmi
->bmiHeader
.biSize
!= sizeof(BITMAPCOREHEADER
)) &&
605 (bmi
->bmiHeader
.biSize
!= sizeof(BITMAPINFOHEADER
) ||
606 bmi
->bmiHeader
.biCompression
!= BI_RGB
) )
608 WARN_(cursor
)("\tinvalid resource bitmap header.\n");
612 if (!screen_dc
) screen_dc
= CreateDCA( "DISPLAY", NULL
, NULL
, NULL
);
617 /* Make sure we have room for the monochrome bitmap later on.
618 * Note that BITMAPINFOINFO and BITMAPCOREHEADER are the same
619 * up to and including the biBitCount. In-memory icon resource
620 * format is as follows:
622 * BITMAPINFOHEADER icHeader // DIB header
623 * RGBQUAD icColors[] // Color table
624 * BYTE icXOR[] // DIB bits for XOR mask
625 * BYTE icAND[] // DIB bits for AND mask
628 if ((pInfo
= (BITMAPINFO
*)HeapAlloc( GetProcessHeap(), 0,
629 max(size
, sizeof(BITMAPINFOHEADER
) + 2*sizeof(RGBQUAD
)))))
631 memcpy( pInfo
, bmi
, size
);
632 pInfo
->bmiHeader
.biHeight
/= 2;
634 /* Create the XOR bitmap */
639 hXorBits
= CreateCompatibleBitmap(screen_dc
, width
, height
);
643 hXorBits
= CreateBitmap(width
, height
, 1, 1, NULL
);
650 if (!hdcMem
) hdcMem
= CreateCompatibleDC(screen_dc
);
652 hOld
= SelectObject(hdcMem
, hXorBits
);
653 res
= StretchDIBits(hdcMem
, 0, 0, width
, height
, 0, 0,
654 bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
/2,
655 (char*)bmi
+ size
, pInfo
, DIB_RGB_COLORS
, SRCCOPY
);
656 SelectObject(hdcMem
, hOld
);
658 if (!res
) { DeleteObject(hXorBits
); hXorBits
= 0; }
660 } else hXorBits
= CreateDIBitmap( screen_dc
, &pInfo
->bmiHeader
,
661 CBM_INIT
, (char*)bmi
+ size
, pInfo
, DIB_RGB_COLORS
);
664 char* xbits
= (char *)bmi
+ size
+
665 get_dib_width_bytes( bmi
->bmiHeader
.biWidth
,
666 bmi
->bmiHeader
.biBitCount
) * abs( bmi
->bmiHeader
.biHeight
) / 2;
668 pInfo
->bmiHeader
.biBitCount
= 1;
669 if (pInfo
->bmiHeader
.biSize
== sizeof(BITMAPINFOHEADER
))
671 RGBQUAD
*rgb
= pInfo
->bmiColors
;
673 pInfo
->bmiHeader
.biClrUsed
= pInfo
->bmiHeader
.biClrImportant
= 2;
674 rgb
[0].rgbBlue
= rgb
[0].rgbGreen
= rgb
[0].rgbRed
= 0x00;
675 rgb
[1].rgbBlue
= rgb
[1].rgbGreen
= rgb
[1].rgbRed
= 0xff;
676 rgb
[0].rgbReserved
= rgb
[1].rgbReserved
= 0;
680 RGBTRIPLE
*rgb
= (RGBTRIPLE
*)(((BITMAPCOREHEADER
*)pInfo
) + 1);
682 rgb
[0].rgbtBlue
= rgb
[0].rgbtGreen
= rgb
[0].rgbtRed
= 0x00;
683 rgb
[1].rgbtBlue
= rgb
[1].rgbtGreen
= rgb
[1].rgbtRed
= 0xff;
686 /* Create the AND bitmap */
689 if ((hAndBits
= CreateBitmap(width
, height
, 1, 1, NULL
))) {
693 if (!hdcMem
) hdcMem
= CreateCompatibleDC(screen_dc
);
695 hOld
= SelectObject(hdcMem
, hAndBits
);
696 res
= StretchDIBits(hdcMem
, 0, 0, width
, height
, 0, 0,
697 pInfo
->bmiHeader
.biWidth
, pInfo
->bmiHeader
.biHeight
,
698 xbits
, pInfo
, DIB_RGB_COLORS
, SRCCOPY
);
699 SelectObject(hdcMem
, hOld
);
701 if (!res
) { DeleteObject(hAndBits
); hAndBits
= 0; }
703 } else hAndBits
= CreateDIBitmap( screen_dc
, &pInfo
->bmiHeader
,
704 CBM_INIT
, xbits
, pInfo
, DIB_RGB_COLORS
);
706 if( !hAndBits
) DeleteObject( hXorBits
);
708 HeapFree( GetProcessHeap(), 0, pInfo
);
712 if( !hXorBits
|| !hAndBits
)
714 WARN_(cursor
)("\tunable to create an icon bitmap.\n");
718 /* Now create the CURSORICONINFO structure */
719 GetObjectA( hXorBits
, sizeof(bmpXor
), &bmpXor
);
720 GetObjectA( hAndBits
, sizeof(bmpAnd
), &bmpAnd
);
721 sizeXor
= bmpXor
.bmHeight
* bmpXor
.bmWidthBytes
;
722 sizeAnd
= bmpAnd
.bmHeight
* bmpAnd
.bmWidthBytes
;
724 if (hObj
) hObj
= GlobalReAlloc16( hObj
,
725 sizeof(CURSORICONINFO
) + sizeXor
+ sizeAnd
, GMEM_MOVEABLE
);
726 if (!hObj
) hObj
= GlobalAlloc16( GMEM_MOVEABLE
,
727 sizeof(CURSORICONINFO
) + sizeXor
+ sizeAnd
);
730 CURSORICONINFO
*info
;
732 /* Make it owned by the module */
733 if (hModule
) hModule
= GetExePtr(hModule
);
734 FarSetOwner16( hObj
, hModule
);
736 info
= (CURSORICONINFO
*)GlobalLock16( hObj
);
737 info
->ptHotSpot
.x
= hotspot
.x
;
738 info
->ptHotSpot
.y
= hotspot
.y
;
739 info
->nWidth
= bmpXor
.bmWidth
;
740 info
->nHeight
= bmpXor
.bmHeight
;
741 info
->nWidthBytes
= bmpXor
.bmWidthBytes
;
742 info
->bPlanes
= bmpXor
.bmPlanes
;
743 info
->bBitsPerPixel
= bmpXor
.bmBitsPixel
;
745 /* Transfer the bitmap bits to the CURSORICONINFO structure */
747 GetBitmapBits( hAndBits
, sizeAnd
, (char *)(info
+ 1) );
748 GetBitmapBits( hXorBits
, sizeXor
, (char *)(info
+ 1) + sizeAnd
);
749 GlobalUnlock16( hObj
);
752 DeleteObject( hAndBits
);
753 DeleteObject( hXorBits
);
754 return HICON_32((HICON16
)hObj
);
758 /**********************************************************************
759 * CreateIconFromResource (USER32.@)
761 HICON WINAPI
CreateIconFromResource( LPBYTE bits
, UINT cbSize
,
762 BOOL bIcon
, DWORD dwVersion
)
764 return CreateIconFromResourceEx( bits
, cbSize
, bIcon
, dwVersion
, 0,0,0);
768 /**********************************************************************
769 * CreateIconFromResourceEx (USER32.@)
771 HICON WINAPI
CreateIconFromResourceEx( LPBYTE bits
, UINT cbSize
,
772 BOOL bIcon
, DWORD dwVersion
,
773 INT width
, INT height
,
776 return CURSORICON_CreateFromResource( 0, 0, bits
, cbSize
, bIcon
, dwVersion
,
777 width
, height
, cFlag
);
780 /**********************************************************************
783 * Load a cursor or icon from resource or file.
785 static HICON
CURSORICON_Load(HINSTANCE hInstance
, LPCWSTR name
,
786 INT width
, INT height
, INT colors
,
787 BOOL fCursor
, UINT loadflags
)
793 CURSORICONDIRENTRY
*dirEntry
;
796 if ( loadflags
& LR_LOADFROMFILE
) /* Load from file */
799 if (!CURSORICON_SimulateLoadingFromResourceW((LPWSTR
)name
, fCursor
, &dir
, &ptr
))
802 dirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestCursor(dir
, width
, height
, 1);
804 dirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestIcon(dir
, width
, height
, colors
);
805 bits
= ptr
[dirEntry
->wResId
-1];
806 hIcon
= CURSORICON_CreateFromResource( 0, 0, bits
, dirEntry
->dwBytesInRes
,
807 !fCursor
, 0x00030000, width
, height
, loadflags
);
808 HeapFree( GetProcessHeap(), 0, dir
);
809 HeapFree( GetProcessHeap(), 0, ptr
);
811 else /* Load from resource */
817 if (!hInstance
) /* Load OEM cursor/icon */
819 if (!(hInstance
= GetModuleHandleA( "user32.dll" ))) return 0;
822 /* Normalize hInstance (must be uniquely represented for icon cache) */
824 if (!HIWORD( hInstance
))
825 hInstance
= HINSTANCE_32(GetExePtr( HINSTANCE_16(hInstance
) ));
827 /* Get directory resource ID */
829 if (!(hRsrc
= FindResourceW( hInstance
, name
,
830 (LPWSTR
)(fCursor
? RT_GROUP_CURSOR
: RT_GROUP_ICON
) )))
834 /* Find the best entry in the directory */
836 if (!(handle
= LoadResource( hInstance
, hRsrc
))) return 0;
837 if (!(dir
= (CURSORICONDIR
*)LockResource( handle
))) return 0;
839 dirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestCursor( dir
,
842 dirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestIcon( dir
,
843 width
, height
, colors
);
844 if (!dirEntry
) return 0;
845 wResId
= dirEntry
->wResId
;
846 dwBytesInRes
= dirEntry
->dwBytesInRes
;
847 FreeResource( handle
);
849 /* Load the resource */
851 if (!(hRsrc
= FindResourceW(hInstance
,MAKEINTRESOURCEW(wResId
),
852 (LPWSTR
)(fCursor
? RT_CURSOR
: RT_ICON
) ))) return 0;
854 /* If shared icon, check whether it was already loaded */
855 if ( (loadflags
& LR_SHARED
)
856 && (hIcon
= CURSORICON_FindSharedIcon( hInstance
, hRsrc
) ) != 0 )
859 if (!(handle
= LoadResource( hInstance
, hRsrc
))) return 0;
860 bits
= (LPBYTE
)LockResource( handle
);
861 hIcon
= CURSORICON_CreateFromResource( 0, 0, bits
, dwBytesInRes
,
862 !fCursor
, 0x00030000, width
, height
, loadflags
);
863 FreeResource( handle
);
865 /* If shared icon, add to icon cache */
867 if ( hIcon
&& (loadflags
& LR_SHARED
) )
868 CURSORICON_AddSharedIcon( hInstance
, hRsrc
, hGroupRsrc
, hIcon
);
874 /***********************************************************************
877 * Make a copy of a cursor or icon.
879 static HICON
CURSORICON_Copy( HINSTANCE16 hInst16
, HICON hIcon
)
881 char *ptrOld
, *ptrNew
;
883 HICON16 hOld
= HICON_16(hIcon
);
886 if (!(ptrOld
= (char *)GlobalLock16( hOld
))) return 0;
887 if (hInst16
&& !(hInst16
= GetExePtr( hInst16
))) return 0;
888 size
= GlobalSize16( hOld
);
889 hNew
= GlobalAlloc16( GMEM_MOVEABLE
, size
);
890 FarSetOwner16( hNew
, hInst16
);
891 ptrNew
= (char *)GlobalLock16( hNew
);
892 memcpy( ptrNew
, ptrOld
, size
);
893 GlobalUnlock16( hOld
);
894 GlobalUnlock16( hNew
);
895 return HICON_32(hNew
);
898 /*************************************************************************
901 * Copies an Image from the Cache if LR_COPYFROMRESOURCE is specified
904 * Handle [I] handle to an Image
905 * nType [I] Type of Handle (IMAGE_CURSOR | IMAGE_ICON)
906 * iDesiredCX [I] The Desired width of the Image
907 * iDesiredCY [I] The desired height of the Image
908 * nFlags [I] The flags from CopyImage
911 * Success: The new handle of the Image
914 * LR_COPYDELETEORG and LR_MONOCHROME are currently not implemented.
915 * LR_MONOCHROME should be implemented by CURSORICON_CreateFromResource.
916 * LR_COPYFROMRESOURCE will only work if the Image is in the Cache.
921 static HICON
CURSORICON_ExtCopy(HICON hIcon
, UINT nType
,
922 INT iDesiredCX
, INT iDesiredCY
,
927 TRACE_(icon
)("hIcon %p, nType %u, iDesiredCX %i, iDesiredCY %i, nFlags %u\n",
928 hIcon
, nType
, iDesiredCX
, iDesiredCY
, nFlags
);
935 /* Best Fit or Monochrome */
936 if( (nFlags
& LR_COPYFROMRESOURCE
937 && (iDesiredCX
> 0 || iDesiredCY
> 0))
938 || nFlags
& LR_MONOCHROME
)
940 ICONCACHE
* pIconCache
= CURSORICON_FindCache(hIcon
);
942 /* Not Found in Cache, then do a straight copy
944 if(pIconCache
== NULL
)
946 hNew
= CURSORICON_Copy(0, hIcon
);
947 if(nFlags
& LR_COPYFROMRESOURCE
)
949 TRACE_(icon
)("LR_COPYFROMRESOURCE: Failed to load from cache\n");
954 int iTargetCY
= iDesiredCY
, iTargetCX
= iDesiredCX
;
961 CURSORICONDIRENTRY
*pDirEntry
;
962 BOOL bIsIcon
= (nType
== IMAGE_ICON
);
964 /* Completing iDesiredCX CY for Monochrome Bitmaps if needed
966 if(((nFlags
& LR_MONOCHROME
) && !(nFlags
& LR_COPYFROMRESOURCE
))
967 || (iDesiredCX
== 0 && iDesiredCY
== 0))
969 iDesiredCY
= GetSystemMetrics(bIsIcon
?
970 SM_CYICON
: SM_CYCURSOR
);
971 iDesiredCX
= GetSystemMetrics(bIsIcon
?
972 SM_CXICON
: SM_CXCURSOR
);
975 /* Retrieve the CURSORICONDIRENTRY
977 if (!(hMem
= LoadResource( pIconCache
->hModule
,
978 pIconCache
->hGroupRsrc
)))
982 if (!(pDir
= (CURSORICONDIR
*)LockResource( hMem
)))
991 pDirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestIcon(
992 pDir
, iDesiredCX
, iDesiredCY
, 256);
996 pDirEntry
= (CURSORICONDIRENTRY
*)CURSORICON_FindBestCursor(
997 pDir
, iDesiredCX
, iDesiredCY
, 1);
1000 wResId
= pDirEntry
->wResId
;
1001 dwBytesInRes
= pDirEntry
->dwBytesInRes
;
1004 TRACE_(icon
)("ResID %u, BytesInRes %lu, Width %d, Height %d DX %d, DY %d\n",
1005 wResId
, dwBytesInRes
, pDirEntry
->ResInfo
.icon
.bWidth
,
1006 pDirEntry
->ResInfo
.icon
.bHeight
, iDesiredCX
, iDesiredCY
);
1010 if (!(hRsrc
= FindResourceW(pIconCache
->hModule
,
1011 MAKEINTRESOURCEW(wResId
), (LPWSTR
)(bIsIcon
? RT_ICON
: RT_CURSOR
))))
1015 if (!(hMem
= LoadResource( pIconCache
->hModule
, hRsrc
)))
1020 pBits
= (LPBYTE
)LockResource( hMem
);
1022 if(nFlags
& LR_DEFAULTSIZE
)
1024 iTargetCY
= GetSystemMetrics(SM_CYICON
);
1025 iTargetCX
= GetSystemMetrics(SM_CXICON
);
1028 /* Create a New Icon with the proper dimension
1030 hNew
= CURSORICON_CreateFromResource( 0, 0, pBits
, dwBytesInRes
,
1031 bIsIcon
, 0x00030000, iTargetCX
, iTargetCY
, nFlags
);
1035 else hNew
= CURSORICON_Copy(0, hIcon
);
1040 /***********************************************************************
1041 * CreateCursor (USER32.@)
1043 HCURSOR WINAPI
CreateCursor( HINSTANCE hInstance
,
1044 INT xHotSpot
, INT yHotSpot
,
1045 INT nWidth
, INT nHeight
,
1046 LPCVOID lpANDbits
, LPCVOID lpXORbits
)
1048 CURSORICONINFO info
;
1050 TRACE_(cursor
)("%dx%d spot=%d,%d xor=%p and=%p\n",
1051 nWidth
, nHeight
, xHotSpot
, yHotSpot
, lpXORbits
, lpANDbits
);
1053 info
.ptHotSpot
.x
= xHotSpot
;
1054 info
.ptHotSpot
.y
= yHotSpot
;
1055 info
.nWidth
= nWidth
;
1056 info
.nHeight
= nHeight
;
1057 info
.nWidthBytes
= 0;
1059 info
.bBitsPerPixel
= 1;
1061 return HICON_32(CreateCursorIconIndirect16(0, &info
, lpANDbits
, lpXORbits
));
1065 /***********************************************************************
1066 * CreateIcon (USER.407)
1068 HICON16 WINAPI
CreateIcon16( HINSTANCE16 hInstance
, INT16 nWidth
,
1069 INT16 nHeight
, BYTE bPlanes
, BYTE bBitsPixel
,
1070 LPCVOID lpANDbits
, LPCVOID lpXORbits
)
1072 CURSORICONINFO info
;
1074 TRACE_(icon
)("%dx%dx%d, xor=%p, and=%p\n",
1075 nWidth
, nHeight
, bPlanes
* bBitsPixel
, lpXORbits
, lpANDbits
);
1077 info
.ptHotSpot
.x
= ICON_HOTSPOT
;
1078 info
.ptHotSpot
.y
= ICON_HOTSPOT
;
1079 info
.nWidth
= nWidth
;
1080 info
.nHeight
= nHeight
;
1081 info
.nWidthBytes
= 0;
1082 info
.bPlanes
= bPlanes
;
1083 info
.bBitsPerPixel
= bBitsPixel
;
1085 return CreateCursorIconIndirect16( hInstance
, &info
, lpANDbits
, lpXORbits
);
1089 /***********************************************************************
1090 * CreateIcon (USER32.@)
1092 * Creates an icon based on the specified bitmaps. The bitmaps must be
1093 * provided in a device dependent format and will be resized to
1094 * (SM_CXICON,SM_CYICON) and depth converted to match the screen's color
1095 * depth. The provided bitmaps must be top-down bitmaps.
1096 * Although Windows does not support 15bpp(*) this API must support it
1097 * for Winelib applications.
1099 * (*) Windows does not support 15bpp but it supports the 555 RGB 16bpp
1104 * - The provided bitmaps are not resized!
1105 * - The documentation says the lpXORbits bitmap must be in a device
1106 * dependent format. But we must still resize it and perform depth
1107 * conversions if necessary.
1108 * - I'm a bit unsure about the how the 'device dependent format' thing works.
1109 * I did some tests on windows and found that if you provide a 16bpp bitmap
1110 * in lpXORbits, then its format but be 565 RGB if the screen's bit depth
1111 * is 16bpp but it must be 555 RGB if the screen's bit depth is anything
1112 * else. I don't know if this is part of the GDI specs or if this is a
1113 * quirk of the graphics card driver.
1114 * - You may think that we check whether the bit depths match or not
1115 * as an optimization. But the truth is that the conversion using
1116 * CreateDIBitmap does not work for some bit depth (e.g. 8bpp) and I have
1118 * - I'm pretty sure that all the things we do in CreateIcon should
1119 * also be done in CreateIconIndirect...
1121 HICON WINAPI
CreateIcon(
1122 HINSTANCE hInstance
, /* [in] the application's hInstance */
1123 INT nWidth
, /* [in] the width of the provided bitmaps */
1124 INT nHeight
, /* [in] the height of the provided bitmaps */
1125 BYTE bPlanes
, /* [in] the number of planes in the provided bitmaps */
1126 BYTE bBitsPixel
, /* [in] the number of bits per pixel of the lpXORbits bitmap */
1127 LPCVOID lpANDbits
, /* [in] a monochrome bitmap representing the icon's mask */
1128 LPCVOID lpXORbits
) /* [in] the icon's 'color' bitmap */
1133 TRACE_(icon
)("%dx%dx%d, xor=%p, and=%p\n",
1134 nWidth
, nHeight
, bPlanes
* bBitsPixel
, lpXORbits
, lpANDbits
);
1140 if (GetDeviceCaps(hdc
,BITSPIXEL
)==bBitsPixel
) {
1141 CURSORICONINFO info
;
1143 info
.ptHotSpot
.x
= ICON_HOTSPOT
;
1144 info
.ptHotSpot
.y
= ICON_HOTSPOT
;
1145 info
.nWidth
= nWidth
;
1146 info
.nHeight
= nHeight
;
1147 info
.nWidthBytes
= 0;
1148 info
.bPlanes
= bPlanes
;
1149 info
.bBitsPerPixel
= bBitsPixel
;
1151 hIcon
=HICON_32(CreateCursorIconIndirect16(0, &info
, lpANDbits
, lpXORbits
));
1157 iinfo
.xHotspot
=ICON_HOTSPOT
;
1158 iinfo
.yHotspot
=ICON_HOTSPOT
;
1159 iinfo
.hbmMask
=CreateBitmap(nWidth
,nHeight
,1,1,lpANDbits
);
1161 bmi
.bmiHeader
.biSize
=sizeof(bmi
.bmiHeader
);
1162 bmi
.bmiHeader
.biWidth
=nWidth
;
1163 bmi
.bmiHeader
.biHeight
=-nHeight
;
1164 bmi
.bmiHeader
.biPlanes
=bPlanes
;
1165 bmi
.bmiHeader
.biBitCount
=bBitsPixel
;
1166 bmi
.bmiHeader
.biCompression
=BI_RGB
;
1167 bmi
.bmiHeader
.biSizeImage
=0;
1168 bmi
.bmiHeader
.biXPelsPerMeter
=0;
1169 bmi
.bmiHeader
.biYPelsPerMeter
=0;
1170 bmi
.bmiHeader
.biClrUsed
=0;
1171 bmi
.bmiHeader
.biClrImportant
=0;
1173 iinfo
.hbmColor
= CreateDIBitmap( hdc
, &bmi
.bmiHeader
,
1174 CBM_INIT
, lpXORbits
,
1175 &bmi
, DIB_RGB_COLORS
);
1177 hIcon
=CreateIconIndirect(&iinfo
);
1178 DeleteObject(iinfo
.hbmMask
);
1179 DeleteObject(iinfo
.hbmColor
);
1186 /***********************************************************************
1187 * CreateCursorIconIndirect (USER.408)
1189 HGLOBAL16 WINAPI
CreateCursorIconIndirect16( HINSTANCE16 hInstance
,
1190 CURSORICONINFO
*info
,
1196 int sizeAnd
, sizeXor
;
1198 hInstance
= GetExePtr( hInstance
); /* Make it a module handle */
1199 if (!lpXORbits
|| !lpANDbits
|| info
->bPlanes
!= 1) return 0;
1200 info
->nWidthBytes
= get_bitmap_width_bytes(info
->nWidth
,info
->bBitsPerPixel
);
1201 sizeXor
= info
->nHeight
* info
->nWidthBytes
;
1202 sizeAnd
= info
->nHeight
* get_bitmap_width_bytes( info
->nWidth
, 1 );
1203 if (!(handle
= GlobalAlloc16( GMEM_MOVEABLE
,
1204 sizeof(CURSORICONINFO
) + sizeXor
+ sizeAnd
)))
1206 FarSetOwner16( handle
, hInstance
);
1207 ptr
= (char *)GlobalLock16( handle
);
1208 memcpy( ptr
, info
, sizeof(*info
) );
1209 memcpy( ptr
+ sizeof(CURSORICONINFO
), lpANDbits
, sizeAnd
);
1210 memcpy( ptr
+ sizeof(CURSORICONINFO
) + sizeAnd
, lpXORbits
, sizeXor
);
1211 GlobalUnlock16( handle
);
1216 /***********************************************************************
1217 * CopyIcon (USER.368)
1219 HICON16 WINAPI
CopyIcon16( HINSTANCE16 hInstance
, HICON16 hIcon
)
1221 TRACE_(icon
)("%04x %04x\n", hInstance
, hIcon
);
1222 return HICON_16(CURSORICON_Copy(hInstance
, HICON_32(hIcon
)));
1226 /***********************************************************************
1227 * CopyIcon (USER32.@)
1229 HICON WINAPI
CopyIcon( HICON hIcon
)
1231 TRACE_(icon
)("%p\n", hIcon
);
1232 return CURSORICON_Copy( 0, hIcon
);
1236 /***********************************************************************
1237 * CopyCursor (USER.369)
1239 HCURSOR16 WINAPI
CopyCursor16( HINSTANCE16 hInstance
, HCURSOR16 hCursor
)
1241 TRACE_(cursor
)("%04x %04x\n", hInstance
, hCursor
);
1242 return HICON_16(CURSORICON_Copy(hInstance
, HCURSOR_32(hCursor
)));
1245 /**********************************************************************
1246 * DestroyIcon32 (USER.610)
1248 * This routine is actually exported from Win95 USER under the name
1249 * DestroyIcon32 ... The behaviour implemented here should mimic
1250 * the Win95 one exactly, especially the return values, which
1251 * depend on the setting of various flags.
1253 WORD WINAPI
DestroyIcon32( HGLOBAL16 handle
, UINT16 flags
)
1257 TRACE_(icon
)("(%04x, %04x)\n", handle
, flags
);
1259 /* Check whether destroying active cursor */
1261 if ( QUEUE_Current()->cursor
== HICON_32(handle
) )
1263 WARN_(cursor
)("Destroying active cursor!\n" );
1267 /* Try shared cursor/icon first */
1269 if ( !(flags
& CID_NONSHARED
) )
1271 INT count
= CURSORICON_DelSharedIcon(HICON_32(handle
));
1274 return (flags
& CID_WIN32
)? TRUE
: (count
== 0);
1276 /* FIXME: OEM cursors/icons should be recognized */
1279 /* Now assume non-shared cursor/icon */
1281 retv
= GlobalFree16( handle
);
1282 return (flags
& CID_RESOURCE
)? retv
: TRUE
;
1285 /***********************************************************************
1286 * DestroyIcon (USER32.@)
1288 BOOL WINAPI
DestroyIcon( HICON hIcon
)
1290 return DestroyIcon32(HICON_16(hIcon
), CID_WIN32
);
1294 /***********************************************************************
1295 * DestroyCursor (USER32.@)
1297 BOOL WINAPI
DestroyCursor( HCURSOR hCursor
)
1299 return DestroyIcon32(HCURSOR_16(hCursor
), CID_WIN32
);
1303 /***********************************************************************
1304 * DrawIcon (USER32.@)
1306 BOOL WINAPI
DrawIcon( HDC hdc
, INT x
, INT y
, HICON hIcon
)
1308 CURSORICONINFO
*ptr
;
1310 HBITMAP hXorBits
, hAndBits
;
1311 COLORREF oldFg
, oldBg
;
1313 if (!(ptr
= (CURSORICONINFO
*)GlobalLock16(HICON_16(hIcon
)))) return FALSE
;
1314 if (!(hMemDC
= CreateCompatibleDC( hdc
))) return FALSE
;
1315 hAndBits
= CreateBitmap( ptr
->nWidth
, ptr
->nHeight
, 1, 1,
1317 hXorBits
= CreateBitmap( ptr
->nWidth
, ptr
->nHeight
, ptr
->bPlanes
,
1318 ptr
->bBitsPerPixel
, (char *)(ptr
+ 1)
1319 + ptr
->nHeight
* get_bitmap_width_bytes(ptr
->nWidth
,1) );
1320 oldFg
= SetTextColor( hdc
, RGB(0,0,0) );
1321 oldBg
= SetBkColor( hdc
, RGB(255,255,255) );
1323 if (hXorBits
&& hAndBits
)
1325 HBITMAP hBitTemp
= SelectObject( hMemDC
, hAndBits
);
1326 BitBlt( hdc
, x
, y
, ptr
->nWidth
, ptr
->nHeight
, hMemDC
, 0, 0, SRCAND
);
1327 SelectObject( hMemDC
, hXorBits
);
1328 BitBlt(hdc
, x
, y
, ptr
->nWidth
, ptr
->nHeight
, hMemDC
, 0, 0,SRCINVERT
);
1329 SelectObject( hMemDC
, hBitTemp
);
1332 if (hXorBits
) DeleteObject( hXorBits
);
1333 if (hAndBits
) DeleteObject( hAndBits
);
1334 GlobalUnlock16(HICON_16(hIcon
));
1335 SetTextColor( hdc
, oldFg
);
1336 SetBkColor( hdc
, oldBg
);
1340 /***********************************************************************
1341 * DumpIcon (USER.459)
1343 DWORD WINAPI
DumpIcon16( SEGPTR pInfo
, WORD
*lpLen
,
1344 SEGPTR
*lpXorBits
, SEGPTR
*lpAndBits
)
1346 CURSORICONINFO
*info
= MapSL( pInfo
);
1347 int sizeAnd
, sizeXor
;
1349 if (!info
) return 0;
1350 sizeXor
= info
->nHeight
* info
->nWidthBytes
;
1351 sizeAnd
= info
->nHeight
* get_bitmap_width_bytes( info
->nWidth
, 1 );
1352 if (lpAndBits
) *lpAndBits
= pInfo
+ sizeof(CURSORICONINFO
);
1353 if (lpXorBits
) *lpXorBits
= pInfo
+ sizeof(CURSORICONINFO
) + sizeAnd
;
1354 if (lpLen
) *lpLen
= sizeof(CURSORICONINFO
) + sizeAnd
+ sizeXor
;
1355 return MAKELONG( sizeXor
, sizeXor
);
1359 /***********************************************************************
1360 * SetCursor (USER32.@)
1362 * A handle to the previous cursor shape.
1364 HCURSOR WINAPI
SetCursor( HCURSOR hCursor
/* [in] Handle of cursor to show */ )
1366 MESSAGEQUEUE
*queue
= QUEUE_Current();
1369 if (hCursor
== queue
->cursor
) return hCursor
; /* No change */
1370 TRACE_(cursor
)("%p\n", hCursor
);
1371 hOldCursor
= queue
->cursor
;
1372 queue
->cursor
= hCursor
;
1373 /* Change the cursor shape only if it is visible */
1374 if (queue
->cursor_count
>= 0)
1376 USER_Driver
.pSetCursor( (CURSORICONINFO
*)GlobalLock16(HCURSOR_16(hCursor
)) );
1377 GlobalUnlock16(HCURSOR_16(hCursor
));
1382 /***********************************************************************
1383 * ShowCursor (USER32.@)
1385 INT WINAPI
ShowCursor( BOOL bShow
)
1387 MESSAGEQUEUE
*queue
= QUEUE_Current();
1389 TRACE_(cursor
)("%d, count=%d\n", bShow
, queue
->cursor_count
);
1393 if (++queue
->cursor_count
== 0) /* Show it */
1395 USER_Driver
.pSetCursor((CURSORICONINFO
*)GlobalLock16(HCURSOR_16(queue
->cursor
)));
1396 GlobalUnlock16(HCURSOR_16(queue
->cursor
));
1401 if (--queue
->cursor_count
== -1) /* Hide it */
1402 USER_Driver
.pSetCursor( NULL
);
1404 return queue
->cursor_count
;
1407 /***********************************************************************
1408 * GetCursor (USER32.@)
1410 HCURSOR WINAPI
GetCursor(void)
1412 return QUEUE_Current()->cursor
;
1416 /***********************************************************************
1417 * ClipCursor (USER.16)
1419 BOOL16 WINAPI
ClipCursor16( const RECT16
*rect
)
1421 if (!rect
) SetRectEmpty( &CURSOR_ClipRect
);
1422 else CONV_RECT16TO32( rect
, &CURSOR_ClipRect
);
1427 /***********************************************************************
1428 * ClipCursor (USER32.@)
1430 BOOL WINAPI
ClipCursor( const RECT
*rect
)
1432 if (!rect
) SetRectEmpty( &CURSOR_ClipRect
);
1433 else CopyRect( &CURSOR_ClipRect
, rect
);
1438 /***********************************************************************
1439 * GetClipCursor (USER.309)
1441 void WINAPI
GetClipCursor16( RECT16
*rect
)
1443 if (rect
) CONV_RECT32TO16( &CURSOR_ClipRect
, rect
);
1447 /***********************************************************************
1448 * GetClipCursor (USER32.@)
1450 BOOL WINAPI
GetClipCursor( RECT
*rect
)
1454 CopyRect( rect
, &CURSOR_ClipRect
);
1460 /**********************************************************************
1461 * LookupIconIdFromDirectoryEx (USER.364)
1463 * FIXME: exact parameter sizes
1465 INT16 WINAPI
LookupIconIdFromDirectoryEx16( LPBYTE dir
, BOOL16 bIcon
,
1466 INT16 width
, INT16 height
, UINT16 cFlag
)
1468 return LookupIconIdFromDirectoryEx( dir
, bIcon
, width
, height
, cFlag
);
1471 /**********************************************************************
1472 * LookupIconIdFromDirectoryEx (USER32.@)
1474 INT WINAPI
LookupIconIdFromDirectoryEx( LPBYTE xdir
, BOOL bIcon
,
1475 INT width
, INT height
, UINT cFlag
)
1477 CURSORICONDIR
*dir
= (CURSORICONDIR
*)xdir
;
1479 if( dir
&& !dir
->idReserved
&& (dir
->idType
& 3) )
1481 CURSORICONDIRENTRY
* entry
;
1486 palEnts
= GetSystemPaletteEntries(hdc
, 0, 0, NULL
);
1489 colors
= (cFlag
& LR_MONOCHROME
) ? 2 : palEnts
;
1494 entry
= CURSORICON_FindBestIcon( dir
, width
, height
, colors
);
1496 entry
= CURSORICON_FindBestCursor( dir
, width
, height
, 1);
1498 if( entry
) retVal
= entry
->wResId
;
1500 else WARN_(cursor
)("invalid resource directory\n");
1504 /**********************************************************************
1505 * LookupIconIdFromDirectory (USER.?)
1507 INT16 WINAPI
LookupIconIdFromDirectory16( LPBYTE dir
, BOOL16 bIcon
)
1509 return LookupIconIdFromDirectoryEx16( dir
, bIcon
,
1510 bIcon
? GetSystemMetrics(SM_CXICON
) : GetSystemMetrics(SM_CXCURSOR
),
1511 bIcon
? GetSystemMetrics(SM_CYICON
) : GetSystemMetrics(SM_CYCURSOR
), bIcon
? 0 : LR_MONOCHROME
);
1514 /**********************************************************************
1515 * LookupIconIdFromDirectory (USER32.@)
1517 INT WINAPI
LookupIconIdFromDirectory( LPBYTE dir
, BOOL bIcon
)
1519 return LookupIconIdFromDirectoryEx( dir
, bIcon
,
1520 bIcon
? GetSystemMetrics(SM_CXICON
) : GetSystemMetrics(SM_CXCURSOR
),
1521 bIcon
? GetSystemMetrics(SM_CYICON
) : GetSystemMetrics(SM_CYCURSOR
), bIcon
? 0 : LR_MONOCHROME
);
1524 /**********************************************************************
1525 * GetIconID (USER.455)
1527 WORD WINAPI
GetIconID16( HGLOBAL16 hResource
, DWORD resType
)
1529 LPBYTE lpDir
= (LPBYTE
)GlobalLock16(hResource
);
1531 TRACE_(cursor
)("hRes=%04x, entries=%i\n",
1532 hResource
, lpDir
? ((CURSORICONDIR
*)lpDir
)->idCount
: 0);
1537 return (WORD
)LookupIconIdFromDirectoryEx16( lpDir
, FALSE
,
1538 GetSystemMetrics(SM_CXCURSOR
), GetSystemMetrics(SM_CYCURSOR
), LR_MONOCHROME
);
1540 return (WORD
)LookupIconIdFromDirectoryEx16( lpDir
, TRUE
,
1541 GetSystemMetrics(SM_CXICON
), GetSystemMetrics(SM_CYICON
), 0 );
1543 WARN_(cursor
)("invalid res type %ld\n", resType
);
1548 /**********************************************************************
1549 * LoadCursorIconHandler (USER.336)
1551 * Supposed to load resources of Windows 2.x applications.
1553 HGLOBAL16 WINAPI
LoadCursorIconHandler16( HGLOBAL16 hResource
, HMODULE16 hModule
, HRSRC16 hRsrc
)
1555 FIXME_(cursor
)("(%04x,%04x,%04x): old 2.x resources are not supported!\n",
1556 hResource
, hModule
, hRsrc
);
1557 return (HGLOBAL16
)0;
1560 /**********************************************************************
1561 * LoadDIBIconHandler (USER.357)
1563 * RT_ICON resource loader, installed by USER_SignalProc when module
1566 HGLOBAL16 WINAPI
LoadDIBIconHandler16( HGLOBAL16 hMemObj
, HMODULE16 hModule
, HRSRC16 hRsrc
)
1568 /* If hResource is zero we must allocate a new memory block, if it's
1569 * non-zero but GlobalLock() returns NULL then it was discarded and
1570 * we have to recommit some memory, otherwise we just need to check
1571 * the block size. See LoadProc() in 16-bit SDK for more.
1574 hMemObj
= NE_DefResourceHandler( hMemObj
, hModule
, hRsrc
);
1577 LPBYTE bits
= (LPBYTE
)GlobalLock16( hMemObj
);
1578 hMemObj
= HICON_16(CURSORICON_CreateFromResource(
1579 hModule
, hMemObj
, bits
,
1580 SizeofResource16(hModule
, hRsrc
), TRUE
, 0x00030000,
1581 GetSystemMetrics(SM_CXICON
),
1582 GetSystemMetrics(SM_CYICON
), LR_DEFAULTCOLOR
));
1587 /**********************************************************************
1588 * LoadDIBCursorHandler (USER.356)
1590 * RT_CURSOR resource loader. Same as above.
1592 HGLOBAL16 WINAPI
LoadDIBCursorHandler16( HGLOBAL16 hMemObj
, HMODULE16 hModule
, HRSRC16 hRsrc
)
1594 hMemObj
= NE_DefResourceHandler( hMemObj
, hModule
, hRsrc
);
1597 LPBYTE bits
= (LPBYTE
)GlobalLock16( hMemObj
);
1598 hMemObj
= HICON_16(CURSORICON_CreateFromResource(
1599 hModule
, hMemObj
, bits
,
1600 SizeofResource16(hModule
, hRsrc
), FALSE
, 0x00030000,
1601 GetSystemMetrics(SM_CXCURSOR
),
1602 GetSystemMetrics(SM_CYCURSOR
), LR_MONOCHROME
));
1607 /**********************************************************************
1608 * LoadIconHandler (USER.456)
1610 HICON16 WINAPI
LoadIconHandler16( HGLOBAL16 hResource
, BOOL16 bNew
)
1612 LPBYTE bits
= (LPBYTE
)LockResource16( hResource
);
1614 TRACE_(cursor
)("hRes=%04x\n",hResource
);
1616 return HICON_16(CURSORICON_CreateFromResource(0, 0, bits
, 0, TRUE
,
1617 bNew
? 0x00030000 : 0x00020000, 0, 0, LR_DEFAULTCOLOR
));
1620 /***********************************************************************
1621 * LoadCursorW (USER32.@)
1623 HCURSOR WINAPI
LoadCursorW(HINSTANCE hInstance
, LPCWSTR name
)
1625 return LoadImageW( hInstance
, name
, IMAGE_CURSOR
, 0, 0,
1626 LR_SHARED
| LR_DEFAULTSIZE
);
1629 /***********************************************************************
1630 * LoadCursorA (USER32.@)
1632 HCURSOR WINAPI
LoadCursorA(HINSTANCE hInstance
, LPCSTR name
)
1634 return LoadImageA( hInstance
, name
, IMAGE_CURSOR
, 0, 0,
1635 LR_SHARED
| LR_DEFAULTSIZE
);
1638 /***********************************************************************
1639 * LoadCursorFromFileW (USER32.@)
1641 HCURSOR WINAPI
LoadCursorFromFileW (LPCWSTR name
)
1643 return LoadImageW( 0, name
, IMAGE_CURSOR
, 0, 0,
1644 LR_LOADFROMFILE
| LR_DEFAULTSIZE
);
1647 /***********************************************************************
1648 * LoadCursorFromFileA (USER32.@)
1650 HCURSOR WINAPI
LoadCursorFromFileA (LPCSTR name
)
1652 return LoadImageA( 0, name
, IMAGE_CURSOR
, 0, 0,
1653 LR_LOADFROMFILE
| LR_DEFAULTSIZE
);
1656 /***********************************************************************
1657 * LoadIconW (USER32.@)
1659 HICON WINAPI
LoadIconW(HINSTANCE hInstance
, LPCWSTR name
)
1661 return LoadImageW( hInstance
, name
, IMAGE_ICON
, 0, 0,
1662 LR_SHARED
| LR_DEFAULTSIZE
);
1665 /***********************************************************************
1666 * LoadIconA (USER32.@)
1668 HICON WINAPI
LoadIconA(HINSTANCE hInstance
, LPCSTR name
)
1670 return LoadImageA( hInstance
, name
, IMAGE_ICON
, 0, 0,
1671 LR_SHARED
| LR_DEFAULTSIZE
);
1674 /**********************************************************************
1675 * GetIconInfo (USER32.@)
1677 BOOL WINAPI
GetIconInfo(HICON hIcon
, PICONINFO iconinfo
)
1679 CURSORICONINFO
*ciconinfo
;
1682 ciconinfo
= GlobalLock16(HICON_16(hIcon
));
1686 if ( (ciconinfo
->ptHotSpot
.x
== ICON_HOTSPOT
) &&
1687 (ciconinfo
->ptHotSpot
.y
== ICON_HOTSPOT
) )
1689 iconinfo
->fIcon
= TRUE
;
1690 iconinfo
->xHotspot
= ciconinfo
->nWidth
/ 2;
1691 iconinfo
->yHotspot
= ciconinfo
->nHeight
/ 2;
1695 iconinfo
->fIcon
= FALSE
;
1696 iconinfo
->xHotspot
= ciconinfo
->ptHotSpot
.x
;
1697 iconinfo
->yHotspot
= ciconinfo
->ptHotSpot
.y
;
1700 if (ciconinfo
->bBitsPerPixel
> 1)
1702 iconinfo
->hbmColor
= CreateBitmap( ciconinfo
->nWidth
, ciconinfo
->nHeight
,
1703 ciconinfo
->bPlanes
, ciconinfo
->bBitsPerPixel
,
1704 (char *)(ciconinfo
+ 1)
1705 + ciconinfo
->nHeight
*
1706 get_bitmap_width_bytes (ciconinfo
->nWidth
,1) );
1707 height
= ciconinfo
->nHeight
;
1711 iconinfo
->hbmColor
= 0;
1712 height
= ciconinfo
->nHeight
* 2;
1715 iconinfo
->hbmMask
= CreateBitmap ( ciconinfo
->nWidth
, height
,
1716 1, 1, (char *)(ciconinfo
+ 1));
1718 GlobalUnlock16(HICON_16(hIcon
));
1723 /**********************************************************************
1724 * CreateIconIndirect (USER32.@)
1726 HICON WINAPI
CreateIconIndirect(PICONINFO iconinfo
)
1728 BITMAP bmpXor
,bmpAnd
;
1730 int sizeXor
,sizeAnd
;
1732 GetObjectA( iconinfo
->hbmColor
, sizeof(bmpXor
), &bmpXor
);
1733 GetObjectA( iconinfo
->hbmMask
, sizeof(bmpAnd
), &bmpAnd
);
1735 sizeXor
= bmpXor
.bmHeight
* bmpXor
.bmWidthBytes
;
1736 sizeAnd
= bmpAnd
.bmHeight
* bmpAnd
.bmWidthBytes
;
1738 hObj
= GlobalAlloc16( GMEM_MOVEABLE
,
1739 sizeof(CURSORICONINFO
) + sizeXor
+ sizeAnd
);
1742 CURSORICONINFO
*info
;
1744 info
= (CURSORICONINFO
*)GlobalLock16( hObj
);
1746 /* If we are creating an icon, the hotspot is unused */
1747 if (iconinfo
->fIcon
)
1749 info
->ptHotSpot
.x
= ICON_HOTSPOT
;
1750 info
->ptHotSpot
.y
= ICON_HOTSPOT
;
1754 info
->ptHotSpot
.x
= iconinfo
->xHotspot
;
1755 info
->ptHotSpot
.y
= iconinfo
->yHotspot
;
1758 info
->nWidth
= bmpXor
.bmWidth
;
1759 info
->nHeight
= bmpXor
.bmHeight
;
1760 info
->nWidthBytes
= bmpXor
.bmWidthBytes
;
1761 info
->bPlanes
= bmpXor
.bmPlanes
;
1762 info
->bBitsPerPixel
= bmpXor
.bmBitsPixel
;
1764 /* Transfer the bitmap bits to the CURSORICONINFO structure */
1766 GetBitmapBits( iconinfo
->hbmMask
,sizeAnd
,(char*)(info
+ 1) );
1767 GetBitmapBits( iconinfo
->hbmColor
,sizeXor
,(char*)(info
+ 1) +sizeAnd
);
1768 GlobalUnlock16( hObj
);
1770 return HICON_32(hObj
);
1773 /******************************************************************************
1774 * DrawIconEx (USER32.@) Draws an icon or cursor on device context
1777 * Why is this using SM_CXICON instead of SM_CXCURSOR?
1780 * hdc [I] Handle to device context
1781 * x0 [I] X coordinate of upper left corner
1782 * y0 [I] Y coordinate of upper left corner
1783 * hIcon [I] Handle to icon to draw
1784 * cxWidth [I] Width of icon
1785 * cyWidth [I] Height of icon
1786 * istep [I] Index of frame in animated cursor
1787 * hbr [I] Handle to background brush
1788 * flags [I] Icon-drawing flags
1794 BOOL WINAPI
DrawIconEx( HDC hdc
, INT x0
, INT y0
, HICON hIcon
,
1795 INT cxWidth
, INT cyWidth
, UINT istep
,
1796 HBRUSH hbr
, UINT flags
)
1798 CURSORICONINFO
*ptr
= (CURSORICONINFO
*)GlobalLock16(HICON_16(hIcon
));
1799 HDC hDC_off
= 0, hMemDC
;
1800 BOOL result
= FALSE
, DoOffscreen
;
1801 HBITMAP hB_off
= 0, hOld
= 0;
1803 if (!ptr
) return FALSE
;
1804 TRACE_(icon
)("(hdc=%p,pos=%d.%d,hicon=%p,extend=%d.%d,istep=%d,br=%p,flags=0x%08x)\n",
1805 hdc
,x0
,y0
,hIcon
,cxWidth
,cyWidth
,istep
,hbr
,flags
);
1807 hMemDC
= CreateCompatibleDC (hdc
);
1809 FIXME_(icon
)("Ignoring istep=%d\n", istep
);
1810 if (flags
& DI_COMPAT
)
1811 FIXME_(icon
)("Ignoring flag DI_COMPAT\n");
1814 FIXME_(icon
)("no flags set? setting to DI_NORMAL\n");
1818 /* Calculate the size of the destination image. */
1821 if (flags
& DI_DEFAULTSIZE
)
1822 cxWidth
= GetSystemMetrics (SM_CXICON
);
1824 cxWidth
= ptr
->nWidth
;
1828 if (flags
& DI_DEFAULTSIZE
)
1829 cyWidth
= GetSystemMetrics (SM_CYICON
);
1831 cyWidth
= ptr
->nHeight
;
1834 DoOffscreen
= (GetObjectType( hbr
) == OBJ_BRUSH
);
1844 hDC_off
= CreateCompatibleDC(hdc
);
1845 hB_off
= CreateCompatibleBitmap(hdc
, cxWidth
, cyWidth
);
1846 if (hDC_off
&& hB_off
) {
1847 hOld
= SelectObject(hDC_off
, hB_off
);
1848 FillRect(hDC_off
, &r
, hbr
);
1852 if (hMemDC
&& (!DoOffscreen
|| (hDC_off
&& hB_off
)))
1854 HBITMAP hXorBits
, hAndBits
;
1855 COLORREF oldFg
, oldBg
;
1858 nStretchMode
= SetStretchBltMode (hdc
, STRETCH_DELETESCANS
);
1860 hXorBits
= CreateBitmap ( ptr
->nWidth
, ptr
->nHeight
,
1861 ptr
->bPlanes
, ptr
->bBitsPerPixel
,
1864 get_bitmap_width_bytes(ptr
->nWidth
,1) );
1865 hAndBits
= CreateBitmap ( ptr
->nWidth
, ptr
->nHeight
,
1866 1, 1, (char *)(ptr
+1) );
1867 oldFg
= SetTextColor( hdc
, RGB(0,0,0) );
1868 oldBg
= SetBkColor( hdc
, RGB(255,255,255) );
1870 if (hXorBits
&& hAndBits
)
1872 HBITMAP hBitTemp
= SelectObject( hMemDC
, hAndBits
);
1873 if (flags
& DI_MASK
)
1876 StretchBlt (hDC_off
, 0, 0, cxWidth
, cyWidth
,
1877 hMemDC
, 0, 0, ptr
->nWidth
, ptr
->nHeight
, SRCAND
);
1879 StretchBlt (hdc
, x0
, y0
, cxWidth
, cyWidth
,
1880 hMemDC
, 0, 0, ptr
->nWidth
, ptr
->nHeight
, SRCAND
);
1882 SelectObject( hMemDC
, hXorBits
);
1883 if (flags
& DI_IMAGE
)
1886 StretchBlt (hDC_off
, 0, 0, cxWidth
, cyWidth
,
1887 hMemDC
, 0, 0, ptr
->nWidth
, ptr
->nHeight
, SRCPAINT
);
1889 StretchBlt (hdc
, x0
, y0
, cxWidth
, cyWidth
,
1890 hMemDC
, 0, 0, ptr
->nWidth
, ptr
->nHeight
, SRCPAINT
);
1892 SelectObject( hMemDC
, hBitTemp
);
1896 SetTextColor( hdc
, oldFg
);
1897 SetBkColor( hdc
, oldBg
);
1898 if (hXorBits
) DeleteObject( hXorBits
);
1899 if (hAndBits
) DeleteObject( hAndBits
);
1900 SetStretchBltMode (hdc
, nStretchMode
);
1902 BitBlt(hdc
, x0
, y0
, cxWidth
, cyWidth
, hDC_off
, 0, 0, SRCCOPY
);
1903 SelectObject(hDC_off
, hOld
);
1906 if (hMemDC
) DeleteDC( hMemDC
);
1907 if (hDC_off
) DeleteDC(hDC_off
);
1908 if (hB_off
) DeleteObject(hB_off
);
1909 GlobalUnlock16(HICON_16(hIcon
));
1913 /***********************************************************************
1914 * DIB_FixColorsToLoadflags
1916 * Change color table entries when LR_LOADTRANSPARENT or LR_LOADMAP3DCOLORS
1919 static void DIB_FixColorsToLoadflags(BITMAPINFO
* bmi
, UINT loadflags
, BYTE pix
)
1922 COLORREF c_W
, c_S
, c_F
, c_L
, c_C
;
1926 if (bmi
->bmiHeader
.biBitCount
> 8) return;
1927 if (bmi
->bmiHeader
.biSize
== sizeof(BITMAPINFOHEADER
)) incr
= 4;
1928 else if (bmi
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
)) incr
= 3;
1930 WARN_(resource
)("Wrong bitmap header size!\n");
1933 colors
= bmi
->bmiHeader
.biClrUsed
;
1934 if (!colors
&& (bmi
->bmiHeader
.biBitCount
<= 8))
1935 colors
= 1 << bmi
->bmiHeader
.biBitCount
;
1936 c_W
= GetSysColor(COLOR_WINDOW
);
1937 c_S
= GetSysColor(COLOR_3DSHADOW
);
1938 c_F
= GetSysColor(COLOR_3DFACE
);
1939 c_L
= GetSysColor(COLOR_3DLIGHT
);
1940 if (loadflags
& LR_LOADTRANSPARENT
) {
1941 switch (bmi
->bmiHeader
.biBitCount
) {
1942 case 1: pix
= pix
>> 7; break;
1943 case 4: pix
= pix
>> 4; break;
1946 WARN_(resource
)("(%d): Unsupported depth\n", bmi
->bmiHeader
.biBitCount
);
1949 if (pix
>= colors
) {
1950 WARN_(resource
)("pixel has color index greater than biClrUsed!\n");
1953 if (loadflags
& LR_LOADMAP3DCOLORS
) c_W
= c_F
;
1954 ptr
= (RGBQUAD
*)((char*)bmi
->bmiColors
+pix
*incr
);
1955 ptr
->rgbBlue
= GetBValue(c_W
);
1956 ptr
->rgbGreen
= GetGValue(c_W
);
1957 ptr
->rgbRed
= GetRValue(c_W
);
1959 if (loadflags
& LR_LOADMAP3DCOLORS
)
1960 for (i
=0; i
<colors
; i
++) {
1961 ptr
= (RGBQUAD
*)((char*)bmi
->bmiColors
+i
*incr
);
1962 c_C
= RGB(ptr
->rgbRed
, ptr
->rgbGreen
, ptr
->rgbBlue
);
1963 if (c_C
== RGB(128, 128, 128)) {
1964 ptr
->rgbRed
= GetRValue(c_S
);
1965 ptr
->rgbGreen
= GetGValue(c_S
);
1966 ptr
->rgbBlue
= GetBValue(c_S
);
1967 } else if (c_C
== RGB(192, 192, 192)) {
1968 ptr
->rgbRed
= GetRValue(c_F
);
1969 ptr
->rgbGreen
= GetGValue(c_F
);
1970 ptr
->rgbBlue
= GetBValue(c_F
);
1971 } else if (c_C
== RGB(223, 223, 223)) {
1972 ptr
->rgbRed
= GetRValue(c_L
);
1973 ptr
->rgbGreen
= GetGValue(c_L
);
1974 ptr
->rgbBlue
= GetBValue(c_L
);
1980 /**********************************************************************
1983 static HBITMAP
BITMAP_Load( HINSTANCE instance
,LPCWSTR name
, UINT loadflags
)
1985 HBITMAP hbitmap
= 0;
1989 BITMAPINFO
*info
, *fix_info
=NULL
;
1993 if (!(loadflags
& LR_LOADFROMFILE
))
1997 /* OEM bitmap: try to load the resource from user32.dll */
1998 if (HIWORD(name
)) return 0;
1999 if (!(instance
= GetModuleHandleA("user32.dll"))) return 0;
2001 if (!(hRsrc
= FindResourceW( instance
, name
, (LPWSTR
)RT_BITMAP
))) return 0;
2002 if (!(handle
= LoadResource( instance
, hRsrc
))) return 0;
2004 if ((info
= (BITMAPINFO
*)LockResource( handle
)) == NULL
) return 0;
2008 if (!(ptr
= map_fileW( name
))) return 0;
2009 info
= (BITMAPINFO
*)(ptr
+ sizeof(BITMAPFILEHEADER
));
2011 size
= bitmap_info_size(info
, DIB_RGB_COLORS
);
2012 if ((hFix
= GlobalAlloc(0, size
))) fix_info
=GlobalLock(hFix
);
2016 memcpy(fix_info
, info
, size
);
2017 pix
= *((LPBYTE
)info
+ size
);
2018 DIB_FixColorsToLoadflags(fix_info
, loadflags
, pix
);
2019 if (!screen_dc
) screen_dc
= CreateDCA( "DISPLAY", NULL
, NULL
, NULL
);
2022 char *bits
= (char *)info
+ size
;
2023 if (loadflags
& LR_CREATEDIBSECTION
) {
2025 hbitmap
= CreateDIBSection(screen_dc
, fix_info
, DIB_RGB_COLORS
, NULL
, 0, 0);
2026 GetObjectA(hbitmap
, sizeof(DIBSECTION
), &dib
);
2027 SetDIBits(screen_dc
, hbitmap
, 0, dib
.dsBm
.bmHeight
, bits
, info
,
2031 hbitmap
= CreateDIBitmap( screen_dc
, &fix_info
->bmiHeader
, CBM_INIT
,
2032 bits
, fix_info
, DIB_RGB_COLORS
);
2038 if (loadflags
& LR_LOADFROMFILE
) UnmapViewOfFile( ptr
);
2042 /**********************************************************************
2043 * LoadImageA (USER32.@)
2045 * FIXME: implementation lacks some features, see LR_ defines in winuser.h
2048 /* filter for page-fault exceptions */
2049 static WINE_EXCEPTION_FILTER(page_fault
)
2051 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION
)
2052 return EXCEPTION_EXECUTE_HANDLER
;
2053 return EXCEPTION_CONTINUE_SEARCH
;
2056 /*********************************************************************/
2058 HANDLE WINAPI
LoadImageA( HINSTANCE hinst
, LPCSTR name
, UINT type
,
2059 INT desiredx
, INT desiredy
, UINT loadflags
)
2065 return LoadImageW(hinst
, (LPWSTR
)name
, type
, desiredx
, desiredy
, loadflags
);
2068 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, name
, -1, NULL
, 0 );
2069 u_name
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
2070 MultiByteToWideChar( CP_ACP
, 0, name
, -1, u_name
, len
);
2072 __EXCEPT(page_fault
) {
2073 SetLastError( ERROR_INVALID_PARAMETER
);
2077 res
= LoadImageW(hinst
, u_name
, type
, desiredx
, desiredy
, loadflags
);
2078 HeapFree(GetProcessHeap(), 0, u_name
);
2083 /******************************************************************************
2084 * LoadImageW (USER32.@) Loads an icon, cursor, or bitmap
2087 * hinst [I] Handle of instance that contains image
2088 * name [I] Name of image
2089 * type [I] Type of image
2090 * desiredx [I] Desired width
2091 * desiredy [I] Desired height
2092 * loadflags [I] Load flags
2095 * Success: Handle to newly loaded image
2098 * FIXME: Implementation lacks some features, see LR_ defines in winuser.h
2100 HANDLE WINAPI
LoadImageW( HINSTANCE hinst
, LPCWSTR name
, UINT type
,
2101 INT desiredx
, INT desiredy
, UINT loadflags
)
2104 TRACE_(resource
)("(%p,%p,%d,%d,%d,0x%08x)\n",
2105 hinst
,name
,type
,desiredx
,desiredy
,loadflags
);
2107 TRACE_(resource
)("(%p,%p,%d,%d,%d,0x%08x)\n",
2108 hinst
,name
,type
,desiredx
,desiredy
,loadflags
);
2110 if (loadflags
& LR_DEFAULTSIZE
) {
2111 if (type
== IMAGE_ICON
) {
2112 if (!desiredx
) desiredx
= GetSystemMetrics(SM_CXICON
);
2113 if (!desiredy
) desiredy
= GetSystemMetrics(SM_CYICON
);
2114 } else if (type
== IMAGE_CURSOR
) {
2115 if (!desiredx
) desiredx
= GetSystemMetrics(SM_CXCURSOR
);
2116 if (!desiredy
) desiredy
= GetSystemMetrics(SM_CYCURSOR
);
2119 if (loadflags
& LR_LOADFROMFILE
) loadflags
&= ~LR_SHARED
;
2122 return BITMAP_Load( hinst
, name
, loadflags
);
2125 if (!screen_dc
) screen_dc
= CreateDCW( DISPLAYW
, NULL
, NULL
, NULL
);
2128 UINT palEnts
= GetSystemPaletteEntries(screen_dc
, 0, 0, NULL
);
2129 if (palEnts
== 0) palEnts
= 256;
2130 return CURSORICON_Load(hinst
, name
, desiredx
, desiredy
,
2131 palEnts
, FALSE
, loadflags
);
2136 return CURSORICON_Load(hinst
, name
, desiredx
, desiredy
,
2137 1, TRUE
, loadflags
);
2142 /******************************************************************************
2143 * CopyImage (USER32.@) Creates new image and copies attributes to it
2146 * hnd [I] Handle to image to copy
2147 * type [I] Type of image to copy
2148 * desiredx [I] Desired width of new image
2149 * desiredy [I] Desired height of new image
2150 * flags [I] Copy flags
2153 * Success: Handle to newly created image
2156 * FIXME: implementation still lacks nearly all features, see LR_*
2157 * defines in winuser.h
2159 HICON WINAPI
CopyImage( HANDLE hnd
, UINT type
, INT desiredx
,
2160 INT desiredy
, UINT flags
)
2169 if (!GetObjectW( hnd
, sizeof(bm
), &bm
)) return 0;
2171 if ((res
= CreateBitmapIndirect(&bm
)))
2173 char *buf
= HeapAlloc( GetProcessHeap(), 0, bm
.bmWidthBytes
* bm
.bmHeight
);
2174 GetBitmapBits( hnd
, bm
.bmWidthBytes
* bm
.bmHeight
, buf
);
2175 SetBitmapBits( res
, bm
.bmWidthBytes
* bm
.bmHeight
, buf
);
2176 HeapFree( GetProcessHeap(), 0, buf
);
2181 return CURSORICON_ExtCopy(hnd
,type
, desiredx
, desiredy
, flags
);
2183 /* Should call CURSORICON_ExtCopy but more testing
2184 * needs to be done before we change this
2186 return CopyCursor(hnd
);
2192 /******************************************************************************
2193 * LoadBitmapW (USER32.@) Loads bitmap from the executable file
2196 * Success: Handle to specified bitmap
2199 HBITMAP WINAPI
LoadBitmapW(
2200 HINSTANCE instance
, /* [in] Handle to application instance */
2201 LPCWSTR name
) /* [in] Address of bitmap resource name */
2203 return LoadImageW( instance
, name
, IMAGE_BITMAP
, 0, 0, 0 );
2206 /**********************************************************************
2207 * LoadBitmapA (USER32.@)
2209 HBITMAP WINAPI
LoadBitmapA( HINSTANCE instance
, LPCSTR name
)
2211 return LoadImageA( instance
, name
, IMAGE_BITMAP
, 0, 0, 0 );