2 * ImageList implementation
4 * Copyright 1998 Eric Kohl
5 * Copyright 2000 Jason Mawdsley
6 * Copyright 2001, 2004 Michael Stefaniuc
7 * Copyright 2001 Charles Loep for CodeWeavers
8 * Copyright 2002 Dimitrie O. Paun
9 * Copyright 2009 Owen Rudge for CodeWeavers
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 * This code was audited for completeness against the documented features
28 * of Comctl32.dll version 6.0 on Sep. 12, 2002, by Dimitrie O. Paun.
30 * Unless otherwise noted, we believe this code to be complete, as per
31 * the specification mentioned above.
32 * If you discover missing features, or bugs, please note them below.
35 * - Add support for ILD_PRESERVEALPHA, ILD_SCALE, ILD_DPISCALE
36 * - Add support for ILS_GLOW, ILS_SHADOW, ILS_SATURATE
37 * - Thread-safe locking
54 #include "commoncontrols.h"
55 #include "wine/debug.h"
56 #include "wine/exception.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(imagelist
);
60 #define MAX_OVERLAYIMAGE 15
64 const struct IImageListVtbl
*lpVtbl
; /* 00: IImageList vtable */
66 INT cCurImage
; /* 04: ImageCount */
67 INT cMaxImage
; /* 08: maximages */
68 INT cGrow
; /* 0C: cGrow */
72 UINT flags
; /* 1C: flags */
73 COLORREF clrFg
; /* 20: foreground color */
74 COLORREF clrBk
; /* 24: background color */
77 HBITMAP hbmImage
; /* 28: images Bitmap */
78 HBITMAP hbmMask
; /* 2C: masks Bitmap */
79 HDC hdcImage
; /* 30: images MemDC */
80 HDC hdcMask
; /* 34: masks MemDC */
81 INT nOvlIdx
[MAX_OVERLAYIMAGE
]; /* 38: overlay images index */
83 /* not yet found out */
90 LONG ref
; /* reference count */
93 #define IMAGELIST_MAGIC 0x53414D58
95 /* Header used by ImageList_Read() and ImageList_Write() */
97 typedef struct _ILHEAD
112 /* internal image list data used for Drag & Drop operations */
117 /* position of the drag image relative to the window */
120 /* offset of the hotspot relative to the origin of the image */
123 /* is the drag image visible */
125 /* saved background */
129 static INTERNALDRAG InternalDrag
= { 0, 0, 0, 0, 0, 0, FALSE
, 0 };
131 static HBITMAP
ImageList_CreateImage(HDC hdc
, HIMAGELIST himl
, UINT count
);
132 static HRESULT
ImageListImpl_CreateInstance(const IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
);
133 static inline BOOL
is_valid(HIMAGELIST himl
);
136 * An imagelist with N images is tiled like this:
148 static inline UINT
imagelist_height( UINT count
)
150 return ((count
+ TILE_COUNT
- 1)/TILE_COUNT
);
153 static inline void imagelist_point_from_index( HIMAGELIST himl
, UINT index
, LPPOINT pt
)
155 pt
->x
= (index
%TILE_COUNT
) * himl
->cx
;
156 pt
->y
= (index
/TILE_COUNT
) * himl
->cy
;
159 static inline void imagelist_get_bitmap_size( HIMAGELIST himl
, UINT count
, SIZE
*sz
)
161 sz
->cx
= himl
->cx
* TILE_COUNT
;
162 sz
->cy
= imagelist_height( count
) * himl
->cy
;
165 static inline int get_dib_stride( int width
, int bpp
)
167 return ((width
* bpp
+ 31) >> 3) & ~3;
170 static inline int get_dib_image_size( const BITMAPINFO
*info
)
172 return get_dib_stride( info
->bmiHeader
.biWidth
, info
->bmiHeader
.biBitCount
)
173 * abs( info
->bmiHeader
.biHeight
);
177 * imagelist_copy_images()
179 * Copies a block of count images from offset src in the list to offset dest.
180 * Images are copied a row at at time. Assumes hdcSrc and hdcDest are different.
182 static inline void imagelist_copy_images( HIMAGELIST himl
, HDC hdcSrc
, HDC hdcDest
,
183 UINT src
, UINT count
, UINT dest
)
189 for ( i
=0; i
<TILE_COUNT
; i
++ )
191 imagelist_point_from_index( himl
, src
+i
, &ptSrc
);
192 imagelist_point_from_index( himl
, dest
+i
, &ptDest
);
194 sz
.cy
= himl
->cy
* imagelist_height( count
- i
);
196 BitBlt( hdcDest
, ptDest
.x
, ptDest
.y
, sz
.cx
, sz
.cy
,
197 hdcSrc
, ptSrc
.x
, ptSrc
.y
, SRCCOPY
);
201 static void add_dib_bits( HIMAGELIST himl
, int pos
, int count
, int width
, int height
,
202 BITMAPINFO
*info
, BITMAPINFO
*mask_info
, DWORD
*bits
, BYTE
*mask_bits
)
206 int stride
= info
->bmiHeader
.biWidth
;
207 int mask_stride
= (info
->bmiHeader
.biWidth
+ 31) / 32 * 4;
209 for (n
= 0; n
< count
; n
++)
213 imagelist_point_from_index( himl
, pos
+ n
, &pt
);
215 /* check if bitmap has an alpha channel */
216 for (i
= 0; i
< height
&& !has_alpha
; i
++)
217 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
218 if ((has_alpha
= ((bits
[i
* stride
+ j
] & 0xff000000) != 0))) break;
220 if (!has_alpha
) /* generate alpha channel from the mask */
222 for (i
= 0; i
< height
; i
++)
223 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
224 if (!mask_info
|| !((mask_bits
[i
* mask_stride
+ j
/ 8] << (j
% 8)) & 0x80))
225 bits
[i
* stride
+ j
] |= 0xff000000;
227 bits
[i
* stride
+ j
] = 0;
231 himl
->has_alpha
[pos
+ n
] = 1;
233 if (mask_info
&& himl
->hbmMask
) /* generate the mask from the alpha channel */
235 for (i
= 0; i
< height
; i
++)
236 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
237 if ((bits
[i
* stride
+ j
] >> 24) > 25) /* more than 10% alpha */
238 mask_bits
[i
* mask_stride
+ j
/ 8] &= ~(0x80 >> (j
% 8));
240 mask_bits
[i
* mask_stride
+ j
/ 8] |= 0x80 >> (j
% 8);
243 StretchDIBits( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
244 n
* width
, 0, width
, height
, bits
, info
, DIB_RGB_COLORS
, SRCCOPY
);
246 StretchDIBits( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
247 n
* width
, 0, width
, height
, mask_bits
, mask_info
, DIB_RGB_COLORS
, SRCCOPY
);
251 /* add images with an alpha channel when the image list is 32 bpp */
252 static BOOL
add_with_alpha( HIMAGELIST himl
, HDC hdc
, int pos
, int count
,
253 int width
, int height
, HBITMAP hbmImage
, HBITMAP hbmMask
)
257 BITMAPINFO
*info
, *mask_info
= NULL
;
259 BYTE
*mask_bits
= NULL
;
262 if (!GetObjectW( hbmImage
, sizeof(bm
), &bm
)) return FALSE
;
264 /* if either the imagelist or the source bitmap don't have an alpha channel, bail out now */
265 if (!himl
->has_alpha
) return FALSE
;
266 if (bm
.bmBitsPixel
!= 32) return FALSE
;
268 SelectObject( hdc
, hbmImage
);
269 mask_width
= (bm
.bmWidth
+ 31) / 32 * 4;
271 if (!(info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )))) goto done
;
272 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
273 info
->bmiHeader
.biWidth
= bm
.bmWidth
;
274 info
->bmiHeader
.biHeight
= -height
;
275 info
->bmiHeader
.biPlanes
= 1;
276 info
->bmiHeader
.biBitCount
= 32;
277 info
->bmiHeader
.biCompression
= BI_RGB
;
278 info
->bmiHeader
.biSizeImage
= bm
.bmWidth
* height
* 4;
279 info
->bmiHeader
.biXPelsPerMeter
= 0;
280 info
->bmiHeader
.biYPelsPerMeter
= 0;
281 info
->bmiHeader
.biClrUsed
= 0;
282 info
->bmiHeader
.biClrImportant
= 0;
283 if (!(bits
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto done
;
284 if (!GetDIBits( hdc
, hbmImage
, 0, height
, bits
, info
, DIB_RGB_COLORS
)) goto done
;
288 if (!(mask_info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[2] ))))
290 mask_info
->bmiHeader
= info
->bmiHeader
;
291 mask_info
->bmiHeader
.biBitCount
= 1;
292 mask_info
->bmiHeader
.biSizeImage
= mask_width
* height
;
293 if (!(mask_bits
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, info
->bmiHeader
.biSizeImage
)))
295 if (!GetDIBits( hdc
, hbmMask
, 0, height
, mask_bits
, mask_info
, DIB_RGB_COLORS
)) goto done
;
298 add_dib_bits( himl
, pos
, count
, width
, height
, info
, mask_info
, bits
, mask_bits
);
302 HeapFree( GetProcessHeap(), 0, info
);
303 HeapFree( GetProcessHeap(), 0, mask_info
);
304 HeapFree( GetProcessHeap(), 0, bits
);
305 HeapFree( GetProcessHeap(), 0, mask_bits
);
309 /*************************************************************************
310 * IMAGELIST_InternalExpandBitmaps [Internal]
312 * Expands the bitmaps of an image list by the given number of images.
315 * himl [I] handle to image list
316 * nImageCount [I] number of images to add
322 * This function CANNOT be used to reduce the number of images.
325 IMAGELIST_InternalExpandBitmaps(HIMAGELIST himl
, INT nImageCount
)
328 HBITMAP hbmNewBitmap
, hbmNull
;
332 TRACE("%p has allocated %d, max %d, grow %d images\n", himl
, himl
->cCurImage
, himl
->cMaxImage
, himl
->cGrow
);
334 if (himl
->cCurImage
+ nImageCount
< himl
->cMaxImage
)
337 nNewCount
= himl
->cMaxImage
+ max(nImageCount
, himl
->cGrow
) + 1;
339 imagelist_get_bitmap_size(himl
, nNewCount
, &sz
);
341 TRACE("Create expanded bitmaps : himl=%p x=%d y=%d count=%d\n", himl
, sz
.cx
, sz
.cy
, nNewCount
);
342 hdcBitmap
= CreateCompatibleDC (0);
344 hbmNewBitmap
= ImageList_CreateImage(hdcBitmap
, himl
, nNewCount
);
346 if (hbmNewBitmap
== 0)
347 ERR("creating new image bitmap (x=%d y=%d)!\n", sz
.cx
, sz
.cy
);
351 hbmNull
= SelectObject (hdcBitmap
, hbmNewBitmap
);
352 BitBlt (hdcBitmap
, 0, 0, sz
.cx
, sz
.cy
,
353 himl
->hdcImage
, 0, 0, SRCCOPY
);
354 SelectObject (hdcBitmap
, hbmNull
);
356 SelectObject (himl
->hdcImage
, hbmNewBitmap
);
357 DeleteObject (himl
->hbmImage
);
358 himl
->hbmImage
= hbmNewBitmap
;
360 if (himl
->flags
& ILC_MASK
)
362 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
364 if (hbmNewBitmap
== 0)
365 ERR("creating new mask bitmap!\n");
369 hbmNull
= SelectObject (hdcBitmap
, hbmNewBitmap
);
370 BitBlt (hdcBitmap
, 0, 0, sz
.cx
, sz
.cy
,
371 himl
->hdcMask
, 0, 0, SRCCOPY
);
372 SelectObject (hdcBitmap
, hbmNull
);
374 SelectObject (himl
->hdcMask
, hbmNewBitmap
);
375 DeleteObject (himl
->hbmMask
);
376 himl
->hbmMask
= hbmNewBitmap
;
381 char *new_alpha
= HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->has_alpha
, nNewCount
);
382 if (new_alpha
) himl
->has_alpha
= new_alpha
;
385 HeapFree( GetProcessHeap(), 0, himl
->has_alpha
);
386 himl
->has_alpha
= NULL
;
390 himl
->cMaxImage
= nNewCount
;
392 DeleteDC (hdcBitmap
);
396 /*************************************************************************
397 * ImageList_Add [COMCTL32.@]
399 * Add an image or images to an image list.
402 * himl [I] handle to image list
403 * hbmImage [I] handle to image bitmap
404 * hbmMask [I] handle to mask bitmap
407 * Success: Index of the first new image.
412 ImageList_Add (HIMAGELIST himl
, HBITMAP hbmImage
, HBITMAP hbmMask
)
414 HDC hdcBitmap
, hdcTemp
= 0;
415 INT nFirstIndex
, nImageCount
, i
;
419 TRACE("himl=%p hbmimage=%p hbmmask=%p\n", himl
, hbmImage
, hbmMask
);
423 if (!GetObjectW(hbmImage
, sizeof(BITMAP
), &bmp
))
426 TRACE("himl %p, cCurImage %d, cMaxImage %d, cGrow %d, cx %d, cy %d\n",
427 himl
, himl
->cCurImage
, himl
->cMaxImage
, himl
->cGrow
, himl
->cx
, himl
->cy
);
429 nImageCount
= bmp
.bmWidth
/ himl
->cx
;
431 TRACE("%p has %d images (%d x %d)\n", hbmImage
, nImageCount
, bmp
.bmWidth
, bmp
.bmHeight
);
433 IMAGELIST_InternalExpandBitmaps(himl
, nImageCount
);
435 hdcBitmap
= CreateCompatibleDC(0);
437 SelectObject(hdcBitmap
, hbmImage
);
439 if (add_with_alpha( himl
, hdcBitmap
, himl
->cCurImage
, nImageCount
,
440 himl
->cx
, min( himl
->cy
, bmp
.bmHeight
), hbmImage
, hbmMask
))
445 hdcTemp
= CreateCompatibleDC(0);
446 SelectObject(hdcTemp
, hbmMask
);
449 for (i
=0; i
<nImageCount
; i
++)
451 imagelist_point_from_index( himl
, himl
->cCurImage
+ i
, &pt
);
453 /* Copy result to the imagelist
455 BitBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
456 hdcBitmap
, i
*himl
->cx
, 0, SRCCOPY
);
461 BitBlt( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
462 hdcTemp
, i
*himl
->cx
, 0, SRCCOPY
);
464 /* Remove the background from the image
466 BitBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
467 himl
->hdcMask
, pt
.x
, pt
.y
, 0x220326 ); /* NOTSRCAND */
469 if (hdcTemp
) DeleteDC(hdcTemp
);
474 nFirstIndex
= himl
->cCurImage
;
475 himl
->cCurImage
+= nImageCount
;
481 /*************************************************************************
482 * ImageList_AddIcon [COMCTL32.@]
484 * Adds an icon to an image list.
487 * himl [I] handle to image list
488 * hIcon [I] handle to icon
491 * Success: index of the new image
494 #undef ImageList_AddIcon
495 INT WINAPI
ImageList_AddIcon (HIMAGELIST himl
, HICON hIcon
)
497 return ImageList_ReplaceIcon (himl
, -1, hIcon
);
501 /*************************************************************************
502 * ImageList_AddMasked [COMCTL32.@]
504 * Adds an image or images to an image list and creates a mask from the
505 * specified bitmap using the mask color.
508 * himl [I] handle to image list.
509 * hBitmap [I] handle to bitmap
510 * clrMask [I] mask color.
513 * Success: Index of the first new image.
518 ImageList_AddMasked (HIMAGELIST himl
, HBITMAP hBitmap
, COLORREF clrMask
)
520 HDC hdcMask
, hdcBitmap
;
526 TRACE("himl=%p hbitmap=%p clrmask=%x\n", himl
, hBitmap
, clrMask
);
530 if (!GetObjectW(hBitmap
, sizeof(BITMAP
), &bmp
))
533 hdcBitmap
= CreateCompatibleDC(0);
534 SelectObject(hdcBitmap
, hBitmap
);
536 /* Create a temp Mask so we can remove the background of the Image */
537 hdcMask
= CreateCompatibleDC(0);
538 hMaskBitmap
= CreateBitmap(bmp
.bmWidth
, bmp
.bmHeight
, 1, 1, NULL
);
539 SelectObject(hdcMask
, hMaskBitmap
);
541 /* create monochrome image to the mask bitmap */
542 bkColor
= (clrMask
!= CLR_DEFAULT
) ? clrMask
: GetPixel (hdcBitmap
, 0, 0);
543 SetBkColor (hdcBitmap
, bkColor
);
544 BitBlt (hdcMask
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, hdcBitmap
, 0, 0, SRCCOPY
);
547 * Remove the background from the image
549 * WINDOWS BUG ALERT!!!!!!
550 * The statement below should not be done in common practice
551 * but this is how ImageList_AddMasked works in Windows.
552 * It overwrites the original bitmap passed, this was discovered
553 * by using the same bitmap to iterate the different styles
554 * on windows where it failed (BUT ImageList_Add is OK)
555 * This is here in case some apps rely on this bug
557 * Blt mode 0x220326 is NOTSRCAND
559 if (bmp
.bmBitsPixel
> 8) /* NOTSRCAND can't work with palettes */
561 SetBkColor(hdcBitmap
, RGB(255,255,255));
562 BitBlt(hdcBitmap
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, hdcMask
, 0, 0, 0x220326);
568 ret
= ImageList_Add( himl
, hBitmap
, hMaskBitmap
);
570 DeleteObject(hMaskBitmap
);
575 /*************************************************************************
576 * ImageList_BeginDrag [COMCTL32.@]
578 * Creates a temporary image list that contains one image. It will be used
582 * himlTrack [I] handle to the source image list
583 * iTrack [I] index of the drag image in the source image list
584 * dxHotspot [I] X position of the hot spot of the drag image
585 * dyHotspot [I] Y position of the hot spot of the drag image
593 ImageList_BeginDrag (HIMAGELIST himlTrack
, INT iTrack
,
594 INT dxHotspot
, INT dyHotspot
)
598 TRACE("(himlTrack=%p iTrack=%d dx=%d dy=%d)\n", himlTrack
, iTrack
,
599 dxHotspot
, dyHotspot
);
601 if (!is_valid(himlTrack
))
604 if (InternalDrag
.himl
)
605 ImageList_EndDrag ();
610 InternalDrag
.himl
= ImageList_Create (cx
, cy
, himlTrack
->flags
, 1, 1);
611 if (InternalDrag
.himl
== NULL
) {
612 WARN("Error creating drag image list!\n");
616 InternalDrag
.dxHotspot
= dxHotspot
;
617 InternalDrag
.dyHotspot
= dyHotspot
;
620 BitBlt (InternalDrag
.himl
->hdcImage
, 0, 0, cx
, cy
, himlTrack
->hdcImage
, iTrack
* cx
, 0, SRCCOPY
);
623 BitBlt (InternalDrag
.himl
->hdcMask
, 0, 0, cx
, cy
, himlTrack
->hdcMask
, iTrack
* cx
, 0, SRCCOPY
);
625 InternalDrag
.himl
->cCurImage
= 1;
631 /*************************************************************************
632 * ImageList_Copy [COMCTL32.@]
634 * Copies an image of the source image list to an image of the
635 * destination image list. Images can be copied or swapped.
638 * himlDst [I] handle to the destination image list
639 * iDst [I] destination image index.
640 * himlSrc [I] handle to the source image list
641 * iSrc [I] source image index
642 * uFlags [I] flags for the copy operation
649 * Copying from one image list to another is possible. The original
650 * implementation just copies or swaps within one image list.
651 * Could this feature become a bug??? ;-)
655 ImageList_Copy (HIMAGELIST himlDst
, INT iDst
, HIMAGELIST himlSrc
,
656 INT iSrc
, UINT uFlags
)
660 TRACE("himlDst=%p iDst=%d himlSrc=%p iSrc=%d\n", himlDst
, iDst
, himlSrc
, iSrc
);
662 if (!is_valid(himlSrc
) || !is_valid(himlDst
))
664 if ((iDst
< 0) || (iDst
>= himlDst
->cCurImage
))
666 if ((iSrc
< 0) || (iSrc
>= himlSrc
->cCurImage
))
669 imagelist_point_from_index( himlDst
, iDst
, &ptDst
);
670 imagelist_point_from_index( himlSrc
, iSrc
, &ptSrc
);
672 if (uFlags
& ILCF_SWAP
) {
675 HBITMAP hbmTempImage
, hbmTempMask
;
677 hdcBmp
= CreateCompatibleDC (0);
679 /* create temporary bitmaps */
680 hbmTempImage
= CreateBitmap (himlSrc
->cx
, himlSrc
->cy
, 1,
681 himlSrc
->uBitsPixel
, NULL
);
682 hbmTempMask
= CreateBitmap (himlSrc
->cx
, himlSrc
->cy
, 1,
685 /* copy (and stretch) destination to temporary bitmaps.(save) */
687 SelectObject (hdcBmp
, hbmTempImage
);
688 StretchBlt (hdcBmp
, 0, 0, himlSrc
->cx
, himlSrc
->cy
,
689 himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
692 SelectObject (hdcBmp
, hbmTempMask
);
693 StretchBlt (hdcBmp
, 0, 0, himlSrc
->cx
, himlSrc
->cy
,
694 himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
697 /* copy (and stretch) source to destination */
699 StretchBlt (himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
700 himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
703 StretchBlt (himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
704 himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
707 /* copy (without stretching) temporary bitmaps to source (restore) */
709 BitBlt (himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
710 hdcBmp
, 0, 0, SRCCOPY
);
713 BitBlt (himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
714 hdcBmp
, 0, 0, SRCCOPY
);
715 /* delete temporary bitmaps */
716 DeleteObject (hbmTempMask
);
717 DeleteObject (hbmTempImage
);
722 StretchBlt (himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
723 himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
727 StretchBlt (himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
728 himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
736 /*************************************************************************
737 * ImageList_Create [COMCTL32.@]
739 * Creates a new image list.
742 * cx [I] image height
744 * flags [I] creation flags
745 * cInitial [I] initial number of images in the image list
746 * cGrow [I] number of images by which image list grows
749 * Success: Handle to the created image list
753 ImageList_Create (INT cx
, INT cy
, UINT flags
,
754 INT cInitial
, INT cGrow
)
759 UINT ilc
= (flags
& 0xFE);
760 static const WORD aBitBlend25
[] =
761 {0xAA, 0x00, 0x55, 0x00, 0xAA, 0x00, 0x55, 0x00};
763 static const WORD aBitBlend50
[] =
764 {0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA};
766 TRACE("(%d %d 0x%x %d %d)\n", cx
, cy
, flags
, cInitial
, cGrow
);
768 if (cx
<= 0 || cy
<= 0) return NULL
;
770 /* Create the IImageList interface for the image list */
771 if (FAILED(ImageListImpl_CreateInstance(NULL
, &IID_IImageList
, (void **)&himl
)))
774 cGrow
= (WORD
)((max( cGrow
, 1 ) + 3) & ~3);
778 /* Windows doesn't limit the size here, but X11 doesn't let us allocate such huge bitmaps */
779 WARN( "grow %d too large, limiting to 256\n", cGrow
);
786 himl
->cMaxImage
= cInitial
+ 1;
787 himl
->cInitial
= cInitial
;
789 himl
->clrFg
= CLR_DEFAULT
;
790 himl
->clrBk
= CLR_NONE
;
792 /* initialize overlay mask indices */
793 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
794 himl
->nOvlIdx
[nCount
] = -1;
796 /* Create Image & Mask DCs */
797 himl
->hdcImage
= CreateCompatibleDC (0);
800 if (himl
->flags
& ILC_MASK
){
801 himl
->hdcMask
= CreateCompatibleDC(0);
806 /* Default to ILC_COLOR4 if none of the ILC_COLOR* flags are specified */
807 if (ilc
== ILC_COLOR
)
810 himl
->flags
|= ILC_COLOR4
;
813 if (ilc
>= ILC_COLOR4
&& ilc
<= ILC_COLOR32
)
814 himl
->uBitsPixel
= ilc
;
816 himl
->uBitsPixel
= (UINT
)GetDeviceCaps (himl
->hdcImage
, BITSPIXEL
);
818 if (himl
->cMaxImage
> 0) {
819 himl
->hbmImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
820 SelectObject(himl
->hdcImage
, himl
->hbmImage
);
824 if ((himl
->cMaxImage
> 0) && (himl
->flags
& ILC_MASK
)) {
827 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
828 himl
->hbmMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
829 if (himl
->hbmMask
== 0) {
830 ERR("Error creating mask bitmap!\n");
833 SelectObject(himl
->hdcMask
, himl
->hbmMask
);
838 if (ilc
== ILC_COLOR32
)
839 himl
->has_alpha
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->cMaxImage
);
841 himl
->has_alpha
= NULL
;
843 /* create blending brushes */
844 hbmTemp
= CreateBitmap (8, 8, 1, 1, aBitBlend25
);
845 himl
->hbrBlend25
= CreatePatternBrush (hbmTemp
);
846 DeleteObject (hbmTemp
);
848 hbmTemp
= CreateBitmap (8, 8, 1, 1, aBitBlend50
);
849 himl
->hbrBlend50
= CreatePatternBrush (hbmTemp
);
850 DeleteObject (hbmTemp
);
852 TRACE("created imagelist %p\n", himl
);
856 ImageList_Destroy(himl
);
861 /*************************************************************************
862 * ImageList_Destroy [COMCTL32.@]
864 * Destroys an image list.
867 * himl [I] handle to image list
875 ImageList_Destroy (HIMAGELIST himl
)
880 IImageList_Release((IImageList
*) himl
);
885 /*************************************************************************
886 * ImageList_DragEnter [COMCTL32.@]
888 * Locks window update and displays the drag image at the given position.
891 * hwndLock [I] handle of the window that owns the drag image.
892 * x [I] X position of the drag image.
893 * y [I] Y position of the drag image.
900 * The position of the drag image is relative to the window, not
905 ImageList_DragEnter (HWND hwndLock
, INT x
, INT y
)
907 TRACE("(hwnd=%p x=%d y=%d)\n", hwndLock
, x
, y
);
909 if (!is_valid(InternalDrag
.himl
))
913 InternalDrag
.hwnd
= hwndLock
;
915 InternalDrag
.hwnd
= GetDesktopWindow ();
920 /* draw the drag image and save the background */
921 if (!ImageList_DragShowNolock(TRUE
)) {
929 /*************************************************************************
930 * ImageList_DragLeave [COMCTL32.@]
932 * Unlocks window update and hides the drag image.
935 * hwndLock [I] handle of the window that owns the drag image.
943 ImageList_DragLeave (HWND hwndLock
)
945 /* As we don't save drag info in the window this can lead to problems if
946 an app does not supply the same window as DragEnter */
948 InternalDrag.hwnd = hwndLock;
950 InternalDrag.hwnd = GetDesktopWindow (); */
952 hwndLock
= GetDesktopWindow();
953 if(InternalDrag
.hwnd
!= hwndLock
)
954 FIXME("DragLeave hWnd != DragEnter hWnd\n");
956 ImageList_DragShowNolock (FALSE
);
962 /*************************************************************************
963 * ImageList_InternalDragDraw [Internal]
965 * Draws the drag image.
968 * hdc [I] device context to draw into.
969 * x [I] X position of the drag image.
970 * y [I] Y position of the drag image.
977 * The position of the drag image is relative to the window, not
983 ImageList_InternalDragDraw (HDC hdc
, INT x
, INT y
)
985 IMAGELISTDRAWPARAMS imldp
;
987 ZeroMemory (&imldp
, sizeof(imldp
));
988 imldp
.cbSize
= sizeof(imldp
);
989 imldp
.himl
= InternalDrag
.himl
;
994 imldp
.rgbBk
= CLR_DEFAULT
;
995 imldp
.rgbFg
= CLR_DEFAULT
;
996 imldp
.fStyle
= ILD_NORMAL
;
997 imldp
.fState
= ILS_ALPHA
;
999 ImageList_DrawIndirect (&imldp
);
1002 /*************************************************************************
1003 * ImageList_DragMove [COMCTL32.@]
1005 * Moves the drag image.
1008 * x [I] X position of the drag image.
1009 * y [I] Y position of the drag image.
1016 * The position of the drag image is relative to the window, not
1021 ImageList_DragMove (INT x
, INT y
)
1023 TRACE("(x=%d y=%d)\n", x
, y
);
1025 if (!is_valid(InternalDrag
.himl
))
1028 /* draw/update the drag image */
1029 if (InternalDrag
.bShow
) {
1033 HBITMAP hbmOffScreen
;
1034 INT origNewX
, origNewY
;
1035 INT origOldX
, origOldY
;
1036 INT origRegX
, origRegY
;
1037 INT sizeRegX
, sizeRegY
;
1040 /* calculate the update region */
1041 origNewX
= x
- InternalDrag
.dxHotspot
;
1042 origNewY
= y
- InternalDrag
.dyHotspot
;
1043 origOldX
= InternalDrag
.x
- InternalDrag
.dxHotspot
;
1044 origOldY
= InternalDrag
.y
- InternalDrag
.dyHotspot
;
1045 origRegX
= min(origNewX
, origOldX
);
1046 origRegY
= min(origNewY
, origOldY
);
1047 sizeRegX
= InternalDrag
.himl
->cx
+ abs(x
- InternalDrag
.x
);
1048 sizeRegY
= InternalDrag
.himl
->cy
+ abs(y
- InternalDrag
.y
);
1050 hdcDrag
= GetDCEx(InternalDrag
.hwnd
, 0,
1051 DCX_WINDOW
| DCX_CACHE
| DCX_LOCKWINDOWUPDATE
);
1052 hdcOffScreen
= CreateCompatibleDC(hdcDrag
);
1053 hdcBg
= CreateCompatibleDC(hdcDrag
);
1055 hbmOffScreen
= CreateCompatibleBitmap(hdcDrag
, sizeRegX
, sizeRegY
);
1056 SelectObject(hdcOffScreen
, hbmOffScreen
);
1057 SelectObject(hdcBg
, InternalDrag
.hbmBg
);
1059 /* get the actual background of the update region */
1060 BitBlt(hdcOffScreen
, 0, 0, sizeRegX
, sizeRegY
, hdcDrag
,
1061 origRegX
, origRegY
, SRCCOPY
);
1062 /* erase the old image */
1063 BitBlt(hdcOffScreen
, origOldX
- origRegX
, origOldY
- origRegY
,
1064 InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
, hdcBg
, 0, 0,
1066 /* save the background */
1067 BitBlt(hdcBg
, 0, 0, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1068 hdcOffScreen
, origNewX
- origRegX
, origNewY
- origRegY
, SRCCOPY
);
1069 /* draw the image */
1070 ImageList_InternalDragDraw(hdcOffScreen
, origNewX
- origRegX
,
1071 origNewY
- origRegY
);
1072 /* draw the update region to the screen */
1073 BitBlt(hdcDrag
, origRegX
, origRegY
, sizeRegX
, sizeRegY
,
1074 hdcOffScreen
, 0, 0, SRCCOPY
);
1077 DeleteDC(hdcOffScreen
);
1078 DeleteObject(hbmOffScreen
);
1079 ReleaseDC(InternalDrag
.hwnd
, hdcDrag
);
1082 /* update the image position */
1090 /*************************************************************************
1091 * ImageList_DragShowNolock [COMCTL32.@]
1093 * Shows or hides the drag image.
1096 * bShow [I] TRUE shows the drag image, FALSE hides it.
1104 ImageList_DragShowNolock (BOOL bShow
)
1110 if (!is_valid(InternalDrag
.himl
))
1113 TRACE("bShow=0x%X!\n", bShow
);
1115 /* DragImage is already visible/hidden */
1116 if ((InternalDrag
.bShow
&& bShow
) || (!InternalDrag
.bShow
&& !bShow
)) {
1120 /* position of the origin of the DragImage */
1121 x
= InternalDrag
.x
- InternalDrag
.dxHotspot
;
1122 y
= InternalDrag
.y
- InternalDrag
.dyHotspot
;
1124 hdcDrag
= GetDCEx (InternalDrag
.hwnd
, 0,
1125 DCX_WINDOW
| DCX_CACHE
| DCX_LOCKWINDOWUPDATE
);
1130 hdcBg
= CreateCompatibleDC(hdcDrag
);
1131 if (!InternalDrag
.hbmBg
) {
1132 InternalDrag
.hbmBg
= CreateCompatibleBitmap(hdcDrag
,
1133 InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
);
1135 SelectObject(hdcBg
, InternalDrag
.hbmBg
);
1138 /* save the background */
1139 BitBlt(hdcBg
, 0, 0, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1140 hdcDrag
, x
, y
, SRCCOPY
);
1141 /* show the image */
1142 ImageList_InternalDragDraw(hdcDrag
, x
, y
);
1144 /* hide the image */
1145 BitBlt(hdcDrag
, x
, y
, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1146 hdcBg
, 0, 0, SRCCOPY
);
1149 InternalDrag
.bShow
= !InternalDrag
.bShow
;
1152 ReleaseDC (InternalDrag
.hwnd
, hdcDrag
);
1157 /*************************************************************************
1158 * ImageList_Draw [COMCTL32.@]
1163 * himl [I] handle to image list
1165 * hdc [I] handle to device context
1168 * fStyle [I] drawing flags
1179 ImageList_Draw (HIMAGELIST himl
, INT i
, HDC hdc
, INT x
, INT y
, UINT fStyle
)
1181 return ImageList_DrawEx (himl
, i
, hdc
, x
, y
, 0, 0,
1182 CLR_DEFAULT
, CLR_DEFAULT
, fStyle
);
1186 /*************************************************************************
1187 * ImageList_DrawEx [COMCTL32.@]
1189 * Draws an image and allows to use extended drawing features.
1192 * himl [I] handle to image list
1194 * hdc [I] handle to device context
1199 * rgbBk [I] background color
1200 * rgbFg [I] foreground color
1201 * fStyle [I] drawing flags
1208 * Calls ImageList_DrawIndirect.
1211 * ImageList_DrawIndirect.
1215 ImageList_DrawEx (HIMAGELIST himl
, INT i
, HDC hdc
, INT x
, INT y
,
1216 INT dx
, INT dy
, COLORREF rgbBk
, COLORREF rgbFg
,
1219 IMAGELISTDRAWPARAMS imldp
;
1221 ZeroMemory (&imldp
, sizeof(imldp
));
1222 imldp
.cbSize
= sizeof(imldp
);
1230 imldp
.rgbBk
= rgbBk
;
1231 imldp
.rgbFg
= rgbFg
;
1232 imldp
.fStyle
= fStyle
;
1234 return ImageList_DrawIndirect (&imldp
);
1238 static BOOL
alpha_blend_image( HIMAGELIST himl
, HDC dest_dc
, int dest_x
, int dest_y
,
1239 int src_x
, int src_y
, int cx
, int cy
, BLENDFUNCTION func
,
1240 UINT style
, COLORREF blend_col
)
1244 HBITMAP bmp
= 0, mask
= 0;
1246 void *bits
, *mask_bits
;
1250 if (!(hdc
= CreateCompatibleDC( 0 ))) return FALSE
;
1251 if (!(info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )))) goto done
;
1252 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1253 info
->bmiHeader
.biWidth
= cx
;
1254 info
->bmiHeader
.biHeight
= cy
;
1255 info
->bmiHeader
.biPlanes
= 1;
1256 info
->bmiHeader
.biBitCount
= 32;
1257 info
->bmiHeader
.biCompression
= BI_RGB
;
1258 info
->bmiHeader
.biSizeImage
= cx
* cy
* 4;
1259 info
->bmiHeader
.biXPelsPerMeter
= 0;
1260 info
->bmiHeader
.biYPelsPerMeter
= 0;
1261 info
->bmiHeader
.biClrUsed
= 0;
1262 info
->bmiHeader
.biClrImportant
= 0;
1263 if (!(bmp
= CreateDIBSection( himl
->hdcImage
, info
, DIB_RGB_COLORS
, &bits
, 0, 0 ))) goto done
;
1264 SelectObject( hdc
, bmp
);
1265 BitBlt( hdc
, 0, 0, cx
, cy
, himl
->hdcImage
, src_x
, src_y
, SRCCOPY
);
1267 if (blend_col
!= CLR_NONE
)
1269 BYTE r
= GetRValue( blend_col
);
1270 BYTE g
= GetGValue( blend_col
);
1271 BYTE b
= GetBValue( blend_col
);
1273 if (style
& ILD_BLEND25
)
1275 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1276 *ptr
= ((*ptr
& 0xff000000) |
1277 ((((*ptr
& 0x00ff0000) * 3 + (r
<< 16)) / 4) & 0x00ff0000) |
1278 ((((*ptr
& 0x0000ff00) * 3 + (g
<< 8)) / 4) & 0x0000ff00) |
1279 ((((*ptr
& 0x000000ff) * 3 + (b
<< 0)) / 4) & 0x000000ff));
1281 else if (style
& ILD_BLEND50
)
1283 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1284 *ptr
= ((*ptr
& 0xff000000) |
1285 ((((*ptr
& 0x00ff0000) + (r
<< 16)) / 2) & 0x00ff0000) |
1286 ((((*ptr
& 0x0000ff00) + (g
<< 8)) / 2) & 0x0000ff00) |
1287 ((((*ptr
& 0x000000ff) + (b
<< 0)) / 2) & 0x000000ff));
1291 if (himl
->has_alpha
) /* we already have an alpha channel in this case */
1293 /* pre-multiply by the alpha channel */
1294 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1296 DWORD alpha
= *ptr
>> 24;
1297 *ptr
= ((*ptr
& 0xff000000) |
1298 (((*ptr
& 0x00ff0000) * alpha
/ 255) & 0x00ff0000) |
1299 (((*ptr
& 0x0000ff00) * alpha
/ 255) & 0x0000ff00) |
1300 (((*ptr
& 0x000000ff) * alpha
/ 255)));
1303 else if (himl
->hbmMask
)
1305 unsigned int width_bytes
= (cx
+ 31) / 32 * 4;
1306 /* generate alpha channel from the mask */
1307 info
->bmiHeader
.biBitCount
= 1;
1308 info
->bmiHeader
.biSizeImage
= width_bytes
* cy
;
1309 info
->bmiColors
[0].rgbRed
= 0;
1310 info
->bmiColors
[0].rgbGreen
= 0;
1311 info
->bmiColors
[0].rgbBlue
= 0;
1312 info
->bmiColors
[0].rgbReserved
= 0;
1313 info
->bmiColors
[1].rgbRed
= 0xff;
1314 info
->bmiColors
[1].rgbGreen
= 0xff;
1315 info
->bmiColors
[1].rgbBlue
= 0xff;
1316 info
->bmiColors
[1].rgbReserved
= 0;
1317 if (!(mask
= CreateDIBSection( himl
->hdcMask
, info
, DIB_RGB_COLORS
, &mask_bits
, 0, 0 )))
1319 SelectObject( hdc
, mask
);
1320 BitBlt( hdc
, 0, 0, cx
, cy
, himl
->hdcMask
, src_x
, src_y
, SRCCOPY
);
1321 SelectObject( hdc
, bmp
);
1322 for (i
= 0, ptr
= bits
; i
< cy
; i
++)
1323 for (j
= 0; j
< cx
; j
++, ptr
++)
1324 if ((((BYTE
*)mask_bits
)[i
* width_bytes
+ j
/ 8] << (j
% 8)) & 0x80) *ptr
= 0;
1325 else *ptr
|= 0xff000000;
1328 ret
= GdiAlphaBlend( dest_dc
, dest_x
, dest_y
, cx
, cy
, hdc
, 0, 0, cx
, cy
, func
);
1332 if (bmp
) DeleteObject( bmp
);
1333 if (mask
) DeleteObject( mask
);
1334 HeapFree( GetProcessHeap(), 0, info
);
1338 /*************************************************************************
1339 * ImageList_DrawIndirect [COMCTL32.@]
1341 * Draws an image using various parameters specified in pimldp.
1344 * pimldp [I] pointer to IMAGELISTDRAWPARAMS structure.
1352 ImageList_DrawIndirect (IMAGELISTDRAWPARAMS
*pimldp
)
1354 INT cx
, cy
, nOvlIdx
;
1355 DWORD fState
, dwRop
;
1357 COLORREF oldImageBk
, oldImageFg
;
1358 HDC hImageDC
, hImageListDC
, hMaskListDC
;
1359 HBITMAP hImageBmp
, hOldImageBmp
, hBlendMaskBmp
;
1360 BOOL bIsTransparent
, bBlend
, bResult
= FALSE
, bMask
;
1366 if (!pimldp
|| !(himl
= pimldp
->himl
)) return FALSE
;
1367 if (!is_valid(himl
)) return FALSE
;
1368 if ((pimldp
->i
< 0) || (pimldp
->i
>= himl
->cCurImage
)) return FALSE
;
1370 imagelist_point_from_index( himl
, pimldp
->i
, &pt
);
1371 pt
.x
+= pimldp
->xBitmap
;
1372 pt
.y
+= pimldp
->yBitmap
;
1374 fState
= pimldp
->cbSize
< sizeof(IMAGELISTDRAWPARAMS
) ? ILS_NORMAL
: pimldp
->fState
;
1375 fStyle
= pimldp
->fStyle
& ~ILD_OVERLAYMASK
;
1376 cx
= (pimldp
->cx
== 0) ? himl
->cx
: pimldp
->cx
;
1377 cy
= (pimldp
->cy
== 0) ? himl
->cy
: pimldp
->cy
;
1379 bIsTransparent
= (fStyle
& ILD_TRANSPARENT
);
1380 if( pimldp
->rgbBk
== CLR_NONE
)
1381 bIsTransparent
= TRUE
;
1382 if( ( pimldp
->rgbBk
== CLR_DEFAULT
) && ( himl
->clrBk
== CLR_NONE
) )
1383 bIsTransparent
= TRUE
;
1384 bMask
= (himl
->flags
& ILC_MASK
) && (fStyle
& ILD_MASK
) ;
1385 bBlend
= (fStyle
& (ILD_BLEND25
| ILD_BLEND50
) ) && !bMask
;
1387 TRACE("himl(%p) hbmMask(%p) iImage(%d) x(%d) y(%d) cx(%d) cy(%d)\n",
1388 himl
, himl
->hbmMask
, pimldp
->i
, pimldp
->x
, pimldp
->y
, cx
, cy
);
1390 /* we will use these DCs to access the images and masks in the ImageList */
1391 hImageListDC
= himl
->hdcImage
;
1392 hMaskListDC
= himl
->hdcMask
;
1394 /* these will accumulate the image and mask for the image we're drawing */
1395 hImageDC
= CreateCompatibleDC( pimldp
->hdcDst
);
1396 hImageBmp
= CreateCompatibleBitmap( pimldp
->hdcDst
, cx
, cy
);
1397 hBlendMaskBmp
= bBlend
? CreateBitmap(cx
, cy
, 1, 1, NULL
) : 0;
1399 /* Create a compatible DC. */
1400 if (!hImageListDC
|| !hImageDC
|| !hImageBmp
||
1401 (bBlend
&& !hBlendMaskBmp
) || (himl
->hbmMask
&& !hMaskListDC
))
1404 hOldImageBmp
= SelectObject(hImageDC
, hImageBmp
);
1407 * To obtain a transparent look, background color should be set
1408 * to white and foreground color to black when blitting the
1411 oldImageFg
= SetTextColor( hImageDC
, RGB( 0, 0, 0 ) );
1412 oldImageBk
= SetBkColor( hImageDC
, RGB( 0xff, 0xff, 0xff ) );
1414 has_alpha
= (himl
->has_alpha
&& himl
->has_alpha
[pimldp
->i
]);
1415 if (!bMask
&& (has_alpha
|| (fState
& ILS_ALPHA
)))
1417 COLORREF colour
, blend_col
= CLR_NONE
;
1422 blend_col
= pimldp
->rgbFg
;
1423 if (blend_col
== CLR_DEFAULT
) blend_col
= GetSysColor( COLOR_HIGHLIGHT
);
1424 else if (blend_col
== CLR_NONE
) blend_col
= GetTextColor( pimldp
->hdcDst
);
1427 func
.BlendOp
= AC_SRC_OVER
;
1428 func
.BlendFlags
= 0;
1429 func
.SourceConstantAlpha
= (fState
& ILS_ALPHA
) ? pimldp
->Frame
: 255;
1430 func
.AlphaFormat
= AC_SRC_ALPHA
;
1434 bResult
= alpha_blend_image( himl
, pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
,
1435 pt
.x
, pt
.y
, cx
, cy
, func
, fStyle
, blend_col
);
1438 colour
= pimldp
->rgbBk
;
1439 if (colour
== CLR_DEFAULT
) colour
= himl
->clrBk
;
1440 if (colour
== CLR_NONE
) colour
= GetBkColor( pimldp
->hdcDst
);
1442 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (colour
));
1443 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1444 alpha_blend_image( himl
, hImageDC
, 0, 0, pt
.x
, pt
.y
, cx
, cy
, func
, fStyle
, blend_col
);
1445 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1446 bResult
= BitBlt( pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, SRCCOPY
);
1451 * Draw the initial image
1454 if (himl
->hbmMask
) {
1455 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (GetTextColor(pimldp
->hdcDst
)));
1456 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1457 BitBlt(hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCPAINT
);
1458 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1459 if( bIsTransparent
)
1461 BitBlt ( pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, SRCAND
);
1466 hOldBrush
= SelectObject (hImageDC
, GetStockObject(BLACK_BRUSH
));
1467 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1468 SelectObject(hImageDC
, hOldBrush
);
1471 /* blend the image with the needed solid background */
1472 COLORREF colour
= RGB(0,0,0);
1474 if( !bIsTransparent
)
1476 colour
= pimldp
->rgbBk
;
1477 if( colour
== CLR_DEFAULT
)
1478 colour
= himl
->clrBk
;
1479 if( colour
== CLR_NONE
)
1480 colour
= GetBkColor(pimldp
->hdcDst
);
1483 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (colour
));
1484 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1487 BitBlt( hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCAND
);
1488 BitBlt( hImageDC
, 0, 0, cx
, cy
, hImageListDC
, pt
.x
, pt
.y
, SRCPAINT
);
1491 BitBlt( hImageDC
, 0, 0, cx
, cy
, hImageListDC
, pt
.x
, pt
.y
, SRCCOPY
);
1492 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1495 /* Time for blending, if required */
1498 COLORREF clrBlend
= pimldp
->rgbFg
;
1499 HDC hBlendMaskDC
= hImageListDC
;
1502 /* Create the blend Mask */
1503 hOldBitmap
= SelectObject(hBlendMaskDC
, hBlendMaskBmp
);
1504 hBlendBrush
= fStyle
& ILD_BLEND50
? himl
->hbrBlend50
: himl
->hbrBlend25
;
1505 hOldBrush
= SelectObject(hBlendMaskDC
, hBlendBrush
);
1506 PatBlt(hBlendMaskDC
, 0, 0, cx
, cy
, PATCOPY
);
1507 SelectObject(hBlendMaskDC
, hOldBrush
);
1509 /* Modify the blend mask if an Image Mask exist */
1511 BitBlt(hBlendMaskDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, 0x220326); /* NOTSRCAND */
1512 BitBlt(hBlendMaskDC
, 0, 0, cx
, cy
, hBlendMaskDC
, 0, 0, NOTSRCCOPY
);
1515 /* now apply blend to the current image given the BlendMask */
1516 if (clrBlend
== CLR_DEFAULT
) clrBlend
= GetSysColor (COLOR_HIGHLIGHT
);
1517 else if (clrBlend
== CLR_NONE
) clrBlend
= GetTextColor (pimldp
->hdcDst
);
1518 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush(clrBlend
));
1519 BitBlt (hImageDC
, 0, 0, cx
, cy
, hBlendMaskDC
, 0, 0, 0xB8074A); /* PSDPxax */
1520 DeleteObject(SelectObject(hImageDC
, hOldBrush
));
1521 SelectObject(hBlendMaskDC
, hOldBitmap
);
1524 /* Now do the overlay image, if any */
1525 nOvlIdx
= (pimldp
->fStyle
& ILD_OVERLAYMASK
) >> 8;
1526 if ( (nOvlIdx
>= 1) && (nOvlIdx
<= MAX_OVERLAYIMAGE
)) {
1527 nOvlIdx
= himl
->nOvlIdx
[nOvlIdx
- 1];
1528 if ((nOvlIdx
>= 0) && (nOvlIdx
< himl
->cCurImage
)) {
1530 imagelist_point_from_index( himl
, nOvlIdx
, &ptOvl
);
1531 ptOvl
.x
+= pimldp
->xBitmap
;
1532 if (himl
->hbmMask
&& !(fStyle
& ILD_IMAGE
))
1533 BitBlt (hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, ptOvl
.x
, ptOvl
.y
, SRCAND
);
1534 BitBlt (hImageDC
, 0, 0, cx
, cy
, hImageListDC
, ptOvl
.x
, ptOvl
.y
, SRCPAINT
);
1538 if (fState
& ILS_SATURATE
) FIXME("ILS_SATURATE: unimplemented!\n");
1539 if (fState
& ILS_GLOW
) FIXME("ILS_GLOW: unimplemented!\n");
1540 if (fState
& ILS_SHADOW
) FIXME("ILS_SHADOW: unimplemented!\n");
1542 if (fStyle
& ILD_PRESERVEALPHA
) FIXME("ILD_PRESERVEALPHA: unimplemented!\n");
1543 if (fStyle
& ILD_SCALE
) FIXME("ILD_SCALE: unimplemented!\n");
1544 if (fStyle
& ILD_DPISCALE
) FIXME("ILD_DPISCALE: unimplemented!\n");
1546 /* now copy the image to the screen */
1548 if (himl
->hbmMask
&& bIsTransparent
) {
1549 COLORREF oldDstFg
= SetTextColor(pimldp
->hdcDst
, RGB( 0, 0, 0 ) );
1550 COLORREF oldDstBk
= SetBkColor(pimldp
->hdcDst
, RGB( 0xff, 0xff, 0xff ));
1551 BitBlt (pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCAND
);
1552 SetBkColor(pimldp
->hdcDst
, oldDstBk
);
1553 SetTextColor(pimldp
->hdcDst
, oldDstFg
);
1556 if (fStyle
& ILD_ROP
) dwRop
= pimldp
->dwRop
;
1557 BitBlt (pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, dwRop
);
1561 /* cleanup the mess */
1562 SetBkColor(hImageDC
, oldImageBk
);
1563 SetTextColor(hImageDC
, oldImageFg
);
1564 SelectObject(hImageDC
, hOldImageBmp
);
1566 DeleteObject(hBlendMaskBmp
);
1567 DeleteObject(hImageBmp
);
1574 /*************************************************************************
1575 * ImageList_Duplicate [COMCTL32.@]
1577 * Duplicates an image list.
1580 * himlSrc [I] source image list handle
1583 * Success: Handle of duplicated image list.
1588 ImageList_Duplicate (HIMAGELIST himlSrc
)
1592 if (!is_valid(himlSrc
)) {
1593 ERR("Invalid image list handle!\n");
1597 himlDst
= ImageList_Create (himlSrc
->cx
, himlSrc
->cy
, himlSrc
->flags
,
1598 himlSrc
->cCurImage
, himlSrc
->cGrow
);
1604 imagelist_get_bitmap_size(himlSrc
, himlSrc
->cCurImage
, &sz
);
1605 BitBlt (himlDst
->hdcImage
, 0, 0, sz
.cx
, sz
.cy
,
1606 himlSrc
->hdcImage
, 0, 0, SRCCOPY
);
1608 if (himlDst
->hbmMask
)
1609 BitBlt (himlDst
->hdcMask
, 0, 0, sz
.cx
, sz
.cy
,
1610 himlSrc
->hdcMask
, 0, 0, SRCCOPY
);
1612 himlDst
->cCurImage
= himlSrc
->cCurImage
;
1613 if (himlSrc
->has_alpha
&& himlDst
->has_alpha
)
1614 memcpy( himlDst
->has_alpha
, himlSrc
->has_alpha
, himlDst
->cCurImage
);
1620 /*************************************************************************
1621 * ImageList_EndDrag [COMCTL32.@]
1623 * Finishes a drag operation.
1634 ImageList_EndDrag (void)
1636 /* cleanup the InternalDrag struct */
1637 InternalDrag
.hwnd
= 0;
1638 ImageList_Destroy (InternalDrag
.himl
);
1639 InternalDrag
.himl
= 0;
1642 InternalDrag
.dxHotspot
= 0;
1643 InternalDrag
.dyHotspot
= 0;
1644 InternalDrag
.bShow
= FALSE
;
1645 DeleteObject(InternalDrag
.hbmBg
);
1646 InternalDrag
.hbmBg
= 0;
1650 /*************************************************************************
1651 * ImageList_GetBkColor [COMCTL32.@]
1653 * Returns the background color of an image list.
1656 * himl [I] Image list handle.
1659 * Success: background color
1664 ImageList_GetBkColor (HIMAGELIST himl
)
1666 return himl
? himl
->clrBk
: CLR_NONE
;
1670 /*************************************************************************
1671 * ImageList_GetDragImage [COMCTL32.@]
1673 * Returns the handle to the internal drag image list.
1676 * ppt [O] Pointer to the drag position. Can be NULL.
1677 * pptHotspot [O] Pointer to the position of the hot spot. Can be NULL.
1680 * Success: Handle of the drag image list.
1685 ImageList_GetDragImage (POINT
*ppt
, POINT
*pptHotspot
)
1687 if (is_valid(InternalDrag
.himl
)) {
1689 ppt
->x
= InternalDrag
.x
;
1690 ppt
->y
= InternalDrag
.y
;
1693 pptHotspot
->x
= InternalDrag
.dxHotspot
;
1694 pptHotspot
->y
= InternalDrag
.dyHotspot
;
1696 return (InternalDrag
.himl
);
1703 /*************************************************************************
1704 * ImageList_GetFlags [COMCTL32.@]
1706 * Gets the flags of the specified image list.
1709 * himl [I] Handle to image list
1719 ImageList_GetFlags(HIMAGELIST himl
)
1721 TRACE("%p\n", himl
);
1723 return is_valid(himl
) ? himl
->flags
: 0;
1727 /*************************************************************************
1728 * ImageList_GetIcon [COMCTL32.@]
1730 * Creates an icon from a masked image of an image list.
1733 * himl [I] handle to image list
1735 * flags [I] drawing style flags
1738 * Success: icon handle
1743 ImageList_GetIcon (HIMAGELIST himl
, INT i
, UINT fStyle
)
1747 HBITMAP hOldDstBitmap
;
1751 TRACE("%p %d %d\n", himl
, i
, fStyle
);
1752 if (!is_valid(himl
) || (i
< 0) || (i
>= himl
->cCurImage
)) return NULL
;
1758 /* create colour bitmap */
1760 ii
.hbmColor
= CreateCompatibleBitmap(hdcDst
, himl
->cx
, himl
->cy
);
1761 ReleaseDC(0, hdcDst
);
1763 hdcDst
= CreateCompatibleDC(0);
1765 imagelist_point_from_index( himl
, i
, &pt
);
1768 ii
.hbmMask
= CreateBitmap (himl
->cx
, himl
->cy
, 1, 1, NULL
);
1769 hOldDstBitmap
= SelectObject (hdcDst
, ii
.hbmMask
);
1770 if (himl
->hbmMask
) {
1771 BitBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
,
1772 himl
->hdcMask
, pt
.x
, pt
.y
, SRCCOPY
);
1775 PatBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
, BLACKNESS
);
1778 SelectObject (hdcDst
, ii
.hbmColor
);
1779 BitBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
,
1780 himl
->hdcImage
, pt
.x
, pt
.y
, SRCCOPY
);
1783 * CreateIconIndirect requires us to deselect the bitmaps from
1784 * the DCs before calling
1786 SelectObject(hdcDst
, hOldDstBitmap
);
1788 hIcon
= CreateIconIndirect (&ii
);
1790 DeleteObject (ii
.hbmMask
);
1791 DeleteObject (ii
.hbmColor
);
1798 /*************************************************************************
1799 * ImageList_GetIconSize [COMCTL32.@]
1801 * Retrieves the size of an image in an image list.
1804 * himl [I] handle to image list
1805 * cx [O] pointer to the image width.
1806 * cy [O] pointer to the image height.
1813 * All images in an image list have the same size.
1817 ImageList_GetIconSize (HIMAGELIST himl
, INT
*cx
, INT
*cy
)
1819 if (!is_valid(himl
) || !cx
|| !cy
)
1821 if ((himl
->cx
<= 0) || (himl
->cy
<= 0))
1831 /*************************************************************************
1832 * ImageList_GetImageCount [COMCTL32.@]
1834 * Returns the number of images in an image list.
1837 * himl [I] handle to image list
1840 * Success: Number of images.
1845 ImageList_GetImageCount (HIMAGELIST himl
)
1847 if (!is_valid(himl
))
1850 return himl
->cCurImage
;
1854 /*************************************************************************
1855 * ImageList_GetImageInfo [COMCTL32.@]
1857 * Returns information about an image in an image list.
1860 * himl [I] handle to image list
1862 * pImageInfo [O] pointer to the image information
1870 ImageList_GetImageInfo (HIMAGELIST himl
, INT i
, IMAGEINFO
*pImageInfo
)
1874 if (!is_valid(himl
) || (pImageInfo
== NULL
))
1876 if ((i
< 0) || (i
>= himl
->cCurImage
))
1879 pImageInfo
->hbmImage
= himl
->hbmImage
;
1880 pImageInfo
->hbmMask
= himl
->hbmMask
;
1882 imagelist_point_from_index( himl
, i
, &pt
);
1883 pImageInfo
->rcImage
.top
= pt
.y
;
1884 pImageInfo
->rcImage
.bottom
= pt
.y
+ himl
->cy
;
1885 pImageInfo
->rcImage
.left
= pt
.x
;
1886 pImageInfo
->rcImage
.right
= pt
.x
+ himl
->cx
;
1892 /*************************************************************************
1893 * ImageList_GetImageRect [COMCTL32.@]
1895 * Retrieves the rectangle of the specified image in an image list.
1898 * himl [I] handle to image list
1900 * lpRect [O] pointer to the image rectangle
1907 * This is an UNDOCUMENTED function!!!
1911 ImageList_GetImageRect (HIMAGELIST himl
, INT i
, LPRECT lpRect
)
1915 if (!is_valid(himl
) || (lpRect
== NULL
))
1917 if ((i
< 0) || (i
>= himl
->cCurImage
))
1920 imagelist_point_from_index( himl
, i
, &pt
);
1921 lpRect
->left
= pt
.x
;
1923 lpRect
->right
= pt
.x
+ himl
->cx
;
1924 lpRect
->bottom
= pt
.y
+ himl
->cy
;
1930 /*************************************************************************
1931 * ImageList_LoadImage [COMCTL32.@]
1932 * ImageList_LoadImageA [COMCTL32.@]
1934 * Creates an image list from a bitmap, icon or cursor.
1936 * See ImageList_LoadImageW.
1940 ImageList_LoadImageA (HINSTANCE hi
, LPCSTR lpbmp
, INT cx
, INT cGrow
,
1941 COLORREF clrMask
, UINT uType
, UINT uFlags
)
1947 if (IS_INTRESOURCE(lpbmp
))
1948 return ImageList_LoadImageW(hi
, (LPCWSTR
)lpbmp
, cx
, cGrow
, clrMask
,
1951 len
= MultiByteToWideChar(CP_ACP
, 0, lpbmp
, -1, NULL
, 0);
1952 lpbmpW
= Alloc(len
* sizeof(WCHAR
));
1953 MultiByteToWideChar(CP_ACP
, 0, lpbmp
, -1, lpbmpW
, len
);
1955 himl
= ImageList_LoadImageW(hi
, lpbmpW
, cx
, cGrow
, clrMask
, uType
, uFlags
);
1961 /*************************************************************************
1962 * ImageList_LoadImageW [COMCTL32.@]
1964 * Creates an image list from a bitmap, icon or cursor.
1967 * hi [I] instance handle
1968 * lpbmp [I] name or id of the image
1969 * cx [I] width of each image
1970 * cGrow [I] number of images to expand
1971 * clrMask [I] mask color
1972 * uType [I] type of image to load
1973 * uFlags [I] loading flags
1976 * Success: handle to the loaded image list
1984 ImageList_LoadImageW (HINSTANCE hi
, LPCWSTR lpbmp
, INT cx
, INT cGrow
,
1985 COLORREF clrMask
, UINT uType
, UINT uFlags
)
1987 HIMAGELIST himl
= NULL
;
1991 handle
= LoadImageW (hi
, lpbmp
, uType
, 0, 0, uFlags
);
1993 WARN("Couldn't load image\n");
1997 if (uType
== IMAGE_BITMAP
) {
2001 if (GetObjectW (handle
, sizeof(dib
), &dib
) == sizeof(BITMAP
)) color
= ILC_COLOR
;
2002 else color
= dib
.dsBm
.bmBitsPixel
;
2004 /* To match windows behavior, if cx is set to zero and
2005 the flag DI_DEFAULTSIZE is specified, cx becomes the
2006 system metric value for icons. If the flag is not specified
2007 the function sets the size to the height of the bitmap */
2010 if (uFlags
& DI_DEFAULTSIZE
)
2011 cx
= GetSystemMetrics (SM_CXICON
);
2013 cx
= dib
.dsBm
.bmHeight
;
2016 nImageCount
= dib
.dsBm
.bmWidth
/ cx
;
2018 himl
= ImageList_Create (cx
, dib
.dsBm
.bmHeight
, ILC_MASK
| color
, nImageCount
, cGrow
);
2020 DeleteObject (handle
);
2023 ImageList_AddMasked (himl
, handle
, clrMask
);
2025 else if ((uType
== IMAGE_ICON
) || (uType
== IMAGE_CURSOR
)) {
2029 GetIconInfo (handle
, &ii
);
2030 GetObjectW (ii
.hbmColor
, sizeof(BITMAP
), &bmp
);
2031 himl
= ImageList_Create (bmp
.bmWidth
, bmp
.bmHeight
,
2032 ILC_MASK
| ILC_COLOR
, 1, cGrow
);
2034 DeleteObject (ii
.hbmColor
);
2035 DeleteObject (ii
.hbmMask
);
2036 DeleteObject (handle
);
2039 ImageList_Add (himl
, ii
.hbmColor
, ii
.hbmMask
);
2040 DeleteObject (ii
.hbmColor
);
2041 DeleteObject (ii
.hbmMask
);
2044 DeleteObject (handle
);
2050 /*************************************************************************
2051 * ImageList_Merge [COMCTL32.@]
2053 * Create an image list containing a merged image from two image lists.
2056 * himl1 [I] handle to first image list
2057 * i1 [I] first image index
2058 * himl2 [I] handle to second image list
2059 * i2 [I] second image index
2060 * dx [I] X offset of the second image relative to the first.
2061 * dy [I] Y offset of the second image relative to the first.
2064 * Success: The newly created image list. It contains a single image
2065 * consisting of the second image merged with the first.
2066 * Failure: NULL, if either himl1 or himl2 are invalid.
2069 * - The returned image list should be deleted by the caller using
2070 * ImageList_Destroy() when it is no longer required.
2071 * - If either i1 or i2 are not valid image indices they will be treated
2075 ImageList_Merge (HIMAGELIST himl1
, INT i1
, HIMAGELIST himl2
, INT i2
,
2078 HIMAGELIST himlDst
= NULL
;
2080 INT xOff1
, yOff1
, xOff2
, yOff2
;
2083 TRACE("(himl1=%p i1=%d himl2=%p i2=%d dx=%d dy=%d)\n", himl1
, i1
, himl2
,
2086 if (!is_valid(himl1
) || !is_valid(himl2
))
2090 cxDst
= max (himl1
->cx
, dx
+ himl2
->cx
);
2095 cxDst
= max (himl2
->cx
, himl1
->cx
- dx
);
2100 cxDst
= max (himl1
->cx
, himl2
->cx
);
2106 cyDst
= max (himl1
->cy
, dy
+ himl2
->cy
);
2111 cyDst
= max (himl2
->cy
, himl1
->cy
- dy
);
2116 cyDst
= max (himl1
->cy
, himl2
->cy
);
2121 himlDst
= ImageList_Create (cxDst
, cyDst
, ILC_MASK
| ILC_COLOR
, 1, 1);
2125 imagelist_point_from_index( himl1
, i1
, &pt1
);
2126 imagelist_point_from_index( himl2
, i2
, &pt2
);
2129 BitBlt (himlDst
->hdcImage
, 0, 0, cxDst
, cyDst
, himl1
->hdcImage
, 0, 0, BLACKNESS
);
2130 if (i1
>= 0 && i1
< himl1
->cCurImage
)
2131 BitBlt (himlDst
->hdcImage
, xOff1
, yOff1
, himl1
->cx
, himl1
->cy
, himl1
->hdcImage
, pt1
.x
, pt1
.y
, SRCCOPY
);
2132 if (i2
>= 0 && i2
< himl2
->cCurImage
)
2134 BitBlt (himlDst
->hdcImage
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcMask
, pt2
.x
, pt2
.y
, SRCAND
);
2135 BitBlt (himlDst
->hdcImage
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcImage
, pt2
.x
, pt2
.y
, SRCPAINT
);
2139 BitBlt (himlDst
->hdcMask
, 0, 0, cxDst
, cyDst
, himl1
->hdcMask
, 0, 0, WHITENESS
);
2140 if (i1
>= 0 && i1
< himl1
->cCurImage
)
2141 BitBlt (himlDst
->hdcMask
, xOff1
, yOff1
, himl1
->cx
, himl1
->cy
, himl1
->hdcMask
, pt1
.x
, pt1
.y
, SRCCOPY
);
2142 if (i2
>= 0 && i2
< himl2
->cCurImage
)
2143 BitBlt (himlDst
->hdcMask
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcMask
, pt2
.x
, pt2
.y
, SRCAND
);
2145 himlDst
->cCurImage
= 1;
2152 /* helper for ImageList_Read, see comments below */
2153 static void *read_bitmap(LPSTREAM pstm
, BITMAPINFO
*bmi
)
2155 BITMAPFILEHEADER bmfh
;
2156 int bitsperpixel
, palspace
;
2159 if (FAILED(IStream_Read ( pstm
, &bmfh
, sizeof(bmfh
), NULL
)))
2162 if (bmfh
.bfType
!= (('M'<<8)|'B'))
2165 if (FAILED(IStream_Read ( pstm
, &bmi
->bmiHeader
, sizeof(bmi
->bmiHeader
), NULL
)))
2168 if ((bmi
->bmiHeader
.biSize
!= sizeof(bmi
->bmiHeader
)))
2171 TRACE("width %u, height %u, planes %u, bpp %u\n",
2172 bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
,
2173 bmi
->bmiHeader
.biPlanes
, bmi
->bmiHeader
.biBitCount
);
2175 bitsperpixel
= bmi
->bmiHeader
.biPlanes
* bmi
->bmiHeader
.biBitCount
;
2176 if (bitsperpixel
<=8)
2177 palspace
= (1<<bitsperpixel
)*sizeof(RGBQUAD
);
2181 bmi
->bmiHeader
.biSizeImage
= get_dib_image_size( bmi
);
2183 /* read the palette right after the end of the bitmapinfoheader */
2184 if (palspace
&& FAILED(IStream_Read(pstm
, bmi
->bmiColors
, palspace
, NULL
)))
2187 bits
= Alloc(bmi
->bmiHeader
.biSizeImage
);
2188 if (!bits
) return NULL
;
2190 if (FAILED(IStream_Read(pstm
, bits
, bmi
->bmiHeader
.biSizeImage
, NULL
)))
2198 /*************************************************************************
2199 * ImageList_Read [COMCTL32.@]
2201 * Reads an image list from a stream.
2204 * pstm [I] pointer to a stream
2207 * Success: handle to image list
2210 * The format is like this:
2211 * ILHEAD ilheadstruct;
2213 * for the color image part:
2214 * BITMAPFILEHEADER bmfh;
2215 * BITMAPINFOHEADER bmih;
2216 * only if it has a palette:
2217 * RGBQUAD rgbs[nr_of_paletted_colors];
2219 * BYTE colorbits[imagesize];
2221 * the following only if the ILC_MASK bit is set in ILHEAD.ilFlags:
2222 * BITMAPFILEHEADER bmfh_mask;
2223 * BITMAPINFOHEADER bmih_mask;
2224 * only if it has a palette (it usually does not):
2225 * RGBQUAD rgbs[nr_of_paletted_colors];
2227 * BYTE maskbits[imagesize];
2229 HIMAGELIST WINAPI
ImageList_Read (LPSTREAM pstm
)
2231 char image_buf
[sizeof(BITMAPINFOHEADER
) + sizeof(RGBQUAD
) * 256];
2232 char mask_buf
[sizeof(BITMAPINFOHEADER
) + sizeof(RGBQUAD
) * 256];
2233 BITMAPINFO
*image_info
= (BITMAPINFO
*)image_buf
;
2234 BITMAPINFO
*mask_info
= (BITMAPINFO
*)mask_buf
;
2235 void *image_bits
, *mask_bits
= NULL
;
2240 TRACE("%p\n", pstm
);
2242 if (FAILED(IStream_Read (pstm
, &ilHead
, sizeof(ILHEAD
), NULL
)))
2244 if (ilHead
.usMagic
!= (('L' << 8) | 'I'))
2246 if (ilHead
.usVersion
!= 0x101) /* probably version? */
2249 TRACE("cx %u, cy %u, flags 0x%04x, cCurImage %u, cMaxImage %u\n",
2250 ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
2252 himl
= ImageList_Create(ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
2256 if (!(image_bits
= read_bitmap(pstm
, image_info
)))
2258 WARN("failed to read bitmap from stream\n");
2261 if (ilHead
.flags
& ILC_MASK
)
2263 if (!(mask_bits
= read_bitmap(pstm
, mask_info
)))
2265 WARN("failed to read mask bitmap from stream\n");
2269 else mask_info
= NULL
;
2271 if (himl
->has_alpha
&& image_info
->bmiHeader
.biBitCount
== 32)
2273 DWORD
*ptr
= image_bits
;
2274 BYTE
*mask_ptr
= mask_bits
;
2275 int stride
= himl
->cy
* image_info
->bmiHeader
.biWidth
;
2277 if (image_info
->bmiHeader
.biHeight
> 0) /* bottom-up */
2279 ptr
+= image_info
->bmiHeader
.biHeight
* image_info
->bmiHeader
.biWidth
- stride
;
2280 mask_ptr
+= (image_info
->bmiHeader
.biHeight
* image_info
->bmiHeader
.biWidth
- stride
) / 8;
2282 image_info
->bmiHeader
.biHeight
= himl
->cy
;
2284 else image_info
->bmiHeader
.biHeight
= -himl
->cy
;
2286 for (i
= 0; i
< ilHead
.cCurImage
; i
+= TILE_COUNT
)
2288 add_dib_bits( himl
, i
, min( ilHead
.cCurImage
- i
, TILE_COUNT
),
2289 himl
->cx
, himl
->cy
, image_info
, mask_info
, ptr
, mask_ptr
);
2291 mask_ptr
+= stride
/ 8;
2296 StretchDIBits( himl
->hdcImage
, 0, 0, image_info
->bmiHeader
.biWidth
, image_info
->bmiHeader
.biHeight
,
2297 0, 0, image_info
->bmiHeader
.biWidth
, image_info
->bmiHeader
.biHeight
,
2298 image_bits
, image_info
, DIB_RGB_COLORS
, SRCCOPY
);
2300 StretchDIBits( himl
->hdcMask
, 0, 0, mask_info
->bmiHeader
.biWidth
, mask_info
->bmiHeader
.biHeight
,
2301 0, 0, mask_info
->bmiHeader
.biWidth
, mask_info
->bmiHeader
.biHeight
,
2302 mask_bits
, mask_info
, DIB_RGB_COLORS
, SRCCOPY
);
2307 himl
->cCurImage
= ilHead
.cCurImage
;
2308 himl
->cMaxImage
= ilHead
.cMaxImage
;
2310 ImageList_SetBkColor(himl
,ilHead
.bkcolor
);
2312 ImageList_SetOverlayImage(himl
,ilHead
.ovls
[i
],i
+1);
2317 /*************************************************************************
2318 * ImageList_Remove [COMCTL32.@]
2320 * Removes an image from an image list
2323 * himl [I] image list handle
2330 * FIXME: as the image list storage test shows, native comctl32 simply shifts
2331 * images without creating a new bitmap.
2334 ImageList_Remove (HIMAGELIST himl
, INT i
)
2336 HBITMAP hbmNewImage
, hbmNewMask
;
2340 TRACE("(himl=%p i=%d)\n", himl
, i
);
2342 if (!is_valid(himl
)) {
2343 ERR("Invalid image list handle!\n");
2347 if ((i
< -1) || (i
>= himl
->cCurImage
)) {
2348 TRACE("index out of range! %d\n", i
);
2356 if (himl
->cCurImage
== 0) {
2357 /* remove all on empty ImageList is allowed */
2358 TRACE("remove all on empty ImageList!\n");
2362 himl
->cMaxImage
= himl
->cGrow
;
2363 himl
->cCurImage
= 0;
2364 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
2365 himl
->nOvlIdx
[nCount
] = -1;
2367 hbmNewImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2368 SelectObject (himl
->hdcImage
, hbmNewImage
);
2369 DeleteObject (himl
->hbmImage
);
2370 himl
->hbmImage
= hbmNewImage
;
2372 if (himl
->hbmMask
) {
2374 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2375 hbmNewMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2376 SelectObject (himl
->hdcMask
, hbmNewMask
);
2377 DeleteObject (himl
->hbmMask
);
2378 himl
->hbmMask
= hbmNewMask
;
2382 /* delete one image */
2383 TRACE("Remove single image! %d\n", i
);
2385 /* create new bitmap(s) */
2386 TRACE(" - Number of images: %d / %d (Old/New)\n",
2387 himl
->cCurImage
, himl
->cCurImage
- 1);
2389 hbmNewImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2391 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2393 hbmNewMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2395 hbmNewMask
= 0; /* Just to keep compiler happy! */
2397 hdcBmp
= CreateCompatibleDC (0);
2399 /* copy all images and masks prior to the "removed" image */
2401 TRACE("Pre image copy: Copy %d images\n", i
);
2403 SelectObject (hdcBmp
, hbmNewImage
);
2404 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBmp
, 0, i
, 0 );
2406 if (himl
->hbmMask
) {
2407 SelectObject (hdcBmp
, hbmNewMask
);
2408 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBmp
, 0, i
, 0 );
2412 /* copy all images and masks behind the removed image */
2413 if (i
< himl
->cCurImage
- 1) {
2414 TRACE("Post image copy!\n");
2416 SelectObject (hdcBmp
, hbmNewImage
);
2417 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBmp
, i
+ 1,
2418 (himl
->cCurImage
- i
), i
);
2420 if (himl
->hbmMask
) {
2421 SelectObject (hdcBmp
, hbmNewMask
);
2422 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBmp
, i
+ 1,
2423 (himl
->cCurImage
- i
), i
);
2429 /* delete old images and insert new ones */
2430 SelectObject (himl
->hdcImage
, hbmNewImage
);
2431 DeleteObject (himl
->hbmImage
);
2432 himl
->hbmImage
= hbmNewImage
;
2433 if (himl
->hbmMask
) {
2434 SelectObject (himl
->hdcMask
, hbmNewMask
);
2435 DeleteObject (himl
->hbmMask
);
2436 himl
->hbmMask
= hbmNewMask
;
2446 /*************************************************************************
2447 * ImageList_Replace [COMCTL32.@]
2449 * Replaces an image in an image list with a new image.
2452 * himl [I] handle to image list
2454 * hbmImage [I] handle to image bitmap
2455 * hbmMask [I] handle to mask bitmap. Can be NULL.
2463 ImageList_Replace (HIMAGELIST himl
, INT i
, HBITMAP hbmImage
,
2470 TRACE("%p %d %p %p\n", himl
, i
, hbmImage
, hbmMask
);
2472 if (!is_valid(himl
)) {
2473 ERR("Invalid image list handle!\n");
2477 if ((i
>= himl
->cMaxImage
) || (i
< 0)) {
2478 ERR("Invalid image index!\n");
2482 if (!GetObjectW(hbmImage
, sizeof(BITMAP
), &bmp
))
2485 hdcImage
= CreateCompatibleDC (0);
2488 SelectObject (hdcImage
, hbmImage
);
2490 if (add_with_alpha( himl
, hdcImage
, i
, 1, bmp
.bmWidth
, bmp
.bmHeight
, hbmImage
, hbmMask
))
2493 imagelist_point_from_index(himl
, i
, &pt
);
2494 StretchBlt (himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
2495 hdcImage
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, SRCCOPY
);
2500 HBITMAP hOldBitmapTemp
;
2502 hdcTemp
= CreateCompatibleDC(0);
2503 hOldBitmapTemp
= SelectObject(hdcTemp
, hbmMask
);
2505 StretchBlt (himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
2506 hdcTemp
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, SRCCOPY
);
2507 SelectObject(hdcTemp
, hOldBitmapTemp
);
2510 /* Remove the background from the image
2512 BitBlt (himl
->hdcImage
, pt
.x
, pt
.y
, bmp
.bmWidth
, bmp
.bmHeight
,
2513 himl
->hdcMask
, pt
.x
, pt
.y
, 0x220326); /* NOTSRCAND */
2517 DeleteDC (hdcImage
);
2523 /*************************************************************************
2524 * ImageList_ReplaceIcon [COMCTL32.@]
2526 * Replaces an image in an image list using an icon.
2529 * himl [I] handle to image list
2531 * hIcon [I] handle to icon
2534 * Success: index of the replaced image
2539 ImageList_ReplaceIcon (HIMAGELIST himl
, INT nIndex
, HICON hIcon
)
2547 TRACE("(%p %d %p)\n", himl
, nIndex
, hIcon
);
2549 if (!is_valid(himl
)) {
2550 ERR("invalid image list\n");
2553 if ((nIndex
>= himl
->cMaxImage
) || (nIndex
< -1)) {
2554 ERR("invalid image index %d / %d\n", nIndex
, himl
->cMaxImage
);
2558 hBestFitIcon
= CopyImage(
2561 LR_COPYFROMRESOURCE
);
2562 /* the above will fail if the icon wasn't loaded from a resource, so try
2563 * again without LR_COPYFROMRESOURCE flag */
2565 hBestFitIcon
= CopyImage(
2573 if (himl
->cCurImage
+ 1 >= himl
->cMaxImage
)
2574 IMAGELIST_InternalExpandBitmaps(himl
, 1);
2576 nIndex
= himl
->cCurImage
;
2580 if (himl
->has_alpha
&& GetIconInfo (hBestFitIcon
, &ii
))
2582 HDC hdcImage
= CreateCompatibleDC( 0 );
2583 GetObjectW (ii
.hbmMask
, sizeof(BITMAP
), &bmp
);
2587 UINT height
= bmp
.bmHeight
/ 2;
2588 HDC hdcMask
= CreateCompatibleDC( 0 );
2589 HBITMAP color
= CreateBitmap( bmp
.bmWidth
, height
, 1, 1, NULL
);
2590 SelectObject( hdcImage
, color
);
2591 SelectObject( hdcMask
, ii
.hbmMask
);
2592 BitBlt( hdcImage
, 0, 0, bmp
.bmWidth
, height
, hdcMask
, 0, height
, SRCCOPY
);
2593 ret
= add_with_alpha( himl
, hdcImage
, nIndex
, 1, bmp
.bmWidth
, height
, color
, ii
.hbmMask
);
2594 DeleteDC( hdcMask
);
2595 DeleteObject( color
);
2597 else ret
= add_with_alpha( himl
, hdcImage
, nIndex
, 1, bmp
.bmWidth
, bmp
.bmHeight
,
2598 ii
.hbmColor
, ii
.hbmMask
);
2600 DeleteDC( hdcImage
);
2601 DeleteObject (ii
.hbmMask
);
2602 if (ii
.hbmColor
) DeleteObject (ii
.hbmColor
);
2606 imagelist_point_from_index(himl
, nIndex
, &pt
);
2610 DrawIconEx( himl
->hdcImage
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_IMAGE
);
2611 PatBlt( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
, WHITENESS
);
2612 DrawIconEx( himl
->hdcMask
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_MASK
);
2616 COLORREF color
= himl
->clrBk
!= CLR_NONE
? himl
->clrBk
: comctl32_color
.clrWindow
;
2617 HBRUSH brush
= CreateSolidBrush( GetNearestColor( himl
->hdcImage
, color
));
2619 SelectObject( himl
->hdcImage
, brush
);
2620 PatBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
, PATCOPY
);
2621 SelectObject( himl
->hdcImage
, GetStockObject(BLACK_BRUSH
) );
2622 DeleteObject( brush
);
2623 DrawIconEx( himl
->hdcImage
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_NORMAL
);
2627 DestroyIcon(hBestFitIcon
);
2629 TRACE("Insert index = %d, himl->cCurImage = %d\n", nIndex
, himl
->cCurImage
);
2634 /*************************************************************************
2635 * ImageList_SetBkColor [COMCTL32.@]
2637 * Sets the background color of an image list.
2640 * himl [I] handle to image list
2641 * clrBk [I] background color
2644 * Success: previous background color
2649 ImageList_SetBkColor (HIMAGELIST himl
, COLORREF clrBk
)
2653 if (!is_valid(himl
))
2656 clrOldBk
= himl
->clrBk
;
2657 himl
->clrBk
= clrBk
;
2662 /*************************************************************************
2663 * ImageList_SetDragCursorImage [COMCTL32.@]
2665 * Combines the specified image with the current drag image
2668 * himlDrag [I] handle to drag image list
2669 * iDrag [I] drag image index
2670 * dxHotspot [I] X position of the hot spot
2671 * dyHotspot [I] Y position of the hot spot
2678 * - The names dxHotspot, dyHotspot are misleading because they have nothing
2679 * to do with a hotspot but are only the offset of the origin of the new
2680 * image relative to the origin of the old image.
2682 * - When this function is called and the drag image is visible, a
2683 * short flickering occurs but this matches the Win9x behavior. It is
2684 * possible to fix the flickering using code like in ImageList_DragMove.
2688 ImageList_SetDragCursorImage (HIMAGELIST himlDrag
, INT iDrag
,
2689 INT dxHotspot
, INT dyHotspot
)
2691 HIMAGELIST himlTemp
;
2694 if (!is_valid(InternalDrag
.himl
) || !is_valid(himlDrag
))
2697 TRACE(" dxH=%d dyH=%d nX=%d nY=%d\n",
2698 dxHotspot
, dyHotspot
, InternalDrag
.dxHotspot
, InternalDrag
.dyHotspot
);
2700 visible
= InternalDrag
.bShow
;
2702 himlTemp
= ImageList_Merge (InternalDrag
.himl
, 0, himlDrag
, iDrag
,
2703 dxHotspot
, dyHotspot
);
2706 /* hide the drag image */
2707 ImageList_DragShowNolock(FALSE
);
2709 if ((InternalDrag
.himl
->cx
!= himlTemp
->cx
) ||
2710 (InternalDrag
.himl
->cy
!= himlTemp
->cy
)) {
2711 /* the size of the drag image changed, invalidate the buffer */
2712 DeleteObject(InternalDrag
.hbmBg
);
2713 InternalDrag
.hbmBg
= 0;
2716 ImageList_Destroy (InternalDrag
.himl
);
2717 InternalDrag
.himl
= himlTemp
;
2720 /* show the drag image */
2721 ImageList_DragShowNolock(TRUE
);
2728 /*************************************************************************
2729 * ImageList_SetFilter [COMCTL32.@]
2731 * Sets a filter (or does something completely different)!!???
2732 * It removes 12 Bytes from the stack (3 Parameters).
2735 * himl [I] SHOULD be a handle to image list
2736 * i [I] COULD be an index?
2741 * Failure: FALSE ???
2744 * This is an UNDOCUMENTED function!!!!
2749 ImageList_SetFilter (HIMAGELIST himl
, INT i
, DWORD dwFilter
)
2751 FIXME("(%p 0x%x 0x%x):empty stub!\n", himl
, i
, dwFilter
);
2757 /*************************************************************************
2758 * ImageList_SetFlags [COMCTL32.@]
2760 * Sets the image list flags.
2763 * himl [I] Handle to image list
2764 * flags [I] Flags to set
2774 ImageList_SetFlags(HIMAGELIST himl
, DWORD flags
)
2776 FIXME("(%p %08x):empty stub\n", himl
, flags
);
2781 /*************************************************************************
2782 * ImageList_SetIconSize [COMCTL32.@]
2784 * Sets the image size of the bitmap and deletes all images.
2787 * himl [I] handle to image list
2788 * cx [I] image width
2789 * cy [I] image height
2797 ImageList_SetIconSize (HIMAGELIST himl
, INT cx
, INT cy
)
2802 if (!is_valid(himl
))
2805 /* remove all images */
2806 himl
->cMaxImage
= himl
->cInitial
+ 1;
2807 himl
->cCurImage
= 0;
2811 /* initialize overlay mask indices */
2812 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
2813 himl
->nOvlIdx
[nCount
] = -1;
2815 hbmNew
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2816 SelectObject (himl
->hdcImage
, hbmNew
);
2817 DeleteObject (himl
->hbmImage
);
2818 himl
->hbmImage
= hbmNew
;
2820 if (himl
->hbmMask
) {
2822 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2823 hbmNew
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2824 SelectObject (himl
->hdcMask
, hbmNew
);
2825 DeleteObject (himl
->hbmMask
);
2826 himl
->hbmMask
= hbmNew
;
2833 /*************************************************************************
2834 * ImageList_SetImageCount [COMCTL32.@]
2836 * Resizes an image list to the specified number of images.
2839 * himl [I] handle to image list
2840 * iImageCount [I] number of images in the image list
2848 ImageList_SetImageCount (HIMAGELIST himl
, UINT iImageCount
)
2851 HBITMAP hbmNewBitmap
, hbmOld
;
2852 INT nNewCount
, nCopyCount
;
2854 TRACE("%p %d\n",himl
,iImageCount
);
2856 if (!is_valid(himl
))
2859 nNewCount
= iImageCount
+ 1;
2860 nCopyCount
= min(himl
->cCurImage
, iImageCount
);
2862 hdcBitmap
= CreateCompatibleDC (0);
2864 hbmNewBitmap
= ImageList_CreateImage(hdcBitmap
, himl
, nNewCount
);
2866 if (hbmNewBitmap
!= 0)
2868 hbmOld
= SelectObject (hdcBitmap
, hbmNewBitmap
);
2869 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBitmap
, 0, nCopyCount
, 0 );
2870 SelectObject (hdcBitmap
, hbmOld
);
2872 /* FIXME: delete 'empty' image space? */
2874 SelectObject (himl
->hdcImage
, hbmNewBitmap
);
2875 DeleteObject (himl
->hbmImage
);
2876 himl
->hbmImage
= hbmNewBitmap
;
2879 ERR("Could not create new image bitmap !\n");
2884 imagelist_get_bitmap_size( himl
, nNewCount
, &sz
);
2885 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2886 if (hbmNewBitmap
!= 0)
2888 hbmOld
= SelectObject (hdcBitmap
, hbmNewBitmap
);
2889 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBitmap
, 0, nCopyCount
, 0 );
2890 SelectObject (hdcBitmap
, hbmOld
);
2892 /* FIXME: delete 'empty' image space? */
2894 SelectObject (himl
->hdcMask
, hbmNewBitmap
);
2895 DeleteObject (himl
->hbmMask
);
2896 himl
->hbmMask
= hbmNewBitmap
;
2899 ERR("Could not create new mask bitmap!\n");
2902 DeleteDC (hdcBitmap
);
2904 if (himl
->has_alpha
)
2906 char *new_alpha
= HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->has_alpha
, nNewCount
);
2907 if (new_alpha
) himl
->has_alpha
= new_alpha
;
2910 HeapFree( GetProcessHeap(), 0, himl
->has_alpha
);
2911 himl
->has_alpha
= NULL
;
2915 /* Update max image count and current image count */
2916 himl
->cMaxImage
= nNewCount
;
2917 himl
->cCurImage
= iImageCount
;
2923 /*************************************************************************
2924 * ImageList_SetOverlayImage [COMCTL32.@]
2926 * Assigns an overlay mask index to an existing image in an image list.
2929 * himl [I] handle to image list
2930 * iImage [I] image index
2931 * iOverlay [I] overlay mask index
2939 ImageList_SetOverlayImage (HIMAGELIST himl
, INT iImage
, INT iOverlay
)
2941 if (!is_valid(himl
))
2943 if ((iOverlay
< 1) || (iOverlay
> MAX_OVERLAYIMAGE
))
2945 if ((iImage
!=-1) && ((iImage
< 0) || (iImage
> himl
->cCurImage
)))
2947 himl
->nOvlIdx
[iOverlay
- 1] = iImage
;
2953 /* helper for ImageList_Write - write bitmap to pstm
2954 * currently everything is written as 24 bit RGB, except masks
2957 _write_bitmap(HBITMAP hBitmap
, LPSTREAM pstm
)
2959 LPBITMAPFILEHEADER bmfh
;
2960 LPBITMAPINFOHEADER bmih
;
2961 LPBYTE data
= NULL
, lpBits
;
2963 INT bitCount
, sizeImage
, offBits
, totalSize
;
2965 BOOL result
= FALSE
;
2967 if (!GetObjectW(hBitmap
, sizeof(BITMAP
), &bm
))
2970 bitCount
= bm
.bmBitsPixel
;
2971 sizeImage
= get_dib_stride(bm
.bmWidth
, bitCount
) * bm
.bmHeight
;
2973 totalSize
= sizeof(BITMAPFILEHEADER
) + sizeof(BITMAPINFOHEADER
);
2975 totalSize
+= (1 << bitCount
) * sizeof(RGBQUAD
);
2976 offBits
= totalSize
;
2977 totalSize
+= sizeImage
;
2979 data
= Alloc(totalSize
);
2980 bmfh
= (LPBITMAPFILEHEADER
)data
;
2981 bmih
= (LPBITMAPINFOHEADER
)(data
+ sizeof(BITMAPFILEHEADER
));
2982 lpBits
= data
+ offBits
;
2984 /* setup BITMAPFILEHEADER */
2985 bmfh
->bfType
= (('M' << 8) | 'B');
2986 bmfh
->bfSize
= offBits
;
2987 bmfh
->bfReserved1
= 0;
2988 bmfh
->bfReserved2
= 0;
2989 bmfh
->bfOffBits
= offBits
;
2991 /* setup BITMAPINFOHEADER */
2992 bmih
->biSize
= sizeof(BITMAPINFOHEADER
);
2993 bmih
->biWidth
= bm
.bmWidth
;
2994 bmih
->biHeight
= bm
.bmHeight
;
2996 bmih
->biBitCount
= bitCount
;
2997 bmih
->biCompression
= BI_RGB
;
2998 bmih
->biSizeImage
= sizeImage
;
2999 bmih
->biXPelsPerMeter
= 0;
3000 bmih
->biYPelsPerMeter
= 0;
3001 bmih
->biClrUsed
= 0;
3002 bmih
->biClrImportant
= 0;
3005 result
= GetDIBits(xdc
, hBitmap
, 0, bm
.bmHeight
, lpBits
, (BITMAPINFO
*)bmih
, DIB_RGB_COLORS
) == bm
.bmHeight
;
3010 TRACE("width %u, height %u, planes %u, bpp %u\n",
3011 bmih
->biWidth
, bmih
->biHeight
,
3012 bmih
->biPlanes
, bmih
->biBitCount
);
3014 if(FAILED(IStream_Write(pstm
, data
, totalSize
, NULL
)))
3026 /*************************************************************************
3027 * ImageList_Write [COMCTL32.@]
3029 * Writes an image list to a stream.
3032 * himl [I] handle to image list
3033 * pstm [O] Pointer to a stream.
3044 ImageList_Write (HIMAGELIST himl
, LPSTREAM pstm
)
3049 TRACE("%p %p\n", himl
, pstm
);
3051 if (!is_valid(himl
))
3054 ilHead
.usMagic
= (('L' << 8) | 'I');
3055 ilHead
.usVersion
= 0x101;
3056 ilHead
.cCurImage
= himl
->cCurImage
;
3057 ilHead
.cMaxImage
= himl
->cMaxImage
;
3058 ilHead
.cGrow
= himl
->cGrow
;
3059 ilHead
.cx
= himl
->cx
;
3060 ilHead
.cy
= himl
->cy
;
3061 ilHead
.bkcolor
= himl
->clrBk
;
3062 ilHead
.flags
= himl
->flags
;
3063 for(i
= 0; i
< 4; i
++) {
3064 ilHead
.ovls
[i
] = himl
->nOvlIdx
[i
];
3067 TRACE("cx %u, cy %u, flags 0x04%x, cCurImage %u, cMaxImage %u\n",
3068 ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
3070 if(FAILED(IStream_Write(pstm
, &ilHead
, sizeof(ILHEAD
), NULL
)))
3073 /* write the bitmap */
3074 if(!_write_bitmap(himl
->hbmImage
, pstm
))
3077 /* write the mask if we have one */
3078 if(himl
->flags
& ILC_MASK
) {
3079 if(!_write_bitmap(himl
->hbmMask
, pstm
))
3087 static HBITMAP
ImageList_CreateImage(HDC hdc
, HIMAGELIST himl
, UINT count
)
3089 HBITMAP hbmNewBitmap
;
3090 UINT ilc
= (himl
->flags
& 0xFE);
3093 imagelist_get_bitmap_size( himl
, count
, &sz
);
3095 if ((ilc
>= ILC_COLOR4
&& ilc
<= ILC_COLOR32
) || ilc
== ILC_COLOR
)
3097 char buffer
[sizeof(BITMAPINFOHEADER
) + 256 * sizeof(RGBQUAD
)];
3098 BITMAPINFO
*bmi
= (BITMAPINFO
*)buffer
;
3100 TRACE("Creating DIBSection %d x %d, %d Bits per Pixel\n",
3101 sz
.cx
, sz
.cy
, himl
->uBitsPixel
);
3103 memset( buffer
, 0, sizeof(buffer
) );
3104 bmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
3105 bmi
->bmiHeader
.biWidth
= sz
.cx
;
3106 bmi
->bmiHeader
.biHeight
= sz
.cy
;
3107 bmi
->bmiHeader
.biPlanes
= 1;
3108 bmi
->bmiHeader
.biBitCount
= himl
->uBitsPixel
;
3109 bmi
->bmiHeader
.biCompression
= BI_RGB
;
3111 if (himl
->uBitsPixel
<= ILC_COLOR8
)
3113 /* retrieve the default color map */
3114 HBITMAP tmp
= CreateBitmap( 1, 1, 1, 1, NULL
);
3115 GetDIBits( hdc
, tmp
, 0, 0, NULL
, bmi
, DIB_RGB_COLORS
);
3116 DeleteObject( tmp
);
3118 hbmNewBitmap
= CreateDIBSection(hdc
, bmi
, DIB_RGB_COLORS
, NULL
, 0, 0);
3120 else /*if (ilc == ILC_COLORDDB)*/
3122 TRACE("Creating Bitmap: %d Bits per Pixel\n", himl
->uBitsPixel
);
3124 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, himl
->uBitsPixel
, NULL
);
3126 TRACE("returning %p\n", hbmNewBitmap
);
3127 return hbmNewBitmap
;
3130 /*************************************************************************
3131 * ImageList_SetColorTable [COMCTL32.@]
3133 * Sets the color table of an image list.
3136 * himl [I] Handle to the image list.
3137 * uStartIndex [I] The first index to set.
3138 * cEntries [I] Number of entries to set.
3139 * prgb [I] New color information for color table for the image list.
3142 * Success: Number of entries in the table that were set.
3146 * ImageList_Create(), SetDIBColorTable()
3150 ImageList_SetColorTable (HIMAGELIST himl
, UINT uStartIndex
, UINT cEntries
, CONST RGBQUAD
* prgb
)
3152 return SetDIBColorTable(himl
->hdcImage
, uStartIndex
, cEntries
, prgb
);
3155 /*************************************************************************
3156 * ImageList_CoCreateInstance [COMCTL32.@]
3158 * Creates a new imagelist instance and returns an interface pointer to it.
3161 * rclsid [I] A reference to the CLSID (CLSID_ImageList).
3162 * punkOuter [I] Pointer to IUnknown interface for aggregation, if desired
3163 * riid [I] Identifier of the requested interface.
3164 * ppv [O] Returns the address of the pointer requested, or NULL.
3168 * Failure: Error value.
3171 ImageList_CoCreateInstance (REFCLSID rclsid
, const IUnknown
*punkOuter
, REFIID riid
, void **ppv
)
3173 TRACE("(%s,%p,%s,%p)\n", debugstr_guid(rclsid
), punkOuter
, debugstr_guid(riid
), ppv
);
3175 if (!IsEqualCLSID(&CLSID_ImageList
, rclsid
))
3176 return E_NOINTERFACE
;
3178 return ImageListImpl_CreateInstance(punkOuter
, riid
, ppv
);
3182 /*************************************************************************
3183 * IImageList implementation
3186 static HRESULT WINAPI
ImageListImpl_QueryInterface(IImageList
*iface
,
3187 REFIID iid
, void **ppv
)
3189 HIMAGELIST This
= (HIMAGELIST
) iface
;
3190 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
3192 if (!ppv
) return E_INVALIDARG
;
3194 if (IsEqualIID(&IID_IUnknown
, iid
) || IsEqualIID(&IID_IImageList
, iid
))
3199 return E_NOINTERFACE
;
3202 IUnknown_AddRef((IUnknown
*)*ppv
);
3206 static ULONG WINAPI
ImageListImpl_AddRef(IImageList
*iface
)
3208 HIMAGELIST This
= (HIMAGELIST
) iface
;
3209 ULONG ref
= InterlockedIncrement(&This
->ref
);
3211 TRACE("(%p) refcount=%u\n", iface
, ref
);
3215 static ULONG WINAPI
ImageListImpl_Release(IImageList
*iface
)
3217 HIMAGELIST This
= (HIMAGELIST
) iface
;
3218 ULONG ref
= InterlockedDecrement(&This
->ref
);
3220 TRACE("(%p) refcount=%u\n", iface
, ref
);
3224 /* delete image bitmaps */
3225 if (This
->hbmImage
) DeleteObject (This
->hbmImage
);
3226 if (This
->hbmMask
) DeleteObject (This
->hbmMask
);
3228 /* delete image & mask DCs */
3229 if (This
->hdcImage
) DeleteDC (This
->hdcImage
);
3230 if (This
->hdcMask
) DeleteDC (This
->hdcMask
);
3232 /* delete blending brushes */
3233 if (This
->hbrBlend25
) DeleteObject (This
->hbrBlend25
);
3234 if (This
->hbrBlend50
) DeleteObject (This
->hbrBlend50
);
3236 This
->lpVtbl
= NULL
;
3237 HeapFree(GetProcessHeap(), 0, This
->has_alpha
);
3238 HeapFree(GetProcessHeap(), 0, This
);
3244 static HRESULT WINAPI
ImageListImpl_Add(IImageList
*iface
, HBITMAP hbmImage
,
3245 HBITMAP hbmMask
, int *pi
)
3247 HIMAGELIST This
= (HIMAGELIST
) iface
;
3253 ret
= ImageList_Add(This
, hbmImage
, hbmMask
);
3262 static HRESULT WINAPI
ImageListImpl_ReplaceIcon(IImageList
*iface
, int i
,
3263 HICON hicon
, int *pi
)
3265 HIMAGELIST This
= (HIMAGELIST
) iface
;
3271 ret
= ImageList_ReplaceIcon(This
, i
, hicon
);
3280 static HRESULT WINAPI
ImageListImpl_SetOverlayImage(IImageList
*iface
,
3281 int iImage
, int iOverlay
)
3283 return ImageList_SetOverlayImage((HIMAGELIST
) iface
, iImage
, iOverlay
)
3287 static HRESULT WINAPI
ImageListImpl_Replace(IImageList
*iface
, int i
,
3288 HBITMAP hbmImage
, HBITMAP hbmMask
)
3290 return ImageList_Replace((HIMAGELIST
) iface
, i
, hbmImage
, hbmMask
) ? S_OK
:
3294 static HRESULT WINAPI
ImageListImpl_AddMasked(IImageList
*iface
, HBITMAP hbmImage
,
3295 COLORREF crMask
, int *pi
)
3297 HIMAGELIST This
= (HIMAGELIST
) iface
;
3303 ret
= ImageList_AddMasked(This
, hbmImage
, crMask
);
3312 static HRESULT WINAPI
ImageListImpl_Draw(IImageList
*iface
,
3313 IMAGELISTDRAWPARAMS
*pimldp
)
3315 HIMAGELIST This
= (HIMAGELIST
) iface
;
3316 HIMAGELIST old_himl
;
3319 /* As far as I can tell, Windows simply ignores the contents of pimldp->himl
3320 so we shall simulate the same */
3321 old_himl
= pimldp
->himl
;
3322 pimldp
->himl
= This
;
3324 ret
= ImageList_DrawIndirect(pimldp
);
3326 pimldp
->himl
= old_himl
;
3327 return ret
? S_OK
: E_INVALIDARG
;
3330 static HRESULT WINAPI
ImageListImpl_Remove(IImageList
*iface
, int i
)
3332 return (ImageList_Remove((HIMAGELIST
) iface
, i
) == 0) ? E_INVALIDARG
: S_OK
;
3335 static HRESULT WINAPI
ImageListImpl_GetIcon(IImageList
*iface
, int i
, UINT flags
,
3343 hIcon
= ImageList_GetIcon((HIMAGELIST
) iface
, i
, flags
);
3352 static HRESULT WINAPI
ImageListImpl_GetImageInfo(IImageList
*iface
, int i
,
3353 IMAGEINFO
*pImageInfo
)
3355 return ImageList_GetImageInfo((HIMAGELIST
) iface
, i
, pImageInfo
) ? S_OK
: E_FAIL
;
3358 static HRESULT WINAPI
ImageListImpl_Copy(IImageList
*iface
, int iDst
,
3359 IUnknown
*punkSrc
, int iSrc
, UINT uFlags
)
3361 HIMAGELIST This
= (HIMAGELIST
) iface
;
3362 IImageList
*src
= NULL
;
3368 /* TODO: Add test for IID_ImageList2 too */
3369 if (FAILED(IImageList_QueryInterface(punkSrc
, &IID_IImageList
,
3373 if (ImageList_Copy(This
, iDst
, (HIMAGELIST
) src
, iSrc
, uFlags
))
3378 IImageList_Release(src
);
3382 static HRESULT WINAPI
ImageListImpl_Merge(IImageList
*iface
, int i1
,
3383 IUnknown
*punk2
, int i2
, int dx
, int dy
, REFIID riid
, void **ppv
)
3385 HIMAGELIST This
= (HIMAGELIST
) iface
;
3386 IImageList
*iml2
= NULL
;
3388 HRESULT ret
= E_FAIL
;
3390 TRACE("(%p)->(%d %p %d %d %d %s %p)\n", iface
, i1
, punk2
, i2
, dx
, dy
, debugstr_guid(riid
), ppv
);
3392 /* TODO: Add test for IID_ImageList2 too */
3393 if (FAILED(IImageList_QueryInterface(punk2
, &IID_IImageList
,
3397 hNew
= ImageList_Merge(This
, i1
, (HIMAGELIST
) iml2
, i2
, dx
, dy
);
3399 /* Get the interface for the new image list */
3402 IImageList
*imerge
= (IImageList
*)hNew
;
3404 ret
= HIMAGELIST_QueryInterface(hNew
, riid
, ppv
);
3405 IImageList_Release(imerge
);
3408 IImageList_Release(iml2
);
3412 static HRESULT WINAPI
ImageListImpl_Clone(IImageList
*iface
, REFIID riid
, void **ppv
)
3414 HIMAGELIST This
= (HIMAGELIST
) iface
;
3416 HRESULT ret
= E_FAIL
;
3418 TRACE("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppv
);
3420 clone
= ImageList_Duplicate(This
);
3422 /* Get the interface for the new image list */
3425 IImageList
*iclone
= (IImageList
*)clone
;
3427 ret
= HIMAGELIST_QueryInterface(clone
, riid
, ppv
);
3428 IImageList_Release(iclone
);
3434 static HRESULT WINAPI
ImageListImpl_GetImageRect(IImageList
*iface
, int i
,
3437 HIMAGELIST This
= (HIMAGELIST
) iface
;
3443 if (!ImageList_GetImageInfo(This
, i
, &info
))
3446 return CopyRect(prc
, &info
.rcImage
) ? S_OK
: E_FAIL
;
3449 static HRESULT WINAPI
ImageListImpl_GetIconSize(IImageList
*iface
, int *cx
,
3452 HIMAGELIST This
= (HIMAGELIST
) iface
;
3454 return ImageList_GetIconSize(This
, cx
, cy
) ? S_OK
: E_INVALIDARG
;
3457 static HRESULT WINAPI
ImageListImpl_SetIconSize(IImageList
*iface
, int cx
,
3460 return ImageList_SetIconSize((HIMAGELIST
) iface
, cx
, cy
) ? S_OK
: E_FAIL
;
3463 static HRESULT WINAPI
ImageListImpl_GetImageCount(IImageList
*iface
, int *pi
)
3465 *pi
= ImageList_GetImageCount((HIMAGELIST
) iface
);
3469 static HRESULT WINAPI
ImageListImpl_SetImageCount(IImageList
*iface
,
3472 return ImageList_SetImageCount((HIMAGELIST
) iface
, uNewCount
) ? S_OK
: E_FAIL
;
3475 static HRESULT WINAPI
ImageListImpl_SetBkColor(IImageList
*iface
, COLORREF clrBk
,
3478 *pclr
= ImageList_SetBkColor((HIMAGELIST
) iface
, clrBk
);
3482 static HRESULT WINAPI
ImageListImpl_GetBkColor(IImageList
*iface
, COLORREF
*pclr
)
3484 *pclr
= ImageList_GetBkColor((HIMAGELIST
) iface
);
3488 static HRESULT WINAPI
ImageListImpl_BeginDrag(IImageList
*iface
, int iTrack
,
3489 int dxHotspot
, int dyHotspot
)
3491 return ImageList_BeginDrag((HIMAGELIST
) iface
, iTrack
, dxHotspot
, dyHotspot
) ? S_OK
: E_FAIL
;
3494 static HRESULT WINAPI
ImageListImpl_EndDrag(IImageList
*iface
)
3496 ImageList_EndDrag();
3500 static HRESULT WINAPI
ImageListImpl_DragEnter(IImageList
*iface
, HWND hwndLock
,
3503 return ImageList_DragEnter(hwndLock
, x
, y
) ? S_OK
: E_FAIL
;
3506 static HRESULT WINAPI
ImageListImpl_DragLeave(IImageList
*iface
, HWND hwndLock
)
3508 return ImageList_DragLeave(hwndLock
) ? S_OK
: E_FAIL
;
3511 static HRESULT WINAPI
ImageListImpl_DragMove(IImageList
*iface
, int x
, int y
)
3513 return ImageList_DragMove(x
, y
) ? S_OK
: E_FAIL
;
3516 static HRESULT WINAPI
ImageListImpl_SetDragCursorImage(IImageList
*iface
,
3517 IUnknown
*punk
, int iDrag
, int dxHotspot
, int dyHotspot
)
3519 IImageList
*iml2
= NULL
;
3525 /* TODO: Add test for IID_ImageList2 too */
3526 if (FAILED(IImageList_QueryInterface(punk
, &IID_IImageList
,
3530 ret
= ImageList_SetDragCursorImage((HIMAGELIST
) iml2
, iDrag
, dxHotspot
,
3533 IImageList_Release(iml2
);
3535 return ret
? S_OK
: E_FAIL
;
3538 static HRESULT WINAPI
ImageListImpl_DragShowNolock(IImageList
*iface
, BOOL fShow
)
3540 return ImageList_DragShowNolock(fShow
) ? S_OK
: E_FAIL
;
3543 static HRESULT WINAPI
ImageListImpl_GetDragImage(IImageList
*iface
, POINT
*ppt
,
3544 POINT
*pptHotspot
, REFIID riid
, PVOID
*ppv
)
3546 HRESULT ret
= E_FAIL
;
3552 hNew
= ImageList_GetDragImage(ppt
, pptHotspot
);
3554 /* Get the interface for the new image list */
3557 IImageList
*idrag
= (IImageList
*)hNew
;
3559 ret
= HIMAGELIST_QueryInterface(hNew
, riid
, ppv
);
3560 IImageList_Release(idrag
);
3566 static HRESULT WINAPI
ImageListImpl_GetItemFlags(IImageList
*iface
, int i
,
3569 FIXME("STUB: %p %d %p\n", iface
, i
, dwFlags
);
3573 static HRESULT WINAPI
ImageListImpl_GetOverlayImage(IImageList
*iface
, int iOverlay
,
3576 HIMAGELIST This
= (HIMAGELIST
) iface
;
3579 if ((iOverlay
< 0) || (iOverlay
> This
->cCurImage
))
3582 for (i
= 0; i
< MAX_OVERLAYIMAGE
; i
++)
3584 if (This
->nOvlIdx
[i
] == iOverlay
)
3595 static const IImageListVtbl ImageListImpl_Vtbl
= {
3596 ImageListImpl_QueryInterface
,
3597 ImageListImpl_AddRef
,
3598 ImageListImpl_Release
,
3600 ImageListImpl_ReplaceIcon
,
3601 ImageListImpl_SetOverlayImage
,
3602 ImageListImpl_Replace
,
3603 ImageListImpl_AddMasked
,
3605 ImageListImpl_Remove
,
3606 ImageListImpl_GetIcon
,
3607 ImageListImpl_GetImageInfo
,
3609 ImageListImpl_Merge
,
3610 ImageListImpl_Clone
,
3611 ImageListImpl_GetImageRect
,
3612 ImageListImpl_GetIconSize
,
3613 ImageListImpl_SetIconSize
,
3614 ImageListImpl_GetImageCount
,
3615 ImageListImpl_SetImageCount
,
3616 ImageListImpl_SetBkColor
,
3617 ImageListImpl_GetBkColor
,
3618 ImageListImpl_BeginDrag
,
3619 ImageListImpl_EndDrag
,
3620 ImageListImpl_DragEnter
,
3621 ImageListImpl_DragLeave
,
3622 ImageListImpl_DragMove
,
3623 ImageListImpl_SetDragCursorImage
,
3624 ImageListImpl_DragShowNolock
,
3625 ImageListImpl_GetDragImage
,
3626 ImageListImpl_GetItemFlags
,
3627 ImageListImpl_GetOverlayImage
3630 static BOOL
is_valid(HIMAGELIST himl
)
3635 valid
= himl
&& himl
->lpVtbl
== &ImageListImpl_Vtbl
;
3645 /*************************************************************************
3646 * HIMAGELIST_QueryInterface [COMCTL32.@]
3648 * Returns a pointer to an IImageList or IImageList2 object for the given
3652 * himl [I] Image list handle.
3653 * riid [I] Identifier of the requested interface.
3654 * ppv [O] Returns the address of the pointer requested, or NULL.
3658 * Failure: Error value.
3661 HIMAGELIST_QueryInterface (HIMAGELIST himl
, REFIID riid
, void **ppv
)
3663 TRACE("(%p,%s,%p)\n", himl
, debugstr_guid(riid
), ppv
);
3664 return IImageList_QueryInterface((IImageList
*) himl
, riid
, ppv
);
3667 static HRESULT
ImageListImpl_CreateInstance(const IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
3672 TRACE("(%p,%s,%p)\n", pUnkOuter
, debugstr_guid(iid
), ppv
);
3676 if (pUnkOuter
) return CLASS_E_NOAGGREGATION
;
3678 This
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct _IMAGELIST
));
3679 if (!This
) return E_OUTOFMEMORY
;
3681 This
->lpVtbl
= &ImageListImpl_Vtbl
;
3684 ret
= IUnknown_QueryInterface((IUnknown
*)This
, iid
, ppv
);
3685 IUnknown_Release((IUnknown
*)This
);