msxml3: Add a couple of tests for unusual behaviour of ISupporterrorInfo.
[wine/multimedia.git] / dlls / comctl32 / imagelist.c
blobdb591043b0c94c4fe782b74bb354195d65b3207e
1 /*
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
25 * NOTE
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.
34 * TODO:
35 * - Add support for ILD_PRESERVEALPHA, ILD_SCALE, ILD_DPISCALE
36 * - Add support for ILS_GLOW, ILS_SHADOW, ILS_SATURATE
37 * - Thread-safe locking
40 #include <stdarg.h>
41 #include <stdlib.h>
42 #include <string.h>
44 #define COBJMACROS
46 #include "winerror.h"
47 #include "windef.h"
48 #include "winbase.h"
49 #include "objbase.h"
50 #include "wingdi.h"
51 #include "winuser.h"
52 #include "commctrl.h"
53 #include "comctl32.h"
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
62 struct _IMAGELIST
64 const struct IImageListVtbl *lpVtbl; /* 00: IImageList vtable */
66 INT cCurImage; /* 04: ImageCount */
67 INT cMaxImage; /* 08: maximages */
68 INT cGrow; /* 0C: cGrow */
69 INT cx; /* 10: cx */
70 INT cy; /* 14: cy */
71 DWORD x4;
72 UINT flags; /* 1C: flags */
73 COLORREF clrFg; /* 20: foreground color */
74 COLORREF clrBk; /* 24: background color */
77 HBITMAP hbmImage; /* 28: images Bitmap */
78 HBITMAP hbmMask; /* 2C: masks Bitmap */
79 HDC hdcImage; /* 30: images MemDC */
80 HDC hdcMask; /* 34: masks MemDC */
81 INT nOvlIdx[MAX_OVERLAYIMAGE]; /* 38: overlay images index */
83 /* not yet found out */
84 HBRUSH hbrBlend25;
85 HBRUSH hbrBlend50;
86 INT cInitial;
87 UINT uBitsPixel;
88 char *has_alpha;
90 LONG ref; /* reference count */
93 #define IMAGELIST_MAGIC 0x53414D58
95 /* Header used by ImageList_Read() and ImageList_Write() */
96 #include "pshpack2.h"
97 typedef struct _ILHEAD
99 USHORT usMagic;
100 USHORT usVersion;
101 WORD cCurImage;
102 WORD cMaxImage;
103 WORD cGrow;
104 WORD cx;
105 WORD cy;
106 COLORREF bkcolor;
107 WORD flags;
108 SHORT ovls[4];
109 } ILHEAD;
110 #include "poppack.h"
112 /* internal image list data used for Drag & Drop operations */
113 typedef struct
115 HWND hwnd;
116 HIMAGELIST himl;
117 /* position of the drag image relative to the window */
118 INT x;
119 INT y;
120 /* offset of the hotspot relative to the origin of the image */
121 INT dxHotspot;
122 INT dyHotspot;
123 /* is the drag image visible */
124 BOOL bShow;
125 /* saved background */
126 HBITMAP hbmBg;
127 } INTERNALDRAG;
129 static INTERNALDRAG InternalDrag = { 0, 0, 0, 0, 0, 0, FALSE, 0 };
131 static HBITMAP ImageList_CreateImage(HDC hdc, HIMAGELIST himl, UINT count);
132 static HRESULT ImageListImpl_CreateInstance(const IUnknown *pUnkOuter, REFIID iid, void** ppv);
133 static inline BOOL is_valid(HIMAGELIST himl);
136 * An imagelist with N images is tiled like this:
138 * N/4 ->
140 * 4 048C..
141 * 159D..
142 * | 26AE.N
143 * V 37BF.
146 #define TILE_COUNT 4
148 static inline UINT imagelist_height( UINT count )
150 return ((count + TILE_COUNT - 1)/TILE_COUNT);
153 static inline void imagelist_point_from_index( HIMAGELIST himl, UINT index, LPPOINT pt )
155 pt->x = (index%TILE_COUNT) * himl->cx;
156 pt->y = (index/TILE_COUNT) * himl->cy;
159 static inline void imagelist_get_bitmap_size( HIMAGELIST himl, UINT count, SIZE *sz )
161 sz->cx = himl->cx * TILE_COUNT;
162 sz->cy = imagelist_height( count ) * himl->cy;
165 static inline int get_dib_stride( int width, int bpp )
167 return ((width * bpp + 31) >> 3) & ~3;
170 static inline int get_dib_image_size( const BITMAPINFO *info )
172 return get_dib_stride( info->bmiHeader.biWidth, info->bmiHeader.biBitCount )
173 * abs( info->bmiHeader.biHeight );
177 * imagelist_copy_images()
179 * Copies a block of count images from offset src in the list to offset dest.
180 * Images are copied a row at at time. Assumes hdcSrc and hdcDest are different.
182 static inline void imagelist_copy_images( HIMAGELIST himl, HDC hdcSrc, HDC hdcDest,
183 UINT src, UINT count, UINT dest )
185 POINT ptSrc, ptDest;
186 SIZE sz;
187 UINT i;
189 for ( i=0; i<TILE_COUNT; i++ )
191 imagelist_point_from_index( himl, src+i, &ptSrc );
192 imagelist_point_from_index( himl, dest+i, &ptDest );
193 sz.cx = himl->cx;
194 sz.cy = himl->cy * imagelist_height( count - i );
196 BitBlt( hdcDest, ptDest.x, ptDest.y, sz.cx, sz.cy,
197 hdcSrc, ptSrc.x, ptSrc.y, SRCCOPY );
201 static void add_dib_bits( HIMAGELIST himl, int pos, int count, int width, int height,
202 BITMAPINFO *info, BITMAPINFO *mask_info, DWORD *bits, BYTE *mask_bits )
204 int i, j, n;
205 POINT pt;
206 int stride = info->bmiHeader.biWidth;
207 int mask_stride = (info->bmiHeader.biWidth + 31) / 32 * 4;
209 for (n = 0; n < count; n++)
211 int has_alpha = 0;
213 imagelist_point_from_index( himl, pos + n, &pt );
215 /* check if bitmap has an alpha channel */
216 for (i = 0; i < height && !has_alpha; i++)
217 for (j = n * width; j < (n + 1) * width; j++)
218 if ((has_alpha = ((bits[i * stride + j] & 0xff000000) != 0))) break;
220 if (!has_alpha) /* generate alpha channel from the mask */
222 for (i = 0; i < height; i++)
223 for (j = n * width; j < (n + 1) * width; j++)
224 if (!mask_info || !((mask_bits[i * mask_stride + j / 8] << (j % 8)) & 0x80))
225 bits[i * stride + j] |= 0xff000000;
226 else
227 bits[i * stride + j] = 0;
229 else
231 himl->has_alpha[pos + n] = 1;
233 if (mask_info && himl->hbmMask) /* generate the mask from the alpha channel */
235 for (i = 0; i < height; i++)
236 for (j = n * width; j < (n + 1) * width; j++)
237 if ((bits[i * stride + j] >> 24) > 25) /* more than 10% alpha */
238 mask_bits[i * mask_stride + j / 8] &= ~(0x80 >> (j % 8));
239 else
240 mask_bits[i * mask_stride + j / 8] |= 0x80 >> (j % 8);
243 StretchDIBits( himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
244 n * width, 0, width, height, bits, info, DIB_RGB_COLORS, SRCCOPY );
245 if (mask_info)
246 StretchDIBits( himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
247 n * width, 0, width, height, mask_bits, mask_info, DIB_RGB_COLORS, SRCCOPY );
251 /* add images with an alpha channel when the image list is 32 bpp */
252 static BOOL add_with_alpha( HIMAGELIST himl, HDC hdc, int pos, int count,
253 int width, int height, HBITMAP hbmImage, HBITMAP hbmMask )
255 BOOL ret = FALSE;
256 BITMAP bm;
257 BITMAPINFO *info, *mask_info = NULL;
258 DWORD *bits = NULL;
259 BYTE *mask_bits = NULL;
260 DWORD mask_width;
262 if (!GetObjectW( hbmImage, sizeof(bm), &bm )) return FALSE;
264 /* if either the imagelist or the source bitmap don't have an alpha channel, bail out now */
265 if (!himl->has_alpha) return FALSE;
266 if (bm.bmBitsPixel != 32) return FALSE;
268 SelectObject( hdc, hbmImage );
269 mask_width = (bm.bmWidth + 31) / 32 * 4;
271 if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto done;
272 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
273 info->bmiHeader.biWidth = bm.bmWidth;
274 info->bmiHeader.biHeight = -height;
275 info->bmiHeader.biPlanes = 1;
276 info->bmiHeader.biBitCount = 32;
277 info->bmiHeader.biCompression = BI_RGB;
278 info->bmiHeader.biSizeImage = bm.bmWidth * height * 4;
279 info->bmiHeader.biXPelsPerMeter = 0;
280 info->bmiHeader.biYPelsPerMeter = 0;
281 info->bmiHeader.biClrUsed = 0;
282 info->bmiHeader.biClrImportant = 0;
283 if (!(bits = HeapAlloc( GetProcessHeap(), 0, info->bmiHeader.biSizeImage ))) goto done;
284 if (!GetDIBits( hdc, hbmImage, 0, height, bits, info, DIB_RGB_COLORS )) goto done;
286 if (hbmMask)
288 if (!(mask_info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[2] ))))
289 goto done;
290 mask_info->bmiHeader = info->bmiHeader;
291 mask_info->bmiHeader.biBitCount = 1;
292 mask_info->bmiHeader.biSizeImage = mask_width * height;
293 if (!(mask_bits = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, info->bmiHeader.biSizeImage )))
294 goto done;
295 if (!GetDIBits( hdc, hbmMask, 0, height, mask_bits, mask_info, DIB_RGB_COLORS )) goto done;
298 add_dib_bits( himl, pos, count, width, height, info, mask_info, bits, mask_bits );
299 ret = TRUE;
301 done:
302 HeapFree( GetProcessHeap(), 0, info );
303 HeapFree( GetProcessHeap(), 0, mask_info );
304 HeapFree( GetProcessHeap(), 0, bits );
305 HeapFree( GetProcessHeap(), 0, mask_bits );
306 return ret;
309 /*************************************************************************
310 * IMAGELIST_InternalExpandBitmaps [Internal]
312 * Expands the bitmaps of an image list by the given number of images.
314 * PARAMS
315 * himl [I] handle to image list
316 * nImageCount [I] number of images to add
318 * RETURNS
319 * nothing
321 * NOTES
322 * This function CANNOT be used to reduce the number of images.
324 static void
325 IMAGELIST_InternalExpandBitmaps(HIMAGELIST himl, INT nImageCount)
327 HDC hdcBitmap;
328 HBITMAP hbmNewBitmap, hbmNull;
329 INT nNewCount;
330 SIZE sz;
332 TRACE("%p has allocated %d, max %d, grow %d images\n", himl, himl->cCurImage, himl->cMaxImage, himl->cGrow);
334 if (himl->cCurImage + nImageCount < himl->cMaxImage)
335 return;
337 nNewCount = himl->cMaxImage + max(nImageCount, himl->cGrow) + 1;
339 imagelist_get_bitmap_size(himl, nNewCount, &sz);
341 TRACE("Create expanded bitmaps : himl=%p x=%d y=%d count=%d\n", himl, sz.cx, sz.cy, nNewCount);
342 hdcBitmap = CreateCompatibleDC (0);
344 hbmNewBitmap = ImageList_CreateImage(hdcBitmap, himl, nNewCount);
346 if (hbmNewBitmap == 0)
347 ERR("creating new image bitmap (x=%d y=%d)!\n", sz.cx, sz.cy);
349 if (himl->cCurImage)
351 hbmNull = SelectObject (hdcBitmap, hbmNewBitmap);
352 BitBlt (hdcBitmap, 0, 0, sz.cx, sz.cy,
353 himl->hdcImage, 0, 0, SRCCOPY);
354 SelectObject (hdcBitmap, hbmNull);
356 SelectObject (himl->hdcImage, hbmNewBitmap);
357 DeleteObject (himl->hbmImage);
358 himl->hbmImage = hbmNewBitmap;
360 if (himl->flags & ILC_MASK)
362 hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
364 if (hbmNewBitmap == 0)
365 ERR("creating new mask bitmap!\n");
367 if(himl->cCurImage)
369 hbmNull = SelectObject (hdcBitmap, hbmNewBitmap);
370 BitBlt (hdcBitmap, 0, 0, sz.cx, sz.cy,
371 himl->hdcMask, 0, 0, SRCCOPY);
372 SelectObject (hdcBitmap, hbmNull);
374 SelectObject (himl->hdcMask, hbmNewBitmap);
375 DeleteObject (himl->hbmMask);
376 himl->hbmMask = hbmNewBitmap;
379 if (himl->has_alpha)
381 char *new_alpha = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->has_alpha, nNewCount );
382 if (new_alpha) himl->has_alpha = new_alpha;
383 else
385 HeapFree( GetProcessHeap(), 0, himl->has_alpha );
386 himl->has_alpha = NULL;
390 himl->cMaxImage = nNewCount;
392 DeleteDC (hdcBitmap);
396 /*************************************************************************
397 * ImageList_Add [COMCTL32.@]
399 * Add an image or images to an image list.
401 * PARAMS
402 * himl [I] handle to image list
403 * hbmImage [I] handle to image bitmap
404 * hbmMask [I] handle to mask bitmap
406 * RETURNS
407 * Success: Index of the first new image.
408 * Failure: -1
411 INT WINAPI
412 ImageList_Add (HIMAGELIST himl, HBITMAP hbmImage, HBITMAP hbmMask)
414 HDC hdcBitmap, hdcTemp = 0;
415 INT nFirstIndex, nImageCount, i;
416 BITMAP bmp;
417 POINT pt;
419 TRACE("himl=%p hbmimage=%p hbmmask=%p\n", himl, hbmImage, hbmMask);
420 if (!is_valid(himl))
421 return -1;
423 if (!GetObjectW(hbmImage, sizeof(BITMAP), &bmp))
424 return -1;
426 TRACE("himl %p, cCurImage %d, cMaxImage %d, cGrow %d, cx %d, cy %d\n",
427 himl, himl->cCurImage, himl->cMaxImage, himl->cGrow, himl->cx, himl->cy);
429 nImageCount = bmp.bmWidth / himl->cx;
431 TRACE("%p has %d images (%d x %d)\n", hbmImage, nImageCount, bmp.bmWidth, bmp.bmHeight);
433 IMAGELIST_InternalExpandBitmaps(himl, nImageCount);
435 hdcBitmap = CreateCompatibleDC(0);
437 SelectObject(hdcBitmap, hbmImage);
439 if (add_with_alpha( himl, hdcBitmap, himl->cCurImage, nImageCount,
440 himl->cx, min( himl->cy, bmp.bmHeight), hbmImage, hbmMask ))
441 goto done;
443 if (himl->hbmMask)
445 hdcTemp = CreateCompatibleDC(0);
446 SelectObject(hdcTemp, hbmMask);
449 for (i=0; i<nImageCount; i++)
451 imagelist_point_from_index( himl, himl->cCurImage + i, &pt );
453 /* Copy result to the imagelist
455 BitBlt( himl->hdcImage, pt.x, pt.y, himl->cx, bmp.bmHeight,
456 hdcBitmap, i*himl->cx, 0, SRCCOPY );
458 if (!himl->hbmMask)
459 continue;
461 BitBlt( himl->hdcMask, pt.x, pt.y, himl->cx, bmp.bmHeight,
462 hdcTemp, i*himl->cx, 0, SRCCOPY );
464 /* Remove the background from the image
466 BitBlt( himl->hdcImage, pt.x, pt.y, himl->cx, bmp.bmHeight,
467 himl->hdcMask, pt.x, pt.y, 0x220326 ); /* NOTSRCAND */
469 if (hdcTemp) DeleteDC(hdcTemp);
471 done:
472 DeleteDC(hdcBitmap);
474 nFirstIndex = himl->cCurImage;
475 himl->cCurImage += nImageCount;
477 return nFirstIndex;
481 /*************************************************************************
482 * ImageList_AddIcon [COMCTL32.@]
484 * Adds an icon to an image list.
486 * PARAMS
487 * himl [I] handle to image list
488 * hIcon [I] handle to icon
490 * RETURNS
491 * Success: index of the new image
492 * Failure: -1
494 #undef ImageList_AddIcon
495 INT WINAPI ImageList_AddIcon (HIMAGELIST himl, HICON hIcon)
497 return ImageList_ReplaceIcon (himl, -1, hIcon);
501 /*************************************************************************
502 * ImageList_AddMasked [COMCTL32.@]
504 * Adds an image or images to an image list and creates a mask from the
505 * specified bitmap using the mask color.
507 * PARAMS
508 * himl [I] handle to image list.
509 * hBitmap [I] handle to bitmap
510 * clrMask [I] mask color.
512 * RETURNS
513 * Success: Index of the first new image.
514 * Failure: -1
517 INT WINAPI
518 ImageList_AddMasked (HIMAGELIST himl, HBITMAP hBitmap, COLORREF clrMask)
520 HDC hdcMask, hdcBitmap;
521 INT ret;
522 BITMAP bmp;
523 HBITMAP hMaskBitmap;
524 COLORREF bkColor;
526 TRACE("himl=%p hbitmap=%p clrmask=%x\n", himl, hBitmap, clrMask);
527 if (!is_valid(himl))
528 return -1;
530 if (!GetObjectW(hBitmap, sizeof(BITMAP), &bmp))
531 return -1;
533 hdcBitmap = CreateCompatibleDC(0);
534 SelectObject(hdcBitmap, hBitmap);
536 /* Create a temp Mask so we can remove the background of the Image */
537 hdcMask = CreateCompatibleDC(0);
538 hMaskBitmap = CreateBitmap(bmp.bmWidth, bmp.bmHeight, 1, 1, NULL);
539 SelectObject(hdcMask, hMaskBitmap);
541 /* create monochrome image to the mask bitmap */
542 bkColor = (clrMask != CLR_DEFAULT) ? clrMask : GetPixel (hdcBitmap, 0, 0);
543 SetBkColor (hdcBitmap, bkColor);
544 BitBlt (hdcMask, 0, 0, bmp.bmWidth, bmp.bmHeight, hdcBitmap, 0, 0, SRCCOPY);
546 SetBkColor(hdcBitmap, RGB(255,255,255));
549 * Remove the background from the image
551 * WINDOWS BUG ALERT!!!!!!
552 * The statement below should not be done in common practice
553 * but this is how ImageList_AddMasked works in Windows.
554 * It overwrites the original bitmap passed, this was discovered
555 * by using the same bitmap to iterate the different styles
556 * on windows where it failed (BUT ImageList_Add is OK)
557 * This is here in case some apps rely on this bug
559 * Blt mode 0x220326 is NOTSRCAND
561 BitBlt(hdcBitmap, 0, 0, bmp.bmWidth, bmp.bmHeight, hdcMask, 0, 0, 0x220326);
563 DeleteDC(hdcBitmap);
564 DeleteDC(hdcMask);
566 ret = ImageList_Add( himl, hBitmap, hMaskBitmap );
568 DeleteObject(hMaskBitmap);
569 return ret;
573 /*************************************************************************
574 * ImageList_BeginDrag [COMCTL32.@]
576 * Creates a temporary image list that contains one image. It will be used
577 * as a drag image.
579 * PARAMS
580 * himlTrack [I] handle to the source image list
581 * iTrack [I] index of the drag image in the source image list
582 * dxHotspot [I] X position of the hot spot of the drag image
583 * dyHotspot [I] Y position of the hot spot of the drag image
585 * RETURNS
586 * Success: TRUE
587 * Failure: FALSE
590 BOOL WINAPI
591 ImageList_BeginDrag (HIMAGELIST himlTrack, INT iTrack,
592 INT dxHotspot, INT dyHotspot)
594 INT cx, cy;
596 TRACE("(himlTrack=%p iTrack=%d dx=%d dy=%d)\n", himlTrack, iTrack,
597 dxHotspot, dyHotspot);
599 if (!is_valid(himlTrack))
600 return FALSE;
602 if (InternalDrag.himl)
603 ImageList_EndDrag ();
605 cx = himlTrack->cx;
606 cy = himlTrack->cy;
608 InternalDrag.himl = ImageList_Create (cx, cy, himlTrack->flags, 1, 1);
609 if (InternalDrag.himl == NULL) {
610 WARN("Error creating drag image list!\n");
611 return FALSE;
614 InternalDrag.dxHotspot = dxHotspot;
615 InternalDrag.dyHotspot = dyHotspot;
617 /* copy image */
618 BitBlt (InternalDrag.himl->hdcImage, 0, 0, cx, cy, himlTrack->hdcImage, iTrack * cx, 0, SRCCOPY);
620 /* copy mask */
621 BitBlt (InternalDrag.himl->hdcMask, 0, 0, cx, cy, himlTrack->hdcMask, iTrack * cx, 0, SRCCOPY);
623 InternalDrag.himl->cCurImage = 1;
625 return TRUE;
629 /*************************************************************************
630 * ImageList_Copy [COMCTL32.@]
632 * Copies an image of the source image list to an image of the
633 * destination image list. Images can be copied or swapped.
635 * PARAMS
636 * himlDst [I] handle to the destination image list
637 * iDst [I] destination image index.
638 * himlSrc [I] handle to the source image list
639 * iSrc [I] source image index
640 * uFlags [I] flags for the copy operation
642 * RETURNS
643 * Success: TRUE
644 * Failure: FALSE
646 * NOTES
647 * Copying from one image list to another is possible. The original
648 * implementation just copies or swaps within one image list.
649 * Could this feature become a bug??? ;-)
652 BOOL WINAPI
653 ImageList_Copy (HIMAGELIST himlDst, INT iDst, HIMAGELIST himlSrc,
654 INT iSrc, UINT uFlags)
656 POINT ptSrc, ptDst;
658 TRACE("himlDst=%p iDst=%d himlSrc=%p iSrc=%d\n", himlDst, iDst, himlSrc, iSrc);
660 if (!is_valid(himlSrc) || !is_valid(himlDst))
661 return FALSE;
662 if ((iDst < 0) || (iDst >= himlDst->cCurImage))
663 return FALSE;
664 if ((iSrc < 0) || (iSrc >= himlSrc->cCurImage))
665 return FALSE;
667 imagelist_point_from_index( himlDst, iDst, &ptDst );
668 imagelist_point_from_index( himlSrc, iSrc, &ptSrc );
670 if (uFlags & ILCF_SWAP) {
671 /* swap */
672 HDC hdcBmp;
673 HBITMAP hbmTempImage, hbmTempMask;
675 hdcBmp = CreateCompatibleDC (0);
677 /* create temporary bitmaps */
678 hbmTempImage = CreateBitmap (himlSrc->cx, himlSrc->cy, 1,
679 himlSrc->uBitsPixel, NULL);
680 hbmTempMask = CreateBitmap (himlSrc->cx, himlSrc->cy, 1,
681 1, NULL);
683 /* copy (and stretch) destination to temporary bitmaps.(save) */
684 /* image */
685 SelectObject (hdcBmp, hbmTempImage);
686 StretchBlt (hdcBmp, 0, 0, himlSrc->cx, himlSrc->cy,
687 himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
688 SRCCOPY);
689 /* mask */
690 SelectObject (hdcBmp, hbmTempMask);
691 StretchBlt (hdcBmp, 0, 0, himlSrc->cx, himlSrc->cy,
692 himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
693 SRCCOPY);
695 /* copy (and stretch) source to destination */
696 /* image */
697 StretchBlt (himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
698 himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
699 SRCCOPY);
700 /* mask */
701 StretchBlt (himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
702 himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
703 SRCCOPY);
705 /* copy (without stretching) temporary bitmaps to source (restore) */
706 /* mask */
707 BitBlt (himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
708 hdcBmp, 0, 0, SRCCOPY);
710 /* image */
711 BitBlt (himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
712 hdcBmp, 0, 0, SRCCOPY);
713 /* delete temporary bitmaps */
714 DeleteObject (hbmTempMask);
715 DeleteObject (hbmTempImage);
716 DeleteDC(hdcBmp);
718 else {
719 /* copy image */
720 StretchBlt (himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
721 himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
722 SRCCOPY);
724 /* copy mask */
725 StretchBlt (himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
726 himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
727 SRCCOPY);
730 return TRUE;
734 /*************************************************************************
735 * ImageList_Create [COMCTL32.@]
737 * Creates a new image list.
739 * PARAMS
740 * cx [I] image height
741 * cy [I] image width
742 * flags [I] creation flags
743 * cInitial [I] initial number of images in the image list
744 * cGrow [I] number of images by which image list grows
746 * RETURNS
747 * Success: Handle to the created image list
748 * Failure: NULL
750 HIMAGELIST WINAPI
751 ImageList_Create (INT cx, INT cy, UINT flags,
752 INT cInitial, INT cGrow)
754 HIMAGELIST himl;
755 INT nCount;
756 HBITMAP hbmTemp;
757 UINT ilc = (flags & 0xFE);
758 static const WORD aBitBlend25[] =
759 {0xAA, 0x00, 0x55, 0x00, 0xAA, 0x00, 0x55, 0x00};
761 static const WORD aBitBlend50[] =
762 {0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA};
764 TRACE("(%d %d 0x%x %d %d)\n", cx, cy, flags, cInitial, cGrow);
766 if (cx <= 0 || cy <= 0) return NULL;
768 /* Create the IImageList interface for the image list */
769 if (FAILED(ImageListImpl_CreateInstance(NULL, &IID_IImageList, (void **)&himl)))
770 return NULL;
772 cGrow = (cGrow < 4) ? 4 : (cGrow + 3) & ~3;
774 himl->cx = cx;
775 himl->cy = cy;
776 himl->flags = flags;
777 himl->cMaxImage = cInitial + 1;
778 himl->cInitial = cInitial;
779 himl->cGrow = cGrow;
780 himl->clrFg = CLR_DEFAULT;
781 himl->clrBk = CLR_NONE;
783 /* initialize overlay mask indices */
784 for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
785 himl->nOvlIdx[nCount] = -1;
787 /* Create Image & Mask DCs */
788 himl->hdcImage = CreateCompatibleDC (0);
789 if (!himl->hdcImage)
790 goto cleanup;
791 if (himl->flags & ILC_MASK){
792 himl->hdcMask = CreateCompatibleDC(0);
793 if (!himl->hdcMask)
794 goto cleanup;
797 /* Default to ILC_COLOR4 if none of the ILC_COLOR* flags are specified */
798 if (ilc == ILC_COLOR)
799 ilc = ILC_COLOR4;
801 if (ilc >= ILC_COLOR4 && ilc <= ILC_COLOR32)
802 himl->uBitsPixel = ilc;
803 else
804 himl->uBitsPixel = (UINT)GetDeviceCaps (himl->hdcImage, BITSPIXEL);
806 if (himl->cMaxImage > 0) {
807 himl->hbmImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
808 SelectObject(himl->hdcImage, himl->hbmImage);
809 } else
810 himl->hbmImage = 0;
812 if ((himl->cMaxImage > 0) && (himl->flags & ILC_MASK)) {
813 SIZE sz;
815 imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
816 himl->hbmMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
817 if (himl->hbmMask == 0) {
818 ERR("Error creating mask bitmap!\n");
819 goto cleanup;
821 SelectObject(himl->hdcMask, himl->hbmMask);
823 else
824 himl->hbmMask = 0;
826 if (ilc == ILC_COLOR32)
827 himl->has_alpha = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->cMaxImage );
828 else
829 himl->has_alpha = NULL;
831 /* create blending brushes */
832 hbmTemp = CreateBitmap (8, 8, 1, 1, aBitBlend25);
833 himl->hbrBlend25 = CreatePatternBrush (hbmTemp);
834 DeleteObject (hbmTemp);
836 hbmTemp = CreateBitmap (8, 8, 1, 1, aBitBlend50);
837 himl->hbrBlend50 = CreatePatternBrush (hbmTemp);
838 DeleteObject (hbmTemp);
840 TRACE("created imagelist %p\n", himl);
841 return himl;
843 cleanup:
844 ImageList_Destroy(himl);
845 return NULL;
849 /*************************************************************************
850 * ImageList_Destroy [COMCTL32.@]
852 * Destroys an image list.
854 * PARAMS
855 * himl [I] handle to image list
857 * RETURNS
858 * Success: TRUE
859 * Failure: FALSE
862 BOOL WINAPI
863 ImageList_Destroy (HIMAGELIST himl)
865 if (!is_valid(himl))
866 return FALSE;
868 IImageList_Release((IImageList *) himl);
869 return TRUE;
873 /*************************************************************************
874 * ImageList_DragEnter [COMCTL32.@]
876 * Locks window update and displays the drag image at the given position.
878 * PARAMS
879 * hwndLock [I] handle of the window that owns the drag image.
880 * x [I] X position of the drag image.
881 * y [I] Y position of the drag image.
883 * RETURNS
884 * Success: TRUE
885 * Failure: FALSE
887 * NOTES
888 * The position of the drag image is relative to the window, not
889 * the client area.
892 BOOL WINAPI
893 ImageList_DragEnter (HWND hwndLock, INT x, INT y)
895 TRACE("(hwnd=%p x=%d y=%d)\n", hwndLock, x, y);
897 if (!is_valid(InternalDrag.himl))
898 return FALSE;
900 if (hwndLock)
901 InternalDrag.hwnd = hwndLock;
902 else
903 InternalDrag.hwnd = GetDesktopWindow ();
905 InternalDrag.x = x;
906 InternalDrag.y = y;
908 /* draw the drag image and save the background */
909 if (!ImageList_DragShowNolock(TRUE)) {
910 return FALSE;
913 return TRUE;
917 /*************************************************************************
918 * ImageList_DragLeave [COMCTL32.@]
920 * Unlocks window update and hides the drag image.
922 * PARAMS
923 * hwndLock [I] handle of the window that owns the drag image.
925 * RETURNS
926 * Success: TRUE
927 * Failure: FALSE
930 BOOL WINAPI
931 ImageList_DragLeave (HWND hwndLock)
933 /* As we don't save drag info in the window this can lead to problems if
934 an app does not supply the same window as DragEnter */
935 /* if (hwndLock)
936 InternalDrag.hwnd = hwndLock;
937 else
938 InternalDrag.hwnd = GetDesktopWindow (); */
939 if(!hwndLock)
940 hwndLock = GetDesktopWindow();
941 if(InternalDrag.hwnd != hwndLock)
942 FIXME("DragLeave hWnd != DragEnter hWnd\n");
944 ImageList_DragShowNolock (FALSE);
946 return TRUE;
950 /*************************************************************************
951 * ImageList_InternalDragDraw [Internal]
953 * Draws the drag image.
955 * PARAMS
956 * hdc [I] device context to draw into.
957 * x [I] X position of the drag image.
958 * y [I] Y position of the drag image.
960 * RETURNS
961 * Success: TRUE
962 * Failure: FALSE
964 * NOTES
965 * The position of the drag image is relative to the window, not
966 * the client area.
970 static inline void
971 ImageList_InternalDragDraw (HDC hdc, INT x, INT y)
973 IMAGELISTDRAWPARAMS imldp;
975 ZeroMemory (&imldp, sizeof(imldp));
976 imldp.cbSize = sizeof(imldp);
977 imldp.himl = InternalDrag.himl;
978 imldp.i = 0;
979 imldp.hdcDst = hdc,
980 imldp.x = x;
981 imldp.y = y;
982 imldp.rgbBk = CLR_DEFAULT;
983 imldp.rgbFg = CLR_DEFAULT;
984 imldp.fStyle = ILD_NORMAL;
985 imldp.fState = ILS_ALPHA;
986 imldp.Frame = 192;
987 ImageList_DrawIndirect (&imldp);
990 /*************************************************************************
991 * ImageList_DragMove [COMCTL32.@]
993 * Moves the drag image.
995 * PARAMS
996 * x [I] X position of the drag image.
997 * y [I] Y position of the drag image.
999 * RETURNS
1000 * Success: TRUE
1001 * Failure: FALSE
1003 * NOTES
1004 * The position of the drag image is relative to the window, not
1005 * the client area.
1008 BOOL WINAPI
1009 ImageList_DragMove (INT x, INT y)
1011 TRACE("(x=%d y=%d)\n", x, y);
1013 if (!is_valid(InternalDrag.himl))
1014 return FALSE;
1016 /* draw/update the drag image */
1017 if (InternalDrag.bShow) {
1018 HDC hdcDrag;
1019 HDC hdcOffScreen;
1020 HDC hdcBg;
1021 HBITMAP hbmOffScreen;
1022 INT origNewX, origNewY;
1023 INT origOldX, origOldY;
1024 INT origRegX, origRegY;
1025 INT sizeRegX, sizeRegY;
1028 /* calculate the update region */
1029 origNewX = x - InternalDrag.dxHotspot;
1030 origNewY = y - InternalDrag.dyHotspot;
1031 origOldX = InternalDrag.x - InternalDrag.dxHotspot;
1032 origOldY = InternalDrag.y - InternalDrag.dyHotspot;
1033 origRegX = min(origNewX, origOldX);
1034 origRegY = min(origNewY, origOldY);
1035 sizeRegX = InternalDrag.himl->cx + abs(x - InternalDrag.x);
1036 sizeRegY = InternalDrag.himl->cy + abs(y - InternalDrag.y);
1038 hdcDrag = GetDCEx(InternalDrag.hwnd, 0,
1039 DCX_WINDOW | DCX_CACHE | DCX_LOCKWINDOWUPDATE);
1040 hdcOffScreen = CreateCompatibleDC(hdcDrag);
1041 hdcBg = CreateCompatibleDC(hdcDrag);
1043 hbmOffScreen = CreateCompatibleBitmap(hdcDrag, sizeRegX, sizeRegY);
1044 SelectObject(hdcOffScreen, hbmOffScreen);
1045 SelectObject(hdcBg, InternalDrag.hbmBg);
1047 /* get the actual background of the update region */
1048 BitBlt(hdcOffScreen, 0, 0, sizeRegX, sizeRegY, hdcDrag,
1049 origRegX, origRegY, SRCCOPY);
1050 /* erase the old image */
1051 BitBlt(hdcOffScreen, origOldX - origRegX, origOldY - origRegY,
1052 InternalDrag.himl->cx, InternalDrag.himl->cy, hdcBg, 0, 0,
1053 SRCCOPY);
1054 /* save the background */
1055 BitBlt(hdcBg, 0, 0, InternalDrag.himl->cx, InternalDrag.himl->cy,
1056 hdcOffScreen, origNewX - origRegX, origNewY - origRegY, SRCCOPY);
1057 /* draw the image */
1058 ImageList_InternalDragDraw(hdcOffScreen, origNewX - origRegX,
1059 origNewY - origRegY);
1060 /* draw the update region to the screen */
1061 BitBlt(hdcDrag, origRegX, origRegY, sizeRegX, sizeRegY,
1062 hdcOffScreen, 0, 0, SRCCOPY);
1064 DeleteDC(hdcBg);
1065 DeleteDC(hdcOffScreen);
1066 DeleteObject(hbmOffScreen);
1067 ReleaseDC(InternalDrag.hwnd, hdcDrag);
1070 /* update the image position */
1071 InternalDrag.x = x;
1072 InternalDrag.y = y;
1074 return TRUE;
1078 /*************************************************************************
1079 * ImageList_DragShowNolock [COMCTL32.@]
1081 * Shows or hides the drag image.
1083 * PARAMS
1084 * bShow [I] TRUE shows the drag image, FALSE hides it.
1086 * RETURNS
1087 * Success: TRUE
1088 * Failure: FALSE
1091 BOOL WINAPI
1092 ImageList_DragShowNolock (BOOL bShow)
1094 HDC hdcDrag;
1095 HDC hdcBg;
1096 INT x, y;
1098 if (!is_valid(InternalDrag.himl))
1099 return FALSE;
1101 TRACE("bShow=0x%X!\n", bShow);
1103 /* DragImage is already visible/hidden */
1104 if ((InternalDrag.bShow && bShow) || (!InternalDrag.bShow && !bShow)) {
1105 return FALSE;
1108 /* position of the origin of the DragImage */
1109 x = InternalDrag.x - InternalDrag.dxHotspot;
1110 y = InternalDrag.y - InternalDrag.dyHotspot;
1112 hdcDrag = GetDCEx (InternalDrag.hwnd, 0,
1113 DCX_WINDOW | DCX_CACHE | DCX_LOCKWINDOWUPDATE);
1114 if (!hdcDrag) {
1115 return FALSE;
1118 hdcBg = CreateCompatibleDC(hdcDrag);
1119 if (!InternalDrag.hbmBg) {
1120 InternalDrag.hbmBg = CreateCompatibleBitmap(hdcDrag,
1121 InternalDrag.himl->cx, InternalDrag.himl->cy);
1123 SelectObject(hdcBg, InternalDrag.hbmBg);
1125 if (bShow) {
1126 /* save the background */
1127 BitBlt(hdcBg, 0, 0, InternalDrag.himl->cx, InternalDrag.himl->cy,
1128 hdcDrag, x, y, SRCCOPY);
1129 /* show the image */
1130 ImageList_InternalDragDraw(hdcDrag, x, y);
1131 } else {
1132 /* hide the image */
1133 BitBlt(hdcDrag, x, y, InternalDrag.himl->cx, InternalDrag.himl->cy,
1134 hdcBg, 0, 0, SRCCOPY);
1137 InternalDrag.bShow = !InternalDrag.bShow;
1139 DeleteDC(hdcBg);
1140 ReleaseDC (InternalDrag.hwnd, hdcDrag);
1141 return TRUE;
1145 /*************************************************************************
1146 * ImageList_Draw [COMCTL32.@]
1148 * Draws an image.
1150 * PARAMS
1151 * himl [I] handle to image list
1152 * i [I] image index
1153 * hdc [I] handle to device context
1154 * x [I] x position
1155 * y [I] y position
1156 * fStyle [I] drawing flags
1158 * RETURNS
1159 * Success: TRUE
1160 * Failure: FALSE
1162 * SEE
1163 * ImageList_DrawEx.
1166 BOOL WINAPI
1167 ImageList_Draw (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y, UINT fStyle)
1169 return ImageList_DrawEx (himl, i, hdc, x, y, 0, 0,
1170 CLR_DEFAULT, CLR_DEFAULT, fStyle);
1174 /*************************************************************************
1175 * ImageList_DrawEx [COMCTL32.@]
1177 * Draws an image and allows to use extended drawing features.
1179 * PARAMS
1180 * himl [I] handle to image list
1181 * i [I] image index
1182 * hdc [I] handle to device context
1183 * x [I] X position
1184 * y [I] Y position
1185 * dx [I] X offset
1186 * dy [I] Y offset
1187 * rgbBk [I] background color
1188 * rgbFg [I] foreground color
1189 * fStyle [I] drawing flags
1191 * RETURNS
1192 * Success: TRUE
1193 * Failure: FALSE
1195 * NOTES
1196 * Calls ImageList_DrawIndirect.
1198 * SEE
1199 * ImageList_DrawIndirect.
1202 BOOL WINAPI
1203 ImageList_DrawEx (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y,
1204 INT dx, INT dy, COLORREF rgbBk, COLORREF rgbFg,
1205 UINT fStyle)
1207 IMAGELISTDRAWPARAMS imldp;
1209 ZeroMemory (&imldp, sizeof(imldp));
1210 imldp.cbSize = sizeof(imldp);
1211 imldp.himl = himl;
1212 imldp.i = i;
1213 imldp.hdcDst = hdc,
1214 imldp.x = x;
1215 imldp.y = y;
1216 imldp.cx = dx;
1217 imldp.cy = dy;
1218 imldp.rgbBk = rgbBk;
1219 imldp.rgbFg = rgbFg;
1220 imldp.fStyle = fStyle;
1222 return ImageList_DrawIndirect (&imldp);
1226 static BOOL alpha_blend_image( HIMAGELIST himl, HDC dest_dc, int dest_x, int dest_y,
1227 int src_x, int src_y, int cx, int cy, BLENDFUNCTION func,
1228 UINT style, COLORREF blend_col )
1230 BOOL ret = FALSE;
1231 HDC hdc;
1232 HBITMAP bmp = 0, mask = 0;
1233 BITMAPINFO *info;
1234 void *bits, *mask_bits;
1235 unsigned int *ptr;
1236 int i, j;
1238 if (!(hdc = CreateCompatibleDC( 0 ))) return FALSE;
1239 if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto done;
1240 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1241 info->bmiHeader.biWidth = cx;
1242 info->bmiHeader.biHeight = cy;
1243 info->bmiHeader.biPlanes = 1;
1244 info->bmiHeader.biBitCount = 32;
1245 info->bmiHeader.biCompression = BI_RGB;
1246 info->bmiHeader.biSizeImage = cx * cy * 4;
1247 info->bmiHeader.biXPelsPerMeter = 0;
1248 info->bmiHeader.biYPelsPerMeter = 0;
1249 info->bmiHeader.biClrUsed = 0;
1250 info->bmiHeader.biClrImportant = 0;
1251 if (!(bmp = CreateDIBSection( himl->hdcImage, info, DIB_RGB_COLORS, &bits, 0, 0 ))) goto done;
1252 SelectObject( hdc, bmp );
1253 BitBlt( hdc, 0, 0, cx, cy, himl->hdcImage, src_x, src_y, SRCCOPY );
1255 if (blend_col != CLR_NONE)
1257 BYTE r = GetRValue( blend_col );
1258 BYTE g = GetGValue( blend_col );
1259 BYTE b = GetBValue( blend_col );
1261 if (style & ILD_BLEND25)
1263 for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1264 *ptr = ((*ptr & 0xff000000) |
1265 ((((*ptr & 0x00ff0000) * 3 + (r << 16)) / 4) & 0x00ff0000) |
1266 ((((*ptr & 0x0000ff00) * 3 + (g << 8)) / 4) & 0x0000ff00) |
1267 ((((*ptr & 0x000000ff) * 3 + (b << 0)) / 4) & 0x000000ff));
1269 else if (style & ILD_BLEND50)
1271 for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1272 *ptr = ((*ptr & 0xff000000) |
1273 ((((*ptr & 0x00ff0000) + (r << 16)) / 2) & 0x00ff0000) |
1274 ((((*ptr & 0x0000ff00) + (g << 8)) / 2) & 0x0000ff00) |
1275 ((((*ptr & 0x000000ff) + (b << 0)) / 2) & 0x000000ff));
1279 if (himl->has_alpha) /* we already have an alpha channel in this case */
1281 /* pre-multiply by the alpha channel */
1282 for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1284 DWORD alpha = *ptr >> 24;
1285 *ptr = ((*ptr & 0xff000000) |
1286 (((*ptr & 0x00ff0000) * alpha / 255) & 0x00ff0000) |
1287 (((*ptr & 0x0000ff00) * alpha / 255) & 0x0000ff00) |
1288 (((*ptr & 0x000000ff) * alpha / 255)));
1291 else if (himl->hbmMask)
1293 unsigned int width_bytes = (cx + 31) / 32 * 4;
1294 /* generate alpha channel from the mask */
1295 info->bmiHeader.biBitCount = 1;
1296 info->bmiHeader.biSizeImage = width_bytes * cy;
1297 info->bmiColors[0].rgbRed = 0;
1298 info->bmiColors[0].rgbGreen = 0;
1299 info->bmiColors[0].rgbBlue = 0;
1300 info->bmiColors[0].rgbReserved = 0;
1301 info->bmiColors[1].rgbRed = 0xff;
1302 info->bmiColors[1].rgbGreen = 0xff;
1303 info->bmiColors[1].rgbBlue = 0xff;
1304 info->bmiColors[1].rgbReserved = 0;
1305 if (!(mask = CreateDIBSection( himl->hdcMask, info, DIB_RGB_COLORS, &mask_bits, 0, 0 )))
1306 goto done;
1307 SelectObject( hdc, mask );
1308 BitBlt( hdc, 0, 0, cx, cy, himl->hdcMask, src_x, src_y, SRCCOPY );
1309 SelectObject( hdc, bmp );
1310 for (i = 0, ptr = bits; i < cy; i++)
1311 for (j = 0; j < cx; j++, ptr++)
1312 if ((((BYTE *)mask_bits)[i * width_bytes + j / 8] << (j % 8)) & 0x80) *ptr = 0;
1313 else *ptr |= 0xff000000;
1316 ret = GdiAlphaBlend( dest_dc, dest_x, dest_y, cx, cy, hdc, 0, 0, cx, cy, func );
1318 done:
1319 DeleteDC( hdc );
1320 if (bmp) DeleteObject( bmp );
1321 if (mask) DeleteObject( mask );
1322 HeapFree( GetProcessHeap(), 0, info );
1323 return ret;
1326 /*************************************************************************
1327 * ImageList_DrawIndirect [COMCTL32.@]
1329 * Draws an image using various parameters specified in pimldp.
1331 * PARAMS
1332 * pimldp [I] pointer to IMAGELISTDRAWPARAMS structure.
1334 * RETURNS
1335 * Success: TRUE
1336 * Failure: FALSE
1339 BOOL WINAPI
1340 ImageList_DrawIndirect (IMAGELISTDRAWPARAMS *pimldp)
1342 INT cx, cy, nOvlIdx;
1343 DWORD fState, dwRop;
1344 UINT fStyle;
1345 COLORREF oldImageBk, oldImageFg;
1346 HDC hImageDC, hImageListDC, hMaskListDC;
1347 HBITMAP hImageBmp, hOldImageBmp, hBlendMaskBmp;
1348 BOOL bIsTransparent, bBlend, bResult = FALSE, bMask;
1349 HIMAGELIST himl;
1350 HBRUSH hOldBrush;
1351 POINT pt;
1352 BOOL has_alpha;
1354 if (!pimldp || !(himl = pimldp->himl)) return FALSE;
1355 if (!is_valid(himl)) return FALSE;
1356 if ((pimldp->i < 0) || (pimldp->i >= himl->cCurImage)) return FALSE;
1358 imagelist_point_from_index( himl, pimldp->i, &pt );
1359 pt.x += pimldp->xBitmap;
1360 pt.y += pimldp->yBitmap;
1362 fState = pimldp->cbSize < sizeof(IMAGELISTDRAWPARAMS) ? ILS_NORMAL : pimldp->fState;
1363 fStyle = pimldp->fStyle & ~ILD_OVERLAYMASK;
1364 cx = (pimldp->cx == 0) ? himl->cx : pimldp->cx;
1365 cy = (pimldp->cy == 0) ? himl->cy : pimldp->cy;
1367 bIsTransparent = (fStyle & ILD_TRANSPARENT);
1368 if( pimldp->rgbBk == CLR_NONE )
1369 bIsTransparent = TRUE;
1370 if( ( pimldp->rgbBk == CLR_DEFAULT ) && ( himl->clrBk == CLR_NONE ) )
1371 bIsTransparent = TRUE;
1372 bMask = (himl->flags & ILC_MASK) && (fStyle & ILD_MASK) ;
1373 bBlend = (fStyle & (ILD_BLEND25 | ILD_BLEND50) ) && !bMask;
1375 TRACE("himl(%p) hbmMask(%p) iImage(%d) x(%d) y(%d) cx(%d) cy(%d)\n",
1376 himl, himl->hbmMask, pimldp->i, pimldp->x, pimldp->y, cx, cy);
1378 /* we will use these DCs to access the images and masks in the ImageList */
1379 hImageListDC = himl->hdcImage;
1380 hMaskListDC = himl->hdcMask;
1382 /* these will accumulate the image and mask for the image we're drawing */
1383 hImageDC = CreateCompatibleDC( pimldp->hdcDst );
1384 hImageBmp = CreateCompatibleBitmap( pimldp->hdcDst, cx, cy );
1385 hBlendMaskBmp = bBlend ? CreateBitmap(cx, cy, 1, 1, NULL) : 0;
1387 /* Create a compatible DC. */
1388 if (!hImageListDC || !hImageDC || !hImageBmp ||
1389 (bBlend && !hBlendMaskBmp) || (himl->hbmMask && !hMaskListDC))
1390 goto cleanup;
1392 hOldImageBmp = SelectObject(hImageDC, hImageBmp);
1395 * To obtain a transparent look, background color should be set
1396 * to white and foreground color to black when blitting the
1397 * monochrome mask.
1399 oldImageFg = SetTextColor( hImageDC, RGB( 0, 0, 0 ) );
1400 oldImageBk = SetBkColor( hImageDC, RGB( 0xff, 0xff, 0xff ) );
1402 has_alpha = (himl->has_alpha && himl->has_alpha[pimldp->i]);
1403 if (!bMask && (has_alpha || (fState & ILS_ALPHA)))
1405 COLORREF colour, blend_col = CLR_NONE;
1406 BLENDFUNCTION func;
1408 if (bBlend)
1410 blend_col = pimldp->rgbFg;
1411 if (blend_col == CLR_DEFAULT) blend_col = GetSysColor( COLOR_HIGHLIGHT );
1412 else if (blend_col == CLR_NONE) blend_col = GetTextColor( pimldp->hdcDst );
1415 func.BlendOp = AC_SRC_OVER;
1416 func.BlendFlags = 0;
1417 func.SourceConstantAlpha = (fState & ILS_ALPHA) ? pimldp->Frame : 255;
1418 func.AlphaFormat = AC_SRC_ALPHA;
1420 if (bIsTransparent)
1422 bResult = alpha_blend_image( himl, pimldp->hdcDst, pimldp->x, pimldp->y,
1423 pt.x, pt.y, cx, cy, func, fStyle, blend_col );
1424 goto end;
1426 colour = pimldp->rgbBk;
1427 if (colour == CLR_DEFAULT) colour = himl->clrBk;
1428 if (colour == CLR_NONE) colour = GetBkColor( pimldp->hdcDst );
1430 hOldBrush = SelectObject (hImageDC, CreateSolidBrush (colour));
1431 PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1432 alpha_blend_image( himl, hImageDC, 0, 0, pt.x, pt.y, cx, cy, func, fStyle, blend_col );
1433 DeleteObject (SelectObject (hImageDC, hOldBrush));
1434 bResult = BitBlt( pimldp->hdcDst, pimldp->x, pimldp->y, cx, cy, hImageDC, 0, 0, SRCCOPY );
1435 goto end;
1439 * Draw the initial image
1441 if( bMask ) {
1442 if (himl->hbmMask) {
1443 hOldBrush = SelectObject (hImageDC, CreateSolidBrush (GetTextColor(pimldp->hdcDst)));
1444 PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1445 BitBlt(hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCPAINT);
1446 DeleteObject (SelectObject (hImageDC, hOldBrush));
1447 if( bIsTransparent )
1449 BitBlt ( pimldp->hdcDst, pimldp->x, pimldp->y, cx, cy, hImageDC, 0, 0, SRCAND);
1450 bResult = TRUE;
1451 goto end;
1453 } else {
1454 hOldBrush = SelectObject (hImageDC, GetStockObject(BLACK_BRUSH));
1455 PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY);
1456 SelectObject(hImageDC, hOldBrush);
1458 } else {
1459 /* blend the image with the needed solid background */
1460 COLORREF colour = RGB(0,0,0);
1462 if( !bIsTransparent )
1464 colour = pimldp->rgbBk;
1465 if( colour == CLR_DEFAULT )
1466 colour = himl->clrBk;
1467 if( colour == CLR_NONE )
1468 colour = GetBkColor(pimldp->hdcDst);
1471 hOldBrush = SelectObject (hImageDC, CreateSolidBrush (colour));
1472 PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1473 if (himl->hbmMask)
1475 BitBlt( hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND );
1476 BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCPAINT );
1478 else
1479 BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCCOPY);
1480 DeleteObject (SelectObject (hImageDC, hOldBrush));
1483 /* Time for blending, if required */
1484 if (bBlend) {
1485 HBRUSH hBlendBrush;
1486 COLORREF clrBlend = pimldp->rgbFg;
1487 HDC hBlendMaskDC = hImageListDC;
1488 HBITMAP hOldBitmap;
1490 /* Create the blend Mask */
1491 hOldBitmap = SelectObject(hBlendMaskDC, hBlendMaskBmp);
1492 hBlendBrush = fStyle & ILD_BLEND50 ? himl->hbrBlend50 : himl->hbrBlend25;
1493 hOldBrush = SelectObject(hBlendMaskDC, hBlendBrush);
1494 PatBlt(hBlendMaskDC, 0, 0, cx, cy, PATCOPY);
1495 SelectObject(hBlendMaskDC, hOldBrush);
1497 /* Modify the blend mask if an Image Mask exist */
1498 if(himl->hbmMask) {
1499 BitBlt(hBlendMaskDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, 0x220326); /* NOTSRCAND */
1500 BitBlt(hBlendMaskDC, 0, 0, cx, cy, hBlendMaskDC, 0, 0, NOTSRCCOPY);
1503 /* now apply blend to the current image given the BlendMask */
1504 if (clrBlend == CLR_DEFAULT) clrBlend = GetSysColor (COLOR_HIGHLIGHT);
1505 else if (clrBlend == CLR_NONE) clrBlend = GetTextColor (pimldp->hdcDst);
1506 hOldBrush = SelectObject (hImageDC, CreateSolidBrush(clrBlend));
1507 BitBlt (hImageDC, 0, 0, cx, cy, hBlendMaskDC, 0, 0, 0xB8074A); /* PSDPxax */
1508 DeleteObject(SelectObject(hImageDC, hOldBrush));
1509 SelectObject(hBlendMaskDC, hOldBitmap);
1512 /* Now do the overlay image, if any */
1513 nOvlIdx = (pimldp->fStyle & ILD_OVERLAYMASK) >> 8;
1514 if ( (nOvlIdx >= 1) && (nOvlIdx <= MAX_OVERLAYIMAGE)) {
1515 nOvlIdx = himl->nOvlIdx[nOvlIdx - 1];
1516 if ((nOvlIdx >= 0) && (nOvlIdx < himl->cCurImage)) {
1517 POINT ptOvl;
1518 imagelist_point_from_index( himl, nOvlIdx, &ptOvl );
1519 ptOvl.x += pimldp->xBitmap;
1520 if (himl->hbmMask && !(fStyle & ILD_IMAGE))
1521 BitBlt (hImageDC, 0, 0, cx, cy, hMaskListDC, ptOvl.x, ptOvl.y, SRCAND);
1522 BitBlt (hImageDC, 0, 0, cx, cy, hImageListDC, ptOvl.x, ptOvl.y, SRCPAINT);
1526 if (fState & ILS_SATURATE) FIXME("ILS_SATURATE: unimplemented!\n");
1527 if (fState & ILS_GLOW) FIXME("ILS_GLOW: unimplemented!\n");
1528 if (fState & ILS_SHADOW) FIXME("ILS_SHADOW: unimplemented!\n");
1530 if (fStyle & ILD_PRESERVEALPHA) FIXME("ILD_PRESERVEALPHA: unimplemented!\n");
1531 if (fStyle & ILD_SCALE) FIXME("ILD_SCALE: unimplemented!\n");
1532 if (fStyle & ILD_DPISCALE) FIXME("ILD_DPISCALE: unimplemented!\n");
1534 /* now copy the image to the screen */
1535 dwRop = SRCCOPY;
1536 if (himl->hbmMask && bIsTransparent ) {
1537 COLORREF oldDstFg = SetTextColor(pimldp->hdcDst, RGB( 0, 0, 0 ) );
1538 COLORREF oldDstBk = SetBkColor(pimldp->hdcDst, RGB( 0xff, 0xff, 0xff ));
1539 BitBlt (pimldp->hdcDst, pimldp->x, pimldp->y, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND);
1540 SetBkColor(pimldp->hdcDst, oldDstBk);
1541 SetTextColor(pimldp->hdcDst, oldDstFg);
1542 dwRop = SRCPAINT;
1544 if (fStyle & ILD_ROP) dwRop = pimldp->dwRop;
1545 BitBlt (pimldp->hdcDst, pimldp->x, pimldp->y, cx, cy, hImageDC, 0, 0, dwRop);
1547 bResult = TRUE;
1548 end:
1549 /* cleanup the mess */
1550 SetBkColor(hImageDC, oldImageBk);
1551 SetTextColor(hImageDC, oldImageFg);
1552 SelectObject(hImageDC, hOldImageBmp);
1553 cleanup:
1554 DeleteObject(hBlendMaskBmp);
1555 DeleteObject(hImageBmp);
1556 DeleteDC(hImageDC);
1558 return bResult;
1562 /*************************************************************************
1563 * ImageList_Duplicate [COMCTL32.@]
1565 * Duplicates an image list.
1567 * PARAMS
1568 * himlSrc [I] source image list handle
1570 * RETURNS
1571 * Success: Handle of duplicated image list.
1572 * Failure: NULL
1575 HIMAGELIST WINAPI
1576 ImageList_Duplicate (HIMAGELIST himlSrc)
1578 HIMAGELIST himlDst;
1580 if (!is_valid(himlSrc)) {
1581 ERR("Invalid image list handle!\n");
1582 return NULL;
1585 himlDst = ImageList_Create (himlSrc->cx, himlSrc->cy, himlSrc->flags,
1586 himlSrc->cCurImage, himlSrc->cGrow);
1588 if (himlDst)
1590 SIZE sz;
1592 imagelist_get_bitmap_size(himlSrc, himlSrc->cCurImage, &sz);
1593 BitBlt (himlDst->hdcImage, 0, 0, sz.cx, sz.cy,
1594 himlSrc->hdcImage, 0, 0, SRCCOPY);
1596 if (himlDst->hbmMask)
1597 BitBlt (himlDst->hdcMask, 0, 0, sz.cx, sz.cy,
1598 himlSrc->hdcMask, 0, 0, SRCCOPY);
1600 himlDst->cCurImage = himlSrc->cCurImage;
1601 if (himlSrc->has_alpha && himlDst->has_alpha)
1602 memcpy( himlDst->has_alpha, himlSrc->has_alpha, himlDst->cCurImage );
1604 return himlDst;
1608 /*************************************************************************
1609 * ImageList_EndDrag [COMCTL32.@]
1611 * Finishes a drag operation.
1613 * PARAMS
1614 * no Parameters
1616 * RETURNS
1617 * Success: TRUE
1618 * Failure: FALSE
1621 VOID WINAPI
1622 ImageList_EndDrag (void)
1624 /* cleanup the InternalDrag struct */
1625 InternalDrag.hwnd = 0;
1626 ImageList_Destroy (InternalDrag.himl);
1627 InternalDrag.himl = 0;
1628 InternalDrag.x= 0;
1629 InternalDrag.y= 0;
1630 InternalDrag.dxHotspot = 0;
1631 InternalDrag.dyHotspot = 0;
1632 InternalDrag.bShow = FALSE;
1633 DeleteObject(InternalDrag.hbmBg);
1634 InternalDrag.hbmBg = 0;
1638 /*************************************************************************
1639 * ImageList_GetBkColor [COMCTL32.@]
1641 * Returns the background color of an image list.
1643 * PARAMS
1644 * himl [I] Image list handle.
1646 * RETURNS
1647 * Success: background color
1648 * Failure: CLR_NONE
1651 COLORREF WINAPI
1652 ImageList_GetBkColor (HIMAGELIST himl)
1654 return himl ? himl->clrBk : CLR_NONE;
1658 /*************************************************************************
1659 * ImageList_GetDragImage [COMCTL32.@]
1661 * Returns the handle to the internal drag image list.
1663 * PARAMS
1664 * ppt [O] Pointer to the drag position. Can be NULL.
1665 * pptHotspot [O] Pointer to the position of the hot spot. Can be NULL.
1667 * RETURNS
1668 * Success: Handle of the drag image list.
1669 * Failure: NULL.
1672 HIMAGELIST WINAPI
1673 ImageList_GetDragImage (POINT *ppt, POINT *pptHotspot)
1675 if (is_valid(InternalDrag.himl)) {
1676 if (ppt) {
1677 ppt->x = InternalDrag.x;
1678 ppt->y = InternalDrag.y;
1680 if (pptHotspot) {
1681 pptHotspot->x = InternalDrag.dxHotspot;
1682 pptHotspot->y = InternalDrag.dyHotspot;
1684 return (InternalDrag.himl);
1687 return NULL;
1691 /*************************************************************************
1692 * ImageList_GetFlags [COMCTL32.@]
1694 * Gets the flags of the specified image list.
1696 * PARAMS
1697 * himl [I] Handle to image list
1699 * RETURNS
1700 * Image list flags.
1702 * BUGS
1703 * Stub.
1706 DWORD WINAPI
1707 ImageList_GetFlags(HIMAGELIST himl)
1709 TRACE("%p\n", himl);
1711 return is_valid(himl) ? himl->flags : 0;
1715 /*************************************************************************
1716 * ImageList_GetIcon [COMCTL32.@]
1718 * Creates an icon from a masked image of an image list.
1720 * PARAMS
1721 * himl [I] handle to image list
1722 * i [I] image index
1723 * flags [I] drawing style flags
1725 * RETURNS
1726 * Success: icon handle
1727 * Failure: NULL
1730 HICON WINAPI
1731 ImageList_GetIcon (HIMAGELIST himl, INT i, UINT fStyle)
1733 ICONINFO ii;
1734 HICON hIcon;
1735 HBITMAP hOldDstBitmap;
1736 HDC hdcDst;
1737 POINT pt;
1739 TRACE("%p %d %d\n", himl, i, fStyle);
1740 if (!is_valid(himl) || (i < 0) || (i >= himl->cCurImage)) return NULL;
1742 ii.fIcon = TRUE;
1743 ii.xHotspot = 0;
1744 ii.yHotspot = 0;
1746 /* create colour bitmap */
1747 hdcDst = GetDC(0);
1748 ii.hbmColor = CreateCompatibleBitmap(hdcDst, himl->cx, himl->cy);
1749 ReleaseDC(0, hdcDst);
1751 hdcDst = CreateCompatibleDC(0);
1753 imagelist_point_from_index( himl, i, &pt );
1755 /* draw mask*/
1756 ii.hbmMask = CreateBitmap (himl->cx, himl->cy, 1, 1, NULL);
1757 hOldDstBitmap = SelectObject (hdcDst, ii.hbmMask);
1758 if (himl->hbmMask) {
1759 BitBlt (hdcDst, 0, 0, himl->cx, himl->cy,
1760 himl->hdcMask, pt.x, pt.y, SRCCOPY);
1762 else
1763 PatBlt (hdcDst, 0, 0, himl->cx, himl->cy, BLACKNESS);
1765 /* draw image*/
1766 SelectObject (hdcDst, ii.hbmColor);
1767 BitBlt (hdcDst, 0, 0, himl->cx, himl->cy,
1768 himl->hdcImage, pt.x, pt.y, SRCCOPY);
1771 * CreateIconIndirect requires us to deselect the bitmaps from
1772 * the DCs before calling
1774 SelectObject(hdcDst, hOldDstBitmap);
1776 hIcon = CreateIconIndirect (&ii);
1778 DeleteObject (ii.hbmMask);
1779 DeleteObject (ii.hbmColor);
1780 DeleteDC (hdcDst);
1782 return hIcon;
1786 /*************************************************************************
1787 * ImageList_GetIconSize [COMCTL32.@]
1789 * Retrieves the size of an image in an image list.
1791 * PARAMS
1792 * himl [I] handle to image list
1793 * cx [O] pointer to the image width.
1794 * cy [O] pointer to the image height.
1796 * RETURNS
1797 * Success: TRUE
1798 * Failure: FALSE
1800 * NOTES
1801 * All images in an image list have the same size.
1804 BOOL WINAPI
1805 ImageList_GetIconSize (HIMAGELIST himl, INT *cx, INT *cy)
1807 if (!is_valid(himl) || !cx || !cy)
1808 return FALSE;
1809 if ((himl->cx <= 0) || (himl->cy <= 0))
1810 return FALSE;
1812 *cx = himl->cx;
1813 *cy = himl->cy;
1815 return TRUE;
1819 /*************************************************************************
1820 * ImageList_GetImageCount [COMCTL32.@]
1822 * Returns the number of images in an image list.
1824 * PARAMS
1825 * himl [I] handle to image list
1827 * RETURNS
1828 * Success: Number of images.
1829 * Failure: 0
1832 INT WINAPI
1833 ImageList_GetImageCount (HIMAGELIST himl)
1835 if (!is_valid(himl))
1836 return 0;
1838 return himl->cCurImage;
1842 /*************************************************************************
1843 * ImageList_GetImageInfo [COMCTL32.@]
1845 * Returns information about an image in an image list.
1847 * PARAMS
1848 * himl [I] handle to image list
1849 * i [I] image index
1850 * pImageInfo [O] pointer to the image information
1852 * RETURNS
1853 * Success: TRUE
1854 * Failure: FALSE
1857 BOOL WINAPI
1858 ImageList_GetImageInfo (HIMAGELIST himl, INT i, IMAGEINFO *pImageInfo)
1860 POINT pt;
1862 if (!is_valid(himl) || (pImageInfo == NULL))
1863 return FALSE;
1864 if ((i < 0) || (i >= himl->cCurImage))
1865 return FALSE;
1867 pImageInfo->hbmImage = himl->hbmImage;
1868 pImageInfo->hbmMask = himl->hbmMask;
1870 imagelist_point_from_index( himl, i, &pt );
1871 pImageInfo->rcImage.top = pt.y;
1872 pImageInfo->rcImage.bottom = pt.y + himl->cy;
1873 pImageInfo->rcImage.left = pt.x;
1874 pImageInfo->rcImage.right = pt.x + himl->cx;
1876 return TRUE;
1880 /*************************************************************************
1881 * ImageList_GetImageRect [COMCTL32.@]
1883 * Retrieves the rectangle of the specified image in an image list.
1885 * PARAMS
1886 * himl [I] handle to image list
1887 * i [I] image index
1888 * lpRect [O] pointer to the image rectangle
1890 * RETURNS
1891 * Success: TRUE
1892 * Failure: FALSE
1894 * NOTES
1895 * This is an UNDOCUMENTED function!!!
1898 BOOL WINAPI
1899 ImageList_GetImageRect (HIMAGELIST himl, INT i, LPRECT lpRect)
1901 POINT pt;
1903 if (!is_valid(himl) || (lpRect == NULL))
1904 return FALSE;
1905 if ((i < 0) || (i >= himl->cCurImage))
1906 return FALSE;
1908 imagelist_point_from_index( himl, i, &pt );
1909 lpRect->left = pt.x;
1910 lpRect->top = pt.y;
1911 lpRect->right = pt.x + himl->cx;
1912 lpRect->bottom = pt.y + himl->cy;
1914 return TRUE;
1918 /*************************************************************************
1919 * ImageList_LoadImage [COMCTL32.@]
1920 * ImageList_LoadImageA [COMCTL32.@]
1922 * Creates an image list from a bitmap, icon or cursor.
1924 * See ImageList_LoadImageW.
1927 HIMAGELIST WINAPI
1928 ImageList_LoadImageA (HINSTANCE hi, LPCSTR lpbmp, INT cx, INT cGrow,
1929 COLORREF clrMask, UINT uType, UINT uFlags)
1931 HIMAGELIST himl;
1932 LPWSTR lpbmpW;
1933 DWORD len;
1935 if (IS_INTRESOURCE(lpbmp))
1936 return ImageList_LoadImageW(hi, (LPCWSTR)lpbmp, cx, cGrow, clrMask,
1937 uType, uFlags);
1939 len = MultiByteToWideChar(CP_ACP, 0, lpbmp, -1, NULL, 0);
1940 lpbmpW = Alloc(len * sizeof(WCHAR));
1941 MultiByteToWideChar(CP_ACP, 0, lpbmp, -1, lpbmpW, len);
1943 himl = ImageList_LoadImageW(hi, lpbmpW, cx, cGrow, clrMask, uType, uFlags);
1944 Free (lpbmpW);
1945 return himl;
1949 /*************************************************************************
1950 * ImageList_LoadImageW [COMCTL32.@]
1952 * Creates an image list from a bitmap, icon or cursor.
1954 * PARAMS
1955 * hi [I] instance handle
1956 * lpbmp [I] name or id of the image
1957 * cx [I] width of each image
1958 * cGrow [I] number of images to expand
1959 * clrMask [I] mask color
1960 * uType [I] type of image to load
1961 * uFlags [I] loading flags
1963 * RETURNS
1964 * Success: handle to the loaded image list
1965 * Failure: NULL
1967 * SEE
1968 * LoadImage ()
1971 HIMAGELIST WINAPI
1972 ImageList_LoadImageW (HINSTANCE hi, LPCWSTR lpbmp, INT cx, INT cGrow,
1973 COLORREF clrMask, UINT uType, UINT uFlags)
1975 HIMAGELIST himl = NULL;
1976 HANDLE handle;
1977 INT nImageCount;
1979 handle = LoadImageW (hi, lpbmp, uType, 0, 0, uFlags);
1980 if (!handle) {
1981 WARN("Couldn't load image\n");
1982 return NULL;
1985 if (uType == IMAGE_BITMAP) {
1986 DIBSECTION dib;
1987 UINT color;
1989 if (GetObjectW (handle, sizeof(dib), &dib) == sizeof(BITMAP)) color = ILC_COLOR;
1990 else color = dib.dsBm.bmBitsPixel;
1992 /* To match windows behavior, if cx is set to zero and
1993 the flag DI_DEFAULTSIZE is specified, cx becomes the
1994 system metric value for icons. If the flag is not specified
1995 the function sets the size to the height of the bitmap */
1996 if (cx == 0)
1998 if (uFlags & DI_DEFAULTSIZE)
1999 cx = GetSystemMetrics (SM_CXICON);
2000 else
2001 cx = dib.dsBm.bmHeight;
2004 nImageCount = dib.dsBm.bmWidth / cx;
2006 himl = ImageList_Create (cx, dib.dsBm.bmHeight, ILC_MASK | color, nImageCount, cGrow);
2007 if (!himl) {
2008 DeleteObject (handle);
2009 return NULL;
2011 ImageList_AddMasked (himl, handle, clrMask);
2013 else if ((uType == IMAGE_ICON) || (uType == IMAGE_CURSOR)) {
2014 ICONINFO ii;
2015 BITMAP bmp;
2017 GetIconInfo (handle, &ii);
2018 GetObjectW (ii.hbmColor, sizeof(BITMAP), &bmp);
2019 himl = ImageList_Create (bmp.bmWidth, bmp.bmHeight,
2020 ILC_MASK | ILC_COLOR, 1, cGrow);
2021 if (!himl) {
2022 DeleteObject (ii.hbmColor);
2023 DeleteObject (ii.hbmMask);
2024 DeleteObject (handle);
2025 return NULL;
2027 ImageList_Add (himl, ii.hbmColor, ii.hbmMask);
2028 DeleteObject (ii.hbmColor);
2029 DeleteObject (ii.hbmMask);
2032 DeleteObject (handle);
2034 return himl;
2038 /*************************************************************************
2039 * ImageList_Merge [COMCTL32.@]
2041 * Create an image list containing a merged image from two image lists.
2043 * PARAMS
2044 * himl1 [I] handle to first image list
2045 * i1 [I] first image index
2046 * himl2 [I] handle to second image list
2047 * i2 [I] second image index
2048 * dx [I] X offset of the second image relative to the first.
2049 * dy [I] Y offset of the second image relative to the first.
2051 * RETURNS
2052 * Success: The newly created image list. It contains a single image
2053 * consisting of the second image merged with the first.
2054 * Failure: NULL, if either himl1 or himl2 are invalid.
2056 * NOTES
2057 * - The returned image list should be deleted by the caller using
2058 * ImageList_Destroy() when it is no longer required.
2059 * - If either i1 or i2 are not valid image indices they will be treated
2060 * as a blank image.
2062 HIMAGELIST WINAPI
2063 ImageList_Merge (HIMAGELIST himl1, INT i1, HIMAGELIST himl2, INT i2,
2064 INT dx, INT dy)
2066 HIMAGELIST himlDst = NULL;
2067 INT cxDst, cyDst;
2068 INT xOff1, yOff1, xOff2, yOff2;
2069 POINT pt1, pt2;
2071 TRACE("(himl1=%p i1=%d himl2=%p i2=%d dx=%d dy=%d)\n", himl1, i1, himl2,
2072 i2, dx, dy);
2074 if (!is_valid(himl1) || !is_valid(himl2))
2075 return NULL;
2077 if (dx > 0) {
2078 cxDst = max (himl1->cx, dx + himl2->cx);
2079 xOff1 = 0;
2080 xOff2 = dx;
2082 else if (dx < 0) {
2083 cxDst = max (himl2->cx, himl1->cx - dx);
2084 xOff1 = -dx;
2085 xOff2 = 0;
2087 else {
2088 cxDst = max (himl1->cx, himl2->cx);
2089 xOff1 = 0;
2090 xOff2 = 0;
2093 if (dy > 0) {
2094 cyDst = max (himl1->cy, dy + himl2->cy);
2095 yOff1 = 0;
2096 yOff2 = dy;
2098 else if (dy < 0) {
2099 cyDst = max (himl2->cy, himl1->cy - dy);
2100 yOff1 = -dy;
2101 yOff2 = 0;
2103 else {
2104 cyDst = max (himl1->cy, himl2->cy);
2105 yOff1 = 0;
2106 yOff2 = 0;
2109 himlDst = ImageList_Create (cxDst, cyDst, ILC_MASK | ILC_COLOR, 1, 1);
2111 if (himlDst)
2113 imagelist_point_from_index( himl1, i1, &pt1 );
2114 imagelist_point_from_index( himl2, i2, &pt2 );
2116 /* copy image */
2117 BitBlt (himlDst->hdcImage, 0, 0, cxDst, cyDst, himl1->hdcImage, 0, 0, BLACKNESS);
2118 if (i1 >= 0 && i1 < himl1->cCurImage)
2119 BitBlt (himlDst->hdcImage, xOff1, yOff1, himl1->cx, himl1->cy, himl1->hdcImage, pt1.x, pt1.y, SRCCOPY);
2120 if (i2 >= 0 && i2 < himl2->cCurImage)
2122 BitBlt (himlDst->hdcImage, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcMask , pt2.x, pt2.y, SRCAND);
2123 BitBlt (himlDst->hdcImage, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcImage, pt2.x, pt2.y, SRCPAINT);
2126 /* copy mask */
2127 BitBlt (himlDst->hdcMask, 0, 0, cxDst, cyDst, himl1->hdcMask, 0, 0, WHITENESS);
2128 if (i1 >= 0 && i1 < himl1->cCurImage)
2129 BitBlt (himlDst->hdcMask, xOff1, yOff1, himl1->cx, himl1->cy, himl1->hdcMask, pt1.x, pt1.y, SRCCOPY);
2130 if (i2 >= 0 && i2 < himl2->cCurImage)
2131 BitBlt (himlDst->hdcMask, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcMask, pt2.x, pt2.y, SRCAND);
2133 himlDst->cCurImage = 1;
2136 return himlDst;
2140 /* helper for ImageList_Read, see comments below */
2141 static void *read_bitmap(LPSTREAM pstm, BITMAPINFO *bmi)
2143 BITMAPFILEHEADER bmfh;
2144 int bitsperpixel, palspace;
2145 void *bits;
2147 if (FAILED(IStream_Read ( pstm, &bmfh, sizeof(bmfh), NULL)))
2148 return NULL;
2150 if (bmfh.bfType != (('M'<<8)|'B'))
2151 return NULL;
2153 if (FAILED(IStream_Read ( pstm, &bmi->bmiHeader, sizeof(bmi->bmiHeader), NULL)))
2154 return NULL;
2156 if ((bmi->bmiHeader.biSize != sizeof(bmi->bmiHeader)))
2157 return NULL;
2159 TRACE("width %u, height %u, planes %u, bpp %u\n",
2160 bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight,
2161 bmi->bmiHeader.biPlanes, bmi->bmiHeader.biBitCount);
2163 bitsperpixel = bmi->bmiHeader.biPlanes * bmi->bmiHeader.biBitCount;
2164 if (bitsperpixel<=8)
2165 palspace = (1<<bitsperpixel)*sizeof(RGBQUAD);
2166 else
2167 palspace = 0;
2169 bmi->bmiHeader.biSizeImage = get_dib_image_size( bmi );
2171 /* read the palette right after the end of the bitmapinfoheader */
2172 if (palspace && FAILED(IStream_Read(pstm, bmi->bmiColors, palspace, NULL)))
2173 return NULL;
2175 bits = Alloc(bmi->bmiHeader.biSizeImage);
2176 if (!bits) return NULL;
2178 if (FAILED(IStream_Read(pstm, bits, bmi->bmiHeader.biSizeImage, NULL)))
2180 Free(bits);
2181 return NULL;
2183 return bits;
2186 /*************************************************************************
2187 * ImageList_Read [COMCTL32.@]
2189 * Reads an image list from a stream.
2191 * PARAMS
2192 * pstm [I] pointer to a stream
2194 * RETURNS
2195 * Success: handle to image list
2196 * Failure: NULL
2198 * The format is like this:
2199 * ILHEAD ilheadstruct;
2201 * for the color image part:
2202 * BITMAPFILEHEADER bmfh;
2203 * BITMAPINFOHEADER bmih;
2204 * only if it has a palette:
2205 * RGBQUAD rgbs[nr_of_paletted_colors];
2207 * BYTE colorbits[imagesize];
2209 * the following only if the ILC_MASK bit is set in ILHEAD.ilFlags:
2210 * BITMAPFILEHEADER bmfh_mask;
2211 * BITMAPINFOHEADER bmih_mask;
2212 * only if it has a palette (it usually does not):
2213 * RGBQUAD rgbs[nr_of_paletted_colors];
2215 * BYTE maskbits[imagesize];
2217 HIMAGELIST WINAPI ImageList_Read (LPSTREAM pstm)
2219 char image_buf[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256];
2220 char mask_buf[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256];
2221 BITMAPINFO *image_info = (BITMAPINFO *)image_buf;
2222 BITMAPINFO *mask_info = (BITMAPINFO *)mask_buf;
2223 void *image_bits, *mask_bits = NULL;
2224 ILHEAD ilHead;
2225 HIMAGELIST himl;
2226 int i;
2228 TRACE("%p\n", pstm);
2230 if (FAILED(IStream_Read (pstm, &ilHead, sizeof(ILHEAD), NULL)))
2231 return NULL;
2232 if (ilHead.usMagic != (('L' << 8) | 'I'))
2233 return NULL;
2234 if (ilHead.usVersion != 0x101) /* probably version? */
2235 return NULL;
2237 TRACE("cx %u, cy %u, flags 0x%04x, cCurImage %u, cMaxImage %u\n",
2238 ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
2240 himl = ImageList_Create(ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
2241 if (!himl)
2242 return NULL;
2244 if (!(image_bits = read_bitmap(pstm, image_info)))
2246 WARN("failed to read bitmap from stream\n");
2247 return NULL;
2249 if (ilHead.flags & ILC_MASK)
2251 if (!(mask_bits = read_bitmap(pstm, mask_info)))
2253 WARN("failed to read mask bitmap from stream\n");
2254 return NULL;
2257 else mask_info = NULL;
2259 if (himl->has_alpha && image_info->bmiHeader.biBitCount == 32)
2261 DWORD *ptr = image_bits;
2262 BYTE *mask_ptr = mask_bits;
2263 int stride = himl->cy * image_info->bmiHeader.biWidth;
2265 if (image_info->bmiHeader.biHeight > 0) /* bottom-up */
2267 ptr += image_info->bmiHeader.biHeight * image_info->bmiHeader.biWidth - stride;
2268 mask_ptr += (image_info->bmiHeader.biHeight * image_info->bmiHeader.biWidth - stride) / 8;
2269 stride = -stride;
2270 image_info->bmiHeader.biHeight = himl->cy;
2272 else image_info->bmiHeader.biHeight = -himl->cy;
2274 for (i = 0; i < ilHead.cCurImage; i += TILE_COUNT)
2276 add_dib_bits( himl, i, min( ilHead.cCurImage - i, TILE_COUNT ),
2277 himl->cx, himl->cy, image_info, mask_info, ptr, mask_ptr );
2278 ptr += stride;
2279 mask_ptr += stride / 8;
2282 else
2284 StretchDIBits( himl->hdcImage, 0, 0, image_info->bmiHeader.biWidth, image_info->bmiHeader.biHeight,
2285 0, 0, image_info->bmiHeader.biWidth, image_info->bmiHeader.biHeight,
2286 image_bits, image_info, DIB_RGB_COLORS, SRCCOPY);
2287 if (mask_info)
2288 StretchDIBits( himl->hdcMask, 0, 0, mask_info->bmiHeader.biWidth, mask_info->bmiHeader.biHeight,
2289 0, 0, mask_info->bmiHeader.biWidth, mask_info->bmiHeader.biHeight,
2290 mask_bits, mask_info, DIB_RGB_COLORS, SRCCOPY);
2292 Free( image_bits );
2293 Free( mask_bits );
2295 himl->cCurImage = ilHead.cCurImage;
2296 himl->cMaxImage = ilHead.cMaxImage;
2298 ImageList_SetBkColor(himl,ilHead.bkcolor);
2299 for (i=0;i<4;i++)
2300 ImageList_SetOverlayImage(himl,ilHead.ovls[i],i+1);
2301 return himl;
2305 /*************************************************************************
2306 * ImageList_Remove [COMCTL32.@]
2308 * Removes an image from an image list
2310 * PARAMS
2311 * himl [I] image list handle
2312 * i [I] image index
2314 * RETURNS
2315 * Success: TRUE
2316 * Failure: FALSE
2318 * FIXME: as the image list storage test shows, native comctl32 simply shifts
2319 * images without creating a new bitmap.
2321 BOOL WINAPI
2322 ImageList_Remove (HIMAGELIST himl, INT i)
2324 HBITMAP hbmNewImage, hbmNewMask;
2325 HDC hdcBmp;
2326 SIZE sz;
2328 TRACE("(himl=%p i=%d)\n", himl, i);
2330 if (!is_valid(himl)) {
2331 ERR("Invalid image list handle!\n");
2332 return FALSE;
2335 if ((i < -1) || (i >= himl->cCurImage)) {
2336 TRACE("index out of range! %d\n", i);
2337 return FALSE;
2340 if (i == -1) {
2341 INT nCount;
2343 /* remove all */
2344 if (himl->cCurImage == 0) {
2345 /* remove all on empty ImageList is allowed */
2346 TRACE("remove all on empty ImageList!\n");
2347 return TRUE;
2350 himl->cMaxImage = himl->cInitial + himl->cGrow - 1;
2351 himl->cCurImage = 0;
2352 for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
2353 himl->nOvlIdx[nCount] = -1;
2355 hbmNewImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2356 SelectObject (himl->hdcImage, hbmNewImage);
2357 DeleteObject (himl->hbmImage);
2358 himl->hbmImage = hbmNewImage;
2360 if (himl->hbmMask) {
2362 imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
2363 hbmNewMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2364 SelectObject (himl->hdcMask, hbmNewMask);
2365 DeleteObject (himl->hbmMask);
2366 himl->hbmMask = hbmNewMask;
2369 else {
2370 /* delete one image */
2371 TRACE("Remove single image! %d\n", i);
2373 /* create new bitmap(s) */
2374 TRACE(" - Number of images: %d / %d (Old/New)\n",
2375 himl->cCurImage, himl->cCurImage - 1);
2377 hbmNewImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2379 imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz );
2380 if (himl->hbmMask)
2381 hbmNewMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2382 else
2383 hbmNewMask = 0; /* Just to keep compiler happy! */
2385 hdcBmp = CreateCompatibleDC (0);
2387 /* copy all images and masks prior to the "removed" image */
2388 if (i > 0) {
2389 TRACE("Pre image copy: Copy %d images\n", i);
2391 SelectObject (hdcBmp, hbmNewImage);
2392 imagelist_copy_images( himl, himl->hdcImage, hdcBmp, 0, i, 0 );
2394 if (himl->hbmMask) {
2395 SelectObject (hdcBmp, hbmNewMask);
2396 imagelist_copy_images( himl, himl->hdcMask, hdcBmp, 0, i, 0 );
2400 /* copy all images and masks behind the removed image */
2401 if (i < himl->cCurImage - 1) {
2402 TRACE("Post image copy!\n");
2404 SelectObject (hdcBmp, hbmNewImage);
2405 imagelist_copy_images( himl, himl->hdcImage, hdcBmp, i + 1,
2406 (himl->cCurImage - i), i );
2408 if (himl->hbmMask) {
2409 SelectObject (hdcBmp, hbmNewMask);
2410 imagelist_copy_images( himl, himl->hdcMask, hdcBmp, i + 1,
2411 (himl->cCurImage - i), i );
2415 DeleteDC (hdcBmp);
2417 /* delete old images and insert new ones */
2418 SelectObject (himl->hdcImage, hbmNewImage);
2419 DeleteObject (himl->hbmImage);
2420 himl->hbmImage = hbmNewImage;
2421 if (himl->hbmMask) {
2422 SelectObject (himl->hdcMask, hbmNewMask);
2423 DeleteObject (himl->hbmMask);
2424 himl->hbmMask = hbmNewMask;
2427 himl->cCurImage--;
2430 return TRUE;
2434 /*************************************************************************
2435 * ImageList_Replace [COMCTL32.@]
2437 * Replaces an image in an image list with a new image.
2439 * PARAMS
2440 * himl [I] handle to image list
2441 * i [I] image index
2442 * hbmImage [I] handle to image bitmap
2443 * hbmMask [I] handle to mask bitmap. Can be NULL.
2445 * RETURNS
2446 * Success: TRUE
2447 * Failure: FALSE
2450 BOOL WINAPI
2451 ImageList_Replace (HIMAGELIST himl, INT i, HBITMAP hbmImage,
2452 HBITMAP hbmMask)
2454 HDC hdcImage;
2455 BITMAP bmp;
2456 POINT pt;
2458 TRACE("%p %d %p %p\n", himl, i, hbmImage, hbmMask);
2460 if (!is_valid(himl)) {
2461 ERR("Invalid image list handle!\n");
2462 return FALSE;
2465 if ((i >= himl->cMaxImage) || (i < 0)) {
2466 ERR("Invalid image index!\n");
2467 return FALSE;
2470 if (!GetObjectW(hbmImage, sizeof(BITMAP), &bmp))
2471 return FALSE;
2473 hdcImage = CreateCompatibleDC (0);
2475 /* Replace Image */
2476 SelectObject (hdcImage, hbmImage);
2478 if (add_with_alpha( himl, hdcImage, i, 1, bmp.bmWidth, bmp.bmHeight, hbmImage, hbmMask ))
2479 goto done;
2481 imagelist_point_from_index(himl, i, &pt);
2482 StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
2483 hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2485 if (himl->hbmMask)
2487 HDC hdcTemp;
2488 HBITMAP hOldBitmapTemp;
2490 hdcTemp = CreateCompatibleDC(0);
2491 hOldBitmapTemp = SelectObject(hdcTemp, hbmMask);
2493 StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
2494 hdcTemp, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2495 SelectObject(hdcTemp, hOldBitmapTemp);
2496 DeleteDC(hdcTemp);
2498 /* Remove the background from the image
2500 BitBlt (himl->hdcImage, pt.x, pt.y, bmp.bmWidth, bmp.bmHeight,
2501 himl->hdcMask, pt.x, pt.y, 0x220326); /* NOTSRCAND */
2504 done:
2505 DeleteDC (hdcImage);
2507 return TRUE;
2511 /*************************************************************************
2512 * ImageList_ReplaceIcon [COMCTL32.@]
2514 * Replaces an image in an image list using an icon.
2516 * PARAMS
2517 * himl [I] handle to image list
2518 * i [I] image index
2519 * hIcon [I] handle to icon
2521 * RETURNS
2522 * Success: index of the replaced image
2523 * Failure: -1
2526 INT WINAPI
2527 ImageList_ReplaceIcon (HIMAGELIST himl, INT nIndex, HICON hIcon)
2529 HDC hdcImage;
2530 HICON hBestFitIcon;
2531 ICONINFO ii;
2532 BITMAP bmp;
2533 BOOL ret;
2534 POINT pt;
2536 TRACE("(%p %d %p)\n", himl, nIndex, hIcon);
2538 if (!is_valid(himl)) {
2539 ERR("invalid image list\n");
2540 return -1;
2542 if ((nIndex >= himl->cMaxImage) || (nIndex < -1)) {
2543 ERR("invalid image index %d / %d\n", nIndex, himl->cMaxImage);
2544 return -1;
2547 hBestFitIcon = CopyImage(
2548 hIcon, IMAGE_ICON,
2549 himl->cx, himl->cy,
2550 LR_COPYFROMRESOURCE);
2551 /* the above will fail if the icon wasn't loaded from a resource, so try
2552 * again without LR_COPYFROMRESOURCE flag */
2553 if (!hBestFitIcon)
2554 hBestFitIcon = CopyImage(
2555 hIcon, IMAGE_ICON,
2556 himl->cx, himl->cy,
2558 if (!hBestFitIcon)
2559 return -1;
2561 ret = GetIconInfo (hBestFitIcon, &ii);
2562 if (!ret) {
2563 DestroyIcon(hBestFitIcon);
2564 return -1;
2567 ret = GetObjectW (ii.hbmMask, sizeof(BITMAP), &bmp);
2568 if (!ret) {
2569 ERR("couldn't get mask bitmap info\n");
2570 if (ii.hbmColor)
2571 DeleteObject (ii.hbmColor);
2572 if (ii.hbmMask)
2573 DeleteObject (ii.hbmMask);
2574 DestroyIcon(hBestFitIcon);
2575 return -1;
2578 if (nIndex == -1) {
2579 if (himl->cCurImage + 1 > himl->cMaxImage)
2580 IMAGELIST_InternalExpandBitmaps(himl, 1);
2582 nIndex = himl->cCurImage;
2583 himl->cCurImage++;
2586 hdcImage = CreateCompatibleDC (0);
2587 TRACE("hdcImage=%p\n", hdcImage);
2588 if (hdcImage == 0)
2589 ERR("invalid hdcImage!\n");
2591 if (himl->has_alpha)
2593 if (!ii.hbmColor)
2595 UINT height = bmp.bmHeight / 2;
2596 HDC hdcMask = CreateCompatibleDC( 0 );
2597 HBITMAP color = CreateBitmap( bmp.bmWidth, height, 1, 1, NULL );
2598 SelectObject( hdcImage, color );
2599 SelectObject( hdcMask, ii.hbmMask );
2600 BitBlt( hdcImage, 0, 0, bmp.bmWidth, height, hdcMask, 0, height, SRCCOPY );
2601 ret = add_with_alpha( himl, hdcImage, nIndex, 1, bmp.bmWidth, height, color, ii.hbmMask );
2602 DeleteDC( hdcMask );
2603 DeleteObject( color );
2604 if (ret) goto done;
2606 else if (add_with_alpha( himl, hdcImage, nIndex, 1, bmp.bmWidth, bmp.bmHeight,
2607 ii.hbmColor, ii.hbmMask )) goto done;
2610 imagelist_point_from_index(himl, nIndex, &pt);
2612 SetTextColor(himl->hdcImage, RGB(0,0,0));
2613 SetBkColor (himl->hdcImage, RGB(255,255,255));
2615 if (ii.hbmColor)
2617 SelectObject (hdcImage, ii.hbmColor);
2618 StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
2619 hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2620 if (himl->hbmMask)
2622 SelectObject (hdcImage, ii.hbmMask);
2623 StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
2624 hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2627 else
2629 UINT height = bmp.bmHeight / 2;
2630 SelectObject (hdcImage, ii.hbmMask);
2631 StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
2632 hdcImage, 0, height, bmp.bmWidth, height, SRCCOPY);
2633 if (himl->hbmMask)
2634 StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
2635 hdcImage, 0, 0, bmp.bmWidth, height, SRCCOPY);
2638 done:
2639 DestroyIcon(hBestFitIcon);
2640 if (hdcImage)
2641 DeleteDC (hdcImage);
2642 if (ii.hbmColor)
2643 DeleteObject (ii.hbmColor);
2644 if (ii.hbmMask)
2645 DeleteObject (ii.hbmMask);
2647 TRACE("Insert index = %d, himl->cCurImage = %d\n", nIndex, himl->cCurImage);
2648 return nIndex;
2652 /*************************************************************************
2653 * ImageList_SetBkColor [COMCTL32.@]
2655 * Sets the background color of an image list.
2657 * PARAMS
2658 * himl [I] handle to image list
2659 * clrBk [I] background color
2661 * RETURNS
2662 * Success: previous background color
2663 * Failure: CLR_NONE
2666 COLORREF WINAPI
2667 ImageList_SetBkColor (HIMAGELIST himl, COLORREF clrBk)
2669 COLORREF clrOldBk;
2671 if (!is_valid(himl))
2672 return CLR_NONE;
2674 clrOldBk = himl->clrBk;
2675 himl->clrBk = clrBk;
2676 return clrOldBk;
2680 /*************************************************************************
2681 * ImageList_SetDragCursorImage [COMCTL32.@]
2683 * Combines the specified image with the current drag image
2685 * PARAMS
2686 * himlDrag [I] handle to drag image list
2687 * iDrag [I] drag image index
2688 * dxHotspot [I] X position of the hot spot
2689 * dyHotspot [I] Y position of the hot spot
2691 * RETURNS
2692 * Success: TRUE
2693 * Failure: FALSE
2695 * NOTES
2696 * - The names dxHotspot, dyHotspot are misleading because they have nothing
2697 * to do with a hotspot but are only the offset of the origin of the new
2698 * image relative to the origin of the old image.
2700 * - When this function is called and the drag image is visible, a
2701 * short flickering occurs but this matches the Win9x behavior. It is
2702 * possible to fix the flickering using code like in ImageList_DragMove.
2705 BOOL WINAPI
2706 ImageList_SetDragCursorImage (HIMAGELIST himlDrag, INT iDrag,
2707 INT dxHotspot, INT dyHotspot)
2709 HIMAGELIST himlTemp;
2710 BOOL visible;
2712 if (!is_valid(InternalDrag.himl) || !is_valid(himlDrag))
2713 return FALSE;
2715 TRACE(" dxH=%d dyH=%d nX=%d nY=%d\n",
2716 dxHotspot, dyHotspot, InternalDrag.dxHotspot, InternalDrag.dyHotspot);
2718 visible = InternalDrag.bShow;
2720 himlTemp = ImageList_Merge (InternalDrag.himl, 0, himlDrag, iDrag,
2721 dxHotspot, dyHotspot);
2723 if (visible) {
2724 /* hide the drag image */
2725 ImageList_DragShowNolock(FALSE);
2727 if ((InternalDrag.himl->cx != himlTemp->cx) ||
2728 (InternalDrag.himl->cy != himlTemp->cy)) {
2729 /* the size of the drag image changed, invalidate the buffer */
2730 DeleteObject(InternalDrag.hbmBg);
2731 InternalDrag.hbmBg = 0;
2734 ImageList_Destroy (InternalDrag.himl);
2735 InternalDrag.himl = himlTemp;
2737 if (visible) {
2738 /* show the drag image */
2739 ImageList_DragShowNolock(TRUE);
2742 return TRUE;
2746 /*************************************************************************
2747 * ImageList_SetFilter [COMCTL32.@]
2749 * Sets a filter (or does something completely different)!!???
2750 * It removes 12 Bytes from the stack (3 Parameters).
2752 * PARAMS
2753 * himl [I] SHOULD be a handle to image list
2754 * i [I] COULD be an index?
2755 * dwFilter [I] ???
2757 * RETURNS
2758 * Success: TRUE ???
2759 * Failure: FALSE ???
2761 * BUGS
2762 * This is an UNDOCUMENTED function!!!!
2763 * empty stub.
2766 BOOL WINAPI
2767 ImageList_SetFilter (HIMAGELIST himl, INT i, DWORD dwFilter)
2769 FIXME("(%p 0x%x 0x%x):empty stub!\n", himl, i, dwFilter);
2771 return FALSE;
2775 /*************************************************************************
2776 * ImageList_SetFlags [COMCTL32.@]
2778 * Sets the image list flags.
2780 * PARAMS
2781 * himl [I] Handle to image list
2782 * flags [I] Flags to set
2784 * RETURNS
2785 * Old flags?
2787 * BUGS
2788 * Stub.
2791 DWORD WINAPI
2792 ImageList_SetFlags(HIMAGELIST himl, DWORD flags)
2794 FIXME("(%p %08x):empty stub\n", himl, flags);
2795 return 0;
2799 /*************************************************************************
2800 * ImageList_SetIconSize [COMCTL32.@]
2802 * Sets the image size of the bitmap and deletes all images.
2804 * PARAMS
2805 * himl [I] handle to image list
2806 * cx [I] image width
2807 * cy [I] image height
2809 * RETURNS
2810 * Success: TRUE
2811 * Failure: FALSE
2814 BOOL WINAPI
2815 ImageList_SetIconSize (HIMAGELIST himl, INT cx, INT cy)
2817 INT nCount;
2818 HBITMAP hbmNew;
2820 if (!is_valid(himl))
2821 return FALSE;
2823 /* remove all images */
2824 himl->cMaxImage = himl->cInitial + 1;
2825 himl->cCurImage = 0;
2826 himl->cx = cx;
2827 himl->cy = cy;
2829 /* initialize overlay mask indices */
2830 for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
2831 himl->nOvlIdx[nCount] = -1;
2833 hbmNew = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2834 SelectObject (himl->hdcImage, hbmNew);
2835 DeleteObject (himl->hbmImage);
2836 himl->hbmImage = hbmNew;
2838 if (himl->hbmMask) {
2839 SIZE sz;
2840 imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
2841 hbmNew = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2842 SelectObject (himl->hdcMask, hbmNew);
2843 DeleteObject (himl->hbmMask);
2844 himl->hbmMask = hbmNew;
2847 return TRUE;
2851 /*************************************************************************
2852 * ImageList_SetImageCount [COMCTL32.@]
2854 * Resizes an image list to the specified number of images.
2856 * PARAMS
2857 * himl [I] handle to image list
2858 * iImageCount [I] number of images in the image list
2860 * RETURNS
2861 * Success: TRUE
2862 * Failure: FALSE
2865 BOOL WINAPI
2866 ImageList_SetImageCount (HIMAGELIST himl, UINT iImageCount)
2868 HDC hdcBitmap;
2869 HBITMAP hbmNewBitmap, hbmOld;
2870 INT nNewCount, nCopyCount;
2872 TRACE("%p %d\n",himl,iImageCount);
2874 if (!is_valid(himl))
2875 return FALSE;
2876 if (himl->cMaxImage > iImageCount)
2878 himl->cCurImage = iImageCount;
2879 /* TODO: shrink the bitmap when cMaxImage-cCurImage>cGrow ? */
2880 return TRUE;
2883 nNewCount = iImageCount + himl->cGrow;
2884 nCopyCount = min(himl->cCurImage, iImageCount);
2886 hdcBitmap = CreateCompatibleDC (0);
2888 hbmNewBitmap = ImageList_CreateImage(hdcBitmap, himl, nNewCount);
2890 if (hbmNewBitmap != 0)
2892 hbmOld = SelectObject (hdcBitmap, hbmNewBitmap);
2893 imagelist_copy_images( himl, himl->hdcImage, hdcBitmap, 0, nCopyCount, 0 );
2894 SelectObject (hdcBitmap, hbmOld);
2896 /* FIXME: delete 'empty' image space? */
2898 SelectObject (himl->hdcImage, hbmNewBitmap);
2899 DeleteObject (himl->hbmImage);
2900 himl->hbmImage = hbmNewBitmap;
2902 else
2903 ERR("Could not create new image bitmap !\n");
2905 if (himl->hbmMask)
2907 SIZE sz;
2908 imagelist_get_bitmap_size( himl, nNewCount, &sz );
2909 hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2910 if (hbmNewBitmap != 0)
2912 hbmOld = SelectObject (hdcBitmap, hbmNewBitmap);
2913 imagelist_copy_images( himl, himl->hdcMask, hdcBitmap, 0, nCopyCount, 0 );
2914 SelectObject (hdcBitmap, hbmOld);
2916 /* FIXME: delete 'empty' image space? */
2918 SelectObject (himl->hdcMask, hbmNewBitmap);
2919 DeleteObject (himl->hbmMask);
2920 himl->hbmMask = hbmNewBitmap;
2922 else
2923 ERR("Could not create new mask bitmap!\n");
2926 DeleteDC (hdcBitmap);
2928 if (himl->has_alpha)
2930 char *new_alpha = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->has_alpha, nNewCount );
2931 if (new_alpha) himl->has_alpha = new_alpha;
2932 else
2934 HeapFree( GetProcessHeap(), 0, himl->has_alpha );
2935 himl->has_alpha = NULL;
2939 /* Update max image count and current image count */
2940 himl->cMaxImage = nNewCount;
2941 himl->cCurImage = iImageCount;
2943 return TRUE;
2947 /*************************************************************************
2948 * ImageList_SetOverlayImage [COMCTL32.@]
2950 * Assigns an overlay mask index to an existing image in an image list.
2952 * PARAMS
2953 * himl [I] handle to image list
2954 * iImage [I] image index
2955 * iOverlay [I] overlay mask index
2957 * RETURNS
2958 * Success: TRUE
2959 * Failure: FALSE
2962 BOOL WINAPI
2963 ImageList_SetOverlayImage (HIMAGELIST himl, INT iImage, INT iOverlay)
2965 if (!is_valid(himl))
2966 return FALSE;
2967 if ((iOverlay < 1) || (iOverlay > MAX_OVERLAYIMAGE))
2968 return FALSE;
2969 if ((iImage!=-1) && ((iImage < 0) || (iImage > himl->cCurImage)))
2970 return FALSE;
2971 himl->nOvlIdx[iOverlay - 1] = iImage;
2972 return TRUE;
2977 /* helper for ImageList_Write - write bitmap to pstm
2978 * currently everything is written as 24 bit RGB, except masks
2980 static BOOL
2981 _write_bitmap(HBITMAP hBitmap, LPSTREAM pstm)
2983 LPBITMAPFILEHEADER bmfh;
2984 LPBITMAPINFOHEADER bmih;
2985 LPBYTE data = NULL, lpBits;
2986 BITMAP bm;
2987 INT bitCount, sizeImage, offBits, totalSize;
2988 HDC xdc;
2989 BOOL result = FALSE;
2991 if (!GetObjectW(hBitmap, sizeof(BITMAP), &bm))
2992 return FALSE;
2994 bitCount = bm.bmBitsPixel == 1 ? 1 : 24;
2995 sizeImage = get_dib_stride(bm.bmWidth, bitCount) * bm.bmHeight;
2997 totalSize = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
2998 if(bitCount != 24)
2999 totalSize += (1 << bitCount) * sizeof(RGBQUAD);
3000 offBits = totalSize;
3001 totalSize += sizeImage;
3003 data = Alloc(totalSize);
3004 bmfh = (LPBITMAPFILEHEADER)data;
3005 bmih = (LPBITMAPINFOHEADER)(data + sizeof(BITMAPFILEHEADER));
3006 lpBits = data + offBits;
3008 /* setup BITMAPFILEHEADER */
3009 bmfh->bfType = (('M' << 8) | 'B');
3010 bmfh->bfSize = offBits;
3011 bmfh->bfReserved1 = 0;
3012 bmfh->bfReserved2 = 0;
3013 bmfh->bfOffBits = offBits;
3015 /* setup BITMAPINFOHEADER */
3016 bmih->biSize = sizeof(BITMAPINFOHEADER);
3017 bmih->biWidth = bm.bmWidth;
3018 bmih->biHeight = bm.bmHeight;
3019 bmih->biPlanes = 1;
3020 bmih->biBitCount = bitCount;
3021 bmih->biCompression = BI_RGB;
3022 bmih->biSizeImage = sizeImage;
3023 bmih->biXPelsPerMeter = 0;
3024 bmih->biYPelsPerMeter = 0;
3025 bmih->biClrUsed = 0;
3026 bmih->biClrImportant = 0;
3028 xdc = GetDC(0);
3029 result = GetDIBits(xdc, hBitmap, 0, bm.bmHeight, lpBits, (BITMAPINFO *)bmih, DIB_RGB_COLORS) == bm.bmHeight;
3030 ReleaseDC(0, xdc);
3031 if (!result)
3032 goto failed;
3034 TRACE("width %u, height %u, planes %u, bpp %u\n",
3035 bmih->biWidth, bmih->biHeight,
3036 bmih->biPlanes, bmih->biBitCount);
3038 if(bitCount == 1) {
3039 /* Hack. */
3040 LPBITMAPINFO inf = (LPBITMAPINFO)bmih;
3041 inf->bmiColors[0].rgbRed = inf->bmiColors[0].rgbGreen = inf->bmiColors[0].rgbBlue = 0;
3042 inf->bmiColors[1].rgbRed = inf->bmiColors[1].rgbGreen = inf->bmiColors[1].rgbBlue = 0xff;
3045 if(FAILED(IStream_Write(pstm, data, totalSize, NULL)))
3046 goto failed;
3048 result = TRUE;
3050 failed:
3051 Free(data);
3053 return result;
3057 /*************************************************************************
3058 * ImageList_Write [COMCTL32.@]
3060 * Writes an image list to a stream.
3062 * PARAMS
3063 * himl [I] handle to image list
3064 * pstm [O] Pointer to a stream.
3066 * RETURNS
3067 * Success: TRUE
3068 * Failure: FALSE
3070 * BUGS
3071 * probably.
3074 BOOL WINAPI
3075 ImageList_Write (HIMAGELIST himl, LPSTREAM pstm)
3077 ILHEAD ilHead;
3078 int i;
3080 TRACE("%p %p\n", himl, pstm);
3082 if (!is_valid(himl))
3083 return FALSE;
3085 ilHead.usMagic = (('L' << 8) | 'I');
3086 ilHead.usVersion = 0x101;
3087 ilHead.cCurImage = himl->cCurImage;
3088 ilHead.cMaxImage = himl->cMaxImage;
3089 ilHead.cGrow = himl->cGrow;
3090 ilHead.cx = himl->cx;
3091 ilHead.cy = himl->cy;
3092 ilHead.bkcolor = himl->clrBk;
3093 ilHead.flags = himl->flags;
3094 for(i = 0; i < 4; i++) {
3095 ilHead.ovls[i] = himl->nOvlIdx[i];
3098 TRACE("cx %u, cy %u, flags 0x04%x, cCurImage %u, cMaxImage %u\n",
3099 ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
3101 if(FAILED(IStream_Write(pstm, &ilHead, sizeof(ILHEAD), NULL)))
3102 return FALSE;
3104 /* write the bitmap */
3105 if(!_write_bitmap(himl->hbmImage, pstm))
3106 return FALSE;
3108 /* write the mask if we have one */
3109 if(himl->flags & ILC_MASK) {
3110 if(!_write_bitmap(himl->hbmMask, pstm))
3111 return FALSE;
3114 return TRUE;
3118 static HBITMAP ImageList_CreateImage(HDC hdc, HIMAGELIST himl, UINT count)
3120 HBITMAP hbmNewBitmap;
3121 UINT ilc = (himl->flags & 0xFE);
3122 SIZE sz;
3124 imagelist_get_bitmap_size( himl, count, &sz );
3126 if ((ilc >= ILC_COLOR4 && ilc <= ILC_COLOR32) || ilc == ILC_COLOR)
3128 VOID* bits;
3129 BITMAPINFO *bmi;
3131 TRACE("Creating DIBSection %d x %d, %d Bits per Pixel\n",
3132 sz.cx, sz.cy, himl->uBitsPixel);
3134 if (himl->uBitsPixel <= ILC_COLOR8)
3136 LPPALETTEENTRY pal;
3137 ULONG i, colors;
3138 BYTE temp;
3140 colors = 1 << himl->uBitsPixel;
3141 bmi = Alloc(sizeof(BITMAPINFOHEADER) +
3142 sizeof(PALETTEENTRY) * colors);
3144 pal = (LPPALETTEENTRY)bmi->bmiColors;
3145 GetPaletteEntries(GetStockObject(DEFAULT_PALETTE), 0, colors, pal);
3147 /* Swap colors returned by GetPaletteEntries so we can use them for
3148 * CreateDIBSection call. */
3149 for (i = 0; i < colors; i++)
3151 temp = pal[i].peBlue;
3152 bmi->bmiColors[i].rgbRed = pal[i].peRed;
3153 bmi->bmiColors[i].rgbBlue = temp;
3156 else
3158 bmi = Alloc(sizeof(BITMAPINFOHEADER));
3161 bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
3162 bmi->bmiHeader.biWidth = sz.cx;
3163 bmi->bmiHeader.biHeight = sz.cy;
3164 bmi->bmiHeader.biPlanes = 1;
3165 bmi->bmiHeader.biBitCount = himl->uBitsPixel;
3166 bmi->bmiHeader.biCompression = BI_RGB;
3167 bmi->bmiHeader.biSizeImage = 0;
3168 bmi->bmiHeader.biXPelsPerMeter = 0;
3169 bmi->bmiHeader.biYPelsPerMeter = 0;
3170 bmi->bmiHeader.biClrUsed = 0;
3171 bmi->bmiHeader.biClrImportant = 0;
3173 hbmNewBitmap = CreateDIBSection(hdc, bmi, DIB_RGB_COLORS, &bits, 0, 0);
3175 Free (bmi);
3177 else /*if (ilc == ILC_COLORDDB)*/
3179 TRACE("Creating Bitmap: %d Bits per Pixel\n", himl->uBitsPixel);
3181 hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, himl->uBitsPixel, NULL);
3183 TRACE("returning %p\n", hbmNewBitmap);
3184 return hbmNewBitmap;
3187 /*************************************************************************
3188 * ImageList_SetColorTable [COMCTL32.@]
3190 * Sets the color table of an image list.
3192 * PARAMS
3193 * himl [I] Handle to the image list.
3194 * uStartIndex [I] The first index to set.
3195 * cEntries [I] Number of entries to set.
3196 * prgb [I] New color information for color table for the image list.
3198 * RETURNS
3199 * Success: Number of entries in the table that were set.
3200 * Failure: Zero.
3202 * SEE
3203 * ImageList_Create(), SetDIBColorTable()
3206 UINT WINAPI
3207 ImageList_SetColorTable (HIMAGELIST himl, UINT uStartIndex, UINT cEntries, CONST RGBQUAD * prgb)
3209 return SetDIBColorTable(himl->hdcImage, uStartIndex, cEntries, prgb);
3212 /*************************************************************************
3213 * ImageList_CoCreateInstance [COMCTL32.@]
3215 * Creates a new imagelist instance and returns an interface pointer to it.
3217 * PARAMS
3218 * rclsid [I] A reference to the CLSID (CLSID_ImageList).
3219 * punkOuter [I] Pointer to IUnknown interface for aggregation, if desired
3220 * riid [I] Identifier of the requested interface.
3221 * ppv [O] Returns the address of the pointer requested, or NULL.
3223 * RETURNS
3224 * Success: S_OK.
3225 * Failure: Error value.
3227 HRESULT WINAPI
3228 ImageList_CoCreateInstance (REFCLSID rclsid, const IUnknown *punkOuter, REFIID riid, void **ppv)
3230 TRACE("(%s,%p,%s,%p)\n", debugstr_guid(rclsid), punkOuter, debugstr_guid(riid), ppv);
3232 if (!IsEqualCLSID(&CLSID_ImageList, rclsid))
3233 return E_NOINTERFACE;
3235 return ImageListImpl_CreateInstance(punkOuter, riid, ppv);
3239 /*************************************************************************
3240 * IImageList implementation
3243 static HRESULT WINAPI ImageListImpl_QueryInterface(IImageList *iface,
3244 REFIID iid, void **ppv)
3246 HIMAGELIST This = (HIMAGELIST) iface;
3247 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
3249 if (!ppv) return E_INVALIDARG;
3251 if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IImageList, iid))
3252 *ppv = This;
3253 else
3255 *ppv = NULL;
3256 return E_NOINTERFACE;
3259 IUnknown_AddRef((IUnknown*)*ppv);
3260 return S_OK;
3263 static ULONG WINAPI ImageListImpl_AddRef(IImageList *iface)
3265 HIMAGELIST This = (HIMAGELIST) iface;
3266 ULONG ref = InterlockedIncrement(&This->ref);
3268 TRACE("(%p) refcount=%u\n", iface, ref);
3269 return ref;
3272 static ULONG WINAPI ImageListImpl_Release(IImageList *iface)
3274 HIMAGELIST This = (HIMAGELIST) iface;
3275 ULONG ref = InterlockedDecrement(&This->ref);
3277 TRACE("(%p) refcount=%u\n", iface, ref);
3279 if (ref == 0)
3281 /* delete image bitmaps */
3282 if (This->hbmImage) DeleteObject (This->hbmImage);
3283 if (This->hbmMask) DeleteObject (This->hbmMask);
3285 /* delete image & mask DCs */
3286 if (This->hdcImage) DeleteDC (This->hdcImage);
3287 if (This->hdcMask) DeleteDC (This->hdcMask);
3289 /* delete blending brushes */
3290 if (This->hbrBlend25) DeleteObject (This->hbrBlend25);
3291 if (This->hbrBlend50) DeleteObject (This->hbrBlend50);
3293 This->lpVtbl = NULL;
3294 HeapFree(GetProcessHeap(), 0, This->has_alpha);
3295 HeapFree(GetProcessHeap(), 0, This);
3298 return ref;
3301 static HRESULT WINAPI ImageListImpl_Add(IImageList *iface, HBITMAP hbmImage,
3302 HBITMAP hbmMask, int *pi)
3304 HIMAGELIST This = (HIMAGELIST) iface;
3305 int ret;
3307 if (!pi)
3308 return E_FAIL;
3310 ret = ImageList_Add(This, hbmImage, hbmMask);
3312 if (ret == -1)
3313 return E_FAIL;
3315 *pi = ret;
3316 return S_OK;
3319 static HRESULT WINAPI ImageListImpl_ReplaceIcon(IImageList *iface, int i,
3320 HICON hicon, int *pi)
3322 HIMAGELIST This = (HIMAGELIST) iface;
3323 int ret;
3325 if (!pi)
3326 return E_FAIL;
3328 ret = ImageList_ReplaceIcon(This, i, hicon);
3330 if (ret == -1)
3331 return E_FAIL;
3333 *pi = ret;
3334 return S_OK;
3337 static HRESULT WINAPI ImageListImpl_SetOverlayImage(IImageList *iface,
3338 int iImage, int iOverlay)
3340 return ImageList_SetOverlayImage((HIMAGELIST) iface, iImage, iOverlay)
3341 ? S_OK : E_FAIL;
3344 static HRESULT WINAPI ImageListImpl_Replace(IImageList *iface, int i,
3345 HBITMAP hbmImage, HBITMAP hbmMask)
3347 return ImageList_Replace((HIMAGELIST) iface, i, hbmImage, hbmMask) ? S_OK :
3348 E_FAIL;
3351 static HRESULT WINAPI ImageListImpl_AddMasked(IImageList *iface, HBITMAP hbmImage,
3352 COLORREF crMask, int *pi)
3354 HIMAGELIST This = (HIMAGELIST) iface;
3355 int ret;
3357 if (!pi)
3358 return E_FAIL;
3360 ret = ImageList_AddMasked(This, hbmImage, crMask);
3362 if (ret == -1)
3363 return E_FAIL;
3365 *pi = ret;
3366 return S_OK;
3369 static HRESULT WINAPI ImageListImpl_Draw(IImageList *iface,
3370 IMAGELISTDRAWPARAMS *pimldp)
3372 HIMAGELIST This = (HIMAGELIST) iface;
3373 HIMAGELIST old_himl;
3374 int ret;
3376 /* As far as I can tell, Windows simply ignores the contents of pimldp->himl
3377 so we shall simulate the same */
3378 old_himl = pimldp->himl;
3379 pimldp->himl = This;
3381 ret = ImageList_DrawIndirect(pimldp);
3383 pimldp->himl = old_himl;
3384 return ret ? S_OK : E_INVALIDARG;
3387 static HRESULT WINAPI ImageListImpl_Remove(IImageList *iface, int i)
3389 return (ImageList_Remove((HIMAGELIST) iface, i) == 0) ? E_INVALIDARG : S_OK;
3392 static HRESULT WINAPI ImageListImpl_GetIcon(IImageList *iface, int i, UINT flags,
3393 HICON *picon)
3395 HICON hIcon;
3397 if (!picon)
3398 return E_FAIL;
3400 hIcon = ImageList_GetIcon((HIMAGELIST) iface, i, flags);
3402 if (hIcon == NULL)
3403 return E_FAIL;
3405 *picon = hIcon;
3406 return S_OK;
3409 static HRESULT WINAPI ImageListImpl_GetImageInfo(IImageList *iface, int i,
3410 IMAGEINFO *pImageInfo)
3412 return ImageList_GetImageInfo((HIMAGELIST) iface, i, pImageInfo) ? S_OK : E_FAIL;
3415 static HRESULT WINAPI ImageListImpl_Copy(IImageList *iface, int iDst,
3416 IUnknown *punkSrc, int iSrc, UINT uFlags)
3418 HIMAGELIST This = (HIMAGELIST) iface;
3419 IImageList *src = NULL;
3420 HRESULT ret;
3422 if (!punkSrc)
3423 return E_FAIL;
3425 /* TODO: Add test for IID_ImageList2 too */
3426 if (FAILED(IImageList_QueryInterface(punkSrc, &IID_IImageList,
3427 (void **) &src)))
3428 return E_FAIL;
3430 if (ImageList_Copy(This, iDst, (HIMAGELIST) src, iSrc, uFlags))
3431 ret = S_OK;
3432 else
3433 ret = E_FAIL;
3435 IImageList_Release(src);
3436 return ret;
3439 static HRESULT WINAPI ImageListImpl_Merge(IImageList *iface, int i1,
3440 IUnknown *punk2, int i2, int dx, int dy, REFIID riid, void **ppv)
3442 HIMAGELIST This = (HIMAGELIST) iface;
3443 IImageList *iml2 = NULL;
3444 HIMAGELIST hNew;
3445 HRESULT ret = E_FAIL;
3447 TRACE("(%p)->(%d %p %d %d %d %s %p)\n", iface, i1, punk2, i2, dx, dy, debugstr_guid(riid), ppv);
3449 /* TODO: Add test for IID_ImageList2 too */
3450 if (FAILED(IImageList_QueryInterface(punk2, &IID_IImageList,
3451 (void **) &iml2)))
3452 return E_FAIL;
3454 hNew = ImageList_Merge(This, i1, (HIMAGELIST) iml2, i2, dx, dy);
3456 /* Get the interface for the new image list */
3457 if (hNew)
3459 IImageList *imerge = (IImageList*)hNew;
3461 ret = HIMAGELIST_QueryInterface(hNew, riid, ppv);
3462 IImageList_Release(imerge);
3465 IImageList_Release(iml2);
3466 return ret;
3469 static HRESULT WINAPI ImageListImpl_Clone(IImageList *iface, REFIID riid, void **ppv)
3471 HIMAGELIST This = (HIMAGELIST) iface;
3472 HIMAGELIST clone;
3473 HRESULT ret = E_FAIL;
3475 TRACE("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
3477 clone = ImageList_Duplicate(This);
3479 /* Get the interface for the new image list */
3480 if (clone)
3482 IImageList *iclone = (IImageList*)clone;
3484 ret = HIMAGELIST_QueryInterface(clone, riid, ppv);
3485 IImageList_Release(iclone);
3488 return ret;
3491 static HRESULT WINAPI ImageListImpl_GetImageRect(IImageList *iface, int i,
3492 RECT *prc)
3494 HIMAGELIST This = (HIMAGELIST) iface;
3495 IMAGEINFO info;
3497 if (!prc)
3498 return E_FAIL;
3500 if (!ImageList_GetImageInfo(This, i, &info))
3501 return E_FAIL;
3503 return CopyRect(prc, &info.rcImage) ? S_OK : E_FAIL;
3506 static HRESULT WINAPI ImageListImpl_GetIconSize(IImageList *iface, int *cx,
3507 int *cy)
3509 HIMAGELIST This = (HIMAGELIST) iface;
3511 return ImageList_GetIconSize(This, cx, cy) ? S_OK : E_INVALIDARG;
3514 static HRESULT WINAPI ImageListImpl_SetIconSize(IImageList *iface, int cx,
3515 int cy)
3517 return ImageList_SetIconSize((HIMAGELIST) iface, cx, cy) ? S_OK : E_FAIL;
3520 static HRESULT WINAPI ImageListImpl_GetImageCount(IImageList *iface, int *pi)
3522 *pi = ImageList_GetImageCount((HIMAGELIST) iface);
3523 return S_OK;
3526 static HRESULT WINAPI ImageListImpl_SetImageCount(IImageList *iface,
3527 UINT uNewCount)
3529 return ImageList_SetImageCount((HIMAGELIST) iface, uNewCount) ? S_OK : E_FAIL;
3532 static HRESULT WINAPI ImageListImpl_SetBkColor(IImageList *iface, COLORREF clrBk,
3533 COLORREF *pclr)
3535 *pclr = ImageList_SetBkColor((HIMAGELIST) iface, clrBk);
3536 return S_OK;
3539 static HRESULT WINAPI ImageListImpl_GetBkColor(IImageList *iface, COLORREF *pclr)
3541 *pclr = ImageList_GetBkColor((HIMAGELIST) iface);
3542 return S_OK;
3545 static HRESULT WINAPI ImageListImpl_BeginDrag(IImageList *iface, int iTrack,
3546 int dxHotspot, int dyHotspot)
3548 return ImageList_BeginDrag((HIMAGELIST) iface, iTrack, dxHotspot, dyHotspot) ? S_OK : E_FAIL;
3551 static HRESULT WINAPI ImageListImpl_EndDrag(IImageList *iface)
3553 ImageList_EndDrag();
3554 return S_OK;
3557 static HRESULT WINAPI ImageListImpl_DragEnter(IImageList *iface, HWND hwndLock,
3558 int x, int y)
3560 return ImageList_DragEnter(hwndLock, x, y) ? S_OK : E_FAIL;
3563 static HRESULT WINAPI ImageListImpl_DragLeave(IImageList *iface, HWND hwndLock)
3565 return ImageList_DragLeave(hwndLock) ? S_OK : E_FAIL;
3568 static HRESULT WINAPI ImageListImpl_DragMove(IImageList *iface, int x, int y)
3570 return ImageList_DragMove(x, y) ? S_OK : E_FAIL;
3573 static HRESULT WINAPI ImageListImpl_SetDragCursorImage(IImageList *iface,
3574 IUnknown *punk, int iDrag, int dxHotspot, int dyHotspot)
3576 IImageList *iml2 = NULL;
3577 HRESULT ret;
3579 if (!punk)
3580 return E_FAIL;
3582 /* TODO: Add test for IID_ImageList2 too */
3583 if (FAILED(IImageList_QueryInterface(punk, &IID_IImageList,
3584 (void **) &iml2)))
3585 return E_FAIL;
3587 ret = ImageList_SetDragCursorImage((HIMAGELIST) iml2, iDrag, dxHotspot,
3588 dyHotspot);
3590 IImageList_Release(iml2);
3592 return ret ? S_OK : E_FAIL;
3595 static HRESULT WINAPI ImageListImpl_DragShowNolock(IImageList *iface, BOOL fShow)
3597 return ImageList_DragShowNolock(fShow) ? S_OK : E_FAIL;
3600 static HRESULT WINAPI ImageListImpl_GetDragImage(IImageList *iface, POINT *ppt,
3601 POINT *pptHotspot, REFIID riid, PVOID *ppv)
3603 HRESULT ret = E_FAIL;
3604 HIMAGELIST hNew;
3606 if (!ppv)
3607 return E_FAIL;
3609 hNew = ImageList_GetDragImage(ppt, pptHotspot);
3611 /* Get the interface for the new image list */
3612 if (hNew)
3614 IImageList *idrag = (IImageList*)hNew;
3616 ret = HIMAGELIST_QueryInterface(hNew, riid, ppv);
3617 IImageList_Release(idrag);
3620 return ret;
3623 static HRESULT WINAPI ImageListImpl_GetItemFlags(IImageList *iface, int i,
3624 DWORD *dwFlags)
3626 FIXME("STUB: %p %d %p\n", iface, i, dwFlags);
3627 return E_NOTIMPL;
3630 static HRESULT WINAPI ImageListImpl_GetOverlayImage(IImageList *iface, int iOverlay,
3631 int *piIndex)
3633 HIMAGELIST This = (HIMAGELIST) iface;
3634 int i;
3636 if ((iOverlay < 0) || (iOverlay > This->cCurImage))
3637 return E_FAIL;
3639 for (i = 0; i < MAX_OVERLAYIMAGE; i++)
3641 if (This->nOvlIdx[i] == iOverlay)
3643 *piIndex = i + 1;
3644 return S_OK;
3648 return E_FAIL;
3652 static const IImageListVtbl ImageListImpl_Vtbl = {
3653 ImageListImpl_QueryInterface,
3654 ImageListImpl_AddRef,
3655 ImageListImpl_Release,
3656 ImageListImpl_Add,
3657 ImageListImpl_ReplaceIcon,
3658 ImageListImpl_SetOverlayImage,
3659 ImageListImpl_Replace,
3660 ImageListImpl_AddMasked,
3661 ImageListImpl_Draw,
3662 ImageListImpl_Remove,
3663 ImageListImpl_GetIcon,
3664 ImageListImpl_GetImageInfo,
3665 ImageListImpl_Copy,
3666 ImageListImpl_Merge,
3667 ImageListImpl_Clone,
3668 ImageListImpl_GetImageRect,
3669 ImageListImpl_GetIconSize,
3670 ImageListImpl_SetIconSize,
3671 ImageListImpl_GetImageCount,
3672 ImageListImpl_SetImageCount,
3673 ImageListImpl_SetBkColor,
3674 ImageListImpl_GetBkColor,
3675 ImageListImpl_BeginDrag,
3676 ImageListImpl_EndDrag,
3677 ImageListImpl_DragEnter,
3678 ImageListImpl_DragLeave,
3679 ImageListImpl_DragMove,
3680 ImageListImpl_SetDragCursorImage,
3681 ImageListImpl_DragShowNolock,
3682 ImageListImpl_GetDragImage,
3683 ImageListImpl_GetItemFlags,
3684 ImageListImpl_GetOverlayImage
3687 static BOOL is_valid(HIMAGELIST himl)
3689 BOOL valid;
3690 __TRY
3692 valid = himl && himl->lpVtbl == &ImageListImpl_Vtbl;
3694 __EXCEPT_PAGE_FAULT
3696 valid = FALSE;
3698 __ENDTRY
3699 return valid;
3702 /*************************************************************************
3703 * HIMAGELIST_QueryInterface [COMCTL32.@]
3705 * Returns a pointer to an IImageList or IImageList2 object for the given
3706 * HIMAGELIST.
3708 * PARAMS
3709 * himl [I] Image list handle.
3710 * riid [I] Identifier of the requested interface.
3711 * ppv [O] Returns the address of the pointer requested, or NULL.
3713 * RETURNS
3714 * Success: S_OK.
3715 * Failure: Error value.
3717 HRESULT WINAPI
3718 HIMAGELIST_QueryInterface (HIMAGELIST himl, REFIID riid, void **ppv)
3720 TRACE("(%p,%s,%p)\n", himl, debugstr_guid(riid), ppv);
3721 return IImageList_QueryInterface((IImageList *) himl, riid, ppv);
3724 static HRESULT ImageListImpl_CreateInstance(const IUnknown *pUnkOuter, REFIID iid, void** ppv)
3726 HIMAGELIST This;
3727 HRESULT ret;
3729 TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
3731 *ppv = NULL;
3733 if (pUnkOuter) return CLASS_E_NOAGGREGATION;
3735 This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct _IMAGELIST));
3736 if (!This) return E_OUTOFMEMORY;
3738 This->lpVtbl = &ImageListImpl_Vtbl;
3739 This->ref = 1;
3741 ret = IUnknown_QueryInterface((IUnknown*)This, iid, ppv);
3742 IUnknown_Release((IUnknown*)This);
3744 return ret;