2 * Cursor and icon support
4 * Copyright 1995 Alexandre Julliard
5 * 1996 Martin Von Loewis
7 * 1998 Turchanov Sergey
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.
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.
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
28 * Cursors and icons are stored in a global heap block, with the
31 * CURSORICONINFO info;
35 * The bits structures are in the format of a device-dependent bitmap.
37 * This layout is very sub-optimal, as the bitmap bits are stored in
38 * the X client instead of in the server like other bitmaps; however,
39 * some programs (notably Paint Brush) expect to be able to manipulate
40 * the bits directly :-(
44 #include "wine/port.h"
54 #include "wine/winbase16.h"
55 #include "wine/winuser16.h"
56 #include "wine/exception.h"
57 #include "wine/debug.h"
58 #include "user_private.h"
60 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
61 WINE_DECLARE_DEBUG_CHANNEL(icon);
62 WINE_DECLARE_DEBUG_CHANNEL(resource);
75 } CURSORICONFILEDIRENTRY;
82 CURSORICONFILEDIRENTRY idEntries[1];
87 #define CID_RESOURCE 0x0001
88 #define CID_WIN32 0x0004
89 #define CID_NONSHARED 0x0008
91 static RECT CURSOR_ClipRect; /* Cursor clipping rect */
95 static const WCHAR DISPLAYW[] = {'D','I','S','P','L','A','Y',0};
97 /**********************************************************************
98 * ICONCACHE for cursors/icons loaded with LR_SHARED.
100 * FIXME: This should not be allocated on the system heap, but on a
101 * subsystem-global heap (i.e. one for all Win16 processes,
102 * and one for each Win32 process).
104 typedef struct tagICONCACHE
106 struct tagICONCACHE *next;
117 static ICONCACHE *IconAnchor = NULL;
119 static CRITICAL_SECTION IconCrst;
120 static CRITICAL_SECTION_DEBUG critsect_debug =
123 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
124 0, 0, { (DWORD_PTR)(__FILE__ ": IconCrst") }
126 static CRITICAL_SECTION IconCrst = { &critsect_debug, -1, 0, 0, 0, 0 };
128 static const WORD ICON_HOTSPOT = 0x4242;
131 /***********************************************************************
134 * Helper function to map a file to memory:
136 * [RETURN] ptr - pointer to mapped file
137 * [RETURN] filesize - pointer size of file to be stored if not NULL
139 static void *map_fileW( LPCWSTR name, LPDWORD filesize )
141 HANDLE hFile, hMapping;
144 hFile = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ, NULL,
145 OPEN_EXISTING, FILE_FLAG_RANDOM_ACCESS, 0 );
146 if (hFile != INVALID_HANDLE_VALUE)
148 hMapping = CreateFileMappingW( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
151 ptr = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
152 CloseHandle( hMapping );
154 *filesize = GetFileSize( hFile, NULL );
156 CloseHandle( hFile );
162 /***********************************************************************
163 * get_bitmap_width_bytes
165 * Return number of bytes taken by a scanline of 16-bit aligned Windows DDB
168 static int get_bitmap_width_bytes( int width, int bpp )
173 return 2 * ((width+15) / 16);
175 return 2 * ((width+3) / 4);
180 return width + (width & 1);
187 WARN("Unknown depth %d, please report.\n", bpp );
193 /***********************************************************************
194 * get_dib_width_bytes
196 * Return the width of a DIB bitmap in bytes. DIB bitmap data is 32-bit aligned.
198 static int get_dib_width_bytes( int width, int depth )
204 case 1: words = (width + 31) / 32; break;
205 case 4: words = (width + 7) / 8; break;
206 case 8: words = (width + 3) / 4; break;
208 case 16: words = (width + 1) / 2; break;
209 case 24: words = (width * 3 + 3)/4; break;
211 WARN("(%d): Unsupported depth\n", depth );
220 /***********************************************************************
223 * Return the size of the bitmap info structure including color table.
225 static int bitmap_info_size( const BITMAPINFO * info, WORD coloruse )
227 int colors, masks = 0;
229 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
231 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)info;
232 colors = (core->bcBitCount <= 8) ? 1 << core->bcBitCount : 0;
233 return sizeof(BITMAPCOREHEADER) + colors *
234 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBTRIPLE) : sizeof(WORD));
236 else /* assume BITMAPINFOHEADER */
238 colors = info->bmiHeader.biClrUsed;
239 if (colors > 256) /* buffer overflow otherwise */
241 if (!colors && (info->bmiHeader.biBitCount <= 8))
242 colors = 1 << info->bmiHeader.biBitCount;
243 if (info->bmiHeader.biCompression == BI_BITFIELDS) masks = 3;
244 return sizeof(BITMAPINFOHEADER) + masks * sizeof(DWORD) + colors *
245 ((coloruse == DIB_RGB_COLORS) ? sizeof(RGBQUAD) : sizeof(WORD));
250 /***********************************************************************
253 * Returns whether a DIB can be converted to a monochrome DDB.
255 * A DIB can be converted if its color table contains only black and
256 * white. Black must be the first color in the color table.
258 * Note : If the first color in the color table is white followed by
259 * black, we can't convert it to a monochrome DDB with
260 * SetDIBits, because black and white would be inverted.
262 static BOOL is_dib_monochrome( const BITMAPINFO* info )
264 if (info->bmiHeader.biBitCount != 1) return FALSE;
266 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
268 const RGBTRIPLE *rgb = ((const BITMAPCOREINFO*)info)->bmciColors;
270 /* Check if the first color is black */
271 if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
275 /* Check if the second color is white */
276 return ((rgb->rgbtRed == 0xff) && (rgb->rgbtGreen == 0xff)
277 && (rgb->rgbtBlue == 0xff));
281 else /* assume BITMAPINFOHEADER */
283 const RGBQUAD *rgb = info->bmiColors;
285 /* Check if the first color is black */
286 if ((rgb->rgbRed == 0) && (rgb->rgbGreen == 0) &&
287 (rgb->rgbBlue == 0) && (rgb->rgbReserved == 0))
291 /* Check if the second color is white */
292 return ((rgb->rgbRed == 0xff) && (rgb->rgbGreen == 0xff)
293 && (rgb->rgbBlue == 0xff) && (rgb->rgbReserved == 0));
299 /***********************************************************************
302 * Get the info from a bitmap header.
303 * Return 1 for INFOHEADER, 0 for COREHEADER,
304 * 4 for V4HEADER, 5 for V5HEADER, -1 for error.
306 static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
307 LONG *height, WORD *bpp, DWORD *compr )
309 if (header->biSize == sizeof(BITMAPINFOHEADER))
311 *width = header->biWidth;
312 *height = header->biHeight;
313 *bpp = header->biBitCount;
314 *compr = header->biCompression;
317 if (header->biSize == sizeof(BITMAPCOREHEADER))
319 const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)header;
320 *width = core->bcWidth;
321 *height = core->bcHeight;
322 *bpp = core->bcBitCount;
326 if (header->biSize == sizeof(BITMAPV4HEADER))
328 const BITMAPV4HEADER *v4hdr = (const BITMAPV4HEADER *)header;
329 *width = v4hdr->bV4Width;
330 *height = v4hdr->bV4Height;
331 *bpp = v4hdr->bV4BitCount;
332 *compr = v4hdr->bV4V4Compression;
335 if (header->biSize == sizeof(BITMAPV5HEADER))
337 const BITMAPV5HEADER *v5hdr = (const BITMAPV5HEADER *)header;
338 *width = v5hdr->bV5Width;
339 *height = v5hdr->bV5Height;
340 *bpp = v5hdr->bV5BitCount;
341 *compr = v5hdr->bV5Compression;
344 ERR("(%d): unknown/wrong size for header\n", header->biSize );
348 /**********************************************************************
349 * CURSORICON_FindSharedIcon
351 static HICON CURSORICON_FindSharedIcon( HMODULE hModule, HRSRC hRsrc )
356 EnterCriticalSection( &IconCrst );
358 for ( ptr = IconAnchor; ptr; ptr = ptr->next )
359 if ( ptr->hModule == hModule && ptr->hRsrc == hRsrc )
366 LeaveCriticalSection( &IconCrst );
371 /*************************************************************************
372 * CURSORICON_FindCache
374 * Given a handle, find the corresponding cache element
377 * Handle [I] handle to an Image
380 * Success: The cache entry
384 static ICONCACHE* CURSORICON_FindCache(HICON hIcon)
387 ICONCACHE *pRet=NULL;
388 BOOL IsFound = FALSE;
390 EnterCriticalSection( &IconCrst );
392 for (ptr = IconAnchor; ptr != NULL && !IsFound; ptr = ptr->next)
394 if ( hIcon == ptr->hIcon )
401 LeaveCriticalSection( &IconCrst );
406 /**********************************************************************
407 * CURSORICON_AddSharedIcon
409 static void CURSORICON_AddSharedIcon( HMODULE hModule, HRSRC hRsrc, HRSRC hGroupRsrc, HICON hIcon )
411 ICONCACHE *ptr = HeapAlloc( GetProcessHeap(), 0, sizeof(ICONCACHE) );
414 ptr->hModule = hModule;
417 ptr->hGroupRsrc = hGroupRsrc;
420 EnterCriticalSection( &IconCrst );
421 ptr->next = IconAnchor;
423 LeaveCriticalSection( &IconCrst );
426 /**********************************************************************
427 * CURSORICON_DelSharedIcon
429 static INT CURSORICON_DelSharedIcon( HICON hIcon )
434 EnterCriticalSection( &IconCrst );
436 for ( ptr = IconAnchor; ptr; ptr = ptr->next )
437 if ( ptr->hIcon == hIcon )
439 if ( ptr->count > 0 ) ptr->count--;
444 LeaveCriticalSection( &IconCrst );
449 /**********************************************************************
450 * CURSORICON_FreeModuleIcons
452 void CURSORICON_FreeModuleIcons( HMODULE16 hMod16 )
454 ICONCACHE **ptr = &IconAnchor;
455 HMODULE hModule = HMODULE_32(GetExePtr( hMod16 ));
457 EnterCriticalSection( &IconCrst );
461 if ( (*ptr)->hModule == hModule )
463 ICONCACHE *freePtr = *ptr;
464 *ptr = freePtr->next;
466 GlobalFree16(HICON_16(freePtr->hIcon));
467 HeapFree( GetProcessHeap(), 0, freePtr );
473 LeaveCriticalSection( &IconCrst );
477 * The following macro functions account for the irregularities of
478 * accessing cursor and icon resources in files and resource entries.
480 typedef BOOL (*fnGetCIEntry)( LPVOID dir, int n,
481 int *width, int *height, int *bits );
483 /**********************************************************************
484 * CURSORICON_FindBestIcon
486 * Find the icon closest to the requested size and number of colors.
488 static int CURSORICON_FindBestIcon( LPVOID dir, fnGetCIEntry get_entry,
489 int width, int height, int colors )
491 int i, cx, cy, bits, bestEntry = -1;
492 UINT iTotalDiff, iXDiff=0, iYDiff=0, iColorDiff;
493 UINT iTempXDiff, iTempYDiff, iTempColorDiff;
496 iTotalDiff = 0xFFFFFFFF;
497 iColorDiff = 0xFFFFFFFF;
498 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
500 iTempXDiff = abs(width - cx);
501 iTempYDiff = abs(height - cy);
503 if(iTotalDiff > (iTempXDiff + iTempYDiff))
507 iTotalDiff = iXDiff + iYDiff;
511 /* Find Best Colors for Best Fit */
512 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
514 if(abs(width - cx) == iXDiff && abs(height - cy) == iYDiff)
516 iTempColorDiff = abs(colors - (1<<bits));
517 if(iColorDiff > iTempColorDiff)
520 iColorDiff = iTempColorDiff;
528 static BOOL CURSORICON_GetResIconEntry( LPVOID dir, int n,
529 int *width, int *height, int *bits )
531 CURSORICONDIR *resdir = dir;
534 if ( resdir->idCount <= n )
536 icon = &resdir->idEntries[n].ResInfo.icon;
537 *width = icon->bWidth;
538 *height = icon->bHeight;
539 *bits = resdir->idEntries[n].wBitCount;
543 /**********************************************************************
544 * CURSORICON_FindBestCursor
546 * Find the cursor closest to the requested size.
547 * FIXME: parameter 'color' ignored and entries with more than 1 bpp
550 static int CURSORICON_FindBestCursor( LPVOID dir, fnGetCIEntry get_entry,
551 int width, int height, int color )
553 int i, maxwidth, maxheight, cx, cy, bits, bestEntry = -1;
555 /* Double height to account for AND and XOR masks */
559 /* First find the largest one smaller than or equal to the requested size*/
561 maxwidth = maxheight = 0;
562 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
564 if ((cx <= width) && (cy <= height) &&
565 (cx > maxwidth) && (cy > maxheight) &&
573 if (bestEntry != -1) return bestEntry;
575 /* Now find the smallest one larger than the requested size */
577 maxwidth = maxheight = 255;
578 for ( i = 0; get_entry( dir, i, &cx, &cy, &bits ); i++ )
580 if (((cx < maxwidth) && (cy < maxheight) && (bits == 1)) ||
592 static BOOL CURSORICON_GetResCursorEntry( LPVOID dir, int n,
593 int *width, int *height, int *bits )
595 CURSORICONDIR *resdir = dir;
598 if ( resdir->idCount <= n )
600 cursor = &resdir->idEntries[n].ResInfo.cursor;
601 *width = cursor->wWidth;
602 *height = cursor->wHeight;
603 *bits = resdir->idEntries[n].wBitCount;
607 static CURSORICONDIRENTRY *CURSORICON_FindBestIconRes( CURSORICONDIR * dir,
608 int width, int height, int colors )
612 n = CURSORICON_FindBestIcon( dir, CURSORICON_GetResIconEntry,
613 width, height, colors );
616 return &dir->idEntries[n];
619 static CURSORICONDIRENTRY *CURSORICON_FindBestCursorRes( CURSORICONDIR *dir,
620 int width, int height, int color )
622 int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetResCursorEntry,
623 width, height, color );
626 return &dir->idEntries[n];
629 static BOOL CURSORICON_GetFileEntry( LPVOID dir, int n,
630 int *width, int *height, int *bits )
632 CURSORICONFILEDIR *filedir = dir;
633 CURSORICONFILEDIRENTRY *entry;
635 if ( filedir->idCount <= n )
637 entry = &filedir->idEntries[n];
638 *width = entry->bWidth;
639 *height = entry->bHeight;
640 *bits = entry->bColorCount;
644 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestCursorFile( CURSORICONFILEDIR *dir,
645 int width, int height, int color )
647 int n = CURSORICON_FindBestCursor( dir, CURSORICON_GetFileEntry,
648 width, height, color );
651 return &dir->idEntries[n];
654 static CURSORICONFILEDIRENTRY *CURSORICON_FindBestIconFile( CURSORICONFILEDIR *dir,
655 int width, int height, int color )
657 int n = CURSORICON_FindBestIcon( dir, CURSORICON_GetFileEntry,
658 width, height, color );
661 return &dir->idEntries[n];
664 static HICON CURSORICON_CreateIconFromBMI( BITMAPINFO *bmi,
665 POINT16 hotspot, BOOL bIcon,
667 INT width, INT height,
672 int sizeAnd, sizeXor;
673 HBITMAP hAndBits = 0, hXorBits = 0; /* error condition for later */
674 BITMAP bmpXor, bmpAnd;
678 if (dwVersion == 0x00020000)
680 FIXME_(cursor)("\t2.xx resources are not supported\n");
684 /* Check bitmap header */
686 if ( (bmi->bmiHeader.biSize != sizeof(BITMAPCOREHEADER)) &&
687 (bmi->bmiHeader.biSize != sizeof(BITMAPINFOHEADER) ||
688 bmi->bmiHeader.biCompression != BI_RGB) )
690 WARN_(cursor)("\tinvalid resource bitmap header.\n");
694 size = bitmap_info_size( bmi, DIB_RGB_COLORS );
696 if (!width) width = bmi->bmiHeader.biWidth;
697 if (!height) height = bmi->bmiHeader.biHeight/2;
698 DoStretch = (bmi->bmiHeader.biHeight/2 != height) ||
699 (bmi->bmiHeader.biWidth != width);
701 /* Scale the hotspot */
702 if (DoStretch && hotspot.x != ICON_HOTSPOT && hotspot.y != ICON_HOTSPOT)
704 hotspot.x = (hotspot.x * width) / bmi->bmiHeader.biWidth;
705 hotspot.y = (hotspot.y * height) / (bmi->bmiHeader.biHeight / 2);
708 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
713 /* Make sure we have room for the monochrome bitmap later on.
714 * Note that BITMAPINFOINFO and BITMAPCOREHEADER are the same
715 * up to and including the biBitCount. In-memory icon resource
716 * format is as follows:
718 * BITMAPINFOHEADER icHeader // DIB header
719 * RGBQUAD icColors[] // Color table
720 * BYTE icXOR[] // DIB bits for XOR mask
721 * BYTE icAND[] // DIB bits for AND mask
724 if ((pInfo = HeapAlloc( GetProcessHeap(), 0,
725 max(size, sizeof(BITMAPINFOHEADER) + 2*sizeof(RGBQUAD)))))
727 memcpy( pInfo, bmi, size );
728 pInfo->bmiHeader.biHeight /= 2;
730 /* Create the XOR bitmap */
733 hXorBits = CreateCompatibleBitmap(screen_dc, width, height);
739 if (!hdcMem) hdcMem = CreateCompatibleDC(screen_dc);
741 hOld = SelectObject(hdcMem, hXorBits);
742 res = StretchDIBits(hdcMem, 0, 0, width, height, 0, 0,
743 bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight/2,
744 (char*)bmi + size, pInfo, DIB_RGB_COLORS, SRCCOPY);
745 SelectObject(hdcMem, hOld);
747 if (!res) { DeleteObject(hXorBits); hXorBits = 0; }
750 if (is_dib_monochrome(bmi)) {
751 hXorBits = CreateBitmap(width, height, 1, 1, NULL);
752 SetDIBits(screen_dc, hXorBits, 0, height,
753 (char*)bmi + size, pInfo, DIB_RGB_COLORS);
756 hXorBits = CreateDIBitmap(screen_dc, &pInfo->bmiHeader,
757 CBM_INIT, (char*)bmi + size, pInfo, DIB_RGB_COLORS);
762 char* xbits = (char *)bmi + size +
763 get_dib_width_bytes( bmi->bmiHeader.biWidth,
764 bmi->bmiHeader.biBitCount ) * abs( bmi->bmiHeader.biHeight ) / 2;
766 pInfo->bmiHeader.biBitCount = 1;
767 if (pInfo->bmiHeader.biSize != sizeof(BITMAPCOREHEADER))
769 RGBQUAD *rgb = pInfo->bmiColors;
771 pInfo->bmiHeader.biClrUsed = pInfo->bmiHeader.biClrImportant = 2;
772 rgb[0].rgbBlue = rgb[0].rgbGreen = rgb[0].rgbRed = 0x00;
773 rgb[1].rgbBlue = rgb[1].rgbGreen = rgb[1].rgbRed = 0xff;
774 rgb[0].rgbReserved = rgb[1].rgbReserved = 0;
778 RGBTRIPLE *rgb = (RGBTRIPLE *)(((BITMAPCOREHEADER *)pInfo) + 1);
780 rgb[0].rgbtBlue = rgb[0].rgbtGreen = rgb[0].rgbtRed = 0x00;
781 rgb[1].rgbtBlue = rgb[1].rgbtGreen = rgb[1].rgbtRed = 0xff;
784 /* Create the AND bitmap */
787 if ((hAndBits = CreateBitmap(width, height, 1, 1, NULL))) {
791 if (!hdcMem) hdcMem = CreateCompatibleDC(screen_dc);
793 hOld = SelectObject(hdcMem, hAndBits);
794 res = StretchDIBits(hdcMem, 0, 0, width, height, 0, 0,
795 pInfo->bmiHeader.biWidth, pInfo->bmiHeader.biHeight,
796 xbits, pInfo, DIB_RGB_COLORS, SRCCOPY);
797 SelectObject(hdcMem, hOld);
799 if (!res) { DeleteObject(hAndBits); hAndBits = 0; }
802 hAndBits = CreateBitmap(width, height, 1, 1, NULL);
804 if (hAndBits) SetDIBits(screen_dc, hAndBits, 0, height,
805 xbits, pInfo, DIB_RGB_COLORS);
808 if( !hAndBits ) DeleteObject( hXorBits );
810 HeapFree( GetProcessHeap(), 0, pInfo );
814 if( !hXorBits || !hAndBits )
816 WARN_(cursor)("\tunable to create an icon bitmap.\n");
820 /* Now create the CURSORICONINFO structure */
821 GetObjectA( hXorBits, sizeof(bmpXor), &bmpXor );
822 GetObjectA( hAndBits, sizeof(bmpAnd), &bmpAnd );
823 sizeXor = bmpXor.bmHeight * bmpXor.bmWidthBytes;
824 sizeAnd = bmpAnd.bmHeight * bmpAnd.bmWidthBytes;
826 hObj = GlobalAlloc16( GMEM_MOVEABLE,
827 sizeof(CURSORICONINFO) + sizeXor + sizeAnd );
830 CURSORICONINFO *info;
832 info = GlobalLock16( hObj );
833 info->ptHotSpot.x = hotspot.x;
834 info->ptHotSpot.y = hotspot.y;
835 info->nWidth = bmpXor.bmWidth;
836 info->nHeight = bmpXor.bmHeight;
837 info->nWidthBytes = bmpXor.bmWidthBytes;
838 info->bPlanes = bmpXor.bmPlanes;
839 info->bBitsPerPixel = bmpXor.bmBitsPixel;
841 /* Transfer the bitmap bits to the CURSORICONINFO structure */
843 GetBitmapBits( hAndBits, sizeAnd, (char *)(info + 1) );
844 GetBitmapBits( hXorBits, sizeXor, (char *)(info + 1) + sizeAnd );
845 GlobalUnlock16( hObj );
848 DeleteObject( hAndBits );
849 DeleteObject( hXorBits );
850 return HICON_32(hObj);
854 /**********************************************************************
855 * .ANI cursor support
857 #define RIFF_FOURCC( c0, c1, c2, c3 ) \
858 ( (DWORD)(BYTE)(c0) | ( (DWORD)(BYTE)(c1) << 8 ) | \
859 ( (DWORD)(BYTE)(c2) << 16 ) | ( (DWORD)(BYTE)(c3) << 24 ) )
861 #define ANI_RIFF_ID RIFF_FOURCC('R', 'I', 'F', 'F')
862 #define ANI_LIST_ID RIFF_FOURCC('L', 'I', 'S', 'T')
863 #define ANI_ACON_ID RIFF_FOURCC('A', 'C', 'O', 'N')
864 #define ANI_anih_ID RIFF_FOURCC('a', 'n', 'i', 'h')
865 #define ANI_seq__ID RIFF_FOURCC('s', 'e', 'q', ' ')
866 #define ANI_fram_ID RIFF_FOURCC('f', 'r', 'a', 'm')
868 #define ANI_FLAG_ICON 0x1
869 #define ANI_FLAG_SEQUENCE 0x2
885 const unsigned char *data;
888 static void dump_ani_header( const ani_header *header )
890 TRACE(" header size: %d\n", header->header_size);
891 TRACE(" frames: %d\n", header->num_frames);
892 TRACE(" steps: %d\n", header->num_steps);
893 TRACE(" width: %d\n", header->width);
894 TRACE(" height: %d\n", header->height);
895 TRACE(" bpp: %d\n", header->bpp);
896 TRACE(" planes: %d\n", header->num_planes);
897 TRACE(" display rate: %d\n", header->display_rate);
898 TRACE(" flags: 0x%08x\n", header->flags);
920 static void riff_find_chunk( DWORD chunk_id, DWORD chunk_type, const riff_chunk_t *parent_chunk, riff_chunk_t *chunk )
922 const unsigned char *ptr = parent_chunk->data;
923 const unsigned char *end = parent_chunk->data + (parent_chunk->data_size - (2 * sizeof(DWORD)));
925 if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) end -= sizeof(DWORD);
929 if ((!chunk_type && *(DWORD *)ptr == chunk_id )
930 || (chunk_type && *(DWORD *)ptr == chunk_type && *((DWORD *)ptr + 2) == chunk_id ))
932 ptr += sizeof(DWORD);
933 chunk->data_size = *(DWORD *)ptr;
934 ptr += sizeof(DWORD);
935 if (chunk_type == ANI_LIST_ID || chunk_type == ANI_RIFF_ID) ptr += sizeof(DWORD);
941 ptr += sizeof(DWORD);
942 ptr += *(DWORD *)ptr;
943 ptr += sizeof(DWORD);
951 * RIFF:'ACON' RIFF chunk
952 * |- CHUNK:'anih' Header
953 * |- CHUNK:'seq ' Sequence information (optional)
954 * \- LIST:'fram' Frame list
955 * |- CHUNK:icon Cursor frames
960 static HCURSOR CURSORICON_CreateIconFromANI( const LPBYTE bits, DWORD bits_size,
961 INT width, INT height )
964 ani_header header = {0};
965 LPBYTE frame_bits = 0;
967 CURSORICONFILEDIRENTRY *entry;
969 riff_chunk_t root_chunk = { bits_size, bits };
970 riff_chunk_t ACON_chunk = {0};
971 riff_chunk_t anih_chunk = {0};
972 riff_chunk_t fram_chunk = {0};
973 const unsigned char *icon_data;
975 TRACE("bits %p, bits_size %d\n", bits, bits_size);
979 riff_find_chunk( ANI_ACON_ID, ANI_RIFF_ID, &root_chunk, &ACON_chunk );
980 if (!ACON_chunk.data)
982 ERR("Failed to get root chunk.\n");
986 riff_find_chunk( ANI_anih_ID, 0, &ACON_chunk, &anih_chunk );
987 if (!anih_chunk.data)
989 ERR("Failed to get 'anih' chunk.\n");
992 memcpy( &header, anih_chunk.data, sizeof(header) );
993 dump_ani_header( &header );
995 riff_find_chunk( ANI_fram_ID, ANI_LIST_ID, &ACON_chunk, &fram_chunk );
996 if (!fram_chunk.data)
998 ERR("Failed to get icon list.\n");
1002 /* FIXME: For now, just load the first frame. Before we can load all the
1003 * frames, we need to write the needed code in wineserver, etc. to handle
1004 * cursors. Once this code is written, we can extend it to support .ani
1005 * cursors and then update user32 and winex11.drv to load all frames.
1007 * Hopefully this will at least make some games (C&C3, etc.) more playable
1010 FIXME("Loading all frames for .ani cursors not implemented.\n");
1011 icon_data = fram_chunk.data + (2 * sizeof(DWORD));
1013 entry = CURSORICON_FindBestCursorFile( (CURSORICONFILEDIR *) icon_data,
1016 frame_bits = HeapAlloc( GetProcessHeap(), 0, entry->dwDIBSize );
1017 memcpy( frame_bits, icon_data + entry->dwDIBOffset, entry->dwDIBSize );
1019 if (!header.width || !header.height)
1021 header.width = entry->bWidth;
1022 header.height = entry->bHeight;
1025 hotspot.x = entry->xHotspot;
1026 hotspot.y = entry->yHotspot;
1028 cursor = CURSORICON_CreateIconFromBMI( (BITMAPINFO *) frame_bits, hotspot,
1029 FALSE, 0x00030000, header.width, header.height, 0 );
1031 HeapFree( GetProcessHeap(), 0, frame_bits );
1037 /**********************************************************************
1038 * CreateIconFromResourceEx (USER32.@)
1040 * FIXME: Convert to mono when cFlag is LR_MONOCHROME. Do something
1041 * with cbSize parameter as well.
1043 HICON WINAPI CreateIconFromResourceEx( LPBYTE bits, UINT cbSize,
1044 BOOL bIcon, DWORD dwVersion,
1045 INT width, INT height,
1051 hotspot.x = ICON_HOTSPOT;
1052 hotspot.y = ICON_HOTSPOT;
1054 TRACE_(cursor)("%p (%u bytes), ver %08x, %ix%i %s %s\n",
1055 bits, cbSize, dwVersion, width, height,
1056 bIcon ? "icon" : "cursor", (cFlag & LR_MONOCHROME) ? "mono" : "" );
1059 bmi = (BITMAPINFO *)bits;
1060 else /* get the hotspot */
1062 POINT16 *pt = (POINT16 *)bits;
1064 bmi = (BITMAPINFO *)(pt + 1);
1067 return CURSORICON_CreateIconFromBMI( bmi, hotspot, bIcon, dwVersion,
1068 width, height, cFlag );
1072 /**********************************************************************
1073 * CreateIconFromResource (USER32.@)
1075 HICON WINAPI CreateIconFromResource( LPBYTE bits, UINT cbSize,
1076 BOOL bIcon, DWORD dwVersion)
1078 return CreateIconFromResourceEx( bits, cbSize, bIcon, dwVersion, 0,0,0);
1082 static HICON CURSORICON_LoadFromFile( LPCWSTR filename,
1083 INT width, INT height, INT colors,
1084 BOOL fCursor, UINT loadflags)
1086 CURSORICONFILEDIRENTRY *entry;
1087 CURSORICONFILEDIR *dir;
1093 TRACE("loading %s\n", debugstr_w( filename ));
1095 bits = map_fileW( filename, &filesize );
1099 /* Check for .ani. */
1100 if (memcmp( bits, "RIFF", 4 ) == 0)
1102 hIcon = CURSORICON_CreateIconFromANI( bits, filesize, width, height );
1106 dir = (CURSORICONFILEDIR*) bits;
1107 if ( filesize < sizeof(*dir) )
1110 if ( filesize < (sizeof(*dir) + sizeof(dir->idEntries[0])*(dir->idCount-1)) )
1114 entry = CURSORICON_FindBestCursorFile( dir, width, height, colors );
1116 entry = CURSORICON_FindBestIconFile( dir, width, height, colors );
1121 /* check that we don't run off the end of the file */
1122 if ( entry->dwDIBOffset > filesize )
1124 if ( entry->dwDIBOffset + entry->dwDIBSize > filesize )
1127 /* Set the actual hotspot for cursors and ICON_HOTSPOT for icons. */
1130 hotspot.x = entry->xHotspot;
1131 hotspot.y = entry->yHotspot;
1135 hotspot.x = ICON_HOTSPOT;
1136 hotspot.y = ICON_HOTSPOT;
1138 hIcon = CURSORICON_CreateIconFromBMI( (BITMAPINFO *)&bits[entry->dwDIBOffset],
1139 hotspot, !fCursor, 0x00030000,
1140 width, height, loadflags );
1142 TRACE("loaded %s -> %p\n", debugstr_w( filename ), hIcon );
1143 UnmapViewOfFile( bits );
1147 /**********************************************************************
1150 * Load a cursor or icon from resource or file.
1152 static HICON CURSORICON_Load(HINSTANCE hInstance, LPCWSTR name,
1153 INT width, INT height, INT colors,
1154 BOOL fCursor, UINT loadflags)
1158 HRSRC hRsrc, hGroupRsrc;
1160 CURSORICONDIRENTRY *dirEntry;
1165 TRACE("%p, %s, %dx%d, colors %d, fCursor %d, flags 0x%04x\n",
1166 hInstance, debugstr_w(name), width, height, colors, fCursor, loadflags);
1168 if ( loadflags & LR_LOADFROMFILE ) /* Load from file */
1169 return CURSORICON_LoadFromFile( name, width, height, colors, fCursor, loadflags );
1171 if (!hInstance) hInstance = user32_module; /* Load OEM cursor/icon */
1173 /* Normalize hInstance (must be uniquely represented for icon cache) */
1175 if (!HIWORD( hInstance ))
1176 hInstance = HINSTANCE_32(GetExePtr( HINSTANCE_16(hInstance) ));
1178 /* Get directory resource ID */
1180 if (!(hRsrc = FindResourceW( hInstance, name,
1181 (LPWSTR)(fCursor ? RT_GROUP_CURSOR : RT_GROUP_ICON) )))
1185 /* Find the best entry in the directory */
1187 if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
1188 if (!(dir = LockResource( handle ))) return 0;
1190 dirEntry = CURSORICON_FindBestCursorRes( dir, width, height, 1);
1192 dirEntry = CURSORICON_FindBestIconRes( dir, width, height, colors );
1193 if (!dirEntry) return 0;
1194 wResId = dirEntry->wResId;
1195 dwBytesInRes = dirEntry->dwBytesInRes;
1196 FreeResource( handle );
1198 /* Load the resource */
1200 if (!(hRsrc = FindResourceW(hInstance,MAKEINTRESOURCEW(wResId),
1201 (LPWSTR)(fCursor ? RT_CURSOR : RT_ICON) ))) return 0;
1203 /* If shared icon, check whether it was already loaded */
1204 if ( (loadflags & LR_SHARED)
1205 && (hIcon = CURSORICON_FindSharedIcon( hInstance, hRsrc ) ) != 0 )
1208 if (!(handle = LoadResource( hInstance, hRsrc ))) return 0;
1209 bits = LockResource( handle );
1210 hIcon = CreateIconFromResourceEx( bits, dwBytesInRes,
1211 !fCursor, 0x00030000, width, height, loadflags);
1212 FreeResource( handle );
1214 /* If shared icon, add to icon cache */
1216 if ( hIcon && (loadflags & LR_SHARED) )
1217 CURSORICON_AddSharedIcon( hInstance, hRsrc, hGroupRsrc, hIcon );
1222 /***********************************************************************
1225 * Make a copy of a cursor or icon.
1227 static HICON CURSORICON_Copy( HINSTANCE16 hInst16, HICON hIcon )
1229 char *ptrOld, *ptrNew;
1231 HICON16 hOld = HICON_16(hIcon);
1234 if (!(ptrOld = GlobalLock16( hOld ))) return 0;
1235 if (hInst16 && !(hInst16 = GetExePtr( hInst16 ))) return 0;
1236 size = GlobalSize16( hOld );
1237 hNew = GlobalAlloc16( GMEM_MOVEABLE, size );
1238 FarSetOwner16( hNew, hInst16 );
1239 ptrNew = GlobalLock16( hNew );
1240 memcpy( ptrNew, ptrOld, size );
1241 GlobalUnlock16( hOld );
1242 GlobalUnlock16( hNew );
1243 return HICON_32(hNew);
1246 /*************************************************************************
1247 * CURSORICON_ExtCopy
1249 * Copies an Image from the Cache if LR_COPYFROMRESOURCE is specified
1252 * Handle [I] handle to an Image
1253 * nType [I] Type of Handle (IMAGE_CURSOR | IMAGE_ICON)
1254 * iDesiredCX [I] The Desired width of the Image
1255 * iDesiredCY [I] The desired height of the Image
1256 * nFlags [I] The flags from CopyImage
1259 * Success: The new handle of the Image
1262 * LR_COPYDELETEORG and LR_MONOCHROME are currently not implemented.
1263 * LR_MONOCHROME should be implemented by CreateIconFromResourceEx.
1264 * LR_COPYFROMRESOURCE will only work if the Image is in the Cache.
1269 static HICON CURSORICON_ExtCopy(HICON hIcon, UINT nType,
1270 INT iDesiredCX, INT iDesiredCY,
1275 TRACE_(icon)("hIcon %p, nType %u, iDesiredCX %i, iDesiredCY %i, nFlags %u\n",
1276 hIcon, nType, iDesiredCX, iDesiredCY, nFlags);
1283 /* Best Fit or Monochrome */
1284 if( (nFlags & LR_COPYFROMRESOURCE
1285 && (iDesiredCX > 0 || iDesiredCY > 0))
1286 || nFlags & LR_MONOCHROME)
1288 ICONCACHE* pIconCache = CURSORICON_FindCache(hIcon);
1290 /* Not Found in Cache, then do a straight copy
1292 if(pIconCache == NULL)
1294 hNew = CURSORICON_Copy(0, hIcon);
1295 if(nFlags & LR_COPYFROMRESOURCE)
1297 TRACE_(icon)("LR_COPYFROMRESOURCE: Failed to load from cache\n");
1302 int iTargetCY = iDesiredCY, iTargetCX = iDesiredCX;
1308 CURSORICONDIR *pDir;
1309 CURSORICONDIRENTRY *pDirEntry;
1310 BOOL bIsIcon = (nType == IMAGE_ICON);
1312 /* Completing iDesiredCX CY for Monochrome Bitmaps if needed
1314 if(((nFlags & LR_MONOCHROME) && !(nFlags & LR_COPYFROMRESOURCE))
1315 || (iDesiredCX == 0 && iDesiredCY == 0))
1317 iDesiredCY = GetSystemMetrics(bIsIcon ?
1318 SM_CYICON : SM_CYCURSOR);
1319 iDesiredCX = GetSystemMetrics(bIsIcon ?
1320 SM_CXICON : SM_CXCURSOR);
1323 /* Retrieve the CURSORICONDIRENTRY
1325 if (!(hMem = LoadResource( pIconCache->hModule ,
1326 pIconCache->hGroupRsrc)))
1330 if (!(pDir = LockResource( hMem )))
1339 pDirEntry = CURSORICON_FindBestIconRes(
1340 pDir, iDesiredCX, iDesiredCY, 256 );
1344 pDirEntry = CURSORICON_FindBestCursorRes(
1345 pDir, iDesiredCX, iDesiredCY, 1);
1348 wResId = pDirEntry->wResId;
1349 dwBytesInRes = pDirEntry->dwBytesInRes;
1352 TRACE_(icon)("ResID %u, BytesInRes %u, Width %d, Height %d DX %d, DY %d\n",
1353 wResId, dwBytesInRes, pDirEntry->ResInfo.icon.bWidth,
1354 pDirEntry->ResInfo.icon.bHeight, iDesiredCX, iDesiredCY);
1358 if (!(hRsrc = FindResourceW(pIconCache->hModule ,
1359 MAKEINTRESOURCEW(wResId), (LPWSTR)(bIsIcon ? RT_ICON : RT_CURSOR))))
1363 if (!(hMem = LoadResource( pIconCache->hModule , hRsrc )))
1368 pBits = LockResource( hMem );
1370 if(nFlags & LR_DEFAULTSIZE)
1372 iTargetCY = GetSystemMetrics(SM_CYICON);
1373 iTargetCX = GetSystemMetrics(SM_CXICON);
1376 /* Create a New Icon with the proper dimension
1378 hNew = CreateIconFromResourceEx( pBits, dwBytesInRes,
1379 bIsIcon, 0x00030000, iTargetCX, iTargetCY, nFlags);
1383 else hNew = CURSORICON_Copy(0, hIcon);
1388 /***********************************************************************
1389 * CreateCursor (USER32.@)
1391 HCURSOR WINAPI CreateCursor( HINSTANCE hInstance,
1392 INT xHotSpot, INT yHotSpot,
1393 INT nWidth, INT nHeight,
1394 LPCVOID lpANDbits, LPCVOID lpXORbits )
1396 CURSORICONINFO info;
1398 TRACE_(cursor)("%dx%d spot=%d,%d xor=%p and=%p\n",
1399 nWidth, nHeight, xHotSpot, yHotSpot, lpXORbits, lpANDbits);
1401 info.ptHotSpot.x = xHotSpot;
1402 info.ptHotSpot.y = yHotSpot;
1403 info.nWidth = nWidth;
1404 info.nHeight = nHeight;
1405 info.nWidthBytes = 0;
1407 info.bBitsPerPixel = 1;
1409 return HICON_32(CreateCursorIconIndirect16(0, &info, lpANDbits, lpXORbits));
1413 /***********************************************************************
1414 * CreateIcon (USER.407)
1416 HICON16 WINAPI CreateIcon16( HINSTANCE16 hInstance, INT16 nWidth,
1417 INT16 nHeight, BYTE bPlanes, BYTE bBitsPixel,
1418 LPCVOID lpANDbits, LPCVOID lpXORbits )
1420 CURSORICONINFO info;
1422 TRACE_(icon)("%dx%dx%d, xor=%p, and=%p\n",
1423 nWidth, nHeight, bPlanes * bBitsPixel, lpXORbits, lpANDbits);
1425 info.ptHotSpot.x = ICON_HOTSPOT;
1426 info.ptHotSpot.y = ICON_HOTSPOT;
1427 info.nWidth = nWidth;
1428 info.nHeight = nHeight;
1429 info.nWidthBytes = 0;
1430 info.bPlanes = bPlanes;
1431 info.bBitsPerPixel = bBitsPixel;
1433 return CreateCursorIconIndirect16( hInstance, &info, lpANDbits, lpXORbits );
1437 /***********************************************************************
1438 * CreateIcon (USER32.@)
1440 * Creates an icon based on the specified bitmaps. The bitmaps must be
1441 * provided in a device dependent format and will be resized to
1442 * (SM_CXICON,SM_CYICON) and depth converted to match the screen's color
1443 * depth. The provided bitmaps must be top-down bitmaps.
1444 * Although Windows does not support 15bpp(*) this API must support it
1445 * for Winelib applications.
1447 * (*) Windows does not support 15bpp but it supports the 555 RGB 16bpp
1451 * Success: handle to an icon
1454 * FIXME: Do we need to resize the bitmaps?
1456 HICON WINAPI CreateIcon(
1457 HINSTANCE hInstance, /* [in] the application's hInstance */
1458 INT nWidth, /* [in] the width of the provided bitmaps */
1459 INT nHeight, /* [in] the height of the provided bitmaps */
1460 BYTE bPlanes, /* [in] the number of planes in the provided bitmaps */
1461 BYTE bBitsPixel, /* [in] the number of bits per pixel of the lpXORbits bitmap */
1462 LPCVOID lpANDbits, /* [in] a monochrome bitmap representing the icon's mask */
1463 LPCVOID lpXORbits) /* [in] the icon's 'color' bitmap */
1468 TRACE_(icon)("%dx%d, planes %d, bpp %d, xor %p, and %p\n",
1469 nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits, lpANDbits);
1472 iinfo.xHotspot = ICON_HOTSPOT;
1473 iinfo.yHotspot = ICON_HOTSPOT;
1474 iinfo.hbmMask = CreateBitmap( nWidth, nHeight, 1, 1, lpANDbits );
1475 iinfo.hbmColor = CreateBitmap( nWidth, nHeight, bPlanes, bBitsPixel, lpXORbits );
1477 hIcon = CreateIconIndirect( &iinfo );
1479 DeleteObject( iinfo.hbmMask );
1480 DeleteObject( iinfo.hbmColor );
1486 /***********************************************************************
1487 * CreateCursorIconIndirect (USER.408)
1489 HGLOBAL16 WINAPI CreateCursorIconIndirect16( HINSTANCE16 hInstance,
1490 CURSORICONINFO *info,
1496 int sizeAnd, sizeXor;
1498 hInstance = GetExePtr( hInstance ); /* Make it a module handle */
1499 if (!lpXORbits || !lpANDbits || info->bPlanes != 1) return 0;
1500 info->nWidthBytes = get_bitmap_width_bytes(info->nWidth,info->bBitsPerPixel);
1501 sizeXor = info->nHeight * info->nWidthBytes;
1502 sizeAnd = info->nHeight * get_bitmap_width_bytes( info->nWidth, 1 );
1503 if (!(handle = GlobalAlloc16( GMEM_MOVEABLE,
1504 sizeof(CURSORICONINFO) + sizeXor + sizeAnd)))
1506 FarSetOwner16( handle, hInstance );
1507 ptr = GlobalLock16( handle );
1508 memcpy( ptr, info, sizeof(*info) );
1509 memcpy( ptr + sizeof(CURSORICONINFO), lpANDbits, sizeAnd );
1510 memcpy( ptr + sizeof(CURSORICONINFO) + sizeAnd, lpXORbits, sizeXor );
1511 GlobalUnlock16( handle );
1516 /***********************************************************************
1517 * CopyIcon (USER.368)
1519 HICON16 WINAPI CopyIcon16( HINSTANCE16 hInstance, HICON16 hIcon )
1521 TRACE_(icon)("%04x %04x\n", hInstance, hIcon );
1522 return HICON_16(CURSORICON_Copy(hInstance, HICON_32(hIcon)));
1526 /***********************************************************************
1527 * CopyIcon (USER32.@)
1529 HICON WINAPI CopyIcon( HICON hIcon )
1531 TRACE_(icon)("%p\n", hIcon );
1532 return CURSORICON_Copy( 0, hIcon );
1536 /***********************************************************************
1537 * CopyCursor (USER.369)
1539 HCURSOR16 WINAPI CopyCursor16( HINSTANCE16 hInstance, HCURSOR16 hCursor )
1541 TRACE_(cursor)("%04x %04x\n", hInstance, hCursor );
1542 return HICON_16(CURSORICON_Copy(hInstance, HCURSOR_32(hCursor)));
1545 /**********************************************************************
1546 * DestroyIcon32 (USER.610)
1548 * This routine is actually exported from Win95 USER under the name
1549 * DestroyIcon32 ... The behaviour implemented here should mimic
1550 * the Win95 one exactly, especially the return values, which
1551 * depend on the setting of various flags.
1553 WORD WINAPI DestroyIcon32( HGLOBAL16 handle, UINT16 flags )
1557 TRACE_(icon)("(%04x, %04x)\n", handle, flags );
1559 /* Check whether destroying active cursor */
1561 if ( get_user_thread_info()->cursor == HICON_32(handle) )
1563 WARN_(cursor)("Destroying active cursor!\n" );
1567 /* Try shared cursor/icon first */
1569 if ( !(flags & CID_NONSHARED) )
1571 INT count = CURSORICON_DelSharedIcon(HICON_32(handle));
1574 return (flags & CID_WIN32)? TRUE : (count == 0);
1576 /* FIXME: OEM cursors/icons should be recognized */
1579 /* Now assume non-shared cursor/icon */
1581 retv = GlobalFree16( handle );
1582 return (flags & CID_RESOURCE)? retv : TRUE;
1585 /***********************************************************************
1586 * DestroyIcon (USER32.@)
1588 BOOL WINAPI DestroyIcon( HICON hIcon )
1590 return DestroyIcon32(HICON_16(hIcon), CID_WIN32);
1594 /***********************************************************************
1595 * DestroyCursor (USER32.@)
1597 BOOL WINAPI DestroyCursor( HCURSOR hCursor )
1599 return DestroyIcon32(HCURSOR_16(hCursor), CID_WIN32);
1603 /***********************************************************************
1604 * DrawIcon (USER32.@)
1606 BOOL WINAPI DrawIcon( HDC hdc, INT x, INT y, HICON hIcon )
1608 CURSORICONINFO *ptr;
1610 HBITMAP hXorBits, hAndBits;
1611 COLORREF oldFg, oldBg;
1613 TRACE("%p, (%d,%d), %p\n", hdc, x, y, hIcon);
1615 if (!(ptr = GlobalLock16(HICON_16(hIcon)))) return FALSE;
1616 if (!(hMemDC = CreateCompatibleDC( hdc ))) return FALSE;
1617 hAndBits = CreateBitmap( ptr->nWidth, ptr->nHeight, 1, 1,
1619 hXorBits = CreateBitmap( ptr->nWidth, ptr->nHeight, ptr->bPlanes,
1620 ptr->bBitsPerPixel, (char *)(ptr + 1)
1621 + ptr->nHeight * get_bitmap_width_bytes(ptr->nWidth,1) );
1622 oldFg = SetTextColor( hdc, RGB(0,0,0) );
1623 oldBg = SetBkColor( hdc, RGB(255,255,255) );
1625 if (hXorBits && hAndBits)
1627 HBITMAP hBitTemp = SelectObject( hMemDC, hAndBits );
1628 BitBlt( hdc, x, y, ptr->nWidth, ptr->nHeight, hMemDC, 0, 0, SRCAND );
1629 SelectObject( hMemDC, hXorBits );
1630 BitBlt(hdc, x, y, ptr->nWidth, ptr->nHeight, hMemDC, 0, 0,SRCINVERT);
1631 SelectObject( hMemDC, hBitTemp );
1634 if (hXorBits) DeleteObject( hXorBits );
1635 if (hAndBits) DeleteObject( hAndBits );
1636 GlobalUnlock16(HICON_16(hIcon));
1637 SetTextColor( hdc, oldFg );
1638 SetBkColor( hdc, oldBg );
1642 /***********************************************************************
1643 * DumpIcon (USER.459)
1645 DWORD WINAPI DumpIcon16( SEGPTR pInfo, WORD *lpLen,
1646 SEGPTR *lpXorBits, SEGPTR *lpAndBits )
1648 CURSORICONINFO *info = MapSL( pInfo );
1649 int sizeAnd, sizeXor;
1651 if (!info) return 0;
1652 sizeXor = info->nHeight * info->nWidthBytes;
1653 sizeAnd = info->nHeight * get_bitmap_width_bytes( info->nWidth, 1 );
1654 if (lpAndBits) *lpAndBits = pInfo + sizeof(CURSORICONINFO);
1655 if (lpXorBits) *lpXorBits = pInfo + sizeof(CURSORICONINFO) + sizeAnd;
1656 if (lpLen) *lpLen = sizeof(CURSORICONINFO) + sizeAnd + sizeXor;
1657 return MAKELONG( sizeXor, sizeXor );
1661 /***********************************************************************
1662 * SetCursor (USER32.@)
1664 * Set the cursor shape.
1667 * A handle to the previous cursor shape.
1669 HCURSOR WINAPI SetCursor( HCURSOR hCursor /* [in] Handle of cursor to show */ )
1671 struct user_thread_info *thread_info = get_user_thread_info();
1674 if (hCursor == thread_info->cursor) return hCursor; /* No change */
1675 TRACE("%p\n", hCursor);
1676 hOldCursor = thread_info->cursor;
1677 thread_info->cursor = hCursor;
1678 /* Change the cursor shape only if it is visible */
1679 if (thread_info->cursor_count >= 0)
1681 USER_Driver->pSetCursor( (CURSORICONINFO*)GlobalLock16(HCURSOR_16(hCursor)) );
1682 GlobalUnlock16(HCURSOR_16(hCursor));
1687 /***********************************************************************
1688 * ShowCursor (USER32.@)
1690 INT WINAPI ShowCursor( BOOL bShow )
1692 struct user_thread_info *thread_info = get_user_thread_info();
1694 TRACE("%d, count=%d\n", bShow, thread_info->cursor_count );
1698 if (++thread_info->cursor_count == 0) /* Show it */
1700 USER_Driver->pSetCursor((CURSORICONINFO*)GlobalLock16(HCURSOR_16(thread_info->cursor)));
1701 GlobalUnlock16(HCURSOR_16(thread_info->cursor));
1706 if (--thread_info->cursor_count == -1) /* Hide it */
1707 USER_Driver->pSetCursor( NULL );
1709 return thread_info->cursor_count;
1712 /***********************************************************************
1713 * GetCursor (USER32.@)
1715 HCURSOR WINAPI GetCursor(void)
1717 return get_user_thread_info()->cursor;
1721 /***********************************************************************
1722 * ClipCursor (USER32.@)
1724 BOOL WINAPI ClipCursor( const RECT *rect )
1728 SetRect( &virt, 0, 0, GetSystemMetrics( SM_CXVIRTUALSCREEN ),
1729 GetSystemMetrics( SM_CYVIRTUALSCREEN ) );
1730 OffsetRect( &virt, GetSystemMetrics( SM_XVIRTUALSCREEN ),
1731 GetSystemMetrics( SM_YVIRTUALSCREEN ) );
1733 TRACE( "Clipping to: %s was: %s screen: %s\n", wine_dbgstr_rect(rect),
1734 wine_dbgstr_rect(&CURSOR_ClipRect), wine_dbgstr_rect(&virt) );
1736 if (!IntersectRect( &CURSOR_ClipRect, &virt, rect ))
1737 CURSOR_ClipRect = virt;
1739 USER_Driver->pClipCursor( rect );
1744 /***********************************************************************
1745 * GetClipCursor (USER32.@)
1747 BOOL WINAPI GetClipCursor( RECT *rect )
1749 /* If this is first time - initialize the rect */
1750 if (IsRectEmpty( &CURSOR_ClipRect )) ClipCursor( NULL );
1752 return CopyRect( rect, &CURSOR_ClipRect );
1756 /***********************************************************************
1757 * SetSystemCursor (USER32.@)
1759 BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
1761 FIXME("(%p,%08x),stub!\n", hcur, id);
1766 /**********************************************************************
1767 * LookupIconIdFromDirectoryEx (USER.364)
1769 * FIXME: exact parameter sizes
1771 INT16 WINAPI LookupIconIdFromDirectoryEx16( LPBYTE dir, BOOL16 bIcon,
1772 INT16 width, INT16 height, UINT16 cFlag )
1774 return LookupIconIdFromDirectoryEx( dir, bIcon, width, height, cFlag );
1777 /**********************************************************************
1778 * LookupIconIdFromDirectoryEx (USER32.@)
1780 INT WINAPI LookupIconIdFromDirectoryEx( LPBYTE xdir, BOOL bIcon,
1781 INT width, INT height, UINT cFlag )
1783 CURSORICONDIR *dir = (CURSORICONDIR*)xdir;
1785 if( dir && !dir->idReserved && (dir->idType & 3) )
1787 CURSORICONDIRENTRY* entry;
1792 palEnts = GetSystemPaletteEntries(hdc, 0, 0, NULL);
1795 colors = (cFlag & LR_MONOCHROME) ? 2 : palEnts;
1800 entry = CURSORICON_FindBestIconRes( dir, width, height, colors );
1802 entry = CURSORICON_FindBestCursorRes( dir, width, height, 1);
1804 if( entry ) retVal = entry->wResId;
1806 else WARN_(cursor)("invalid resource directory\n");
1810 /**********************************************************************
1811 * LookupIconIdFromDirectory (USER.?)
1813 INT16 WINAPI LookupIconIdFromDirectory16( LPBYTE dir, BOOL16 bIcon )
1815 return LookupIconIdFromDirectoryEx16( dir, bIcon,
1816 bIcon ? GetSystemMetrics(SM_CXICON) : GetSystemMetrics(SM_CXCURSOR),
1817 bIcon ? GetSystemMetrics(SM_CYICON) : GetSystemMetrics(SM_CYCURSOR), bIcon ? 0 : LR_MONOCHROME );
1820 /**********************************************************************
1821 * LookupIconIdFromDirectory (USER32.@)
1823 INT WINAPI LookupIconIdFromDirectory( LPBYTE dir, BOOL bIcon )
1825 return LookupIconIdFromDirectoryEx( dir, bIcon,
1826 bIcon ? GetSystemMetrics(SM_CXICON) : GetSystemMetrics(SM_CXCURSOR),
1827 bIcon ? GetSystemMetrics(SM_CYICON) : GetSystemMetrics(SM_CYCURSOR), bIcon ? 0 : LR_MONOCHROME );
1830 /**********************************************************************
1831 * GetIconID (USER.455)
1833 WORD WINAPI GetIconID16( HGLOBAL16 hResource, DWORD resType )
1835 LPBYTE lpDir = GlobalLock16(hResource);
1837 TRACE_(cursor)("hRes=%04x, entries=%i\n",
1838 hResource, lpDir ? ((CURSORICONDIR*)lpDir)->idCount : 0);
1843 return (WORD)LookupIconIdFromDirectoryEx16( lpDir, FALSE,
1844 GetSystemMetrics(SM_CXCURSOR), GetSystemMetrics(SM_CYCURSOR), LR_MONOCHROME );
1846 return (WORD)LookupIconIdFromDirectoryEx16( lpDir, TRUE,
1847 GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON), 0 );
1849 WARN_(cursor)("invalid res type %d\n", resType );
1854 /**********************************************************************
1855 * LoadCursorIconHandler (USER.336)
1857 * Supposed to load resources of Windows 2.x applications.
1859 HGLOBAL16 WINAPI LoadCursorIconHandler16( HGLOBAL16 hResource, HMODULE16 hModule, HRSRC16 hRsrc )
1861 FIXME_(cursor)("(%04x,%04x,%04x): old 2.x resources are not supported!\n",
1862 hResource, hModule, hRsrc);
1866 /**********************************************************************
1867 * LoadIconHandler (USER.456)
1869 HICON16 WINAPI LoadIconHandler16( HGLOBAL16 hResource, BOOL16 bNew )
1871 LPBYTE bits = LockResource16( hResource );
1873 TRACE_(cursor)("hRes=%04x\n",hResource);
1875 return HICON_16(CreateIconFromResourceEx( bits, 0, TRUE,
1876 bNew ? 0x00030000 : 0x00020000, 0, 0, LR_DEFAULTCOLOR));
1879 /***********************************************************************
1880 * LoadCursorW (USER32.@)
1882 HCURSOR WINAPI LoadCursorW(HINSTANCE hInstance, LPCWSTR name)
1884 TRACE("%p, %s\n", hInstance, debugstr_w(name));
1886 return LoadImageW( hInstance, name, IMAGE_CURSOR, 0, 0,
1887 LR_SHARED | LR_DEFAULTSIZE );
1890 /***********************************************************************
1891 * LoadCursorA (USER32.@)
1893 HCURSOR WINAPI LoadCursorA(HINSTANCE hInstance, LPCSTR name)
1895 TRACE("%p, %s\n", hInstance, debugstr_a(name));
1897 return LoadImageA( hInstance, name, IMAGE_CURSOR, 0, 0,
1898 LR_SHARED | LR_DEFAULTSIZE );
1901 /***********************************************************************
1902 * LoadCursorFromFileW (USER32.@)
1904 HCURSOR WINAPI LoadCursorFromFileW (LPCWSTR name)
1906 TRACE("%s\n", debugstr_w(name));
1908 return LoadImageW( 0, name, IMAGE_CURSOR, 0, 0,
1909 LR_LOADFROMFILE | LR_DEFAULTSIZE );
1912 /***********************************************************************
1913 * LoadCursorFromFileA (USER32.@)
1915 HCURSOR WINAPI LoadCursorFromFileA (LPCSTR name)
1917 TRACE("%s\n", debugstr_a(name));
1919 return LoadImageA( 0, name, IMAGE_CURSOR, 0, 0,
1920 LR_LOADFROMFILE | LR_DEFAULTSIZE );
1923 /***********************************************************************
1924 * LoadIconW (USER32.@)
1926 HICON WINAPI LoadIconW(HINSTANCE hInstance, LPCWSTR name)
1928 TRACE("%p, %s\n", hInstance, debugstr_w(name));
1930 return LoadImageW( hInstance, name, IMAGE_ICON, 0, 0,
1931 LR_SHARED | LR_DEFAULTSIZE );
1934 /***********************************************************************
1935 * LoadIconA (USER32.@)
1937 HICON WINAPI LoadIconA(HINSTANCE hInstance, LPCSTR name)
1939 TRACE("%p, %s\n", hInstance, debugstr_a(name));
1941 return LoadImageA( hInstance, name, IMAGE_ICON, 0, 0,
1942 LR_SHARED | LR_DEFAULTSIZE );
1945 /**********************************************************************
1946 * GetIconInfo (USER32.@)
1948 BOOL WINAPI GetIconInfo(HICON hIcon, PICONINFO iconinfo)
1950 CURSORICONINFO *ciconinfo;
1953 ciconinfo = GlobalLock16(HICON_16(hIcon));
1957 TRACE("%p => %dx%d, %d bpp\n", hIcon,
1958 ciconinfo->nWidth, ciconinfo->nHeight, ciconinfo->bBitsPerPixel);
1960 if ( (ciconinfo->ptHotSpot.x == ICON_HOTSPOT) &&
1961 (ciconinfo->ptHotSpot.y == ICON_HOTSPOT) )
1963 iconinfo->fIcon = TRUE;
1964 iconinfo->xHotspot = ciconinfo->nWidth / 2;
1965 iconinfo->yHotspot = ciconinfo->nHeight / 2;
1969 iconinfo->fIcon = FALSE;
1970 iconinfo->xHotspot = ciconinfo->ptHotSpot.x;
1971 iconinfo->yHotspot = ciconinfo->ptHotSpot.y;
1974 height = ciconinfo->nHeight;
1976 if (ciconinfo->bBitsPerPixel > 1)
1978 iconinfo->hbmColor = CreateBitmap( ciconinfo->nWidth, ciconinfo->nHeight,
1979 ciconinfo->bPlanes, ciconinfo->bBitsPerPixel,
1980 (char *)(ciconinfo + 1)
1981 + ciconinfo->nHeight *
1982 get_bitmap_width_bytes (ciconinfo->nWidth,1) );
1986 iconinfo->hbmColor = 0;
1990 iconinfo->hbmMask = CreateBitmap ( ciconinfo->nWidth, height,
1991 1, 1, (char *)(ciconinfo + 1));
1993 GlobalUnlock16(HICON_16(hIcon));
1998 /**********************************************************************
1999 * CreateIconIndirect (USER32.@)
2001 HICON WINAPI CreateIconIndirect(PICONINFO iconinfo)
2006 int xor_objsize = 0, sizeXor = 0, sizeAnd, planes, bpp;
2008 TRACE("color %p, mask %p, hotspot %ux%u, fIcon %d\n",
2009 iconinfo->hbmColor, iconinfo->hbmMask,
2010 iconinfo->xHotspot, iconinfo->yHotspot, iconinfo->fIcon);
2012 if (!iconinfo->hbmMask) return 0;
2014 planes = GetDeviceCaps( screen_dc, PLANES );
2015 bpp = GetDeviceCaps( screen_dc, BITSPIXEL );
2017 if (iconinfo->hbmColor)
2019 xor_objsize = GetObjectW( iconinfo->hbmColor, sizeof(bmpXor), &bmpXor );
2020 TRACE("color: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
2021 bmpXor.dsBm.bmWidth, bmpXor.dsBm.bmHeight, bmpXor.dsBm.bmWidthBytes,
2022 bmpXor.dsBm.bmPlanes, bmpXor.dsBm.bmBitsPixel);
2023 /* we can use either depth 1 or screen depth for xor bitmap */
2024 if (bmpXor.dsBm.bmPlanes == 1 && bmpXor.dsBm.bmBitsPixel == 1) planes = bpp = 1;
2025 sizeXor = bmpXor.dsBm.bmHeight * planes * get_bitmap_width_bytes( bmpXor.dsBm.bmWidth, bpp );
2027 GetObjectW( iconinfo->hbmMask, sizeof(bmpAnd), &bmpAnd );
2028 TRACE("mask: width %d, height %d, width bytes %d, planes %u, bpp %u\n",
2029 bmpAnd.bmWidth, bmpAnd.bmHeight, bmpAnd.bmWidthBytes,
2030 bmpAnd.bmPlanes, bmpAnd.bmBitsPixel);
2032 sizeAnd = bmpAnd.bmHeight * get_bitmap_width_bytes(bmpAnd.bmWidth, 1);
2034 hObj = GlobalAlloc16( GMEM_MOVEABLE,
2035 sizeof(CURSORICONINFO) + sizeXor + sizeAnd );
2038 CURSORICONINFO *info;
2040 info = GlobalLock16( hObj );
2042 /* If we are creating an icon, the hotspot is unused */
2043 if (iconinfo->fIcon)
2045 info->ptHotSpot.x = ICON_HOTSPOT;
2046 info->ptHotSpot.y = ICON_HOTSPOT;
2050 info->ptHotSpot.x = iconinfo->xHotspot;
2051 info->ptHotSpot.y = iconinfo->yHotspot;
2054 if (iconinfo->hbmColor)
2056 info->nWidth = bmpXor.dsBm.bmWidth;
2057 info->nHeight = bmpXor.dsBm.bmHeight;
2058 info->nWidthBytes = bmpXor.dsBm.bmWidthBytes;
2059 info->bPlanes = planes;
2060 info->bBitsPerPixel = bpp;
2064 info->nWidth = bmpAnd.bmWidth;
2065 info->nHeight = bmpAnd.bmHeight / 2;
2066 info->nWidthBytes = get_bitmap_width_bytes(bmpAnd.bmWidth, 1);
2068 info->bBitsPerPixel = 1;
2071 /* Transfer the bitmap bits to the CURSORICONINFO structure */
2073 /* Some apps pass a color bitmap as a mask, convert it to b/w */
2074 if (bmpAnd.bmBitsPixel == 1)
2076 GetBitmapBits( iconinfo->hbmMask, sizeAnd, (char*)(info + 1) );
2081 HBITMAP hbmp_old, hbmp_mem_old, hbmp_mono;
2084 hdc_mem = CreateCompatibleDC( hdc );
2086 hbmp_mono = CreateBitmap( bmpAnd.bmWidth, bmpAnd.bmHeight, 1, 1, NULL );
2088 hbmp_old = SelectObject( hdc, iconinfo->hbmMask );
2089 hbmp_mem_old = SelectObject( hdc_mem, hbmp_mono );
2091 BitBlt( hdc_mem, 0, 0, bmpAnd.bmWidth, bmpAnd.bmHeight, hdc, 0, 0, SRCCOPY );
2093 SelectObject( hdc, hbmp_old );
2094 SelectObject( hdc_mem, hbmp_mem_old );
2096 DeleteDC( hdc_mem );
2097 ReleaseDC( 0, hdc );
2099 GetBitmapBits( hbmp_mono, sizeAnd, (char*)(info + 1) );
2100 DeleteObject( hbmp_mono );
2103 if (iconinfo->hbmColor)
2105 char *dst_bits = (char*)(info + 1) + sizeAnd;
2107 if (bmpXor.dsBm.bmPlanes == planes && bmpXor.dsBm.bmBitsPixel == bpp)
2108 GetBitmapBits( iconinfo->hbmColor, sizeXor, dst_bits );
2112 int dib_width = get_dib_width_bytes( info->nWidth, info->bBitsPerPixel );
2113 int bitmap_width = get_bitmap_width_bytes( info->nWidth, info->bBitsPerPixel );
2115 bminfo.bmiHeader.biSize = sizeof(bminfo);
2116 bminfo.bmiHeader.biWidth = info->nWidth;
2117 bminfo.bmiHeader.biHeight = info->nHeight;
2118 bminfo.bmiHeader.biPlanes = info->bPlanes;
2119 bminfo.bmiHeader.biBitCount = info->bBitsPerPixel;
2120 bminfo.bmiHeader.biCompression = BI_RGB;
2121 bminfo.bmiHeader.biSizeImage = info->nHeight * dib_width;
2122 bminfo.bmiHeader.biXPelsPerMeter = 0;
2123 bminfo.bmiHeader.biYPelsPerMeter = 0;
2124 bminfo.bmiHeader.biClrUsed = 0;
2125 bminfo.bmiHeader.biClrImportant = 0;
2127 /* swap lines for dib sections */
2128 if (xor_objsize == sizeof(DIBSECTION))
2129 bminfo.bmiHeader.biHeight = -bminfo.bmiHeader.biHeight;
2131 if (dib_width != bitmap_width) /* need to fixup alignment */
2133 char *src_bits = HeapAlloc( GetProcessHeap(), 0, bminfo.bmiHeader.biSizeImage );
2135 if (src_bits && GetDIBits( screen_dc, iconinfo->hbmColor, 0, info->nHeight,
2136 src_bits, &bminfo, DIB_RGB_COLORS ))
2139 for (y = 0; y < info->nHeight; y++)
2140 memcpy( dst_bits + y * bitmap_width, src_bits + y * dib_width, bitmap_width );
2142 HeapFree( GetProcessHeap(), 0, src_bits );
2145 GetDIBits( screen_dc, iconinfo->hbmColor, 0, info->nHeight,
2146 dst_bits, &bminfo, DIB_RGB_COLORS );
2149 GlobalUnlock16( hObj );
2151 return HICON_32(hObj);
2154 /******************************************************************************
2155 * DrawIconEx (USER32.@) Draws an icon or cursor on device context
2158 * Why is this using SM_CXICON instead of SM_CXCURSOR?
2161 * hdc [I] Handle to device context
2162 * x0 [I] X coordinate of upper left corner
2163 * y0 [I] Y coordinate of upper left corner
2164 * hIcon [I] Handle to icon to draw
2165 * cxWidth [I] Width of icon
2166 * cyWidth [I] Height of icon
2167 * istep [I] Index of frame in animated cursor
2168 * hbr [I] Handle to background brush
2169 * flags [I] Icon-drawing flags
2175 BOOL WINAPI DrawIconEx( HDC hdc, INT x0, INT y0, HICON hIcon,
2176 INT cxWidth, INT cyWidth, UINT istep,
2177 HBRUSH hbr, UINT flags )
2179 CURSORICONINFO *ptr = GlobalLock16(HICON_16(hIcon));
2180 HDC hDC_off = 0, hMemDC;
2181 BOOL result = FALSE, DoOffscreen;
2182 HBITMAP hB_off = 0, hOld = 0;
2184 if (!ptr) return FALSE;
2185 TRACE_(icon)("(hdc=%p,pos=%d.%d,hicon=%p,extend=%d.%d,istep=%d,br=%p,flags=0x%08x)\n",
2186 hdc,x0,y0,hIcon,cxWidth,cyWidth,istep,hbr,flags );
2188 hMemDC = CreateCompatibleDC (hdc);
2190 FIXME_(icon)("Ignoring istep=%d\n", istep);
2191 if (flags & DI_NOMIRROR)
2192 FIXME_(icon)("Ignoring flag DI_NOMIRROR\n");
2195 FIXME_(icon)("no flags set? setting to DI_NORMAL\n");
2199 /* Calculate the size of the destination image. */
2202 if (flags & DI_DEFAULTSIZE)
2203 cxWidth = GetSystemMetrics (SM_CXICON);
2205 cxWidth = ptr->nWidth;
2209 if (flags & DI_DEFAULTSIZE)
2210 cyWidth = GetSystemMetrics (SM_CYICON);
2212 cyWidth = ptr->nHeight;
2215 DoOffscreen = (GetObjectType( hbr ) == OBJ_BRUSH);
2225 hDC_off = CreateCompatibleDC(hdc);
2226 hB_off = CreateCompatibleBitmap(hdc, cxWidth, cyWidth);
2227 if (hDC_off && hB_off) {
2228 hOld = SelectObject(hDC_off, hB_off);
2229 FillRect(hDC_off, &r, hbr);
2233 if (hMemDC && (!DoOffscreen || (hDC_off && hB_off)))
2235 HBITMAP hXorBits, hAndBits;
2236 COLORREF oldFg, oldBg;
2239 nStretchMode = SetStretchBltMode (hdc, STRETCH_DELETESCANS);
2241 hXorBits = CreateBitmap ( ptr->nWidth, ptr->nHeight,
2242 ptr->bPlanes, ptr->bBitsPerPixel,
2245 get_bitmap_width_bytes(ptr->nWidth,1) );
2246 hAndBits = CreateBitmap ( ptr->nWidth, ptr->nHeight,
2247 1, 1, (char *)(ptr+1) );
2248 oldFg = SetTextColor( hdc, RGB(0,0,0) );
2249 oldBg = SetBkColor( hdc, RGB(255,255,255) );
2251 if (hXorBits && hAndBits)
2253 HBITMAP hBitTemp = SelectObject( hMemDC, hAndBits );
2254 if (flags & DI_MASK)
2257 StretchBlt (hDC_off, 0, 0, cxWidth, cyWidth,
2258 hMemDC, 0, 0, ptr->nWidth, ptr->nHeight, SRCAND);
2260 StretchBlt (hdc, x0, y0, cxWidth, cyWidth,
2261 hMemDC, 0, 0, ptr->nWidth, ptr->nHeight, SRCAND);
2263 SelectObject( hMemDC, hXorBits );
2264 if (flags & DI_IMAGE)
2267 StretchBlt (hDC_off, 0, 0, cxWidth, cyWidth,
2268 hMemDC, 0, 0, ptr->nWidth, ptr->nHeight, SRCPAINT);
2270 StretchBlt (hdc, x0, y0, cxWidth, cyWidth,
2271 hMemDC, 0, 0, ptr->nWidth, ptr->nHeight, SRCPAINT);
2273 SelectObject( hMemDC, hBitTemp );
2277 SetTextColor( hdc, oldFg );
2278 SetBkColor( hdc, oldBg );
2279 if (hXorBits) DeleteObject( hXorBits );
2280 if (hAndBits) DeleteObject( hAndBits );
2281 SetStretchBltMode (hdc, nStretchMode);
2283 BitBlt(hdc, x0, y0, cxWidth, cyWidth, hDC_off, 0, 0, SRCCOPY);
2284 SelectObject(hDC_off, hOld);
2287 if (hMemDC) DeleteDC( hMemDC );
2288 if (hDC_off) DeleteDC(hDC_off);
2289 if (hB_off) DeleteObject(hB_off);
2290 GlobalUnlock16(HICON_16(hIcon));
2294 /***********************************************************************
2295 * DIB_FixColorsToLoadflags
2297 * Change color table entries when LR_LOADTRANSPARENT or LR_LOADMAP3DCOLORS
2300 static void DIB_FixColorsToLoadflags(BITMAPINFO * bmi, UINT loadflags, BYTE pix)
2303 COLORREF c_W, c_S, c_F, c_L, c_C;
2312 if (((bitmap_type = DIB_GetBitmapInfo((BITMAPINFOHEADER*) bmi, &width, &height, &bpp, &compr)) == -1))
2314 WARN_(resource)("Invalid bitmap\n");
2318 if (bpp > 8) return;
2320 if (bitmap_type == 0) /* BITMAPCOREHEADER */
2328 colors = bmi->bmiHeader.biClrUsed;
2329 if (colors > 256) colors = 256;
2330 if (!colors && (bpp <= 8)) colors = 1 << bpp;
2333 c_W = GetSysColor(COLOR_WINDOW);
2334 c_S = GetSysColor(COLOR_3DSHADOW);
2335 c_F = GetSysColor(COLOR_3DFACE);
2336 c_L = GetSysColor(COLOR_3DLIGHT);
2338 if (loadflags & LR_LOADTRANSPARENT) {
2340 case 1: pix = pix >> 7; break;
2341 case 4: pix = pix >> 4; break;
2344 WARN_(resource)("(%d): Unsupported depth\n", bpp);
2347 if (pix >= colors) {
2348 WARN_(resource)("pixel has color index greater than biClrUsed!\n");
2351 if (loadflags & LR_LOADMAP3DCOLORS) c_W = c_F;
2352 ptr = (RGBQUAD*)((char*)bmi->bmiColors+pix*incr);
2353 ptr->rgbBlue = GetBValue(c_W);
2354 ptr->rgbGreen = GetGValue(c_W);
2355 ptr->rgbRed = GetRValue(c_W);
2357 if (loadflags & LR_LOADMAP3DCOLORS)
2358 for (i=0; i<colors; i++) {
2359 ptr = (RGBQUAD*)((char*)bmi->bmiColors+i*incr);
2360 c_C = RGB(ptr->rgbRed, ptr->rgbGreen, ptr->rgbBlue);
2361 if (c_C == RGB(128, 128, 128)) {
2362 ptr->rgbRed = GetRValue(c_S);
2363 ptr->rgbGreen = GetGValue(c_S);
2364 ptr->rgbBlue = GetBValue(c_S);
2365 } else if (c_C == RGB(192, 192, 192)) {
2366 ptr->rgbRed = GetRValue(c_F);
2367 ptr->rgbGreen = GetGValue(c_F);
2368 ptr->rgbBlue = GetBValue(c_F);
2369 } else if (c_C == RGB(223, 223, 223)) {
2370 ptr->rgbRed = GetRValue(c_L);
2371 ptr->rgbGreen = GetGValue(c_L);
2372 ptr->rgbBlue = GetBValue(c_L);
2378 /**********************************************************************
2381 static HBITMAP BITMAP_Load( HINSTANCE instance, LPCWSTR name,
2382 INT desiredx, INT desiredy, UINT loadflags )
2384 HBITMAP hbitmap = 0, orig_bm;
2388 BITMAPINFO *info, *fix_info = NULL, *scaled_info = NULL;
2392 LONG width, height, new_width, new_height;
2396 HDC screen_mem_dc = NULL;
2398 if (!(loadflags & LR_LOADFROMFILE))
2402 /* OEM bitmap: try to load the resource from user32.dll */
2403 instance = user32_module;
2406 if (!(hRsrc = FindResourceW( instance, name, (LPWSTR)RT_BITMAP ))) return 0;
2407 if (!(handle = LoadResource( instance, hRsrc ))) return 0;
2409 if ((info = LockResource( handle )) == NULL) return 0;
2413 BITMAPFILEHEADER * bmfh;
2415 if (!(ptr = map_fileW( name, NULL ))) return 0;
2416 info = (BITMAPINFO *)(ptr + sizeof(BITMAPFILEHEADER));
2417 bmfh = (BITMAPFILEHEADER *)ptr;
2418 if (!( bmfh->bfType == 0x4d42 /* 'BM' */ &&
2419 bmfh->bfReserved1 == 0 &&
2420 bmfh->bfReserved2 == 0))
2422 WARN("Invalid/unsupported bitmap format!\n");
2423 UnmapViewOfFile( ptr );
2428 size = bitmap_info_size(info, DIB_RGB_COLORS);
2429 fix_info = HeapAlloc(GetProcessHeap(), 0, size);
2430 scaled_info = HeapAlloc(GetProcessHeap(), 0, size);
2432 if (!fix_info || !scaled_info) goto end;
2433 memcpy(fix_info, info, size);
2435 pix = *((LPBYTE)info + size);
2436 DIB_FixColorsToLoadflags(fix_info, loadflags, pix);
2438 memcpy(scaled_info, fix_info, size);
2439 bm_type = DIB_GetBitmapInfo( &fix_info->bmiHeader, &width, &height,
2440 &bpp_dummy, &compr_dummy);
2442 new_width = desiredx;
2447 new_height = height > 0 ? desiredy : -desiredy;
2449 new_height = height;
2453 BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)&scaled_info->bmiHeader;
2454 core->bcWidth = new_width;
2455 core->bcHeight = new_height;
2459 scaled_info->bmiHeader.biWidth = new_width;
2460 scaled_info->bmiHeader.biHeight = new_height;
2463 if (new_height < 0) new_height = -new_height;
2465 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
2466 if (!(screen_mem_dc = CreateCompatibleDC( screen_dc ))) goto end;
2468 bits = (char *)info + size;
2470 if (loadflags & LR_CREATEDIBSECTION)
2472 scaled_info->bmiHeader.biCompression = 0; /* DIBSection can't be compressed */
2473 hbitmap = CreateDIBSection(screen_dc, scaled_info, DIB_RGB_COLORS, NULL, 0, 0);
2477 if (is_dib_monochrome(fix_info))
2478 hbitmap = CreateBitmap(new_width, new_height, 1, 1, NULL);
2480 hbitmap = CreateCompatibleBitmap(screen_dc, new_width, new_height);
2483 orig_bm = SelectObject(screen_mem_dc, hbitmap);
2484 StretchDIBits(screen_mem_dc, 0, 0, new_width, new_height, 0, 0, width, height, bits, fix_info, DIB_RGB_COLORS, SRCCOPY);
2485 SelectObject(screen_mem_dc, orig_bm);
2488 if (screen_mem_dc) DeleteDC(screen_mem_dc);
2489 HeapFree(GetProcessHeap(), 0, scaled_info);
2490 HeapFree(GetProcessHeap(), 0, fix_info);
2491 if (loadflags & LR_LOADFROMFILE) UnmapViewOfFile( ptr );
2496 /**********************************************************************
2497 * LoadImageA (USER32.@)
2501 HANDLE WINAPI LoadImageA( HINSTANCE hinst, LPCSTR name, UINT type,
2502 INT desiredx, INT desiredy, UINT loadflags)
2508 return LoadImageW(hinst, (LPCWSTR)name, type, desiredx, desiredy, loadflags);
2511 DWORD len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
2512 u_name = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2513 MultiByteToWideChar( CP_ACP, 0, name, -1, u_name, len );
2515 __EXCEPT_PAGE_FAULT {
2516 SetLastError( ERROR_INVALID_PARAMETER );
2520 res = LoadImageW(hinst, u_name, type, desiredx, desiredy, loadflags);
2521 HeapFree(GetProcessHeap(), 0, u_name);
2526 /******************************************************************************
2527 * LoadImageW (USER32.@) Loads an icon, cursor, or bitmap
2530 * hinst [I] Handle of instance that contains image
2531 * name [I] Name of image
2532 * type [I] Type of image
2533 * desiredx [I] Desired width
2534 * desiredy [I] Desired height
2535 * loadflags [I] Load flags
2538 * Success: Handle to newly loaded image
2541 * FIXME: Implementation lacks some features, see LR_ defines in winuser.h
2543 HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
2544 INT desiredx, INT desiredy, UINT loadflags )
2546 TRACE_(resource)("(%p,%s,%d,%d,%d,0x%08x)\n",
2547 hinst,debugstr_w(name),type,desiredx,desiredy,loadflags);
2549 if (loadflags & LR_DEFAULTSIZE) {
2550 if (type == IMAGE_ICON) {
2551 if (!desiredx) desiredx = GetSystemMetrics(SM_CXICON);
2552 if (!desiredy) desiredy = GetSystemMetrics(SM_CYICON);
2553 } else if (type == IMAGE_CURSOR) {
2554 if (!desiredx) desiredx = GetSystemMetrics(SM_CXCURSOR);
2555 if (!desiredy) desiredy = GetSystemMetrics(SM_CYCURSOR);
2558 if (loadflags & LR_LOADFROMFILE) loadflags &= ~LR_SHARED;
2561 return BITMAP_Load( hinst, name, desiredx, desiredy, loadflags );
2564 if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
2567 UINT palEnts = GetSystemPaletteEntries(screen_dc, 0, 0, NULL);
2568 if (palEnts == 0) palEnts = 256;
2569 return CURSORICON_Load(hinst, name, desiredx, desiredy,
2570 palEnts, FALSE, loadflags);
2575 return CURSORICON_Load(hinst, name, desiredx, desiredy,
2576 1, TRUE, loadflags);
2581 /******************************************************************************
2582 * CopyImage (USER32.@) Creates new image and copies attributes to it
2585 * hnd [I] Handle to image to copy
2586 * type [I] Type of image to copy
2587 * desiredx [I] Desired width of new image
2588 * desiredy [I] Desired height of new image
2589 * flags [I] Copy flags
2592 * Success: Handle to newly created image
2596 * Only Windows NT 4.0 supports the LR_COPYRETURNORG flag for bitmaps,
2597 * all other versions (95/2000/XP have been tested) ignore it.
2600 * If LR_CREATEDIBSECTION is absent, the copy will be monochrome for
2601 * a monochrome source bitmap or if LR_MONOCHROME is present, otherwise
2602 * the copy will have the same depth as the screen.
2603 * The content of the image will only be copied if the bit depth of the
2604 * original image is compatible with the bit depth of the screen, or
2605 * if the source is a DIB section.
2606 * The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
2608 HANDLE WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
2609 INT desiredy, UINT flags )
2611 TRACE("hnd=%p, type=%u, desiredx=%d, desiredy=%d, flags=%x\n",
2612 hnd, type, desiredx, desiredy, flags);
2623 objSize = GetObjectW( hnd, sizeof(ds), &ds );
2624 if (!objSize) return 0;
2625 if ((desiredx < 0) || (desiredy < 0)) return 0;
2627 if (flags & LR_COPYFROMRESOURCE)
2629 FIXME("The flag LR_COPYFROMRESOURCE is not implemented for bitmaps\n");
2632 if (desiredx == 0) desiredx = ds.dsBm.bmWidth;
2633 if (desiredy == 0) desiredy = ds.dsBm.bmHeight;
2635 /* Allocate memory for a BITMAPINFOHEADER structure and a
2636 color table. The maximum number of colors in a color table
2637 is 256 which corresponds to a bitmap with depth 8.
2638 Bitmaps with higher depths don't have color tables. */
2639 bi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
2642 bi->bmiHeader.biSize = sizeof(bi->bmiHeader);
2643 bi->bmiHeader.biPlanes = ds.dsBm.bmPlanes;
2644 bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel;
2645 bi->bmiHeader.biCompression = BI_RGB;
2647 if (flags & LR_CREATEDIBSECTION)
2649 /* Create a DIB section. LR_MONOCHROME is ignored */
2651 HDC dc = CreateCompatibleDC(NULL);
2653 if (objSize == sizeof(DIBSECTION))
2655 /* The source bitmap is a DIB.
2656 Get its attributes to create an exact copy */
2657 memcpy(bi, &ds.dsBmih, sizeof(BITMAPINFOHEADER));
2660 /* Get the color table or the color masks */
2661 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2663 bi->bmiHeader.biWidth = desiredx;
2664 bi->bmiHeader.biHeight = desiredy;
2665 bi->bmiHeader.biSizeImage = 0;
2667 res = CreateDIBSection(dc, bi, DIB_RGB_COLORS, &bits, NULL, 0);
2672 /* Create a device-dependent bitmap */
2674 BOOL monochrome = (flags & LR_MONOCHROME);
2676 if (objSize == sizeof(DIBSECTION))
2678 /* The source bitmap is a DIB section.
2679 Get its attributes */
2680 HDC dc = CreateCompatibleDC(NULL);
2681 bi->bmiHeader.biSize = sizeof(bi->bmiHeader);
2682 bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel;
2683 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2686 if (!monochrome && ds.dsBm.bmBitsPixel == 1)
2688 /* Look if the colors of the DIB are black and white */
2691 (bi->bmiColors[0].rgbRed == 0xff
2692 && bi->bmiColors[0].rgbGreen == 0xff
2693 && bi->bmiColors[0].rgbBlue == 0xff
2694 && bi->bmiColors[0].rgbReserved == 0
2695 && bi->bmiColors[1].rgbRed == 0
2696 && bi->bmiColors[1].rgbGreen == 0
2697 && bi->bmiColors[1].rgbBlue == 0
2698 && bi->bmiColors[1].rgbReserved == 0)
2700 (bi->bmiColors[0].rgbRed == 0
2701 && bi->bmiColors[0].rgbGreen == 0
2702 && bi->bmiColors[0].rgbBlue == 0
2703 && bi->bmiColors[0].rgbReserved == 0
2704 && bi->bmiColors[1].rgbRed == 0xff
2705 && bi->bmiColors[1].rgbGreen == 0xff
2706 && bi->bmiColors[1].rgbBlue == 0xff
2707 && bi->bmiColors[1].rgbReserved == 0);
2710 else if (!monochrome)
2712 monochrome = ds.dsBm.bmBitsPixel == 1;
2717 res = CreateBitmap(desiredx, desiredy, 1, 1, NULL);
2721 HDC screenDC = GetDC(NULL);
2722 res = CreateCompatibleBitmap(screenDC, desiredx, desiredy);
2723 ReleaseDC(NULL, screenDC);
2729 /* Only copy the bitmap if it's a DIB section or if it's
2730 compatible to the screen */
2733 if (objSize == sizeof(DIBSECTION))
2735 copyContents = TRUE;
2739 HDC screenDC = GetDC(NULL);
2740 int screen_depth = GetDeviceCaps(screenDC, BITSPIXEL);
2741 ReleaseDC(NULL, screenDC);
2743 copyContents = (ds.dsBm.bmBitsPixel == 1 || ds.dsBm.bmBitsPixel == screen_depth);
2748 /* The source bitmap may already be selected in a device context,
2749 use GetDIBits/StretchDIBits and not StretchBlt */
2754 dc = CreateCompatibleDC(NULL);
2756 bi->bmiHeader.biWidth = ds.dsBm.bmWidth;
2757 bi->bmiHeader.biHeight = ds.dsBm.bmHeight;
2758 bi->bmiHeader.biSizeImage = 0;
2759 bi->bmiHeader.biClrUsed = 0;
2760 bi->bmiHeader.biClrImportant = 0;
2762 /* Fill in biSizeImage */
2763 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, NULL, bi, DIB_RGB_COLORS);
2764 bits = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, bi->bmiHeader.biSizeImage);
2770 /* Get the image bits of the source bitmap */
2771 GetDIBits(dc, hnd, 0, ds.dsBm.bmHeight, bits, bi, DIB_RGB_COLORS);
2773 /* Copy it to the destination bitmap */
2774 oldBmp = SelectObject(dc, res);
2775 StretchDIBits(dc, 0, 0, desiredx, desiredy,
2776 0, 0, ds.dsBm.bmWidth, ds.dsBm.bmHeight,
2777 bits, bi, DIB_RGB_COLORS, SRCCOPY);
2778 SelectObject(dc, oldBmp);
2780 HeapFree(GetProcessHeap(), 0, bits);
2786 if (flags & LR_COPYDELETEORG)
2791 HeapFree(GetProcessHeap(), 0, bi);
2795 return CURSORICON_ExtCopy(hnd,type, desiredx, desiredy, flags);
2797 /* Should call CURSORICON_ExtCopy but more testing
2798 * needs to be done before we change this
2800 if (flags) FIXME("Flags are ignored\n");
2801 return CopyCursor(hnd);
2807 /******************************************************************************
2808 * LoadBitmapW (USER32.@) Loads bitmap from the executable file
2811 * Success: Handle to specified bitmap
2814 HBITMAP WINAPI LoadBitmapW(
2815 HINSTANCE instance, /* [in] Handle to application instance */
2816 LPCWSTR name) /* [in] Address of bitmap resource name */
2818 return LoadImageW( instance, name, IMAGE_BITMAP, 0, 0, 0 );
2821 /**********************************************************************
2822 * LoadBitmapA (USER32.@)
2826 HBITMAP WINAPI LoadBitmapA( HINSTANCE instance, LPCSTR name )
2828 return LoadImageA( instance, name, IMAGE_BITMAP, 0, 0, 0 );