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 IImageList2 IImageList2_iface
; /* 00: IImageList vtable */
65 INT cCurImage
; /* 04: ImageCount */
66 INT cMaxImage
; /* 08: maximages */
67 INT cGrow
; /* 0C: cGrow */
71 UINT flags
; /* 1C: flags */
72 COLORREF clrFg
; /* 20: foreground color */
73 COLORREF clrBk
; /* 24: background color */
76 HBITMAP hbmImage
; /* 28: images Bitmap */
77 HBITMAP hbmMask
; /* 2C: masks Bitmap */
78 HDC hdcImage
; /* 30: images MemDC */
79 HDC hdcMask
; /* 34: masks MemDC */
80 INT nOvlIdx
[MAX_OVERLAYIMAGE
]; /* 38: overlay images index */
82 /* not yet found out */
89 LONG ref
; /* reference count */
92 #define IMAGELIST_MAGIC 0x53414D58
94 /* Header used by ImageList_Read() and ImageList_Write() */
96 typedef struct _ILHEAD
111 /* internal image list data used for Drag & Drop operations */
116 HIMAGELIST himlNoCursor
;
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, 0, FALSE
, 0 };
131 static inline HIMAGELIST
impl_from_IImageList2(IImageList2
*iface
)
133 return CONTAINING_RECORD(iface
, struct _IMAGELIST
, IImageList2_iface
);
136 static HBITMAP
ImageList_CreateImage(HDC hdc
, HIMAGELIST himl
, UINT count
);
137 static HRESULT
ImageListImpl_CreateInstance(const IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
);
138 static BOOL
is_valid(HIMAGELIST himl
);
141 * An imagelist with N images is tiled like this:
153 static inline UINT
imagelist_height( UINT count
)
155 return ((count
+ TILE_COUNT
- 1)/TILE_COUNT
);
158 static inline void imagelist_point_from_index( HIMAGELIST himl
, UINT index
, LPPOINT pt
)
160 pt
->x
= (index
%TILE_COUNT
) * himl
->cx
;
161 pt
->y
= (index
/TILE_COUNT
) * himl
->cy
;
164 static inline void imagelist_get_bitmap_size( HIMAGELIST himl
, UINT count
, SIZE
*sz
)
166 sz
->cx
= himl
->cx
* TILE_COUNT
;
167 sz
->cy
= imagelist_height( count
) * himl
->cy
;
170 static inline int get_dib_stride( int width
, int bpp
)
172 return ((width
* bpp
+ 31) >> 3) & ~3;
175 static inline int get_dib_image_size( const BITMAPINFO
*info
)
177 return get_dib_stride( info
->bmiHeader
.biWidth
, info
->bmiHeader
.biBitCount
)
178 * abs( info
->bmiHeader
.biHeight
);
182 * imagelist_copy_images()
184 * Copies a block of count images from offset src in the list to offset dest.
185 * Images are copied a row at at time. Assumes hdcSrc and hdcDest are different.
187 static inline void imagelist_copy_images( HIMAGELIST himl
, HDC hdcSrc
, HDC hdcDest
,
188 UINT src
, UINT count
, UINT dest
)
194 for ( i
=0; i
<TILE_COUNT
; i
++ )
196 imagelist_point_from_index( himl
, src
+i
, &ptSrc
);
197 imagelist_point_from_index( himl
, dest
+i
, &ptDest
);
199 sz
.cy
= himl
->cy
* imagelist_height( count
- i
);
201 BitBlt( hdcDest
, ptDest
.x
, ptDest
.y
, sz
.cx
, sz
.cy
,
202 hdcSrc
, ptSrc
.x
, ptSrc
.y
, SRCCOPY
);
206 static void add_dib_bits( HIMAGELIST himl
, int pos
, int count
, int width
, int height
,
207 BITMAPINFO
*info
, BITMAPINFO
*mask_info
, DWORD
*bits
, BYTE
*mask_bits
)
211 int stride
= info
->bmiHeader
.biWidth
;
212 int mask_stride
= (info
->bmiHeader
.biWidth
+ 31) / 32 * 4;
214 for (n
= 0; n
< count
; n
++)
216 BOOL has_alpha
= FALSE
;
218 imagelist_point_from_index( himl
, pos
+ n
, &pt
);
220 /* check if bitmap has an alpha channel */
221 for (i
= 0; i
< height
&& !has_alpha
; i
++)
222 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
223 if ((has_alpha
= ((bits
[i
* stride
+ j
] & 0xff000000) != 0))) break;
225 if (!has_alpha
) /* generate alpha channel from the mask */
227 for (i
= 0; i
< height
; i
++)
228 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
229 if (!mask_info
|| !((mask_bits
[i
* mask_stride
+ j
/ 8] << (j
% 8)) & 0x80))
230 bits
[i
* stride
+ j
] |= 0xff000000;
232 bits
[i
* stride
+ j
] = 0;
236 himl
->has_alpha
[pos
+ n
] = 1;
238 if (mask_info
&& himl
->hbmMask
) /* generate the mask from the alpha channel */
240 for (i
= 0; i
< height
; i
++)
241 for (j
= n
* width
; j
< (n
+ 1) * width
; j
++)
242 if ((bits
[i
* stride
+ j
] >> 24) > 25) /* more than 10% alpha */
243 mask_bits
[i
* mask_stride
+ j
/ 8] &= ~(0x80 >> (j
% 8));
245 mask_bits
[i
* mask_stride
+ j
/ 8] |= 0x80 >> (j
% 8);
248 StretchDIBits( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
249 n
* width
, 0, width
, height
, bits
, info
, DIB_RGB_COLORS
, SRCCOPY
);
251 StretchDIBits( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
252 n
* width
, 0, width
, height
, mask_bits
, mask_info
, DIB_RGB_COLORS
, SRCCOPY
);
256 /* add images with an alpha channel when the image list is 32 bpp */
257 static BOOL
add_with_alpha( HIMAGELIST himl
, HDC hdc
, int pos
, int count
,
258 int width
, int height
, HBITMAP hbmImage
, HBITMAP hbmMask
)
262 BITMAPINFO
*info
, *mask_info
= NULL
;
264 BYTE
*mask_bits
= NULL
;
267 if (!GetObjectW( hbmImage
, sizeof(bm
), &bm
)) return FALSE
;
269 /* if either the imagelist or the source bitmap don't have an alpha channel, bail out now */
270 if (!himl
->has_alpha
) return FALSE
;
271 if (bm
.bmBitsPixel
!= 32) return FALSE
;
273 SelectObject( hdc
, hbmImage
);
274 mask_width
= (bm
.bmWidth
+ 31) / 32 * 4;
276 if (!(info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )))) goto done
;
277 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
278 info
->bmiHeader
.biWidth
= bm
.bmWidth
;
279 info
->bmiHeader
.biHeight
= -height
;
280 info
->bmiHeader
.biPlanes
= 1;
281 info
->bmiHeader
.biBitCount
= 32;
282 info
->bmiHeader
.biCompression
= BI_RGB
;
283 info
->bmiHeader
.biSizeImage
= bm
.bmWidth
* height
* 4;
284 info
->bmiHeader
.biXPelsPerMeter
= 0;
285 info
->bmiHeader
.biYPelsPerMeter
= 0;
286 info
->bmiHeader
.biClrUsed
= 0;
287 info
->bmiHeader
.biClrImportant
= 0;
288 if (!(bits
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto done
;
289 if (!GetDIBits( hdc
, hbmImage
, 0, height
, bits
, info
, DIB_RGB_COLORS
)) goto done
;
293 if (!(mask_info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[2] ))))
295 mask_info
->bmiHeader
= info
->bmiHeader
;
296 mask_info
->bmiHeader
.biBitCount
= 1;
297 mask_info
->bmiHeader
.biSizeImage
= mask_width
* height
;
298 if (!(mask_bits
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, info
->bmiHeader
.biSizeImage
)))
300 if (!GetDIBits( hdc
, hbmMask
, 0, height
, mask_bits
, mask_info
, DIB_RGB_COLORS
)) goto done
;
303 add_dib_bits( himl
, pos
, count
, width
, height
, info
, mask_info
, bits
, mask_bits
);
307 HeapFree( GetProcessHeap(), 0, info
);
308 HeapFree( GetProcessHeap(), 0, mask_info
);
309 HeapFree( GetProcessHeap(), 0, bits
);
310 HeapFree( GetProcessHeap(), 0, mask_bits
);
314 /*************************************************************************
315 * IMAGELIST_InternalExpandBitmaps [Internal]
317 * Expands the bitmaps of an image list by the given number of images.
320 * himl [I] handle to image list
321 * nImageCount [I] number of images to add
327 * This function CANNOT be used to reduce the number of images.
330 IMAGELIST_InternalExpandBitmaps(HIMAGELIST himl
, INT nImageCount
)
333 HBITMAP hbmNewBitmap
, hbmNull
;
337 TRACE("%p has allocated %d, max %d, grow %d images\n", himl
, himl
->cCurImage
, himl
->cMaxImage
, himl
->cGrow
);
339 if (himl
->cCurImage
+ nImageCount
< himl
->cMaxImage
)
342 nNewCount
= himl
->cMaxImage
+ max(nImageCount
, himl
->cGrow
) + 1;
344 imagelist_get_bitmap_size(himl
, nNewCount
, &sz
);
346 TRACE("Create expanded bitmaps : himl=%p x=%d y=%d count=%d\n", himl
, sz
.cx
, sz
.cy
, nNewCount
);
347 hdcBitmap
= CreateCompatibleDC (0);
349 hbmNewBitmap
= ImageList_CreateImage(hdcBitmap
, himl
, nNewCount
);
351 if (hbmNewBitmap
== 0)
352 ERR("creating new image bitmap (x=%d y=%d)!\n", sz
.cx
, sz
.cy
);
356 hbmNull
= SelectObject (hdcBitmap
, hbmNewBitmap
);
357 BitBlt (hdcBitmap
, 0, 0, sz
.cx
, sz
.cy
,
358 himl
->hdcImage
, 0, 0, SRCCOPY
);
359 SelectObject (hdcBitmap
, hbmNull
);
361 SelectObject (himl
->hdcImage
, hbmNewBitmap
);
362 DeleteObject (himl
->hbmImage
);
363 himl
->hbmImage
= hbmNewBitmap
;
365 if (himl
->flags
& ILC_MASK
)
367 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
369 if (hbmNewBitmap
== 0)
370 ERR("creating new mask bitmap!\n");
374 hbmNull
= SelectObject (hdcBitmap
, hbmNewBitmap
);
375 BitBlt (hdcBitmap
, 0, 0, sz
.cx
, sz
.cy
,
376 himl
->hdcMask
, 0, 0, SRCCOPY
);
377 SelectObject (hdcBitmap
, hbmNull
);
379 SelectObject (himl
->hdcMask
, hbmNewBitmap
);
380 DeleteObject (himl
->hbmMask
);
381 himl
->hbmMask
= hbmNewBitmap
;
386 char *new_alpha
= HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->has_alpha
, nNewCount
);
387 if (new_alpha
) himl
->has_alpha
= new_alpha
;
390 HeapFree( GetProcessHeap(), 0, himl
->has_alpha
);
391 himl
->has_alpha
= NULL
;
395 himl
->cMaxImage
= nNewCount
;
397 DeleteDC (hdcBitmap
);
401 /*************************************************************************
402 * ImageList_Add [COMCTL32.@]
404 * Add an image or images to an image list.
407 * himl [I] handle to image list
408 * hbmImage [I] handle to image bitmap
409 * hbmMask [I] handle to mask bitmap
412 * Success: Index of the first new image.
417 ImageList_Add (HIMAGELIST himl
, HBITMAP hbmImage
, HBITMAP hbmMask
)
419 HDC hdcBitmap
, hdcTemp
= 0;
420 INT nFirstIndex
, nImageCount
, i
;
424 TRACE("himl=%p hbmimage=%p hbmmask=%p\n", himl
, hbmImage
, hbmMask
);
428 if (!GetObjectW(hbmImage
, sizeof(BITMAP
), &bmp
))
431 TRACE("himl %p, cCurImage %d, cMaxImage %d, cGrow %d, cx %d, cy %d\n",
432 himl
, himl
->cCurImage
, himl
->cMaxImage
, himl
->cGrow
, himl
->cx
, himl
->cy
);
434 nImageCount
= bmp
.bmWidth
/ himl
->cx
;
436 TRACE("%p has %d images (%d x %d)\n", hbmImage
, nImageCount
, bmp
.bmWidth
, bmp
.bmHeight
);
438 IMAGELIST_InternalExpandBitmaps(himl
, nImageCount
);
440 hdcBitmap
= CreateCompatibleDC(0);
442 SelectObject(hdcBitmap
, hbmImage
);
444 if (add_with_alpha( himl
, hdcBitmap
, himl
->cCurImage
, nImageCount
,
445 himl
->cx
, min( himl
->cy
, bmp
.bmHeight
), hbmImage
, hbmMask
))
450 hdcTemp
= CreateCompatibleDC(0);
451 SelectObject(hdcTemp
, hbmMask
);
454 for (i
=0; i
<nImageCount
; i
++)
456 imagelist_point_from_index( himl
, himl
->cCurImage
+ i
, &pt
);
458 /* Copy result to the imagelist
460 BitBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
461 hdcBitmap
, i
*himl
->cx
, 0, SRCCOPY
);
466 BitBlt( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
467 hdcTemp
, i
*himl
->cx
, 0, SRCCOPY
);
469 /* Remove the background from the image
471 BitBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, bmp
.bmHeight
,
472 himl
->hdcMask
, pt
.x
, pt
.y
, 0x220326 ); /* NOTSRCAND */
474 if (hdcTemp
) DeleteDC(hdcTemp
);
479 nFirstIndex
= himl
->cCurImage
;
480 himl
->cCurImage
+= nImageCount
;
486 /*************************************************************************
487 * ImageList_AddIcon [COMCTL32.@]
489 * Adds an icon to an image list.
492 * himl [I] handle to image list
493 * hIcon [I] handle to icon
496 * Success: index of the new image
499 #undef ImageList_AddIcon
500 INT WINAPI
ImageList_AddIcon (HIMAGELIST himl
, HICON hIcon
)
502 return ImageList_ReplaceIcon (himl
, -1, hIcon
);
506 /*************************************************************************
507 * ImageList_AddMasked [COMCTL32.@]
509 * Adds an image or images to an image list and creates a mask from the
510 * specified bitmap using the mask color.
513 * himl [I] handle to image list.
514 * hBitmap [I] handle to bitmap
515 * clrMask [I] mask color.
518 * Success: Index of the first new image.
523 ImageList_AddMasked (HIMAGELIST himl
, HBITMAP hBitmap
, COLORREF clrMask
)
525 HDC hdcMask
, hdcBitmap
;
531 TRACE("himl=%p hbitmap=%p clrmask=%x\n", himl
, hBitmap
, clrMask
);
535 if (!GetObjectW(hBitmap
, sizeof(BITMAP
), &bmp
))
538 hdcBitmap
= CreateCompatibleDC(0);
539 SelectObject(hdcBitmap
, hBitmap
);
541 /* Create a temp Mask so we can remove the background of the Image */
542 hdcMask
= CreateCompatibleDC(0);
543 hMaskBitmap
= CreateBitmap(bmp
.bmWidth
, bmp
.bmHeight
, 1, 1, NULL
);
544 SelectObject(hdcMask
, hMaskBitmap
);
546 /* create monochrome image to the mask bitmap */
547 bkColor
= (clrMask
!= CLR_DEFAULT
) ? clrMask
: GetPixel (hdcBitmap
, 0, 0);
548 SetBkColor (hdcBitmap
, bkColor
);
549 BitBlt (hdcMask
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, hdcBitmap
, 0, 0, SRCCOPY
);
552 * Remove the background from the image
554 * WINDOWS BUG ALERT!!!!!!
555 * The statement below should not be done in common practice
556 * but this is how ImageList_AddMasked works in Windows.
557 * It overwrites the original bitmap passed, this was discovered
558 * by using the same bitmap to iterate the different styles
559 * on windows where it failed (BUT ImageList_Add is OK)
560 * This is here in case some apps rely on this bug
562 * Blt mode 0x220326 is NOTSRCAND
564 if (bmp
.bmBitsPixel
> 8) /* NOTSRCAND can't work with palettes */
566 SetBkColor(hdcBitmap
, RGB(255,255,255));
567 BitBlt(hdcBitmap
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, hdcMask
, 0, 0, 0x220326);
573 ret
= ImageList_Add( himl
, hBitmap
, hMaskBitmap
);
575 DeleteObject(hMaskBitmap
);
580 /*************************************************************************
581 * ImageList_BeginDrag [COMCTL32.@]
583 * Creates a temporary image list that contains one image. It will be used
587 * himlTrack [I] handle to the source image list
588 * iTrack [I] index of the drag image in the source image list
589 * dxHotspot [I] X position of the hot spot of the drag image
590 * dyHotspot [I] Y position of the hot spot of the drag image
598 ImageList_BeginDrag (HIMAGELIST himlTrack
, INT iTrack
,
599 INT dxHotspot
, INT dyHotspot
)
604 TRACE("(himlTrack=%p iTrack=%d dx=%d dy=%d)\n", himlTrack
, iTrack
,
605 dxHotspot
, dyHotspot
);
607 if (!is_valid(himlTrack
))
610 if (iTrack
>= himlTrack
->cCurImage
)
613 if (InternalDrag
.himl
)
619 InternalDrag
.himlNoCursor
= InternalDrag
.himl
= ImageList_Create (cx
, cy
, himlTrack
->flags
, 1, 1);
620 if (InternalDrag
.himl
== NULL
) {
621 WARN("Error creating drag image list!\n");
625 InternalDrag
.dxHotspot
= dxHotspot
;
626 InternalDrag
.dyHotspot
= dyHotspot
;
629 imagelist_point_from_index(InternalDrag
.himl
, 0, &dst
);
630 imagelist_point_from_index(himlTrack
, iTrack
, &src
);
631 BitBlt(InternalDrag
.himl
->hdcImage
, dst
.x
, dst
.y
, cx
, cy
, himlTrack
->hdcImage
, src
.x
, src
.y
,
633 BitBlt(InternalDrag
.himl
->hdcMask
, dst
.x
, dst
.y
, cx
, cy
, himlTrack
->hdcMask
, src
.x
, src
.y
,
636 InternalDrag
.himl
->cCurImage
= 1;
642 /*************************************************************************
643 * ImageList_Copy [COMCTL32.@]
645 * Copies an image of the source image list to an image of the
646 * destination image list. Images can be copied or swapped.
649 * himlDst [I] handle to the destination image list
650 * iDst [I] destination image index.
651 * himlSrc [I] handle to the source image list
652 * iSrc [I] source image index
653 * uFlags [I] flags for the copy operation
660 * Copying from one image list to another is possible. The original
661 * implementation just copies or swaps within one image list.
662 * Could this feature become a bug??? ;-)
666 ImageList_Copy (HIMAGELIST himlDst
, INT iDst
, HIMAGELIST himlSrc
,
667 INT iSrc
, UINT uFlags
)
671 TRACE("himlDst=%p iDst=%d himlSrc=%p iSrc=%d\n", himlDst
, iDst
, himlSrc
, iSrc
);
673 if (!is_valid(himlSrc
) || !is_valid(himlDst
))
675 if ((iDst
< 0) || (iDst
>= himlDst
->cCurImage
))
677 if ((iSrc
< 0) || (iSrc
>= himlSrc
->cCurImage
))
680 imagelist_point_from_index( himlDst
, iDst
, &ptDst
);
681 imagelist_point_from_index( himlSrc
, iSrc
, &ptSrc
);
683 if (uFlags
& ILCF_SWAP
) {
686 HBITMAP hbmTempImage
, hbmTempMask
;
688 hdcBmp
= CreateCompatibleDC (0);
690 /* create temporary bitmaps */
691 hbmTempImage
= CreateBitmap (himlSrc
->cx
, himlSrc
->cy
, 1,
692 himlSrc
->uBitsPixel
, NULL
);
693 hbmTempMask
= CreateBitmap (himlSrc
->cx
, himlSrc
->cy
, 1,
696 /* copy (and stretch) destination to temporary bitmaps.(save) */
698 SelectObject (hdcBmp
, hbmTempImage
);
699 StretchBlt (hdcBmp
, 0, 0, himlSrc
->cx
, himlSrc
->cy
,
700 himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
703 SelectObject (hdcBmp
, hbmTempMask
);
704 StretchBlt (hdcBmp
, 0, 0, himlSrc
->cx
, himlSrc
->cy
,
705 himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
708 /* copy (and stretch) source to destination */
710 StretchBlt (himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
711 himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
714 StretchBlt (himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
715 himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
718 /* copy (without stretching) temporary bitmaps to source (restore) */
720 BitBlt (himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
721 hdcBmp
, 0, 0, SRCCOPY
);
724 BitBlt (himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
725 hdcBmp
, 0, 0, SRCCOPY
);
726 /* delete temporary bitmaps */
727 DeleteObject (hbmTempMask
);
728 DeleteObject (hbmTempImage
);
733 StretchBlt (himlDst
->hdcImage
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
734 himlSrc
->hdcImage
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
738 StretchBlt (himlDst
->hdcMask
, ptDst
.x
, ptDst
.y
, himlDst
->cx
, himlDst
->cy
,
739 himlSrc
->hdcMask
, ptSrc
.x
, ptSrc
.y
, himlSrc
->cx
, himlSrc
->cy
,
747 /*************************************************************************
748 * ImageList_Create [COMCTL32.@]
750 * Creates a new image list.
753 * cx [I] image height
755 * flags [I] creation flags
756 * cInitial [I] initial number of images in the image list
757 * cGrow [I] number of images by which image list grows
760 * Success: Handle to the created image list
764 ImageList_Create (INT cx
, INT cy
, UINT flags
,
765 INT cInitial
, INT cGrow
)
770 UINT ilc
= (flags
& 0xFE);
771 static const WORD aBitBlend25
[] =
772 {0xAA, 0x00, 0x55, 0x00, 0xAA, 0x00, 0x55, 0x00};
774 static const WORD aBitBlend50
[] =
775 {0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA};
777 TRACE("(%d %d 0x%x %d %d)\n", cx
, cy
, flags
, cInitial
, cGrow
);
779 if (cx
< 0 || cy
< 0) return NULL
;
780 if (!((flags
&ILC_COLORDDB
) == ILC_COLORDDB
) && (cx
== 0 || cy
== 0)) return NULL
;
782 /* Create the IImageList interface for the image list */
783 if (FAILED(ImageListImpl_CreateInstance(NULL
, &IID_IImageList
, (void **)&himl
)))
786 cGrow
= (WORD
)((max( cGrow
, 1 ) + 3) & ~3);
790 /* Windows doesn't limit the size here, but X11 doesn't let us allocate such huge bitmaps */
791 WARN( "grow %d too large, limiting to 256\n", cGrow
);
798 himl
->cMaxImage
= cInitial
+ 1;
799 himl
->cInitial
= cInitial
;
801 himl
->clrFg
= CLR_DEFAULT
;
802 himl
->clrBk
= CLR_NONE
;
804 /* initialize overlay mask indices */
805 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
806 himl
->nOvlIdx
[nCount
] = -1;
808 /* Create Image & Mask DCs */
809 himl
->hdcImage
= CreateCompatibleDC (0);
812 if (himl
->flags
& ILC_MASK
){
813 himl
->hdcMask
= CreateCompatibleDC(0);
818 /* Default to ILC_COLOR4 if none of the ILC_COLOR* flags are specified */
819 if (ilc
== ILC_COLOR
)
822 himl
->flags
|= ILC_COLOR4
;
825 if (ilc
>= ILC_COLOR4
&& ilc
<= ILC_COLOR32
)
826 himl
->uBitsPixel
= ilc
;
828 himl
->uBitsPixel
= (UINT
)GetDeviceCaps (himl
->hdcImage
, BITSPIXEL
);
830 if (himl
->cMaxImage
> 0) {
831 himl
->hbmImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
832 SelectObject(himl
->hdcImage
, himl
->hbmImage
);
836 if ((himl
->cMaxImage
> 0) && (himl
->flags
& ILC_MASK
)) {
839 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
840 himl
->hbmMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
841 if (himl
->hbmMask
== 0) {
842 ERR("Error creating mask bitmap!\n");
845 SelectObject(himl
->hdcMask
, himl
->hbmMask
);
850 if (ilc
== ILC_COLOR32
)
851 himl
->has_alpha
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->cMaxImage
);
853 himl
->has_alpha
= NULL
;
855 /* create blending brushes */
856 hbmTemp
= CreateBitmap (8, 8, 1, 1, aBitBlend25
);
857 himl
->hbrBlend25
= CreatePatternBrush (hbmTemp
);
858 DeleteObject (hbmTemp
);
860 hbmTemp
= CreateBitmap (8, 8, 1, 1, aBitBlend50
);
861 himl
->hbrBlend50
= CreatePatternBrush (hbmTemp
);
862 DeleteObject (hbmTemp
);
864 TRACE("created imagelist %p\n", himl
);
868 ImageList_Destroy(himl
);
873 /*************************************************************************
874 * ImageList_Destroy [COMCTL32.@]
876 * Destroys an image list.
879 * himl [I] handle to image list
887 ImageList_Destroy (HIMAGELIST himl
)
892 IImageList_Release((IImageList
*) himl
);
897 /*************************************************************************
898 * ImageList_DragEnter [COMCTL32.@]
900 * Locks window update and displays the drag image at the given position.
903 * hwndLock [I] handle of the window that owns the drag image.
904 * x [I] X position of the drag image.
905 * y [I] Y position of the drag image.
912 * The position of the drag image is relative to the window, not
917 ImageList_DragEnter (HWND hwndLock
, INT x
, INT y
)
919 TRACE("(hwnd=%p x=%d y=%d)\n", hwndLock
, x
, y
);
921 if (!is_valid(InternalDrag
.himl
))
925 InternalDrag
.hwnd
= hwndLock
;
927 InternalDrag
.hwnd
= GetDesktopWindow ();
932 /* draw the drag image and save the background */
933 if (!ImageList_DragShowNolock(TRUE
)) {
941 /*************************************************************************
942 * ImageList_DragLeave [COMCTL32.@]
944 * Unlocks window update and hides the drag image.
947 * hwndLock [I] handle of the window that owns the drag image.
955 ImageList_DragLeave (HWND hwndLock
)
957 /* As we don't save drag info in the window this can lead to problems if
958 an app does not supply the same window as DragEnter */
960 InternalDrag.hwnd = hwndLock;
962 InternalDrag.hwnd = GetDesktopWindow (); */
964 hwndLock
= GetDesktopWindow();
965 if(InternalDrag
.hwnd
!= hwndLock
)
966 FIXME("DragLeave hWnd != DragEnter hWnd\n");
968 ImageList_DragShowNolock (FALSE
);
974 /*************************************************************************
975 * ImageList_InternalDragDraw [Internal]
977 * Draws the drag image.
980 * hdc [I] device context to draw into.
981 * x [I] X position of the drag image.
982 * y [I] Y position of the drag image.
989 * The position of the drag image is relative to the window, not
995 ImageList_InternalDragDraw (HDC hdc
, INT x
, INT y
)
997 IMAGELISTDRAWPARAMS imldp
;
999 ZeroMemory (&imldp
, sizeof(imldp
));
1000 imldp
.cbSize
= sizeof(imldp
);
1001 imldp
.himl
= InternalDrag
.himl
;
1006 imldp
.rgbBk
= CLR_DEFAULT
;
1007 imldp
.rgbFg
= CLR_DEFAULT
;
1008 imldp
.fStyle
= ILD_NORMAL
;
1009 imldp
.fState
= ILS_ALPHA
;
1011 ImageList_DrawIndirect (&imldp
);
1014 /*************************************************************************
1015 * ImageList_DragMove [COMCTL32.@]
1017 * Moves the drag image.
1020 * x [I] X position of the drag image.
1021 * y [I] Y position of the drag image.
1028 * The position of the drag image is relative to the window, not
1033 ImageList_DragMove (INT x
, INT y
)
1035 TRACE("(x=%d y=%d)\n", x
, y
);
1037 if (!is_valid(InternalDrag
.himl
))
1040 /* draw/update the drag image */
1041 if (InternalDrag
.bShow
) {
1045 HBITMAP hbmOffScreen
;
1046 INT origNewX
, origNewY
;
1047 INT origOldX
, origOldY
;
1048 INT origRegX
, origRegY
;
1049 INT sizeRegX
, sizeRegY
;
1052 /* calculate the update region */
1053 origNewX
= x
- InternalDrag
.dxHotspot
;
1054 origNewY
= y
- InternalDrag
.dyHotspot
;
1055 origOldX
= InternalDrag
.x
- InternalDrag
.dxHotspot
;
1056 origOldY
= InternalDrag
.y
- InternalDrag
.dyHotspot
;
1057 origRegX
= min(origNewX
, origOldX
);
1058 origRegY
= min(origNewY
, origOldY
);
1059 sizeRegX
= InternalDrag
.himl
->cx
+ abs(x
- InternalDrag
.x
);
1060 sizeRegY
= InternalDrag
.himl
->cy
+ abs(y
- InternalDrag
.y
);
1062 hdcDrag
= GetDCEx(InternalDrag
.hwnd
, 0,
1063 DCX_WINDOW
| DCX_CACHE
| DCX_LOCKWINDOWUPDATE
);
1064 hdcOffScreen
= CreateCompatibleDC(hdcDrag
);
1065 hdcBg
= CreateCompatibleDC(hdcDrag
);
1067 hbmOffScreen
= CreateCompatibleBitmap(hdcDrag
, sizeRegX
, sizeRegY
);
1068 SelectObject(hdcOffScreen
, hbmOffScreen
);
1069 SelectObject(hdcBg
, InternalDrag
.hbmBg
);
1071 /* get the actual background of the update region */
1072 BitBlt(hdcOffScreen
, 0, 0, sizeRegX
, sizeRegY
, hdcDrag
,
1073 origRegX
, origRegY
, SRCCOPY
);
1074 /* erase the old image */
1075 BitBlt(hdcOffScreen
, origOldX
- origRegX
, origOldY
- origRegY
,
1076 InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
, hdcBg
, 0, 0,
1078 /* save the background */
1079 BitBlt(hdcBg
, 0, 0, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1080 hdcOffScreen
, origNewX
- origRegX
, origNewY
- origRegY
, SRCCOPY
);
1081 /* draw the image */
1082 ImageList_InternalDragDraw(hdcOffScreen
, origNewX
- origRegX
,
1083 origNewY
- origRegY
);
1084 /* draw the update region to the screen */
1085 BitBlt(hdcDrag
, origRegX
, origRegY
, sizeRegX
, sizeRegY
,
1086 hdcOffScreen
, 0, 0, SRCCOPY
);
1089 DeleteDC(hdcOffScreen
);
1090 DeleteObject(hbmOffScreen
);
1091 ReleaseDC(InternalDrag
.hwnd
, hdcDrag
);
1094 /* update the image position */
1102 /*************************************************************************
1103 * ImageList_DragShowNolock [COMCTL32.@]
1105 * Shows or hides the drag image.
1108 * bShow [I] TRUE shows the drag image, FALSE hides it.
1116 ImageList_DragShowNolock (BOOL bShow
)
1122 if (!is_valid(InternalDrag
.himl
))
1125 TRACE("bShow=0x%X!\n", bShow
);
1127 /* DragImage is already visible/hidden */
1128 if ((InternalDrag
.bShow
&& bShow
) || (!InternalDrag
.bShow
&& !bShow
)) {
1132 /* position of the origin of the DragImage */
1133 x
= InternalDrag
.x
- InternalDrag
.dxHotspot
;
1134 y
= InternalDrag
.y
- InternalDrag
.dyHotspot
;
1136 hdcDrag
= GetDCEx (InternalDrag
.hwnd
, 0,
1137 DCX_WINDOW
| DCX_CACHE
| DCX_LOCKWINDOWUPDATE
);
1142 hdcBg
= CreateCompatibleDC(hdcDrag
);
1143 if (!InternalDrag
.hbmBg
) {
1144 InternalDrag
.hbmBg
= CreateCompatibleBitmap(hdcDrag
,
1145 InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
);
1147 SelectObject(hdcBg
, InternalDrag
.hbmBg
);
1150 /* save the background */
1151 BitBlt(hdcBg
, 0, 0, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1152 hdcDrag
, x
, y
, SRCCOPY
);
1153 /* show the image */
1154 ImageList_InternalDragDraw(hdcDrag
, x
, y
);
1156 /* hide the image */
1157 BitBlt(hdcDrag
, x
, y
, InternalDrag
.himl
->cx
, InternalDrag
.himl
->cy
,
1158 hdcBg
, 0, 0, SRCCOPY
);
1161 InternalDrag
.bShow
= !InternalDrag
.bShow
;
1164 ReleaseDC (InternalDrag
.hwnd
, hdcDrag
);
1169 /*************************************************************************
1170 * ImageList_Draw [COMCTL32.@]
1175 * himl [I] handle to image list
1177 * hdc [I] handle to device context
1180 * fStyle [I] drawing flags
1191 ImageList_Draw (HIMAGELIST himl
, INT i
, HDC hdc
, INT x
, INT y
, UINT fStyle
)
1193 return ImageList_DrawEx (himl
, i
, hdc
, x
, y
, 0, 0,
1194 CLR_DEFAULT
, CLR_DEFAULT
, fStyle
);
1198 /*************************************************************************
1199 * ImageList_DrawEx [COMCTL32.@]
1201 * Draws an image and allows using extended drawing features.
1204 * himl [I] handle to image list
1206 * hdc [I] handle to device context
1211 * rgbBk [I] background color
1212 * rgbFg [I] foreground color
1213 * fStyle [I] drawing flags
1220 * Calls ImageList_DrawIndirect.
1223 * ImageList_DrawIndirect.
1227 ImageList_DrawEx (HIMAGELIST himl
, INT i
, HDC hdc
, INT x
, INT y
,
1228 INT dx
, INT dy
, COLORREF rgbBk
, COLORREF rgbFg
,
1231 IMAGELISTDRAWPARAMS imldp
;
1233 ZeroMemory (&imldp
, sizeof(imldp
));
1234 imldp
.cbSize
= sizeof(imldp
);
1242 imldp
.rgbBk
= rgbBk
;
1243 imldp
.rgbFg
= rgbFg
;
1244 imldp
.fStyle
= fStyle
;
1246 return ImageList_DrawIndirect (&imldp
);
1250 static BOOL
alpha_blend_image( HIMAGELIST himl
, HDC dest_dc
, int dest_x
, int dest_y
,
1251 int src_x
, int src_y
, int cx
, int cy
, BLENDFUNCTION func
,
1252 UINT style
, COLORREF blend_col
)
1256 HBITMAP bmp
= 0, mask
= 0;
1258 void *bits
, *mask_bits
;
1262 if (!(hdc
= CreateCompatibleDC( 0 ))) return FALSE
;
1263 if (!(info
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )))) goto done
;
1264 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1265 info
->bmiHeader
.biWidth
= cx
;
1266 info
->bmiHeader
.biHeight
= cy
;
1267 info
->bmiHeader
.biPlanes
= 1;
1268 info
->bmiHeader
.biBitCount
= 32;
1269 info
->bmiHeader
.biCompression
= BI_RGB
;
1270 info
->bmiHeader
.biSizeImage
= cx
* cy
* 4;
1271 info
->bmiHeader
.biXPelsPerMeter
= 0;
1272 info
->bmiHeader
.biYPelsPerMeter
= 0;
1273 info
->bmiHeader
.biClrUsed
= 0;
1274 info
->bmiHeader
.biClrImportant
= 0;
1275 if (!(bmp
= CreateDIBSection( himl
->hdcImage
, info
, DIB_RGB_COLORS
, &bits
, 0, 0 ))) goto done
;
1276 SelectObject( hdc
, bmp
);
1277 BitBlt( hdc
, 0, 0, cx
, cy
, himl
->hdcImage
, src_x
, src_y
, SRCCOPY
);
1279 if (blend_col
!= CLR_NONE
)
1281 BYTE r
= GetRValue( blend_col
);
1282 BYTE g
= GetGValue( blend_col
);
1283 BYTE b
= GetBValue( blend_col
);
1285 if (style
& ILD_BLEND25
)
1287 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1288 *ptr
= ((*ptr
& 0xff000000) |
1289 ((((*ptr
& 0x00ff0000) * 3 + (r
<< 16)) / 4) & 0x00ff0000) |
1290 ((((*ptr
& 0x0000ff00) * 3 + (g
<< 8)) / 4) & 0x0000ff00) |
1291 ((((*ptr
& 0x000000ff) * 3 + (b
<< 0)) / 4) & 0x000000ff));
1293 else if (style
& ILD_BLEND50
)
1295 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1296 *ptr
= ((*ptr
& 0xff000000) |
1297 ((((*ptr
& 0x00ff0000) + (r
<< 16)) / 2) & 0x00ff0000) |
1298 ((((*ptr
& 0x0000ff00) + (g
<< 8)) / 2) & 0x0000ff00) |
1299 ((((*ptr
& 0x000000ff) + (b
<< 0)) / 2) & 0x000000ff));
1303 if (himl
->has_alpha
) /* we already have an alpha channel in this case */
1305 /* pre-multiply by the alpha channel */
1306 for (i
= 0, ptr
= bits
; i
< cx
* cy
; i
++, ptr
++)
1308 DWORD alpha
= *ptr
>> 24;
1309 *ptr
= ((*ptr
& 0xff000000) |
1310 (((*ptr
& 0x00ff0000) * alpha
/ 255) & 0x00ff0000) |
1311 (((*ptr
& 0x0000ff00) * alpha
/ 255) & 0x0000ff00) |
1312 (((*ptr
& 0x000000ff) * alpha
/ 255)));
1315 else if (himl
->hbmMask
)
1317 unsigned int width_bytes
= (cx
+ 31) / 32 * 4;
1318 /* generate alpha channel from the mask */
1319 info
->bmiHeader
.biBitCount
= 1;
1320 info
->bmiHeader
.biSizeImage
= width_bytes
* cy
;
1321 info
->bmiColors
[0].rgbRed
= 0;
1322 info
->bmiColors
[0].rgbGreen
= 0;
1323 info
->bmiColors
[0].rgbBlue
= 0;
1324 info
->bmiColors
[0].rgbReserved
= 0;
1325 info
->bmiColors
[1].rgbRed
= 0xff;
1326 info
->bmiColors
[1].rgbGreen
= 0xff;
1327 info
->bmiColors
[1].rgbBlue
= 0xff;
1328 info
->bmiColors
[1].rgbReserved
= 0;
1329 if (!(mask
= CreateDIBSection( himl
->hdcMask
, info
, DIB_RGB_COLORS
, &mask_bits
, 0, 0 )))
1331 SelectObject( hdc
, mask
);
1332 BitBlt( hdc
, 0, 0, cx
, cy
, himl
->hdcMask
, src_x
, src_y
, SRCCOPY
);
1333 SelectObject( hdc
, bmp
);
1334 for (i
= 0, ptr
= bits
; i
< cy
; i
++)
1335 for (j
= 0; j
< cx
; j
++, ptr
++)
1336 if ((((BYTE
*)mask_bits
)[i
* width_bytes
+ j
/ 8] << (j
% 8)) & 0x80) *ptr
= 0;
1337 else *ptr
|= 0xff000000;
1340 ret
= GdiAlphaBlend( dest_dc
, dest_x
, dest_y
, cx
, cy
, hdc
, 0, 0, cx
, cy
, func
);
1344 if (bmp
) DeleteObject( bmp
);
1345 if (mask
) DeleteObject( mask
);
1346 HeapFree( GetProcessHeap(), 0, info
);
1350 /*************************************************************************
1351 * ImageList_DrawIndirect [COMCTL32.@]
1353 * Draws an image using various parameters specified in pimldp.
1356 * pimldp [I] pointer to IMAGELISTDRAWPARAMS structure.
1364 ImageList_DrawIndirect (IMAGELISTDRAWPARAMS
*pimldp
)
1366 INT cx
, cy
, nOvlIdx
;
1367 DWORD fState
, dwRop
;
1369 COLORREF oldImageBk
, oldImageFg
;
1370 HDC hImageDC
, hImageListDC
, hMaskListDC
;
1371 HBITMAP hImageBmp
, hOldImageBmp
, hBlendMaskBmp
;
1372 BOOL bIsTransparent
, bBlend
, bResult
= FALSE
, bMask
;
1378 if (!pimldp
|| !(himl
= pimldp
->himl
)) return FALSE
;
1379 if (!is_valid(himl
)) return FALSE
;
1380 if ((pimldp
->i
< 0) || (pimldp
->i
>= himl
->cCurImage
)) return FALSE
;
1382 imagelist_point_from_index( himl
, pimldp
->i
, &pt
);
1383 pt
.x
+= pimldp
->xBitmap
;
1384 pt
.y
+= pimldp
->yBitmap
;
1386 fState
= pimldp
->cbSize
< sizeof(IMAGELISTDRAWPARAMS
) ? ILS_NORMAL
: pimldp
->fState
;
1387 fStyle
= pimldp
->fStyle
& ~ILD_OVERLAYMASK
;
1388 cx
= (pimldp
->cx
== 0) ? himl
->cx
: pimldp
->cx
;
1389 cy
= (pimldp
->cy
== 0) ? himl
->cy
: pimldp
->cy
;
1391 bIsTransparent
= (fStyle
& ILD_TRANSPARENT
);
1392 if( pimldp
->rgbBk
== CLR_NONE
)
1393 bIsTransparent
= TRUE
;
1394 if( ( pimldp
->rgbBk
== CLR_DEFAULT
) && ( himl
->clrBk
== CLR_NONE
) )
1395 bIsTransparent
= TRUE
;
1396 bMask
= (himl
->flags
& ILC_MASK
) && (fStyle
& ILD_MASK
) ;
1397 bBlend
= (fStyle
& (ILD_BLEND25
| ILD_BLEND50
) ) && !bMask
;
1399 TRACE("himl(%p) hbmMask(%p) iImage(%d) x(%d) y(%d) cx(%d) cy(%d)\n",
1400 himl
, himl
->hbmMask
, pimldp
->i
, pimldp
->x
, pimldp
->y
, cx
, cy
);
1402 /* we will use these DCs to access the images and masks in the ImageList */
1403 hImageListDC
= himl
->hdcImage
;
1404 hMaskListDC
= himl
->hdcMask
;
1406 /* these will accumulate the image and mask for the image we're drawing */
1407 hImageDC
= CreateCompatibleDC( pimldp
->hdcDst
);
1408 hImageBmp
= CreateCompatibleBitmap( pimldp
->hdcDst
, cx
, cy
);
1409 hBlendMaskBmp
= bBlend
? CreateBitmap(cx
, cy
, 1, 1, NULL
) : 0;
1411 /* Create a compatible DC. */
1412 if (!hImageListDC
|| !hImageDC
|| !hImageBmp
||
1413 (bBlend
&& !hBlendMaskBmp
) || (himl
->hbmMask
&& !hMaskListDC
))
1416 hOldImageBmp
= SelectObject(hImageDC
, hImageBmp
);
1419 * To obtain a transparent look, background color should be set
1420 * to white and foreground color to black when blitting the
1423 oldImageFg
= SetTextColor( hImageDC
, RGB( 0, 0, 0 ) );
1424 oldImageBk
= SetBkColor( hImageDC
, RGB( 0xff, 0xff, 0xff ) );
1426 has_alpha
= (himl
->has_alpha
&& himl
->has_alpha
[pimldp
->i
]);
1427 if (!bMask
&& (has_alpha
|| (fState
& ILS_ALPHA
)))
1429 COLORREF colour
, blend_col
= CLR_NONE
;
1434 blend_col
= pimldp
->rgbFg
;
1435 if (blend_col
== CLR_DEFAULT
) blend_col
= GetSysColor( COLOR_HIGHLIGHT
);
1436 else if (blend_col
== CLR_NONE
) blend_col
= GetTextColor( pimldp
->hdcDst
);
1439 func
.BlendOp
= AC_SRC_OVER
;
1440 func
.BlendFlags
= 0;
1441 func
.SourceConstantAlpha
= (fState
& ILS_ALPHA
) ? pimldp
->Frame
: 255;
1442 func
.AlphaFormat
= AC_SRC_ALPHA
;
1446 bResult
= alpha_blend_image( himl
, pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
,
1447 pt
.x
, pt
.y
, cx
, cy
, func
, fStyle
, blend_col
);
1450 colour
= pimldp
->rgbBk
;
1451 if (colour
== CLR_DEFAULT
) colour
= himl
->clrBk
;
1452 if (colour
== CLR_NONE
) colour
= GetBkColor( pimldp
->hdcDst
);
1454 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (colour
));
1455 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1456 alpha_blend_image( himl
, hImageDC
, 0, 0, pt
.x
, pt
.y
, cx
, cy
, func
, fStyle
, blend_col
);
1457 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1458 bResult
= BitBlt( pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, SRCCOPY
);
1463 * Draw the initial image
1466 if (himl
->hbmMask
) {
1467 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (GetTextColor(pimldp
->hdcDst
)));
1468 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1469 BitBlt(hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCPAINT
);
1470 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1471 if( bIsTransparent
)
1473 BitBlt ( pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, SRCAND
);
1478 hOldBrush
= SelectObject (hImageDC
, GetStockObject(BLACK_BRUSH
));
1479 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1480 SelectObject(hImageDC
, hOldBrush
);
1483 /* blend the image with the needed solid background */
1484 COLORREF colour
= RGB(0,0,0);
1486 if( !bIsTransparent
)
1488 colour
= pimldp
->rgbBk
;
1489 if( colour
== CLR_DEFAULT
)
1490 colour
= himl
->clrBk
;
1491 if( colour
== CLR_NONE
)
1492 colour
= GetBkColor(pimldp
->hdcDst
);
1495 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush (colour
));
1496 PatBlt( hImageDC
, 0, 0, cx
, cy
, PATCOPY
);
1499 BitBlt( hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCAND
);
1500 BitBlt( hImageDC
, 0, 0, cx
, cy
, hImageListDC
, pt
.x
, pt
.y
, SRCPAINT
);
1503 BitBlt( hImageDC
, 0, 0, cx
, cy
, hImageListDC
, pt
.x
, pt
.y
, SRCCOPY
);
1504 DeleteObject (SelectObject (hImageDC
, hOldBrush
));
1507 /* Time for blending, if required */
1510 COLORREF clrBlend
= pimldp
->rgbFg
;
1511 HDC hBlendMaskDC
= hImageListDC
;
1514 /* Create the blend Mask */
1515 hOldBitmap
= SelectObject(hBlendMaskDC
, hBlendMaskBmp
);
1516 hBlendBrush
= fStyle
& ILD_BLEND50
? himl
->hbrBlend50
: himl
->hbrBlend25
;
1517 hOldBrush
= SelectObject(hBlendMaskDC
, hBlendBrush
);
1518 PatBlt(hBlendMaskDC
, 0, 0, cx
, cy
, PATCOPY
);
1519 SelectObject(hBlendMaskDC
, hOldBrush
);
1521 /* Modify the blend mask if an Image Mask exist */
1523 BitBlt(hBlendMaskDC
, 0, 0, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, 0x220326); /* NOTSRCAND */
1524 BitBlt(hBlendMaskDC
, 0, 0, cx
, cy
, hBlendMaskDC
, 0, 0, NOTSRCCOPY
);
1527 /* now apply blend to the current image given the BlendMask */
1528 if (clrBlend
== CLR_DEFAULT
) clrBlend
= GetSysColor (COLOR_HIGHLIGHT
);
1529 else if (clrBlend
== CLR_NONE
) clrBlend
= GetTextColor (pimldp
->hdcDst
);
1530 hOldBrush
= SelectObject (hImageDC
, CreateSolidBrush(clrBlend
));
1531 BitBlt (hImageDC
, 0, 0, cx
, cy
, hBlendMaskDC
, 0, 0, 0xB8074A); /* PSDPxax */
1532 DeleteObject(SelectObject(hImageDC
, hOldBrush
));
1533 SelectObject(hBlendMaskDC
, hOldBitmap
);
1536 /* Now do the overlay image, if any */
1537 nOvlIdx
= (pimldp
->fStyle
& ILD_OVERLAYMASK
) >> 8;
1538 if ( (nOvlIdx
>= 1) && (nOvlIdx
<= MAX_OVERLAYIMAGE
)) {
1539 nOvlIdx
= himl
->nOvlIdx
[nOvlIdx
- 1];
1540 if ((nOvlIdx
>= 0) && (nOvlIdx
< himl
->cCurImage
)) {
1542 imagelist_point_from_index( himl
, nOvlIdx
, &ptOvl
);
1543 ptOvl
.x
+= pimldp
->xBitmap
;
1544 if (himl
->hbmMask
&& !(fStyle
& ILD_IMAGE
))
1545 BitBlt (hImageDC
, 0, 0, cx
, cy
, hMaskListDC
, ptOvl
.x
, ptOvl
.y
, SRCAND
);
1546 BitBlt (hImageDC
, 0, 0, cx
, cy
, hImageListDC
, ptOvl
.x
, ptOvl
.y
, SRCPAINT
);
1550 if (fState
& ILS_SATURATE
) FIXME("ILS_SATURATE: unimplemented!\n");
1551 if (fState
& ILS_GLOW
) FIXME("ILS_GLOW: unimplemented!\n");
1552 if (fState
& ILS_SHADOW
) FIXME("ILS_SHADOW: unimplemented!\n");
1554 if (fStyle
& ILD_PRESERVEALPHA
) FIXME("ILD_PRESERVEALPHA: unimplemented!\n");
1555 if (fStyle
& ILD_SCALE
) FIXME("ILD_SCALE: unimplemented!\n");
1556 if (fStyle
& ILD_DPISCALE
) FIXME("ILD_DPISCALE: unimplemented!\n");
1558 /* now copy the image to the screen */
1560 if (himl
->hbmMask
&& bIsTransparent
) {
1561 COLORREF oldDstFg
= SetTextColor(pimldp
->hdcDst
, RGB( 0, 0, 0 ) );
1562 COLORREF oldDstBk
= SetBkColor(pimldp
->hdcDst
, RGB( 0xff, 0xff, 0xff ));
1563 BitBlt (pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hMaskListDC
, pt
.x
, pt
.y
, SRCAND
);
1564 SetBkColor(pimldp
->hdcDst
, oldDstBk
);
1565 SetTextColor(pimldp
->hdcDst
, oldDstFg
);
1568 if (fStyle
& ILD_ROP
) dwRop
= pimldp
->dwRop
;
1569 BitBlt (pimldp
->hdcDst
, pimldp
->x
, pimldp
->y
, cx
, cy
, hImageDC
, 0, 0, dwRop
);
1573 /* cleanup the mess */
1574 SetBkColor(hImageDC
, oldImageBk
);
1575 SetTextColor(hImageDC
, oldImageFg
);
1576 SelectObject(hImageDC
, hOldImageBmp
);
1578 DeleteObject(hBlendMaskBmp
);
1579 DeleteObject(hImageBmp
);
1586 /*************************************************************************
1587 * ImageList_Duplicate [COMCTL32.@]
1589 * Duplicates an image list.
1592 * himlSrc [I] source image list handle
1595 * Success: Handle of duplicated image list.
1600 ImageList_Duplicate (HIMAGELIST himlSrc
)
1604 if (!is_valid(himlSrc
)) {
1605 ERR("Invalid image list handle!\n");
1609 himlDst
= ImageList_Create (himlSrc
->cx
, himlSrc
->cy
, himlSrc
->flags
,
1610 himlSrc
->cCurImage
, himlSrc
->cGrow
);
1616 imagelist_get_bitmap_size(himlSrc
, himlSrc
->cCurImage
, &sz
);
1617 BitBlt (himlDst
->hdcImage
, 0, 0, sz
.cx
, sz
.cy
,
1618 himlSrc
->hdcImage
, 0, 0, SRCCOPY
);
1620 if (himlDst
->hbmMask
)
1621 BitBlt (himlDst
->hdcMask
, 0, 0, sz
.cx
, sz
.cy
,
1622 himlSrc
->hdcMask
, 0, 0, SRCCOPY
);
1624 himlDst
->cCurImage
= himlSrc
->cCurImage
;
1625 if (himlSrc
->has_alpha
&& himlDst
->has_alpha
)
1626 memcpy( himlDst
->has_alpha
, himlSrc
->has_alpha
, himlDst
->cCurImage
);
1632 /*************************************************************************
1633 * ImageList_EndDrag [COMCTL32.@]
1635 * Finishes a drag operation.
1646 ImageList_EndDrag (void)
1648 /* cleanup the InternalDrag struct */
1649 InternalDrag
.hwnd
= 0;
1650 if (InternalDrag
.himl
!= InternalDrag
.himlNoCursor
)
1651 ImageList_Destroy (InternalDrag
.himlNoCursor
);
1652 ImageList_Destroy (InternalDrag
.himl
);
1653 InternalDrag
.himlNoCursor
= InternalDrag
.himl
= 0;
1656 InternalDrag
.dxHotspot
= 0;
1657 InternalDrag
.dyHotspot
= 0;
1658 InternalDrag
.bShow
= FALSE
;
1659 DeleteObject(InternalDrag
.hbmBg
);
1660 InternalDrag
.hbmBg
= 0;
1664 /*************************************************************************
1665 * ImageList_GetBkColor [COMCTL32.@]
1667 * Returns the background color of an image list.
1670 * himl [I] Image list handle.
1673 * Success: background color
1678 ImageList_GetBkColor (HIMAGELIST himl
)
1680 return himl
? himl
->clrBk
: CLR_NONE
;
1684 /*************************************************************************
1685 * ImageList_GetDragImage [COMCTL32.@]
1687 * Returns the handle to the internal drag image list.
1690 * ppt [O] Pointer to the drag position. Can be NULL.
1691 * pptHotspot [O] Pointer to the position of the hot spot. Can be NULL.
1694 * Success: Handle of the drag image list.
1699 ImageList_GetDragImage (POINT
*ppt
, POINT
*pptHotspot
)
1701 if (is_valid(InternalDrag
.himl
)) {
1703 ppt
->x
= InternalDrag
.x
;
1704 ppt
->y
= InternalDrag
.y
;
1707 pptHotspot
->x
= InternalDrag
.dxHotspot
;
1708 pptHotspot
->y
= InternalDrag
.dyHotspot
;
1710 return (InternalDrag
.himl
);
1717 /*************************************************************************
1718 * ImageList_GetFlags [COMCTL32.@]
1720 * Gets the flags of the specified image list.
1723 * himl [I] Handle to image list
1733 ImageList_GetFlags(HIMAGELIST himl
)
1735 TRACE("%p\n", himl
);
1737 return is_valid(himl
) ? himl
->flags
: 0;
1741 /*************************************************************************
1742 * ImageList_GetIcon [COMCTL32.@]
1744 * Creates an icon from a masked image of an image list.
1747 * himl [I] handle to image list
1749 * flags [I] drawing style flags
1752 * Success: icon handle
1757 ImageList_GetIcon (HIMAGELIST himl
, INT i
, UINT fStyle
)
1761 HBITMAP hOldDstBitmap
;
1765 TRACE("%p %d %d\n", himl
, i
, fStyle
);
1766 if (!is_valid(himl
) || (i
< 0) || (i
>= himl
->cCurImage
)) return NULL
;
1772 /* create colour bitmap */
1774 ii
.hbmColor
= CreateCompatibleBitmap(hdcDst
, himl
->cx
, himl
->cy
);
1775 ReleaseDC(0, hdcDst
);
1777 hdcDst
= CreateCompatibleDC(0);
1779 imagelist_point_from_index( himl
, i
, &pt
);
1782 ii
.hbmMask
= CreateBitmap (himl
->cx
, himl
->cy
, 1, 1, NULL
);
1783 hOldDstBitmap
= SelectObject (hdcDst
, ii
.hbmMask
);
1784 if (himl
->hbmMask
) {
1785 BitBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
,
1786 himl
->hdcMask
, pt
.x
, pt
.y
, SRCCOPY
);
1789 PatBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
, BLACKNESS
);
1792 SelectObject (hdcDst
, ii
.hbmColor
);
1793 BitBlt (hdcDst
, 0, 0, himl
->cx
, himl
->cy
,
1794 himl
->hdcImage
, pt
.x
, pt
.y
, SRCCOPY
);
1797 * CreateIconIndirect requires us to deselect the bitmaps from
1798 * the DCs before calling
1800 SelectObject(hdcDst
, hOldDstBitmap
);
1802 hIcon
= CreateIconIndirect (&ii
);
1804 DeleteObject (ii
.hbmMask
);
1805 DeleteObject (ii
.hbmColor
);
1812 /*************************************************************************
1813 * ImageList_GetIconSize [COMCTL32.@]
1815 * Retrieves the size of an image in an image list.
1818 * himl [I] handle to image list
1819 * cx [O] pointer to the image width.
1820 * cy [O] pointer to the image height.
1827 * All images in an image list have the same size.
1831 ImageList_GetIconSize (HIMAGELIST himl
, INT
*cx
, INT
*cy
)
1833 if (!is_valid(himl
) || !cx
|| !cy
)
1843 /*************************************************************************
1844 * ImageList_GetImageCount [COMCTL32.@]
1846 * Returns the number of images in an image list.
1849 * himl [I] handle to image list
1852 * Success: Number of images.
1857 ImageList_GetImageCount (HIMAGELIST himl
)
1859 if (!is_valid(himl
))
1862 return himl
->cCurImage
;
1866 /*************************************************************************
1867 * ImageList_GetImageInfo [COMCTL32.@]
1869 * Returns information about an image in an image list.
1872 * himl [I] handle to image list
1874 * pImageInfo [O] pointer to the image information
1882 ImageList_GetImageInfo (HIMAGELIST himl
, INT i
, IMAGEINFO
*pImageInfo
)
1886 if (!is_valid(himl
) || (pImageInfo
== NULL
))
1888 if ((i
< 0) || (i
>= himl
->cCurImage
))
1891 pImageInfo
->hbmImage
= himl
->hbmImage
;
1892 pImageInfo
->hbmMask
= himl
->hbmMask
;
1894 imagelist_point_from_index( himl
, i
, &pt
);
1895 pImageInfo
->rcImage
.top
= pt
.y
;
1896 pImageInfo
->rcImage
.bottom
= pt
.y
+ himl
->cy
;
1897 pImageInfo
->rcImage
.left
= pt
.x
;
1898 pImageInfo
->rcImage
.right
= pt
.x
+ himl
->cx
;
1904 /*************************************************************************
1905 * ImageList_GetImageRect [COMCTL32.@]
1907 * Retrieves the rectangle of the specified image in an image list.
1910 * himl [I] handle to image list
1912 * lpRect [O] pointer to the image rectangle
1919 * This is an UNDOCUMENTED function!!!
1923 ImageList_GetImageRect (HIMAGELIST himl
, INT i
, LPRECT lpRect
)
1927 if (!is_valid(himl
) || (lpRect
== NULL
))
1929 if ((i
< 0) || (i
>= himl
->cCurImage
))
1932 imagelist_point_from_index( himl
, i
, &pt
);
1933 lpRect
->left
= pt
.x
;
1935 lpRect
->right
= pt
.x
+ himl
->cx
;
1936 lpRect
->bottom
= pt
.y
+ himl
->cy
;
1942 /*************************************************************************
1943 * ImageList_LoadImage [COMCTL32.@]
1944 * ImageList_LoadImageA [COMCTL32.@]
1946 * Creates an image list from a bitmap, icon or cursor.
1948 * See ImageList_LoadImageW.
1952 ImageList_LoadImageA (HINSTANCE hi
, LPCSTR lpbmp
, INT cx
, INT cGrow
,
1953 COLORREF clrMask
, UINT uType
, UINT uFlags
)
1959 if (IS_INTRESOURCE(lpbmp
))
1960 return ImageList_LoadImageW(hi
, (LPCWSTR
)lpbmp
, cx
, cGrow
, clrMask
,
1963 len
= MultiByteToWideChar(CP_ACP
, 0, lpbmp
, -1, NULL
, 0);
1964 lpbmpW
= Alloc(len
* sizeof(WCHAR
));
1965 MultiByteToWideChar(CP_ACP
, 0, lpbmp
, -1, lpbmpW
, len
);
1967 himl
= ImageList_LoadImageW(hi
, lpbmpW
, cx
, cGrow
, clrMask
, uType
, uFlags
);
1973 /*************************************************************************
1974 * ImageList_LoadImageW [COMCTL32.@]
1976 * Creates an image list from a bitmap, icon or cursor.
1979 * hi [I] instance handle
1980 * lpbmp [I] name or id of the image
1981 * cx [I] width of each image
1982 * cGrow [I] number of images to expand
1983 * clrMask [I] mask color
1984 * uType [I] type of image to load
1985 * uFlags [I] loading flags
1988 * Success: handle to the loaded image list
1996 ImageList_LoadImageW (HINSTANCE hi
, LPCWSTR lpbmp
, INT cx
, INT cGrow
,
1997 COLORREF clrMask
, UINT uType
, UINT uFlags
)
1999 HIMAGELIST himl
= NULL
;
2003 handle
= LoadImageW (hi
, lpbmp
, uType
, 0, 0, uFlags
);
2005 WARN("Couldn't load image\n");
2009 if (uType
== IMAGE_BITMAP
) {
2013 if (GetObjectW (handle
, sizeof(dib
), &dib
) == sizeof(BITMAP
)) color
= ILC_COLOR
;
2014 else color
= dib
.dsBm
.bmBitsPixel
;
2016 /* To match windows behavior, if cx is set to zero and
2017 the flag DI_DEFAULTSIZE is specified, cx becomes the
2018 system metric value for icons. If the flag is not specified
2019 the function sets the size to the height of the bitmap */
2022 if (uFlags
& DI_DEFAULTSIZE
)
2023 cx
= GetSystemMetrics (SM_CXICON
);
2025 cx
= dib
.dsBm
.bmHeight
;
2028 nImageCount
= dib
.dsBm
.bmWidth
/ cx
;
2030 himl
= ImageList_Create (cx
, dib
.dsBm
.bmHeight
, ILC_MASK
| color
, nImageCount
, cGrow
);
2032 DeleteObject (handle
);
2035 ImageList_AddMasked (himl
, handle
, clrMask
);
2037 else if ((uType
== IMAGE_ICON
) || (uType
== IMAGE_CURSOR
)) {
2041 GetIconInfo (handle
, &ii
);
2042 GetObjectW (ii
.hbmColor
, sizeof(BITMAP
), &bmp
);
2043 himl
= ImageList_Create (bmp
.bmWidth
, bmp
.bmHeight
,
2044 ILC_MASK
| ILC_COLOR
, 1, cGrow
);
2046 DeleteObject (ii
.hbmColor
);
2047 DeleteObject (ii
.hbmMask
);
2048 DeleteObject (handle
);
2051 ImageList_Add (himl
, ii
.hbmColor
, ii
.hbmMask
);
2052 DeleteObject (ii
.hbmColor
);
2053 DeleteObject (ii
.hbmMask
);
2056 DeleteObject (handle
);
2062 /*************************************************************************
2063 * ImageList_Merge [COMCTL32.@]
2065 * Create an image list containing a merged image from two image lists.
2068 * himl1 [I] handle to first image list
2069 * i1 [I] first image index
2070 * himl2 [I] handle to second image list
2071 * i2 [I] second image index
2072 * dx [I] X offset of the second image relative to the first.
2073 * dy [I] Y offset of the second image relative to the first.
2076 * Success: The newly created image list. It contains a single image
2077 * consisting of the second image merged with the first.
2078 * Failure: NULL, if either himl1 or himl2 is invalid.
2081 * - The returned image list should be deleted by the caller using
2082 * ImageList_Destroy() when it is no longer required.
2083 * - If either i1 or i2 is not a valid image index, they will be treated
2087 ImageList_Merge (HIMAGELIST himl1
, INT i1
, HIMAGELIST himl2
, INT i2
,
2090 HIMAGELIST himlDst
= NULL
;
2092 INT xOff1
, yOff1
, xOff2
, yOff2
;
2096 TRACE("(himl1=%p i1=%d himl2=%p i2=%d dx=%d dy=%d)\n", himl1
, i1
, himl2
,
2099 if (!is_valid(himl1
) || !is_valid(himl2
))
2103 cxDst
= max (himl1
->cx
, dx
+ himl2
->cx
);
2108 cxDst
= max (himl2
->cx
, himl1
->cx
- dx
);
2113 cxDst
= max (himl1
->cx
, himl2
->cx
);
2119 cyDst
= max (himl1
->cy
, dy
+ himl2
->cy
);
2124 cyDst
= max (himl2
->cy
, himl1
->cy
- dy
);
2129 cyDst
= max (himl1
->cy
, himl2
->cy
);
2134 newFlags
= (himl1
->flags
> himl2
->flags
? himl1
->flags
: himl2
->flags
) & ILC_COLORDDB
;
2135 if (newFlags
== ILC_COLORDDB
&& (himl1
->flags
& ILC_COLORDDB
) == ILC_COLOR16
)
2136 newFlags
= ILC_COLOR16
; /* this is what native (at least v5) does, don't know why */
2137 himlDst
= ImageList_Create (cxDst
, cyDst
, ILC_MASK
| newFlags
, 1, 1);
2141 imagelist_point_from_index( himl1
, i1
, &pt1
);
2142 imagelist_point_from_index( himl2
, i2
, &pt2
);
2145 BitBlt (himlDst
->hdcImage
, 0, 0, cxDst
, cyDst
, himl1
->hdcImage
, 0, 0, BLACKNESS
);
2146 if (i1
>= 0 && i1
< himl1
->cCurImage
)
2147 BitBlt (himlDst
->hdcImage
, xOff1
, yOff1
, himl1
->cx
, himl1
->cy
, himl1
->hdcImage
, pt1
.x
, pt1
.y
, SRCCOPY
);
2148 if (i2
>= 0 && i2
< himl2
->cCurImage
)
2150 if (himl2
->flags
& ILC_MASK
)
2152 BitBlt (himlDst
->hdcImage
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcMask
, pt2
.x
, pt2
.y
, SRCAND
);
2153 BitBlt (himlDst
->hdcImage
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcImage
, pt2
.x
, pt2
.y
, SRCPAINT
);
2156 BitBlt (himlDst
->hdcImage
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcImage
, pt2
.x
, pt2
.y
, SRCCOPY
);
2160 BitBlt (himlDst
->hdcMask
, 0, 0, cxDst
, cyDst
, himl1
->hdcMask
, 0, 0, WHITENESS
);
2161 if (i1
>= 0 && i1
< himl1
->cCurImage
)
2162 BitBlt (himlDst
->hdcMask
, xOff1
, yOff1
, himl1
->cx
, himl1
->cy
, himl1
->hdcMask
, pt1
.x
, pt1
.y
, SRCCOPY
);
2163 if (i2
>= 0 && i2
< himl2
->cCurImage
)
2164 BitBlt (himlDst
->hdcMask
, xOff2
, yOff2
, himl2
->cx
, himl2
->cy
, himl2
->hdcMask
, pt2
.x
, pt2
.y
, SRCAND
);
2166 himlDst
->cCurImage
= 1;
2173 /* helper for ImageList_Read, see comments below */
2174 static void *read_bitmap(LPSTREAM pstm
, BITMAPINFO
*bmi
)
2176 BITMAPFILEHEADER bmfh
;
2177 int bitsperpixel
, palspace
;
2180 if (FAILED(IStream_Read ( pstm
, &bmfh
, sizeof(bmfh
), NULL
)))
2183 if (bmfh
.bfType
!= (('M'<<8)|'B'))
2186 if (FAILED(IStream_Read ( pstm
, &bmi
->bmiHeader
, sizeof(bmi
->bmiHeader
), NULL
)))
2189 if ((bmi
->bmiHeader
.biSize
!= sizeof(bmi
->bmiHeader
)))
2192 TRACE("width %u, height %u, planes %u, bpp %u\n",
2193 bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
,
2194 bmi
->bmiHeader
.biPlanes
, bmi
->bmiHeader
.biBitCount
);
2196 bitsperpixel
= bmi
->bmiHeader
.biPlanes
* bmi
->bmiHeader
.biBitCount
;
2197 if (bitsperpixel
<=8)
2198 palspace
= (1<<bitsperpixel
)*sizeof(RGBQUAD
);
2202 bmi
->bmiHeader
.biSizeImage
= get_dib_image_size( bmi
);
2204 /* read the palette right after the end of the bitmapinfoheader */
2205 if (palspace
&& FAILED(IStream_Read(pstm
, bmi
->bmiColors
, palspace
, NULL
)))
2208 bits
= Alloc(bmi
->bmiHeader
.biSizeImage
);
2209 if (!bits
) return NULL
;
2211 if (FAILED(IStream_Read(pstm
, bits
, bmi
->bmiHeader
.biSizeImage
, NULL
)))
2219 /*************************************************************************
2220 * ImageList_Read [COMCTL32.@]
2222 * Reads an image list from a stream.
2225 * pstm [I] pointer to a stream
2228 * Success: handle to image list
2231 * The format is like this:
2232 * ILHEAD ilheadstruct;
2234 * for the color image part:
2235 * BITMAPFILEHEADER bmfh;
2236 * BITMAPINFOHEADER bmih;
2237 * only if it has a palette:
2238 * RGBQUAD rgbs[nr_of_paletted_colors];
2240 * BYTE colorbits[imagesize];
2242 * the following only if the ILC_MASK bit is set in ILHEAD.ilFlags:
2243 * BITMAPFILEHEADER bmfh_mask;
2244 * BITMAPINFOHEADER bmih_mask;
2245 * only if it has a palette (it usually does not):
2246 * RGBQUAD rgbs[nr_of_paletted_colors];
2248 * BYTE maskbits[imagesize];
2250 HIMAGELIST WINAPI
ImageList_Read (LPSTREAM pstm
)
2252 char image_buf
[sizeof(BITMAPINFOHEADER
) + sizeof(RGBQUAD
) * 256];
2253 char mask_buf
[sizeof(BITMAPINFOHEADER
) + sizeof(RGBQUAD
) * 256];
2254 BITMAPINFO
*image_info
= (BITMAPINFO
*)image_buf
;
2255 BITMAPINFO
*mask_info
= (BITMAPINFO
*)mask_buf
;
2256 void *image_bits
, *mask_bits
= NULL
;
2261 TRACE("%p\n", pstm
);
2263 if (FAILED(IStream_Read (pstm
, &ilHead
, sizeof(ILHEAD
), NULL
)))
2265 if (ilHead
.usMagic
!= (('L' << 8) | 'I'))
2267 if (ilHead
.usVersion
!= 0x101) /* probably version? */
2270 TRACE("cx %u, cy %u, flags 0x%04x, cCurImage %u, cMaxImage %u\n",
2271 ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
2273 himl
= ImageList_Create(ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
2277 if (!(image_bits
= read_bitmap(pstm
, image_info
)))
2279 WARN("failed to read bitmap from stream\n");
2282 if (ilHead
.flags
& ILC_MASK
)
2284 if (!(mask_bits
= read_bitmap(pstm
, mask_info
)))
2286 WARN("failed to read mask bitmap from stream\n");
2290 else mask_info
= NULL
;
2292 if (himl
->has_alpha
&& image_info
->bmiHeader
.biBitCount
== 32)
2294 DWORD
*ptr
= image_bits
;
2295 BYTE
*mask_ptr
= mask_bits
;
2296 int stride
= himl
->cy
* image_info
->bmiHeader
.biWidth
;
2298 if (image_info
->bmiHeader
.biHeight
> 0) /* bottom-up */
2300 ptr
+= image_info
->bmiHeader
.biHeight
* image_info
->bmiHeader
.biWidth
- stride
;
2301 mask_ptr
+= (image_info
->bmiHeader
.biHeight
* image_info
->bmiHeader
.biWidth
- stride
) / 8;
2303 image_info
->bmiHeader
.biHeight
= himl
->cy
;
2305 else image_info
->bmiHeader
.biHeight
= -himl
->cy
;
2307 for (i
= 0; i
< ilHead
.cCurImage
; i
+= TILE_COUNT
)
2309 add_dib_bits( himl
, i
, min( ilHead
.cCurImage
- i
, TILE_COUNT
),
2310 himl
->cx
, himl
->cy
, image_info
, mask_info
, ptr
, mask_ptr
);
2312 mask_ptr
+= stride
/ 8;
2317 StretchDIBits( himl
->hdcImage
, 0, 0, image_info
->bmiHeader
.biWidth
, image_info
->bmiHeader
.biHeight
,
2318 0, 0, image_info
->bmiHeader
.biWidth
, image_info
->bmiHeader
.biHeight
,
2319 image_bits
, image_info
, DIB_RGB_COLORS
, SRCCOPY
);
2321 StretchDIBits( himl
->hdcMask
, 0, 0, mask_info
->bmiHeader
.biWidth
, mask_info
->bmiHeader
.biHeight
,
2322 0, 0, mask_info
->bmiHeader
.biWidth
, mask_info
->bmiHeader
.biHeight
,
2323 mask_bits
, mask_info
, DIB_RGB_COLORS
, SRCCOPY
);
2328 himl
->cCurImage
= ilHead
.cCurImage
;
2329 himl
->cMaxImage
= ilHead
.cMaxImage
;
2331 ImageList_SetBkColor(himl
,ilHead
.bkcolor
);
2333 ImageList_SetOverlayImage(himl
,ilHead
.ovls
[i
],i
+1);
2338 /*************************************************************************
2339 * ImageList_Remove [COMCTL32.@]
2341 * Removes an image from an image list
2344 * himl [I] image list handle
2351 * FIXME: as the image list storage test shows, native comctl32 simply shifts
2352 * images without creating a new bitmap.
2355 ImageList_Remove (HIMAGELIST himl
, INT i
)
2357 HBITMAP hbmNewImage
, hbmNewMask
;
2361 TRACE("(himl=%p i=%d)\n", himl
, i
);
2363 if (!is_valid(himl
)) {
2364 ERR("Invalid image list handle!\n");
2368 if ((i
< -1) || (i
>= himl
->cCurImage
)) {
2369 TRACE("index out of range! %d\n", i
);
2377 if (himl
->cCurImage
== 0) {
2378 /* remove all on empty ImageList is allowed */
2379 TRACE("remove all on empty ImageList!\n");
2383 himl
->cMaxImage
= himl
->cGrow
;
2384 himl
->cCurImage
= 0;
2385 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
2386 himl
->nOvlIdx
[nCount
] = -1;
2388 if (himl
->has_alpha
)
2390 HeapFree( GetProcessHeap(), 0, himl
->has_alpha
);
2391 himl
->has_alpha
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->cMaxImage
);
2394 hbmNewImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2395 SelectObject (himl
->hdcImage
, hbmNewImage
);
2396 DeleteObject (himl
->hbmImage
);
2397 himl
->hbmImage
= hbmNewImage
;
2399 if (himl
->hbmMask
) {
2401 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2402 hbmNewMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2403 SelectObject (himl
->hdcMask
, hbmNewMask
);
2404 DeleteObject (himl
->hbmMask
);
2405 himl
->hbmMask
= hbmNewMask
;
2409 /* delete one image */
2410 TRACE("Remove single image! %d\n", i
);
2412 /* create new bitmap(s) */
2413 TRACE(" - Number of images: %d / %d (Old/New)\n",
2414 himl
->cCurImage
, himl
->cCurImage
- 1);
2416 hbmNewImage
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2418 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2420 hbmNewMask
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2422 hbmNewMask
= 0; /* Just to keep compiler happy! */
2424 hdcBmp
= CreateCompatibleDC (0);
2426 /* copy all images and masks prior to the "removed" image */
2428 TRACE("Pre image copy: Copy %d images\n", i
);
2430 SelectObject (hdcBmp
, hbmNewImage
);
2431 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBmp
, 0, i
, 0 );
2433 if (himl
->hbmMask
) {
2434 SelectObject (hdcBmp
, hbmNewMask
);
2435 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBmp
, 0, i
, 0 );
2439 /* copy all images and masks behind the removed image */
2440 if (i
< himl
->cCurImage
- 1) {
2441 TRACE("Post image copy!\n");
2443 SelectObject (hdcBmp
, hbmNewImage
);
2444 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBmp
, i
+ 1,
2445 (himl
->cCurImage
- i
), i
);
2447 if (himl
->hbmMask
) {
2448 SelectObject (hdcBmp
, hbmNewMask
);
2449 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBmp
, i
+ 1,
2450 (himl
->cCurImage
- i
), i
);
2456 /* delete old images and insert new ones */
2457 SelectObject (himl
->hdcImage
, hbmNewImage
);
2458 DeleteObject (himl
->hbmImage
);
2459 himl
->hbmImage
= hbmNewImage
;
2460 if (himl
->hbmMask
) {
2461 SelectObject (himl
->hdcMask
, hbmNewMask
);
2462 DeleteObject (himl
->hbmMask
);
2463 himl
->hbmMask
= hbmNewMask
;
2473 /*************************************************************************
2474 * ImageList_Replace [COMCTL32.@]
2476 * Replaces an image in an image list with a new image.
2479 * himl [I] handle to image list
2481 * hbmImage [I] handle to image bitmap
2482 * hbmMask [I] handle to mask bitmap. Can be NULL.
2490 ImageList_Replace (HIMAGELIST himl
, INT i
, HBITMAP hbmImage
,
2497 TRACE("%p %d %p %p\n", himl
, i
, hbmImage
, hbmMask
);
2499 if (!is_valid(himl
)) {
2500 ERR("Invalid image list handle!\n");
2504 if ((i
>= himl
->cMaxImage
) || (i
< 0)) {
2505 ERR("Invalid image index!\n");
2509 if (!GetObjectW(hbmImage
, sizeof(BITMAP
), &bmp
))
2512 hdcImage
= CreateCompatibleDC (0);
2515 SelectObject (hdcImage
, hbmImage
);
2517 if (add_with_alpha( himl
, hdcImage
, i
, 1, bmp
.bmWidth
, bmp
.bmHeight
, hbmImage
, hbmMask
))
2520 imagelist_point_from_index(himl
, i
, &pt
);
2521 StretchBlt (himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
2522 hdcImage
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, SRCCOPY
);
2527 HBITMAP hOldBitmapTemp
;
2529 hdcTemp
= CreateCompatibleDC(0);
2530 hOldBitmapTemp
= SelectObject(hdcTemp
, hbmMask
);
2532 StretchBlt (himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
,
2533 hdcTemp
, 0, 0, bmp
.bmWidth
, bmp
.bmHeight
, SRCCOPY
);
2534 SelectObject(hdcTemp
, hOldBitmapTemp
);
2537 /* Remove the background from the image
2539 BitBlt (himl
->hdcImage
, pt
.x
, pt
.y
, bmp
.bmWidth
, bmp
.bmHeight
,
2540 himl
->hdcMask
, pt
.x
, pt
.y
, 0x220326); /* NOTSRCAND */
2544 DeleteDC (hdcImage
);
2550 /*************************************************************************
2551 * ImageList_ReplaceIcon [COMCTL32.@]
2553 * Replaces an image in an image list using an icon.
2556 * himl [I] handle to image list
2558 * hIcon [I] handle to icon
2561 * Success: index of the replaced image
2566 ImageList_ReplaceIcon (HIMAGELIST himl
, INT nIndex
, HICON hIcon
)
2574 TRACE("(%p %d %p)\n", himl
, nIndex
, hIcon
);
2576 if (!is_valid(himl
)) {
2577 ERR("invalid image list\n");
2580 if ((nIndex
>= himl
->cMaxImage
) || (nIndex
< -1)) {
2581 ERR("invalid image index %d / %d\n", nIndex
, himl
->cMaxImage
);
2585 hBestFitIcon
= CopyImage(
2588 LR_COPYFROMRESOURCE
);
2589 /* the above will fail if the icon wasn't loaded from a resource, so try
2590 * again without LR_COPYFROMRESOURCE flag */
2592 hBestFitIcon
= CopyImage(
2600 if (himl
->cCurImage
+ 1 >= himl
->cMaxImage
)
2601 IMAGELIST_InternalExpandBitmaps(himl
, 1);
2603 nIndex
= himl
->cCurImage
;
2607 if (himl
->has_alpha
&& GetIconInfo (hBestFitIcon
, &ii
))
2609 HDC hdcImage
= CreateCompatibleDC( 0 );
2610 GetObjectW (ii
.hbmMask
, sizeof(BITMAP
), &bmp
);
2614 UINT height
= bmp
.bmHeight
/ 2;
2615 HDC hdcMask
= CreateCompatibleDC( 0 );
2616 HBITMAP color
= CreateBitmap( bmp
.bmWidth
, height
, 1, 1, NULL
);
2617 SelectObject( hdcImage
, color
);
2618 SelectObject( hdcMask
, ii
.hbmMask
);
2619 BitBlt( hdcImage
, 0, 0, bmp
.bmWidth
, height
, hdcMask
, 0, height
, SRCCOPY
);
2620 ret
= add_with_alpha( himl
, hdcImage
, nIndex
, 1, bmp
.bmWidth
, height
, color
, ii
.hbmMask
);
2621 DeleteDC( hdcMask
);
2622 DeleteObject( color
);
2624 else ret
= add_with_alpha( himl
, hdcImage
, nIndex
, 1, bmp
.bmWidth
, bmp
.bmHeight
,
2625 ii
.hbmColor
, ii
.hbmMask
);
2627 DeleteDC( hdcImage
);
2628 DeleteObject (ii
.hbmMask
);
2629 if (ii
.hbmColor
) DeleteObject (ii
.hbmColor
);
2633 imagelist_point_from_index(himl
, nIndex
, &pt
);
2637 DrawIconEx( himl
->hdcImage
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_IMAGE
);
2638 PatBlt( himl
->hdcMask
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
, WHITENESS
);
2639 DrawIconEx( himl
->hdcMask
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_MASK
);
2643 COLORREF color
= himl
->clrBk
!= CLR_NONE
? himl
->clrBk
: comctl32_color
.clrWindow
;
2644 HBRUSH brush
= CreateSolidBrush( GetNearestColor( himl
->hdcImage
, color
));
2646 SelectObject( himl
->hdcImage
, brush
);
2647 PatBlt( himl
->hdcImage
, pt
.x
, pt
.y
, himl
->cx
, himl
->cy
, PATCOPY
);
2648 SelectObject( himl
->hdcImage
, GetStockObject(BLACK_BRUSH
) );
2649 DeleteObject( brush
);
2650 DrawIconEx( himl
->hdcImage
, pt
.x
, pt
.y
, hBestFitIcon
, himl
->cx
, himl
->cy
, 0, 0, DI_NORMAL
);
2654 DestroyIcon(hBestFitIcon
);
2656 TRACE("Insert index = %d, himl->cCurImage = %d\n", nIndex
, himl
->cCurImage
);
2661 /*************************************************************************
2662 * ImageList_SetBkColor [COMCTL32.@]
2664 * Sets the background color of an image list.
2667 * himl [I] handle to image list
2668 * clrBk [I] background color
2671 * Success: previous background color
2676 ImageList_SetBkColor (HIMAGELIST himl
, COLORREF clrBk
)
2680 if (!is_valid(himl
))
2683 clrOldBk
= himl
->clrBk
;
2684 himl
->clrBk
= clrBk
;
2689 /*************************************************************************
2690 * ImageList_SetDragCursorImage [COMCTL32.@]
2692 * Combines the specified image with the current drag image
2695 * himlDrag [I] handle to drag image list
2696 * iDrag [I] drag image index
2697 * dxHotspot [I] X position of the hot spot
2698 * dyHotspot [I] Y position of the hot spot
2705 * - The names dxHotspot, dyHotspot are misleading because they have nothing
2706 * to do with a hotspot but are only the offset of the origin of the new
2707 * image relative to the origin of the old image.
2709 * - When this function is called and the drag image is visible, a
2710 * short flickering occurs but this matches the Win9x behavior. It is
2711 * possible to fix the flickering using code like in ImageList_DragMove.
2715 ImageList_SetDragCursorImage (HIMAGELIST himlDrag
, INT iDrag
,
2716 INT dxHotspot
, INT dyHotspot
)
2718 HIMAGELIST himlTemp
;
2721 if (!is_valid(InternalDrag
.himl
) || !is_valid(himlDrag
))
2724 TRACE(" dxH=%d dyH=%d nX=%d nY=%d\n",
2725 dxHotspot
, dyHotspot
, InternalDrag
.dxHotspot
, InternalDrag
.dyHotspot
);
2727 visible
= InternalDrag
.bShow
;
2729 himlTemp
= ImageList_Merge (InternalDrag
.himlNoCursor
, 0, himlDrag
, iDrag
,
2730 dxHotspot
, dyHotspot
);
2733 /* hide the drag image */
2734 ImageList_DragShowNolock(FALSE
);
2736 if ((InternalDrag
.himl
->cx
!= himlTemp
->cx
) ||
2737 (InternalDrag
.himl
->cy
!= himlTemp
->cy
)) {
2738 /* the size of the drag image changed, invalidate the buffer */
2739 DeleteObject(InternalDrag
.hbmBg
);
2740 InternalDrag
.hbmBg
= 0;
2743 if (InternalDrag
.himl
!= InternalDrag
.himlNoCursor
)
2744 ImageList_Destroy (InternalDrag
.himl
);
2745 InternalDrag
.himl
= himlTemp
;
2748 /* show the drag image */
2749 ImageList_DragShowNolock(TRUE
);
2756 /*************************************************************************
2757 * ImageList_SetFilter [COMCTL32.@]
2759 * Sets a filter (or does something completely different)!!???
2760 * It removes 12 Bytes from the stack (3 Parameters).
2763 * himl [I] SHOULD be a handle to image list
2764 * i [I] COULD be an index?
2769 * Failure: FALSE ???
2772 * This is an UNDOCUMENTED function!!!!
2777 ImageList_SetFilter (HIMAGELIST himl
, INT i
, DWORD dwFilter
)
2779 FIXME("(%p 0x%x 0x%x):empty stub!\n", himl
, i
, dwFilter
);
2785 /*************************************************************************
2786 * ImageList_SetFlags [COMCTL32.@]
2788 * Sets the image list flags.
2791 * himl [I] Handle to image list
2792 * flags [I] Flags to set
2802 ImageList_SetFlags(HIMAGELIST himl
, DWORD flags
)
2804 FIXME("(%p %08x):empty stub\n", himl
, flags
);
2809 /*************************************************************************
2810 * ImageList_SetIconSize [COMCTL32.@]
2812 * Sets the image size of the bitmap and deletes all images.
2815 * himl [I] handle to image list
2816 * cx [I] image width
2817 * cy [I] image height
2825 ImageList_SetIconSize (HIMAGELIST himl
, INT cx
, INT cy
)
2830 if (!is_valid(himl
))
2833 /* remove all images */
2834 himl
->cMaxImage
= himl
->cInitial
+ 1;
2835 himl
->cCurImage
= 0;
2839 /* initialize overlay mask indices */
2840 for (nCount
= 0; nCount
< MAX_OVERLAYIMAGE
; nCount
++)
2841 himl
->nOvlIdx
[nCount
] = -1;
2843 hbmNew
= ImageList_CreateImage(himl
->hdcImage
, himl
, himl
->cMaxImage
);
2844 SelectObject (himl
->hdcImage
, hbmNew
);
2845 DeleteObject (himl
->hbmImage
);
2846 himl
->hbmImage
= hbmNew
;
2848 if (himl
->hbmMask
) {
2850 imagelist_get_bitmap_size(himl
, himl
->cMaxImage
, &sz
);
2851 hbmNew
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2852 SelectObject (himl
->hdcMask
, hbmNew
);
2853 DeleteObject (himl
->hbmMask
);
2854 himl
->hbmMask
= hbmNew
;
2861 /*************************************************************************
2862 * ImageList_SetImageCount [COMCTL32.@]
2864 * Resizes an image list to the specified number of images.
2867 * himl [I] handle to image list
2868 * iImageCount [I] number of images in the image list
2876 ImageList_SetImageCount (HIMAGELIST himl
, UINT iImageCount
)
2879 HBITMAP hbmNewBitmap
, hbmOld
;
2880 INT nNewCount
, nCopyCount
;
2882 TRACE("%p %d\n",himl
,iImageCount
);
2884 if (!is_valid(himl
))
2887 nNewCount
= iImageCount
+ 1;
2888 nCopyCount
= min(himl
->cCurImage
, iImageCount
);
2890 hdcBitmap
= CreateCompatibleDC (0);
2892 hbmNewBitmap
= ImageList_CreateImage(hdcBitmap
, himl
, nNewCount
);
2894 if (hbmNewBitmap
!= 0)
2896 hbmOld
= SelectObject (hdcBitmap
, hbmNewBitmap
);
2897 imagelist_copy_images( himl
, himl
->hdcImage
, hdcBitmap
, 0, nCopyCount
, 0 );
2898 SelectObject (hdcBitmap
, hbmOld
);
2900 /* FIXME: delete 'empty' image space? */
2902 SelectObject (himl
->hdcImage
, hbmNewBitmap
);
2903 DeleteObject (himl
->hbmImage
);
2904 himl
->hbmImage
= hbmNewBitmap
;
2907 ERR("Could not create new image bitmap!\n");
2912 imagelist_get_bitmap_size( himl
, nNewCount
, &sz
);
2913 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, 1, NULL
);
2914 if (hbmNewBitmap
!= 0)
2916 hbmOld
= SelectObject (hdcBitmap
, hbmNewBitmap
);
2917 imagelist_copy_images( himl
, himl
->hdcMask
, hdcBitmap
, 0, nCopyCount
, 0 );
2918 SelectObject (hdcBitmap
, hbmOld
);
2920 /* FIXME: delete 'empty' image space? */
2922 SelectObject (himl
->hdcMask
, hbmNewBitmap
);
2923 DeleteObject (himl
->hbmMask
);
2924 himl
->hbmMask
= hbmNewBitmap
;
2927 ERR("Could not create new mask bitmap!\n");
2930 DeleteDC (hdcBitmap
);
2932 if (himl
->has_alpha
)
2934 char *new_alpha
= HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, himl
->has_alpha
, nNewCount
);
2935 if (new_alpha
) himl
->has_alpha
= new_alpha
;
2938 HeapFree( GetProcessHeap(), 0, himl
->has_alpha
);
2939 himl
->has_alpha
= NULL
;
2943 /* Update max image count and current image count */
2944 himl
->cMaxImage
= nNewCount
;
2945 himl
->cCurImage
= iImageCount
;
2951 /*************************************************************************
2952 * ImageList_SetOverlayImage [COMCTL32.@]
2954 * Assigns an overlay mask index to an existing image in an image list.
2957 * himl [I] handle to image list
2958 * iImage [I] image index
2959 * iOverlay [I] overlay mask index
2967 ImageList_SetOverlayImage (HIMAGELIST himl
, INT iImage
, INT iOverlay
)
2969 if (!is_valid(himl
))
2971 if ((iOverlay
< 1) || (iOverlay
> MAX_OVERLAYIMAGE
))
2973 if ((iImage
!=-1) && ((iImage
< 0) || (iImage
> himl
->cCurImage
)))
2975 himl
->nOvlIdx
[iOverlay
- 1] = iImage
;
2981 /* helper for ImageList_Write - write bitmap to pstm
2982 * currently everything is written as 24 bit RGB, except masks
2985 _write_bitmap(HBITMAP hBitmap
, LPSTREAM pstm
)
2987 LPBITMAPFILEHEADER bmfh
;
2988 LPBITMAPINFOHEADER bmih
;
2989 LPBYTE data
= NULL
, lpBits
;
2991 INT bitCount
, sizeImage
, offBits
, totalSize
;
2993 BOOL result
= FALSE
;
2995 if (!GetObjectW(hBitmap
, sizeof(BITMAP
), &bm
))
2998 bitCount
= bm
.bmBitsPixel
;
2999 sizeImage
= get_dib_stride(bm
.bmWidth
, bitCount
) * bm
.bmHeight
;
3001 totalSize
= sizeof(BITMAPFILEHEADER
) + sizeof(BITMAPINFOHEADER
);
3003 totalSize
+= (1 << bitCount
) * sizeof(RGBQUAD
);
3004 offBits
= totalSize
;
3005 totalSize
+= sizeImage
;
3007 data
= Alloc(totalSize
);
3008 bmfh
= (LPBITMAPFILEHEADER
)data
;
3009 bmih
= (LPBITMAPINFOHEADER
)(data
+ sizeof(BITMAPFILEHEADER
));
3010 lpBits
= data
+ offBits
;
3012 /* setup BITMAPFILEHEADER */
3013 bmfh
->bfType
= (('M' << 8) | 'B');
3014 bmfh
->bfSize
= offBits
;
3015 bmfh
->bfReserved1
= 0;
3016 bmfh
->bfReserved2
= 0;
3017 bmfh
->bfOffBits
= offBits
;
3019 /* setup BITMAPINFOHEADER */
3020 bmih
->biSize
= sizeof(BITMAPINFOHEADER
);
3021 bmih
->biWidth
= bm
.bmWidth
;
3022 bmih
->biHeight
= bm
.bmHeight
;
3024 bmih
->biBitCount
= bitCount
;
3025 bmih
->biCompression
= BI_RGB
;
3026 bmih
->biSizeImage
= sizeImage
;
3027 bmih
->biXPelsPerMeter
= 0;
3028 bmih
->biYPelsPerMeter
= 0;
3029 bmih
->biClrUsed
= 0;
3030 bmih
->biClrImportant
= 0;
3033 result
= GetDIBits(xdc
, hBitmap
, 0, bm
.bmHeight
, lpBits
, (BITMAPINFO
*)bmih
, DIB_RGB_COLORS
) == bm
.bmHeight
;
3038 TRACE("width %u, height %u, planes %u, bpp %u\n",
3039 bmih
->biWidth
, bmih
->biHeight
,
3040 bmih
->biPlanes
, bmih
->biBitCount
);
3042 if(FAILED(IStream_Write(pstm
, data
, totalSize
, NULL
)))
3054 /*************************************************************************
3055 * ImageList_Write [COMCTL32.@]
3057 * Writes an image list to a stream.
3060 * himl [I] handle to image list
3061 * pstm [O] Pointer to a stream.
3072 ImageList_Write (HIMAGELIST himl
, LPSTREAM pstm
)
3077 TRACE("%p %p\n", himl
, pstm
);
3079 if (!is_valid(himl
))
3082 ilHead
.usMagic
= (('L' << 8) | 'I');
3083 ilHead
.usVersion
= 0x101;
3084 ilHead
.cCurImage
= himl
->cCurImage
;
3085 ilHead
.cMaxImage
= himl
->cMaxImage
;
3086 ilHead
.cGrow
= himl
->cGrow
;
3087 ilHead
.cx
= himl
->cx
;
3088 ilHead
.cy
= himl
->cy
;
3089 ilHead
.bkcolor
= himl
->clrBk
;
3090 ilHead
.flags
= himl
->flags
;
3091 for(i
= 0; i
< 4; i
++) {
3092 ilHead
.ovls
[i
] = himl
->nOvlIdx
[i
];
3095 TRACE("cx %u, cy %u, flags 0x04%x, cCurImage %u, cMaxImage %u\n",
3096 ilHead
.cx
, ilHead
.cy
, ilHead
.flags
, ilHead
.cCurImage
, ilHead
.cMaxImage
);
3098 if(FAILED(IStream_Write(pstm
, &ilHead
, sizeof(ILHEAD
), NULL
)))
3101 /* write the bitmap */
3102 if(!_write_bitmap(himl
->hbmImage
, pstm
))
3105 /* write the mask if we have one */
3106 if(himl
->flags
& ILC_MASK
) {
3107 if(!_write_bitmap(himl
->hbmMask
, pstm
))
3115 static HBITMAP
ImageList_CreateImage(HDC hdc
, HIMAGELIST himl
, UINT count
)
3117 HBITMAP hbmNewBitmap
;
3118 UINT ilc
= (himl
->flags
& 0xFE);
3121 imagelist_get_bitmap_size( himl
, count
, &sz
);
3123 if ((ilc
>= ILC_COLOR4
&& ilc
<= ILC_COLOR32
) || ilc
== ILC_COLOR
)
3125 char buffer
[sizeof(BITMAPINFOHEADER
) + 256 * sizeof(RGBQUAD
)];
3126 BITMAPINFO
*bmi
= (BITMAPINFO
*)buffer
;
3128 TRACE("Creating DIBSection %d x %d, %d Bits per Pixel\n",
3129 sz
.cx
, sz
.cy
, himl
->uBitsPixel
);
3131 memset( buffer
, 0, sizeof(buffer
) );
3132 bmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
3133 bmi
->bmiHeader
.biWidth
= sz
.cx
;
3134 bmi
->bmiHeader
.biHeight
= sz
.cy
;
3135 bmi
->bmiHeader
.biPlanes
= 1;
3136 bmi
->bmiHeader
.biBitCount
= himl
->uBitsPixel
;
3137 bmi
->bmiHeader
.biCompression
= BI_RGB
;
3139 if (himl
->uBitsPixel
<= ILC_COLOR8
)
3141 /* retrieve the default color map */
3142 HBITMAP tmp
= CreateBitmap( 1, 1, 1, 1, NULL
);
3143 GetDIBits( hdc
, tmp
, 0, 0, NULL
, bmi
, DIB_RGB_COLORS
);
3144 DeleteObject( tmp
);
3146 hbmNewBitmap
= CreateDIBSection(hdc
, bmi
, DIB_RGB_COLORS
, NULL
, 0, 0);
3148 else /*if (ilc == ILC_COLORDDB)*/
3150 TRACE("Creating Bitmap: %d Bits per Pixel\n", himl
->uBitsPixel
);
3152 hbmNewBitmap
= CreateBitmap (sz
.cx
, sz
.cy
, 1, himl
->uBitsPixel
, NULL
);
3154 TRACE("returning %p\n", hbmNewBitmap
);
3155 return hbmNewBitmap
;
3158 /*************************************************************************
3159 * ImageList_SetColorTable [COMCTL32.@]
3161 * Sets the color table of an image list.
3164 * himl [I] Handle to the image list.
3165 * uStartIndex [I] The first index to set.
3166 * cEntries [I] Number of entries to set.
3167 * prgb [I] New color information for color table for the image list.
3170 * Success: Number of entries in the table that were set.
3174 * ImageList_Create(), SetDIBColorTable()
3178 ImageList_SetColorTable(HIMAGELIST himl
, UINT uStartIndex
, UINT cEntries
, const RGBQUAD
*prgb
)
3180 return SetDIBColorTable(himl
->hdcImage
, uStartIndex
, cEntries
, prgb
);
3183 /*************************************************************************
3184 * ImageList_CoCreateInstance [COMCTL32.@]
3186 * Creates a new imagelist instance and returns an interface pointer to it.
3189 * rclsid [I] A reference to the CLSID (CLSID_ImageList).
3190 * punkOuter [I] Pointer to IUnknown interface for aggregation, if desired
3191 * riid [I] Identifier of the requested interface.
3192 * ppv [O] Returns the address of the pointer requested, or NULL.
3196 * Failure: Error value.
3199 ImageList_CoCreateInstance (REFCLSID rclsid
, const IUnknown
*punkOuter
, REFIID riid
, void **ppv
)
3201 TRACE("(%s,%p,%s,%p)\n", debugstr_guid(rclsid
), punkOuter
, debugstr_guid(riid
), ppv
);
3203 if (!IsEqualCLSID(&CLSID_ImageList
, rclsid
))
3204 return E_NOINTERFACE
;
3206 return ImageListImpl_CreateInstance(punkOuter
, riid
, ppv
);
3210 /*************************************************************************
3211 * IImageList implementation
3214 static HRESULT WINAPI
ImageListImpl_QueryInterface(IImageList2
*iface
,
3215 REFIID iid
, void **ppv
)
3217 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3219 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
3221 if (!ppv
) return E_INVALIDARG
;
3223 if (IsEqualIID(&IID_IUnknown
, iid
) ||
3224 IsEqualIID(&IID_IImageList
, iid
) ||
3225 IsEqualIID(&IID_IImageList2
, iid
))
3227 *ppv
= &imgl
->IImageList2_iface
;
3232 return E_NOINTERFACE
;
3235 IImageList2_AddRef(iface
);
3239 static ULONG WINAPI
ImageListImpl_AddRef(IImageList2
*iface
)
3241 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3242 ULONG ref
= InterlockedIncrement(&imgl
->ref
);
3244 TRACE("(%p) refcount=%u\n", iface
, ref
);
3248 static ULONG WINAPI
ImageListImpl_Release(IImageList2
*iface
)
3250 HIMAGELIST This
= impl_from_IImageList2(iface
);
3251 ULONG ref
= InterlockedDecrement(&This
->ref
);
3253 TRACE("(%p) refcount=%u\n", iface
, ref
);
3257 /* delete image bitmaps */
3258 if (This
->hbmImage
) DeleteObject (This
->hbmImage
);
3259 if (This
->hbmMask
) DeleteObject (This
->hbmMask
);
3261 /* delete image & mask DCs */
3262 if (This
->hdcImage
) DeleteDC (This
->hdcImage
);
3263 if (This
->hdcMask
) DeleteDC (This
->hdcMask
);
3265 /* delete blending brushes */
3266 if (This
->hbrBlend25
) DeleteObject (This
->hbrBlend25
);
3267 if (This
->hbrBlend50
) DeleteObject (This
->hbrBlend50
);
3269 This
->IImageList2_iface
.lpVtbl
= NULL
;
3270 HeapFree(GetProcessHeap(), 0, This
->has_alpha
);
3271 HeapFree(GetProcessHeap(), 0, This
);
3277 static HRESULT WINAPI
ImageListImpl_Add(IImageList2
*iface
, HBITMAP hbmImage
,
3278 HBITMAP hbmMask
, int *pi
)
3280 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3286 ret
= ImageList_Add(imgl
, hbmImage
, hbmMask
);
3295 static HRESULT WINAPI
ImageListImpl_ReplaceIcon(IImageList2
*iface
, int i
,
3296 HICON hicon
, int *pi
)
3298 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3304 ret
= ImageList_ReplaceIcon(imgl
, i
, hicon
);
3313 static HRESULT WINAPI
ImageListImpl_SetOverlayImage(IImageList2
*iface
,
3314 int iImage
, int iOverlay
)
3316 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3317 return ImageList_SetOverlayImage(imgl
, iImage
, iOverlay
) ? S_OK
: E_FAIL
;
3320 static HRESULT WINAPI
ImageListImpl_Replace(IImageList2
*iface
, int i
,
3321 HBITMAP hbmImage
, HBITMAP hbmMask
)
3323 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3324 return ImageList_Replace(imgl
, i
, hbmImage
, hbmMask
) ? S_OK
: E_FAIL
;
3327 static HRESULT WINAPI
ImageListImpl_AddMasked(IImageList2
*iface
, HBITMAP hbmImage
,
3328 COLORREF crMask
, int *pi
)
3330 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3336 ret
= ImageList_AddMasked(imgl
, hbmImage
, crMask
);
3345 static HRESULT WINAPI
ImageListImpl_Draw(IImageList2
*iface
,
3346 IMAGELISTDRAWPARAMS
*pimldp
)
3348 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3349 HIMAGELIST old_himl
;
3352 /* As far as I can tell, Windows simply ignores the contents of pimldp->himl
3353 so we shall simulate the same */
3354 old_himl
= pimldp
->himl
;
3355 pimldp
->himl
= imgl
;
3357 ret
= ImageList_DrawIndirect(pimldp
);
3359 pimldp
->himl
= old_himl
;
3360 return ret
? S_OK
: E_INVALIDARG
;
3363 static HRESULT WINAPI
ImageListImpl_Remove(IImageList2
*iface
, int i
)
3365 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3366 return (ImageList_Remove(imgl
, i
) == 0) ? E_INVALIDARG
: S_OK
;
3369 static HRESULT WINAPI
ImageListImpl_GetIcon(IImageList2
*iface
, int i
, UINT flags
,
3372 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3378 hIcon
= ImageList_GetIcon(imgl
, i
, flags
);
3387 static HRESULT WINAPI
ImageListImpl_GetImageInfo(IImageList2
*iface
, int i
,
3388 IMAGEINFO
*pImageInfo
)
3390 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3391 return ImageList_GetImageInfo(imgl
, i
, pImageInfo
) ? S_OK
: E_FAIL
;
3394 static HRESULT WINAPI
ImageListImpl_Copy(IImageList2
*iface
, int dst_index
,
3395 IUnknown
*unk_src
, int src_index
, UINT flags
)
3397 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3398 IImageList
*src
= NULL
;
3404 /* TODO: Add test for IID_ImageList2 too */
3405 if (FAILED(IUnknown_QueryInterface(unk_src
, &IID_IImageList
,
3409 if (ImageList_Copy(imgl
, dst_index
, (HIMAGELIST
) src
, src_index
, flags
))
3414 IImageList_Release(src
);
3418 static HRESULT WINAPI
ImageListImpl_Merge(IImageList2
*iface
, int i1
,
3419 IUnknown
*punk2
, int i2
, int dx
, int dy
, REFIID riid
, void **ppv
)
3421 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3422 IImageList
*iml2
= NULL
;
3424 HRESULT ret
= E_FAIL
;
3426 TRACE("(%p)->(%d %p %d %d %d %s %p)\n", iface
, i1
, punk2
, i2
, dx
, dy
, debugstr_guid(riid
), ppv
);
3428 /* TODO: Add test for IID_ImageList2 too */
3429 if (FAILED(IUnknown_QueryInterface(punk2
, &IID_IImageList
,
3433 merged
= ImageList_Merge(imgl
, i1
, (HIMAGELIST
) iml2
, i2
, dx
, dy
);
3435 /* Get the interface for the new image list */
3438 ret
= HIMAGELIST_QueryInterface(merged
, riid
, ppv
);
3439 ImageList_Destroy(merged
);
3442 IImageList_Release(iml2
);
3446 static HRESULT WINAPI
ImageListImpl_Clone(IImageList2
*iface
, REFIID riid
, void **ppv
)
3448 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3450 HRESULT ret
= E_FAIL
;
3452 TRACE("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppv
);
3454 clone
= ImageList_Duplicate(imgl
);
3456 /* Get the interface for the new image list */
3459 ret
= HIMAGELIST_QueryInterface(clone
, riid
, ppv
);
3460 ImageList_Destroy(clone
);
3466 static HRESULT WINAPI
ImageListImpl_GetImageRect(IImageList2
*iface
, int i
,
3469 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3475 if (!ImageList_GetImageInfo(imgl
, i
, &info
))
3478 return CopyRect(prc
, &info
.rcImage
) ? S_OK
: E_FAIL
;
3481 static HRESULT WINAPI
ImageListImpl_GetIconSize(IImageList2
*iface
, int *cx
,
3484 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3485 return ImageList_GetIconSize(imgl
, cx
, cy
) ? S_OK
: E_INVALIDARG
;
3488 static HRESULT WINAPI
ImageListImpl_SetIconSize(IImageList2
*iface
, int cx
,
3491 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3492 return ImageList_SetIconSize(imgl
, cx
, cy
) ? S_OK
: E_FAIL
;
3495 static HRESULT WINAPI
ImageListImpl_GetImageCount(IImageList2
*iface
, int *pi
)
3497 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3498 *pi
= ImageList_GetImageCount(imgl
);
3502 static HRESULT WINAPI
ImageListImpl_SetImageCount(IImageList2
*iface
, UINT count
)
3504 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3505 return ImageList_SetImageCount(imgl
, count
) ? S_OK
: E_FAIL
;
3508 static HRESULT WINAPI
ImageListImpl_SetBkColor(IImageList2
*iface
, COLORREF clrBk
,
3511 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3512 *pclr
= ImageList_SetBkColor(imgl
, clrBk
);
3516 static HRESULT WINAPI
ImageListImpl_GetBkColor(IImageList2
*iface
, COLORREF
*pclr
)
3518 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3519 *pclr
= ImageList_GetBkColor(imgl
);
3523 static HRESULT WINAPI
ImageListImpl_BeginDrag(IImageList2
*iface
, int iTrack
,
3524 int dxHotspot
, int dyHotspot
)
3526 HIMAGELIST imgl
= impl_from_IImageList2(iface
);
3527 return ImageList_BeginDrag(imgl
, iTrack
, dxHotspot
, dyHotspot
) ? S_OK
: E_FAIL
;
3530 static HRESULT WINAPI
ImageListImpl_EndDrag(IImageList2
*iface
)
3532 ImageList_EndDrag();
3536 static HRESULT WINAPI
ImageListImpl_DragEnter(IImageList2
*iface
, HWND hwndLock
,
3539 return ImageList_DragEnter(hwndLock
, x
, y
) ? S_OK
: E_FAIL
;
3542 static HRESULT WINAPI
ImageListImpl_DragLeave(IImageList2
*iface
, HWND hwndLock
)
3544 return ImageList_DragLeave(hwndLock
) ? S_OK
: E_FAIL
;
3547 static HRESULT WINAPI
ImageListImpl_DragMove(IImageList2
*iface
, int x
, int y
)
3549 return ImageList_DragMove(x
, y
) ? S_OK
: E_FAIL
;
3552 static HRESULT WINAPI
ImageListImpl_SetDragCursorImage(IImageList2
*iface
,
3553 IUnknown
*punk
, int iDrag
, int dxHotspot
, int dyHotspot
)
3555 IImageList
*iml2
= NULL
;
3561 /* TODO: Add test for IID_ImageList2 too */
3562 if (FAILED(IUnknown_QueryInterface(punk
, &IID_IImageList
,
3566 ret
= ImageList_SetDragCursorImage((HIMAGELIST
) iml2
, iDrag
, dxHotspot
,
3569 IImageList_Release(iml2
);
3571 return ret
? S_OK
: E_FAIL
;
3574 static HRESULT WINAPI
ImageListImpl_DragShowNolock(IImageList2
*iface
, BOOL fShow
)
3576 return ImageList_DragShowNolock(fShow
) ? S_OK
: E_FAIL
;
3579 static HRESULT WINAPI
ImageListImpl_GetDragImage(IImageList2
*iface
, POINT
*ppt
,
3580 POINT
*pptHotspot
, REFIID riid
, PVOID
*ppv
)
3582 HRESULT ret
= E_FAIL
;
3588 hNew
= ImageList_GetDragImage(ppt
, pptHotspot
);
3590 /* Get the interface for the new image list */
3593 IImageList
*idrag
= (IImageList
*)hNew
;
3595 ret
= HIMAGELIST_QueryInterface(hNew
, riid
, ppv
);
3596 IImageList_Release(idrag
);
3602 static HRESULT WINAPI
ImageListImpl_GetItemFlags(IImageList2
*iface
, int i
,
3605 FIXME("STUB: %p %d %p\n", iface
, i
, dwFlags
);
3609 static HRESULT WINAPI
ImageListImpl_GetOverlayImage(IImageList2
*iface
, int iOverlay
,
3612 HIMAGELIST This
= impl_from_IImageList2(iface
);
3615 if ((iOverlay
< 0) || (iOverlay
> This
->cCurImage
))
3618 for (i
= 0; i
< MAX_OVERLAYIMAGE
; i
++)
3620 if (This
->nOvlIdx
[i
] == iOverlay
)
3630 static HRESULT WINAPI
ImageListImpl_Resize(IImageList2
*iface
, INT cx
, INT cy
)
3632 FIXME("(%p)->(%d %d): stub\n", iface
, cx
, cy
);
3636 static HRESULT WINAPI
ImageListImpl_GetOriginalSize(IImageList2
*iface
, INT image
, DWORD flags
, INT
*cx
, INT
*cy
)
3638 FIXME("(%p)->(%d %x %p %p): stub\n", iface
, image
, flags
, cx
, cy
);
3642 static HRESULT WINAPI
ImageListImpl_SetOriginalSize(IImageList2
*iface
, INT image
, INT cx
, INT cy
)
3644 FIXME("(%p)->(%d %d %d): stub\n", iface
, image
, cx
, cy
);
3648 static HRESULT WINAPI
ImageListImpl_SetCallback(IImageList2
*iface
, IUnknown
*callback
)
3650 FIXME("(%p)->(%p): stub\n", iface
, callback
);
3654 static HRESULT WINAPI
ImageListImpl_GetCallback(IImageList2
*iface
, REFIID riid
, void **ppv
)
3656 FIXME("(%p)->(%s %p): stub\n", iface
, debugstr_guid(riid
), ppv
);
3660 static HRESULT WINAPI
ImageListImpl_ForceImagePresent(IImageList2
*iface
, INT image
, DWORD flags
)
3662 FIXME("(%p)->(%d %x): stub\n", iface
, image
, flags
);
3666 static HRESULT WINAPI
ImageListImpl_DiscardImages(IImageList2
*iface
, INT first_image
, INT last_image
, DWORD flags
)
3668 FIXME("(%p)->(%d %d %x): stub\n", iface
, first_image
, last_image
, flags
);
3672 static HRESULT WINAPI
ImageListImpl_PreloadImages(IImageList2
*iface
, IMAGELISTDRAWPARAMS
*params
)
3674 FIXME("(%p)->(%p): stub\n", iface
, params
);
3678 static HRESULT WINAPI
ImageListImpl_GetStatistics(IImageList2
*iface
, IMAGELISTSTATS
*stats
)
3680 FIXME("(%p)->(%p): stub\n", iface
, stats
);
3684 static HRESULT WINAPI
ImageListImpl_Initialize(IImageList2
*iface
, INT cx
, INT cy
, UINT flags
, INT initial
, INT grow
)
3686 FIXME("(%p)->(%d %d %d %d %d): stub\n", iface
, cx
, cy
, flags
, initial
, grow
);
3690 static HRESULT WINAPI
ImageListImpl_Replace2(IImageList2
*iface
, INT i
, HBITMAP image
, HBITMAP mask
, IUnknown
*unk
, DWORD flags
)
3692 FIXME("(%p)->(%d %p %p %p %x): stub\n", iface
, i
, image
, mask
, unk
, flags
);
3696 static HRESULT WINAPI
ImageListImpl_ReplaceFromImageList(IImageList2
*iface
, INT i
, IImageList
*imagelist
, INT src
,
3697 IUnknown
*unk
, DWORD flags
)
3699 FIXME("(%p)->(%d %p %d %p %x): stub\n", iface
, i
, imagelist
, src
, unk
, flags
);
3703 static const IImageList2Vtbl ImageListImpl_Vtbl
= {
3704 ImageListImpl_QueryInterface
,
3705 ImageListImpl_AddRef
,
3706 ImageListImpl_Release
,
3708 ImageListImpl_ReplaceIcon
,
3709 ImageListImpl_SetOverlayImage
,
3710 ImageListImpl_Replace
,
3711 ImageListImpl_AddMasked
,
3713 ImageListImpl_Remove
,
3714 ImageListImpl_GetIcon
,
3715 ImageListImpl_GetImageInfo
,
3717 ImageListImpl_Merge
,
3718 ImageListImpl_Clone
,
3719 ImageListImpl_GetImageRect
,
3720 ImageListImpl_GetIconSize
,
3721 ImageListImpl_SetIconSize
,
3722 ImageListImpl_GetImageCount
,
3723 ImageListImpl_SetImageCount
,
3724 ImageListImpl_SetBkColor
,
3725 ImageListImpl_GetBkColor
,
3726 ImageListImpl_BeginDrag
,
3727 ImageListImpl_EndDrag
,
3728 ImageListImpl_DragEnter
,
3729 ImageListImpl_DragLeave
,
3730 ImageListImpl_DragMove
,
3731 ImageListImpl_SetDragCursorImage
,
3732 ImageListImpl_DragShowNolock
,
3733 ImageListImpl_GetDragImage
,
3734 ImageListImpl_GetItemFlags
,
3735 ImageListImpl_GetOverlayImage
,
3736 ImageListImpl_Resize
,
3737 ImageListImpl_GetOriginalSize
,
3738 ImageListImpl_SetOriginalSize
,
3739 ImageListImpl_SetCallback
,
3740 ImageListImpl_GetCallback
,
3741 ImageListImpl_ForceImagePresent
,
3742 ImageListImpl_DiscardImages
,
3743 ImageListImpl_PreloadImages
,
3744 ImageListImpl_GetStatistics
,
3745 ImageListImpl_Initialize
,
3746 ImageListImpl_Replace2
,
3747 ImageListImpl_ReplaceFromImageList
3750 static BOOL
is_valid(HIMAGELIST himl
)
3755 valid
= himl
&& himl
->IImageList2_iface
.lpVtbl
== &ImageListImpl_Vtbl
;
3765 /*************************************************************************
3766 * HIMAGELIST_QueryInterface [COMCTL32.@]
3768 * Returns a pointer to an IImageList or IImageList2 object for the given
3772 * himl [I] Image list handle.
3773 * riid [I] Identifier of the requested interface.
3774 * ppv [O] Returns the address of the pointer requested, or NULL.
3778 * Failure: Error value.
3781 HIMAGELIST_QueryInterface (HIMAGELIST himl
, REFIID riid
, void **ppv
)
3783 TRACE("(%p,%s,%p)\n", himl
, debugstr_guid(riid
), ppv
);
3784 return IImageList2_QueryInterface((IImageList2
*) himl
, riid
, ppv
);
3787 static HRESULT
ImageListImpl_CreateInstance(const IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
3792 TRACE("(%p,%s,%p)\n", pUnkOuter
, debugstr_guid(iid
), ppv
);
3796 if (pUnkOuter
) return CLASS_E_NOAGGREGATION
;
3798 This
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct _IMAGELIST
));
3799 if (!This
) return E_OUTOFMEMORY
;
3801 This
->IImageList2_iface
.lpVtbl
= &ImageListImpl_Vtbl
;
3804 ret
= IImageList2_QueryInterface(&This
->IImageList2_iface
, iid
, ppv
);
3805 IImageList2_Release(&This
->IImageList2_iface
);