comctl32/imagelist: Fixed merging of images without mask.
[wine] / dlls / comctl32 / imagelist.c
1 /*
2  *  ImageList implementation
3  *
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
10  *
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.
15  *
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.
20  *
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
24  *
25  * NOTE
26  *
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.
29  *
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.
33  *
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
38  */
39
40 #include <stdarg.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #define COBJMACROS
45
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"
57
58 WINE_DEFAULT_DEBUG_CHANNEL(imagelist);
59
60 #define MAX_OVERLAYIMAGE 15
61
62 struct _IMAGELIST
63 {
64     const struct IImageListVtbl *lpVtbl; /* 00: IImageList vtable */
65
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 */
75
76
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 */
82
83     /* not yet found out */
84     HBRUSH  hbrBlend25;
85     HBRUSH  hbrBlend50;
86     INT     cInitial;
87     UINT    uBitsPixel;
88     char   *has_alpha;
89
90     LONG        ref;                       /* reference count */
91 };
92
93 #define IMAGELIST_MAGIC 0x53414D58
94
95 /* Header used by ImageList_Read() and ImageList_Write() */
96 #include "pshpack2.h"
97 typedef struct _ILHEAD
98 {
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"
111
112 /* internal image list data used for Drag & Drop operations */
113 typedef struct
114 {
115     HWND        hwnd;
116     HIMAGELIST  himl;
117     HIMAGELIST  himlNoCursor;
118     /* position of the drag image relative to the window */
119     INT         x;
120     INT         y;
121     /* offset of the hotspot relative to the origin of the image */
122     INT         dxHotspot;
123     INT         dyHotspot;
124     /* is the drag image visible */
125     BOOL        bShow;
126     /* saved background */
127     HBITMAP     hbmBg;
128 } INTERNALDRAG;
129
130 static INTERNALDRAG InternalDrag = { 0, 0, 0, 0, 0, 0, 0, FALSE, 0 };
131
132 static HBITMAP ImageList_CreateImage(HDC hdc, HIMAGELIST himl, UINT count);
133 static HRESULT ImageListImpl_CreateInstance(const IUnknown *pUnkOuter, REFIID iid, void** ppv);
134 static inline BOOL is_valid(HIMAGELIST himl);
135
136 /*
137  * An imagelist with N images is tiled like this:
138  *
139  *   N/4 ->
140  *
141  * 4 048C..
142  *   159D..
143  * | 26AE.N
144  * V 37BF.
145  */
146
147 #define TILE_COUNT 4
148
149 static inline UINT imagelist_height( UINT count )
150 {
151     return ((count + TILE_COUNT - 1)/TILE_COUNT);
152 }
153
154 static inline void imagelist_point_from_index( HIMAGELIST himl, UINT index, LPPOINT pt )
155 {
156     pt->x = (index%TILE_COUNT) * himl->cx;
157     pt->y = (index/TILE_COUNT) * himl->cy;
158 }
159
160 static inline void imagelist_get_bitmap_size( HIMAGELIST himl, UINT count, SIZE *sz )
161 {
162     sz->cx = himl->cx * TILE_COUNT;
163     sz->cy = imagelist_height( count ) * himl->cy;
164 }
165
166 static inline int get_dib_stride( int width, int bpp )
167 {
168     return ((width * bpp + 31) >> 3) & ~3;
169 }
170
171 static inline int get_dib_image_size( const BITMAPINFO *info )
172 {
173     return get_dib_stride( info->bmiHeader.biWidth, info->bmiHeader.biBitCount )
174         * abs( info->bmiHeader.biHeight );
175 }
176
177 /*
178  * imagelist_copy_images()
179  *
180  * Copies a block of count images from offset src in the list to offset dest.
181  * Images are copied a row at at time. Assumes hdcSrc and hdcDest are different.
182  */
183 static inline void imagelist_copy_images( HIMAGELIST himl, HDC hdcSrc, HDC hdcDest,
184                                           UINT src, UINT count, UINT dest )
185 {
186     POINT ptSrc, ptDest;
187     SIZE sz;
188     UINT i;
189
190     for ( i=0; i<TILE_COUNT; i++ )
191     {
192         imagelist_point_from_index( himl, src+i, &ptSrc );
193         imagelist_point_from_index( himl, dest+i, &ptDest );
194         sz.cx = himl->cx;
195         sz.cy = himl->cy * imagelist_height( count - i );
196
197         BitBlt( hdcDest, ptDest.x, ptDest.y, sz.cx, sz.cy,
198                 hdcSrc, ptSrc.x, ptSrc.y, SRCCOPY );
199     }
200 }
201
202 static void add_dib_bits( HIMAGELIST himl, int pos, int count, int width, int height,
203                           BITMAPINFO *info, BITMAPINFO *mask_info, DWORD *bits, BYTE *mask_bits )
204 {
205     int i, j, n;
206     POINT pt;
207     int stride = info->bmiHeader.biWidth;
208     int mask_stride = (info->bmiHeader.biWidth + 31) / 32 * 4;
209
210     for (n = 0; n < count; n++)
211     {
212         int has_alpha = 0;
213
214         imagelist_point_from_index( himl, pos + n, &pt );
215
216         /* check if bitmap has an alpha channel */
217         for (i = 0; i < height && !has_alpha; i++)
218             for (j = n * width; j < (n + 1) * width; j++)
219                 if ((has_alpha = ((bits[i * stride + j] & 0xff000000) != 0))) break;
220
221         if (!has_alpha)  /* generate alpha channel from the mask */
222         {
223             for (i = 0; i < height; i++)
224                 for (j = n * width; j < (n + 1) * width; j++)
225                     if (!mask_info || !((mask_bits[i * mask_stride + j / 8] << (j % 8)) & 0x80))
226                         bits[i * stride + j] |= 0xff000000;
227                     else
228                         bits[i * stride + j] = 0;
229         }
230         else
231         {
232             himl->has_alpha[pos + n] = 1;
233
234             if (mask_info && himl->hbmMask)  /* generate the mask from the alpha channel */
235             {
236                 for (i = 0; i < height; i++)
237                     for (j = n * width; j < (n + 1) * width; j++)
238                         if ((bits[i * stride + j] >> 24) > 25) /* more than 10% alpha */
239                             mask_bits[i * mask_stride + j / 8] &= ~(0x80 >> (j % 8));
240                         else
241                             mask_bits[i * mask_stride + j / 8] |= 0x80 >> (j % 8);
242             }
243         }
244         StretchDIBits( himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
245                        n * width, 0, width, height, bits, info, DIB_RGB_COLORS, SRCCOPY );
246         if (mask_info)
247             StretchDIBits( himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
248                            n * width, 0, width, height, mask_bits, mask_info, DIB_RGB_COLORS, SRCCOPY );
249     }
250 }
251
252 /* add images with an alpha channel when the image list is 32 bpp */
253 static BOOL add_with_alpha( HIMAGELIST himl, HDC hdc, int pos, int count,
254                             int width, int height, HBITMAP hbmImage, HBITMAP hbmMask )
255 {
256     BOOL ret = FALSE;
257     BITMAP bm;
258     BITMAPINFO *info, *mask_info = NULL;
259     DWORD *bits = NULL;
260     BYTE *mask_bits = NULL;
261     DWORD mask_width;
262
263     if (!GetObjectW( hbmImage, sizeof(bm), &bm )) return FALSE;
264
265     /* if either the imagelist or the source bitmap don't have an alpha channel, bail out now */
266     if (!himl->has_alpha) return FALSE;
267     if (bm.bmBitsPixel != 32) return FALSE;
268
269     SelectObject( hdc, hbmImage );
270     mask_width = (bm.bmWidth + 31) / 32 * 4;
271
272     if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto done;
273     info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
274     info->bmiHeader.biWidth = bm.bmWidth;
275     info->bmiHeader.biHeight = -height;
276     info->bmiHeader.biPlanes = 1;
277     info->bmiHeader.biBitCount = 32;
278     info->bmiHeader.biCompression = BI_RGB;
279     info->bmiHeader.biSizeImage = bm.bmWidth * height * 4;
280     info->bmiHeader.biXPelsPerMeter = 0;
281     info->bmiHeader.biYPelsPerMeter = 0;
282     info->bmiHeader.biClrUsed = 0;
283     info->bmiHeader.biClrImportant = 0;
284     if (!(bits = HeapAlloc( GetProcessHeap(), 0, info->bmiHeader.biSizeImage ))) goto done;
285     if (!GetDIBits( hdc, hbmImage, 0, height, bits, info, DIB_RGB_COLORS )) goto done;
286
287     if (hbmMask)
288     {
289         if (!(mask_info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[2] ))))
290             goto done;
291         mask_info->bmiHeader = info->bmiHeader;
292         mask_info->bmiHeader.biBitCount = 1;
293         mask_info->bmiHeader.biSizeImage = mask_width * height;
294         if (!(mask_bits = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, info->bmiHeader.biSizeImage )))
295             goto done;
296         if (!GetDIBits( hdc, hbmMask, 0, height, mask_bits, mask_info, DIB_RGB_COLORS )) goto done;
297     }
298
299     add_dib_bits( himl, pos, count, width, height, info, mask_info, bits, mask_bits );
300     ret = TRUE;
301
302 done:
303     HeapFree( GetProcessHeap(), 0, info );
304     HeapFree( GetProcessHeap(), 0, mask_info );
305     HeapFree( GetProcessHeap(), 0, bits );
306     HeapFree( GetProcessHeap(), 0, mask_bits );
307     return ret;
308 }
309
310 /*************************************************************************
311  * IMAGELIST_InternalExpandBitmaps [Internal]
312  *
313  * Expands the bitmaps of an image list by the given number of images.
314  *
315  * PARAMS
316  *     himl        [I] handle to image list
317  *     nImageCount [I] number of images to add
318  *
319  * RETURNS
320  *     nothing
321  *
322  * NOTES
323  *     This function CANNOT be used to reduce the number of images.
324  */
325 static void
326 IMAGELIST_InternalExpandBitmaps(HIMAGELIST himl, INT nImageCount)
327 {
328     HDC     hdcBitmap;
329     HBITMAP hbmNewBitmap, hbmNull;
330     INT     nNewCount;
331     SIZE    sz;
332
333     TRACE("%p has allocated %d, max %d, grow %d images\n", himl, himl->cCurImage, himl->cMaxImage, himl->cGrow);
334
335     if (himl->cCurImage + nImageCount < himl->cMaxImage)
336         return;
337
338     nNewCount = himl->cMaxImage + max(nImageCount, himl->cGrow) + 1;
339
340     imagelist_get_bitmap_size(himl, nNewCount, &sz);
341
342     TRACE("Create expanded bitmaps : himl=%p x=%d y=%d count=%d\n", himl, sz.cx, sz.cy, nNewCount);
343     hdcBitmap = CreateCompatibleDC (0);
344
345     hbmNewBitmap = ImageList_CreateImage(hdcBitmap, himl, nNewCount);
346
347     if (hbmNewBitmap == 0)
348         ERR("creating new image bitmap (x=%d y=%d)!\n", sz.cx, sz.cy);
349
350     if (himl->cCurImage)
351     {
352         hbmNull = SelectObject (hdcBitmap, hbmNewBitmap);
353         BitBlt (hdcBitmap, 0, 0, sz.cx, sz.cy,
354                 himl->hdcImage, 0, 0, SRCCOPY);
355         SelectObject (hdcBitmap, hbmNull);
356     }
357     SelectObject (himl->hdcImage, hbmNewBitmap);
358     DeleteObject (himl->hbmImage);
359     himl->hbmImage = hbmNewBitmap;
360
361     if (himl->flags & ILC_MASK)
362     {
363         hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
364
365         if (hbmNewBitmap == 0)
366             ERR("creating new mask bitmap!\n");
367
368         if(himl->cCurImage)
369         {
370             hbmNull = SelectObject (hdcBitmap, hbmNewBitmap);
371             BitBlt (hdcBitmap, 0, 0, sz.cx, sz.cy,
372                     himl->hdcMask, 0, 0, SRCCOPY);
373             SelectObject (hdcBitmap, hbmNull);
374         }
375         SelectObject (himl->hdcMask, hbmNewBitmap);
376         DeleteObject (himl->hbmMask);
377         himl->hbmMask = hbmNewBitmap;
378     }
379
380     if (himl->has_alpha)
381     {
382         char *new_alpha = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->has_alpha, nNewCount );
383         if (new_alpha) himl->has_alpha = new_alpha;
384         else
385         {
386             HeapFree( GetProcessHeap(), 0, himl->has_alpha );
387             himl->has_alpha = NULL;
388         }
389     }
390
391     himl->cMaxImage = nNewCount;
392
393     DeleteDC (hdcBitmap);
394 }
395
396
397 /*************************************************************************
398  * ImageList_Add [COMCTL32.@]
399  *
400  * Add an image or images to an image list.
401  *
402  * PARAMS
403  *     himl     [I] handle to image list
404  *     hbmImage [I] handle to image bitmap
405  *     hbmMask  [I] handle to mask bitmap
406  *
407  * RETURNS
408  *     Success: Index of the first new image.
409  *     Failure: -1
410  */
411
412 INT WINAPI
413 ImageList_Add (HIMAGELIST himl, HBITMAP hbmImage, HBITMAP hbmMask)
414 {
415     HDC     hdcBitmap, hdcTemp = 0;
416     INT     nFirstIndex, nImageCount, i;
417     BITMAP  bmp;
418     POINT   pt;
419
420     TRACE("himl=%p hbmimage=%p hbmmask=%p\n", himl, hbmImage, hbmMask);
421     if (!is_valid(himl))
422         return -1;
423
424     if (!GetObjectW(hbmImage, sizeof(BITMAP), &bmp))
425         return -1;
426
427     TRACE("himl %p, cCurImage %d, cMaxImage %d, cGrow %d, cx %d, cy %d\n",
428           himl, himl->cCurImage, himl->cMaxImage, himl->cGrow, himl->cx, himl->cy);
429
430     nImageCount = bmp.bmWidth / himl->cx;
431
432     TRACE("%p has %d images (%d x %d)\n", hbmImage, nImageCount, bmp.bmWidth, bmp.bmHeight);
433
434     IMAGELIST_InternalExpandBitmaps(himl, nImageCount);
435
436     hdcBitmap = CreateCompatibleDC(0);
437
438     SelectObject(hdcBitmap, hbmImage);
439
440     if (add_with_alpha( himl, hdcBitmap, himl->cCurImage, nImageCount,
441                         himl->cx, min( himl->cy, bmp.bmHeight), hbmImage, hbmMask ))
442         goto done;
443
444     if (himl->hbmMask)
445     {
446         hdcTemp = CreateCompatibleDC(0);
447         SelectObject(hdcTemp, hbmMask);
448     }
449
450     for (i=0; i<nImageCount; i++)
451     {
452         imagelist_point_from_index( himl, himl->cCurImage + i, &pt );
453
454         /* Copy result to the imagelist
455         */
456         BitBlt( himl->hdcImage, pt.x, pt.y, himl->cx, bmp.bmHeight,
457                 hdcBitmap, i*himl->cx, 0, SRCCOPY );
458
459         if (!himl->hbmMask)
460              continue;
461
462         BitBlt( himl->hdcMask, pt.x, pt.y, himl->cx, bmp.bmHeight,
463                 hdcTemp, i*himl->cx, 0, SRCCOPY );
464
465         /* Remove the background from the image
466         */
467         BitBlt( himl->hdcImage, pt.x, pt.y, himl->cx, bmp.bmHeight,
468                 himl->hdcMask, pt.x, pt.y, 0x220326 ); /* NOTSRCAND */
469     }
470     if (hdcTemp) DeleteDC(hdcTemp);
471
472 done:
473     DeleteDC(hdcBitmap);
474
475     nFirstIndex = himl->cCurImage;
476     himl->cCurImage += nImageCount;
477
478     return nFirstIndex;
479 }
480
481
482 /*************************************************************************
483  * ImageList_AddIcon [COMCTL32.@]
484  *
485  * Adds an icon to an image list.
486  *
487  * PARAMS
488  *     himl  [I] handle to image list
489  *     hIcon [I] handle to icon
490  *
491  * RETURNS
492  *     Success: index of the new image
493  *     Failure: -1
494  */
495 #undef ImageList_AddIcon
496 INT WINAPI ImageList_AddIcon (HIMAGELIST himl, HICON hIcon)
497 {
498     return ImageList_ReplaceIcon (himl, -1, hIcon);
499 }
500
501
502 /*************************************************************************
503  * ImageList_AddMasked [COMCTL32.@]
504  *
505  * Adds an image or images to an image list and creates a mask from the
506  * specified bitmap using the mask color.
507  *
508  * PARAMS
509  *     himl    [I] handle to image list.
510  *     hBitmap [I] handle to bitmap
511  *     clrMask [I] mask color.
512  *
513  * RETURNS
514  *     Success: Index of the first new image.
515  *     Failure: -1
516  */
517
518 INT WINAPI
519 ImageList_AddMasked (HIMAGELIST himl, HBITMAP hBitmap, COLORREF clrMask)
520 {
521     HDC    hdcMask, hdcBitmap;
522     INT    ret;
523     BITMAP bmp;
524     HBITMAP hMaskBitmap;
525     COLORREF bkColor;
526
527     TRACE("himl=%p hbitmap=%p clrmask=%x\n", himl, hBitmap, clrMask);
528     if (!is_valid(himl))
529         return -1;
530
531     if (!GetObjectW(hBitmap, sizeof(BITMAP), &bmp))
532         return -1;
533
534     hdcBitmap = CreateCompatibleDC(0);
535     SelectObject(hdcBitmap, hBitmap);
536
537     /* Create a temp Mask so we can remove the background of the Image */
538     hdcMask = CreateCompatibleDC(0);
539     hMaskBitmap = CreateBitmap(bmp.bmWidth, bmp.bmHeight, 1, 1, NULL);
540     SelectObject(hdcMask, hMaskBitmap);
541
542     /* create monochrome image to the mask bitmap */
543     bkColor = (clrMask != CLR_DEFAULT) ? clrMask : GetPixel (hdcBitmap, 0, 0);
544     SetBkColor (hdcBitmap, bkColor);
545     BitBlt (hdcMask, 0, 0, bmp.bmWidth, bmp.bmHeight, hdcBitmap, 0, 0, SRCCOPY);
546
547     /*
548      * Remove the background from the image
549      *
550      * WINDOWS BUG ALERT!!!!!!
551      *  The statement below should not be done in common practice
552      *  but this is how ImageList_AddMasked works in Windows.
553      *  It overwrites the original bitmap passed, this was discovered
554      *  by using the same bitmap to iterate the different styles
555      *  on windows where it failed (BUT ImageList_Add is OK)
556      *  This is here in case some apps rely on this bug
557      *
558      *  Blt mode 0x220326 is NOTSRCAND
559      */
560     if (bmp.bmBitsPixel > 8)  /* NOTSRCAND can't work with palettes */
561     {
562         SetBkColor(hdcBitmap, RGB(255,255,255));
563         BitBlt(hdcBitmap, 0, 0, bmp.bmWidth, bmp.bmHeight, hdcMask, 0, 0, 0x220326);
564     }
565
566     DeleteDC(hdcBitmap);
567     DeleteDC(hdcMask);
568
569     ret = ImageList_Add( himl, hBitmap, hMaskBitmap );
570
571     DeleteObject(hMaskBitmap);
572     return ret;
573 }
574
575
576 /*************************************************************************
577  * ImageList_BeginDrag [COMCTL32.@]
578  *
579  * Creates a temporary image list that contains one image. It will be used
580  * as a drag image.
581  *
582  * PARAMS
583  *     himlTrack [I] handle to the source image list
584  *     iTrack    [I] index of the drag image in the source image list
585  *     dxHotspot [I] X position of the hot spot of the drag image
586  *     dyHotspot [I] Y position of the hot spot of the drag image
587  *
588  * RETURNS
589  *     Success: TRUE
590  *     Failure: FALSE
591  */
592
593 BOOL WINAPI
594 ImageList_BeginDrag (HIMAGELIST himlTrack, INT iTrack,
595                      INT dxHotspot, INT dyHotspot)
596 {
597     INT cx, cy;
598
599     TRACE("(himlTrack=%p iTrack=%d dx=%d dy=%d)\n", himlTrack, iTrack,
600           dxHotspot, dyHotspot);
601
602     if (!is_valid(himlTrack))
603         return FALSE;
604
605     if (InternalDrag.himl)
606         ImageList_EndDrag ();
607
608     cx = himlTrack->cx;
609     cy = himlTrack->cy;
610
611     InternalDrag.himlNoCursor = InternalDrag.himl = ImageList_Create (cx, cy, himlTrack->flags, 1, 1);
612     if (InternalDrag.himl == NULL) {
613         WARN("Error creating drag image list!\n");
614         return FALSE;
615     }
616
617     InternalDrag.dxHotspot = dxHotspot;
618     InternalDrag.dyHotspot = dyHotspot;
619
620     /* copy image */
621     BitBlt (InternalDrag.himl->hdcImage, 0, 0, cx, cy, himlTrack->hdcImage, iTrack * cx, 0, SRCCOPY);
622
623     /* copy mask */
624     BitBlt (InternalDrag.himl->hdcMask, 0, 0, cx, cy, himlTrack->hdcMask, iTrack * cx, 0, SRCCOPY);
625
626     InternalDrag.himl->cCurImage = 1;
627
628     return TRUE;
629 }
630
631
632 /*************************************************************************
633  * ImageList_Copy [COMCTL32.@]
634  *
635  *  Copies an image of the source image list to an image of the
636  *  destination image list. Images can be copied or swapped.
637  *
638  * PARAMS
639  *     himlDst [I] handle to the destination image list
640  *     iDst    [I] destination image index.
641  *     himlSrc [I] handle to the source image list
642  *     iSrc    [I] source image index
643  *     uFlags  [I] flags for the copy operation
644  *
645  * RETURNS
646  *     Success: TRUE
647  *     Failure: FALSE
648  *
649  * NOTES
650  *     Copying from one image list to another is possible. The original
651  *     implementation just copies or swaps within one image list.
652  *     Could this feature become a bug??? ;-)
653  */
654
655 BOOL WINAPI
656 ImageList_Copy (HIMAGELIST himlDst, INT iDst,   HIMAGELIST himlSrc,
657                 INT iSrc, UINT uFlags)
658 {
659     POINT ptSrc, ptDst;
660
661     TRACE("himlDst=%p iDst=%d himlSrc=%p iSrc=%d\n", himlDst, iDst, himlSrc, iSrc);
662
663     if (!is_valid(himlSrc) || !is_valid(himlDst))
664         return FALSE;
665     if ((iDst < 0) || (iDst >= himlDst->cCurImage))
666         return FALSE;
667     if ((iSrc < 0) || (iSrc >= himlSrc->cCurImage))
668         return FALSE;
669
670     imagelist_point_from_index( himlDst, iDst, &ptDst );
671     imagelist_point_from_index( himlSrc, iSrc, &ptSrc );
672
673     if (uFlags & ILCF_SWAP) {
674         /* swap */
675         HDC     hdcBmp;
676         HBITMAP hbmTempImage, hbmTempMask;
677
678         hdcBmp = CreateCompatibleDC (0);
679
680         /* create temporary bitmaps */
681         hbmTempImage = CreateBitmap (himlSrc->cx, himlSrc->cy, 1,
682                                        himlSrc->uBitsPixel, NULL);
683         hbmTempMask = CreateBitmap (himlSrc->cx, himlSrc->cy, 1,
684                                       1, NULL);
685
686         /* copy (and stretch) destination to temporary bitmaps.(save) */
687         /* image */
688         SelectObject (hdcBmp, hbmTempImage);
689         StretchBlt   (hdcBmp, 0, 0, himlSrc->cx, himlSrc->cy,
690                       himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
691                       SRCCOPY);
692         /* mask */
693         SelectObject (hdcBmp, hbmTempMask);
694         StretchBlt   (hdcBmp, 0, 0, himlSrc->cx, himlSrc->cy,
695                       himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
696                       SRCCOPY);
697
698         /* copy (and stretch) source to destination */
699         /* image */
700         StretchBlt   (himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
701                       himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
702                       SRCCOPY);
703         /* mask */
704         StretchBlt   (himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
705                       himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
706                       SRCCOPY);
707
708         /* copy (without stretching) temporary bitmaps to source (restore) */
709         /* mask */
710         BitBlt       (himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
711                       hdcBmp, 0, 0, SRCCOPY);
712
713         /* image */
714         BitBlt       (himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
715                       hdcBmp, 0, 0, SRCCOPY);
716         /* delete temporary bitmaps */
717         DeleteObject (hbmTempMask);
718         DeleteObject (hbmTempImage);
719         DeleteDC(hdcBmp);
720     }
721     else {
722         /* copy image */
723         StretchBlt   (himlDst->hdcImage, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
724                       himlSrc->hdcImage, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
725                       SRCCOPY);
726
727         /* copy mask */
728         StretchBlt   (himlDst->hdcMask, ptDst.x, ptDst.y, himlDst->cx, himlDst->cy,
729                       himlSrc->hdcMask, ptSrc.x, ptSrc.y, himlSrc->cx, himlSrc->cy,
730                       SRCCOPY);
731     }
732
733     return TRUE;
734 }
735
736
737 /*************************************************************************
738  * ImageList_Create [COMCTL32.@]
739  *
740  * Creates a new image list.
741  *
742  * PARAMS
743  *     cx       [I] image height
744  *     cy       [I] image width
745  *     flags    [I] creation flags
746  *     cInitial [I] initial number of images in the image list
747  *     cGrow    [I] number of images by which image list grows
748  *
749  * RETURNS
750  *     Success: Handle to the created image list
751  *     Failure: NULL
752  */
753 HIMAGELIST WINAPI
754 ImageList_Create (INT cx, INT cy, UINT flags,
755                   INT cInitial, INT cGrow)
756 {
757     HIMAGELIST himl;
758     INT      nCount;
759     HBITMAP  hbmTemp;
760     UINT     ilc = (flags & 0xFE);
761     static const WORD aBitBlend25[] =
762         {0xAA, 0x00, 0x55, 0x00, 0xAA, 0x00, 0x55, 0x00};
763
764     static const WORD aBitBlend50[] =
765         {0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA};
766
767     TRACE("(%d %d 0x%x %d %d)\n", cx, cy, flags, cInitial, cGrow);
768
769     if (cx <= 0 || cy <= 0) return NULL;
770
771     /* Create the IImageList interface for the image list */
772     if (FAILED(ImageListImpl_CreateInstance(NULL, &IID_IImageList, (void **)&himl)))
773         return NULL;
774
775     cGrow = (WORD)((max( cGrow, 1 ) + 3) & ~3);
776
777     if (cGrow > 256)
778     {
779         /* Windows doesn't limit the size here, but X11 doesn't let us allocate such huge bitmaps */
780         WARN( "grow %d too large, limiting to 256\n", cGrow );
781         cGrow = 256;
782     }
783
784     himl->cx        = cx;
785     himl->cy        = cy;
786     himl->flags     = flags;
787     himl->cMaxImage = cInitial + 1;
788     himl->cInitial  = cInitial;
789     himl->cGrow     = cGrow;
790     himl->clrFg     = CLR_DEFAULT;
791     himl->clrBk     = CLR_NONE;
792
793     /* initialize overlay mask indices */
794     for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
795         himl->nOvlIdx[nCount] = -1;
796
797     /* Create Image & Mask DCs */
798     himl->hdcImage = CreateCompatibleDC (0);
799     if (!himl->hdcImage)
800         goto cleanup;
801     if (himl->flags & ILC_MASK){
802         himl->hdcMask = CreateCompatibleDC(0);
803         if (!himl->hdcMask)
804             goto cleanup;
805     }
806
807     /* Default to ILC_COLOR4 if none of the ILC_COLOR* flags are specified */
808     if (ilc == ILC_COLOR)
809     {
810         ilc = ILC_COLOR4;
811         himl->flags |= ILC_COLOR4;
812     }
813
814     if (ilc >= ILC_COLOR4 && ilc <= ILC_COLOR32)
815         himl->uBitsPixel = ilc;
816     else
817         himl->uBitsPixel = (UINT)GetDeviceCaps (himl->hdcImage, BITSPIXEL);
818
819     if (himl->cMaxImage > 0) {
820         himl->hbmImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
821         SelectObject(himl->hdcImage, himl->hbmImage);
822     } else
823         himl->hbmImage = 0;
824
825     if ((himl->cMaxImage > 0) && (himl->flags & ILC_MASK)) {
826         SIZE sz;
827
828         imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
829         himl->hbmMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
830         if (himl->hbmMask == 0) {
831             ERR("Error creating mask bitmap!\n");
832             goto cleanup;
833         }
834         SelectObject(himl->hdcMask, himl->hbmMask);
835     }
836     else
837         himl->hbmMask = 0;
838
839     if (ilc == ILC_COLOR32)
840         himl->has_alpha = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->cMaxImage );
841     else
842         himl->has_alpha = NULL;
843
844     /* create blending brushes */
845     hbmTemp = CreateBitmap (8, 8, 1, 1, aBitBlend25);
846     himl->hbrBlend25 = CreatePatternBrush (hbmTemp);
847     DeleteObject (hbmTemp);
848
849     hbmTemp = CreateBitmap (8, 8, 1, 1, aBitBlend50);
850     himl->hbrBlend50 = CreatePatternBrush (hbmTemp);
851     DeleteObject (hbmTemp);
852
853     TRACE("created imagelist %p\n", himl);
854     return himl;
855
856 cleanup:
857     ImageList_Destroy(himl);
858     return NULL;
859 }
860
861
862 /*************************************************************************
863  * ImageList_Destroy [COMCTL32.@]
864  *
865  * Destroys an image list.
866  *
867  * PARAMS
868  *     himl [I] handle to image list
869  *
870  * RETURNS
871  *     Success: TRUE
872  *     Failure: FALSE
873  */
874
875 BOOL WINAPI
876 ImageList_Destroy (HIMAGELIST himl)
877 {
878     if (!is_valid(himl))
879         return FALSE;
880
881     IImageList_Release((IImageList *) himl);
882     return TRUE;
883 }
884
885
886 /*************************************************************************
887  * ImageList_DragEnter [COMCTL32.@]
888  *
889  * Locks window update and displays the drag image at the given position.
890  *
891  * PARAMS
892  *     hwndLock [I] handle of the window that owns the drag image.
893  *     x        [I] X position of the drag image.
894  *     y        [I] Y position of the drag image.
895  *
896  * RETURNS
897  *     Success: TRUE
898  *     Failure: FALSE
899  *
900  * NOTES
901  *     The position of the drag image is relative to the window, not
902  *     the client area.
903  */
904
905 BOOL WINAPI
906 ImageList_DragEnter (HWND hwndLock, INT x, INT y)
907 {
908     TRACE("(hwnd=%p x=%d y=%d)\n", hwndLock, x, y);
909
910     if (!is_valid(InternalDrag.himl))
911         return FALSE;
912
913     if (hwndLock)
914         InternalDrag.hwnd = hwndLock;
915     else
916         InternalDrag.hwnd = GetDesktopWindow ();
917
918     InternalDrag.x = x;
919     InternalDrag.y = y;
920
921     /* draw the drag image and save the background */
922     if (!ImageList_DragShowNolock(TRUE)) {
923         return FALSE;
924     }
925
926     return TRUE;
927 }
928
929
930 /*************************************************************************
931  * ImageList_DragLeave [COMCTL32.@]
932  *
933  * Unlocks window update and hides the drag image.
934  *
935  * PARAMS
936  *     hwndLock [I] handle of the window that owns the drag image.
937  *
938  * RETURNS
939  *     Success: TRUE
940  *     Failure: FALSE
941  */
942
943 BOOL WINAPI
944 ImageList_DragLeave (HWND hwndLock)
945 {
946     /* As we don't save drag info in the window this can lead to problems if
947        an app does not supply the same window as DragEnter */
948     /* if (hwndLock)
949         InternalDrag.hwnd = hwndLock;
950     else
951         InternalDrag.hwnd = GetDesktopWindow (); */
952     if(!hwndLock)
953         hwndLock = GetDesktopWindow();
954     if(InternalDrag.hwnd != hwndLock)
955         FIXME("DragLeave hWnd != DragEnter hWnd\n");
956
957     ImageList_DragShowNolock (FALSE);
958
959     return TRUE;
960 }
961
962
963 /*************************************************************************
964  * ImageList_InternalDragDraw [Internal]
965  *
966  * Draws the drag image.
967  *
968  * PARAMS
969  *     hdc [I] device context to draw into.
970  *     x   [I] X position of the drag image.
971  *     y   [I] Y position of the drag image.
972  *
973  * RETURNS
974  *     Success: TRUE
975  *     Failure: FALSE
976  *
977  * NOTES
978  *     The position of the drag image is relative to the window, not
979  *     the client area.
980  *
981  */
982
983 static inline void
984 ImageList_InternalDragDraw (HDC hdc, INT x, INT y)
985 {
986     IMAGELISTDRAWPARAMS imldp;
987
988     ZeroMemory (&imldp, sizeof(imldp));
989     imldp.cbSize  = sizeof(imldp);
990     imldp.himl    = InternalDrag.himl;
991     imldp.i       = 0;
992     imldp.hdcDst  = hdc,
993     imldp.x       = x;
994     imldp.y       = y;
995     imldp.rgbBk   = CLR_DEFAULT;
996     imldp.rgbFg   = CLR_DEFAULT;
997     imldp.fStyle  = ILD_NORMAL;
998     imldp.fState  = ILS_ALPHA;
999     imldp.Frame   = 192;
1000     ImageList_DrawIndirect (&imldp);
1001 }
1002
1003 /*************************************************************************
1004  * ImageList_DragMove [COMCTL32.@]
1005  *
1006  * Moves the drag image.
1007  *
1008  * PARAMS
1009  *     x [I] X position of the drag image.
1010  *     y [I] Y position of the drag image.
1011  *
1012  * RETURNS
1013  *     Success: TRUE
1014  *     Failure: FALSE
1015  *
1016  * NOTES
1017  *     The position of the drag image is relative to the window, not
1018  *     the client area.
1019  */
1020
1021 BOOL WINAPI
1022 ImageList_DragMove (INT x, INT y)
1023 {
1024     TRACE("(x=%d y=%d)\n", x, y);
1025
1026     if (!is_valid(InternalDrag.himl))
1027         return FALSE;
1028
1029     /* draw/update the drag image */
1030     if (InternalDrag.bShow) {
1031         HDC hdcDrag;
1032         HDC hdcOffScreen;
1033         HDC hdcBg;
1034         HBITMAP hbmOffScreen;
1035         INT origNewX, origNewY;
1036         INT origOldX, origOldY;
1037         INT origRegX, origRegY;
1038         INT sizeRegX, sizeRegY;
1039
1040
1041         /* calculate the update region */
1042         origNewX = x - InternalDrag.dxHotspot;
1043         origNewY = y - InternalDrag.dyHotspot;
1044         origOldX = InternalDrag.x - InternalDrag.dxHotspot;
1045         origOldY = InternalDrag.y - InternalDrag.dyHotspot;
1046         origRegX = min(origNewX, origOldX);
1047         origRegY = min(origNewY, origOldY);
1048         sizeRegX = InternalDrag.himl->cx + abs(x - InternalDrag.x);
1049         sizeRegY = InternalDrag.himl->cy + abs(y - InternalDrag.y);
1050
1051         hdcDrag = GetDCEx(InternalDrag.hwnd, 0,
1052                           DCX_WINDOW | DCX_CACHE | DCX_LOCKWINDOWUPDATE);
1053         hdcOffScreen = CreateCompatibleDC(hdcDrag);
1054         hdcBg = CreateCompatibleDC(hdcDrag);
1055
1056         hbmOffScreen = CreateCompatibleBitmap(hdcDrag, sizeRegX, sizeRegY);
1057         SelectObject(hdcOffScreen, hbmOffScreen);
1058         SelectObject(hdcBg, InternalDrag.hbmBg);
1059
1060         /* get the actual background of the update region */
1061         BitBlt(hdcOffScreen, 0, 0, sizeRegX, sizeRegY, hdcDrag,
1062                origRegX, origRegY, SRCCOPY);
1063         /* erase the old image */
1064         BitBlt(hdcOffScreen, origOldX - origRegX, origOldY - origRegY,
1065                InternalDrag.himl->cx, InternalDrag.himl->cy, hdcBg, 0, 0,
1066                SRCCOPY);
1067         /* save the background */
1068         BitBlt(hdcBg, 0, 0, InternalDrag.himl->cx, InternalDrag.himl->cy,
1069                hdcOffScreen, origNewX - origRegX, origNewY - origRegY, SRCCOPY);
1070         /* draw the image */
1071         ImageList_InternalDragDraw(hdcOffScreen, origNewX - origRegX, 
1072                                    origNewY - origRegY);
1073         /* draw the update region to the screen */
1074         BitBlt(hdcDrag, origRegX, origRegY, sizeRegX, sizeRegY,
1075                hdcOffScreen, 0, 0, SRCCOPY);
1076
1077         DeleteDC(hdcBg);
1078         DeleteDC(hdcOffScreen);
1079         DeleteObject(hbmOffScreen);
1080         ReleaseDC(InternalDrag.hwnd, hdcDrag);
1081     }
1082
1083     /* update the image position */
1084     InternalDrag.x = x;
1085     InternalDrag.y = y;
1086
1087     return TRUE;
1088 }
1089
1090
1091 /*************************************************************************
1092  * ImageList_DragShowNolock [COMCTL32.@]
1093  *
1094  * Shows or hides the drag image.
1095  *
1096  * PARAMS
1097  *     bShow [I] TRUE shows the drag image, FALSE hides it.
1098  *
1099  * RETURNS
1100  *     Success: TRUE
1101  *     Failure: FALSE
1102  */
1103
1104 BOOL WINAPI
1105 ImageList_DragShowNolock (BOOL bShow)
1106 {
1107     HDC hdcDrag;
1108     HDC hdcBg;
1109     INT x, y;
1110
1111     if (!is_valid(InternalDrag.himl))
1112         return FALSE;
1113     
1114     TRACE("bShow=0x%X!\n", bShow);
1115
1116     /* DragImage is already visible/hidden */
1117     if ((InternalDrag.bShow && bShow) || (!InternalDrag.bShow && !bShow)) {
1118         return FALSE;
1119     }
1120
1121     /* position of the origin of the DragImage */
1122     x = InternalDrag.x - InternalDrag.dxHotspot;
1123     y = InternalDrag.y - InternalDrag.dyHotspot;
1124
1125     hdcDrag = GetDCEx (InternalDrag.hwnd, 0,
1126                          DCX_WINDOW | DCX_CACHE | DCX_LOCKWINDOWUPDATE);
1127     if (!hdcDrag) {
1128         return FALSE;
1129     }
1130
1131     hdcBg = CreateCompatibleDC(hdcDrag);
1132     if (!InternalDrag.hbmBg) {
1133         InternalDrag.hbmBg = CreateCompatibleBitmap(hdcDrag,
1134                     InternalDrag.himl->cx, InternalDrag.himl->cy);
1135     }
1136     SelectObject(hdcBg, InternalDrag.hbmBg);
1137
1138     if (bShow) {
1139         /* save the background */
1140         BitBlt(hdcBg, 0, 0, InternalDrag.himl->cx, InternalDrag.himl->cy,
1141                hdcDrag, x, y, SRCCOPY);
1142         /* show the image */
1143         ImageList_InternalDragDraw(hdcDrag, x, y);
1144     } else {
1145         /* hide the image */
1146         BitBlt(hdcDrag, x, y, InternalDrag.himl->cx, InternalDrag.himl->cy,
1147                hdcBg, 0, 0, SRCCOPY);
1148     }
1149
1150     InternalDrag.bShow = !InternalDrag.bShow;
1151
1152     DeleteDC(hdcBg);
1153     ReleaseDC (InternalDrag.hwnd, hdcDrag);
1154     return TRUE;
1155 }
1156
1157
1158 /*************************************************************************
1159  * ImageList_Draw [COMCTL32.@]
1160  *
1161  * Draws an image.
1162  *
1163  * PARAMS
1164  *     himl   [I] handle to image list
1165  *     i      [I] image index
1166  *     hdc    [I] handle to device context
1167  *     x      [I] x position
1168  *     y      [I] y position
1169  *     fStyle [I] drawing flags
1170  *
1171  * RETURNS
1172  *     Success: TRUE
1173  *     Failure: FALSE
1174  *
1175  * SEE
1176  *     ImageList_DrawEx.
1177  */
1178
1179 BOOL WINAPI
1180 ImageList_Draw (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y, UINT fStyle)
1181 {
1182     return ImageList_DrawEx (himl, i, hdc, x, y, 0, 0, 
1183                              CLR_DEFAULT, CLR_DEFAULT, fStyle);
1184 }
1185
1186
1187 /*************************************************************************
1188  * ImageList_DrawEx [COMCTL32.@]
1189  *
1190  * Draws an image and allows using extended drawing features.
1191  *
1192  * PARAMS
1193  *     himl   [I] handle to image list
1194  *     i      [I] image index
1195  *     hdc    [I] handle to device context
1196  *     x      [I] X position
1197  *     y      [I] Y position
1198  *     dx     [I] X offset
1199  *     dy     [I] Y offset
1200  *     rgbBk  [I] background color
1201  *     rgbFg  [I] foreground color
1202  *     fStyle [I] drawing flags
1203  *
1204  * RETURNS
1205  *     Success: TRUE
1206  *     Failure: FALSE
1207  *
1208  * NOTES
1209  *     Calls ImageList_DrawIndirect.
1210  *
1211  * SEE
1212  *     ImageList_DrawIndirect.
1213  */
1214
1215 BOOL WINAPI
1216 ImageList_DrawEx (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y,
1217                   INT dx, INT dy, COLORREF rgbBk, COLORREF rgbFg,
1218                   UINT fStyle)
1219 {
1220     IMAGELISTDRAWPARAMS imldp;
1221
1222     ZeroMemory (&imldp, sizeof(imldp));
1223     imldp.cbSize  = sizeof(imldp);
1224     imldp.himl    = himl;
1225     imldp.i       = i;
1226     imldp.hdcDst  = hdc,
1227     imldp.x       = x;
1228     imldp.y       = y;
1229     imldp.cx      = dx;
1230     imldp.cy      = dy;
1231     imldp.rgbBk   = rgbBk;
1232     imldp.rgbFg   = rgbFg;
1233     imldp.fStyle  = fStyle;
1234
1235     return ImageList_DrawIndirect (&imldp);
1236 }
1237
1238
1239 static BOOL alpha_blend_image( HIMAGELIST himl, HDC dest_dc, int dest_x, int dest_y,
1240                                int src_x, int src_y, int cx, int cy, BLENDFUNCTION func,
1241                                UINT style, COLORREF blend_col )
1242 {
1243     BOOL ret = FALSE;
1244     HDC hdc;
1245     HBITMAP bmp = 0, mask = 0;
1246     BITMAPINFO *info;
1247     void *bits, *mask_bits;
1248     unsigned int *ptr;
1249     int i, j;
1250
1251     if (!(hdc = CreateCompatibleDC( 0 ))) return FALSE;
1252     if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto done;
1253     info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1254     info->bmiHeader.biWidth = cx;
1255     info->bmiHeader.biHeight = cy;
1256     info->bmiHeader.biPlanes = 1;
1257     info->bmiHeader.biBitCount = 32;
1258     info->bmiHeader.biCompression = BI_RGB;
1259     info->bmiHeader.biSizeImage = cx * cy * 4;
1260     info->bmiHeader.biXPelsPerMeter = 0;
1261     info->bmiHeader.biYPelsPerMeter = 0;
1262     info->bmiHeader.biClrUsed = 0;
1263     info->bmiHeader.biClrImportant = 0;
1264     if (!(bmp = CreateDIBSection( himl->hdcImage, info, DIB_RGB_COLORS, &bits, 0, 0 ))) goto done;
1265     SelectObject( hdc, bmp );
1266     BitBlt( hdc, 0, 0, cx, cy, himl->hdcImage, src_x, src_y, SRCCOPY );
1267
1268     if (blend_col != CLR_NONE)
1269     {
1270         BYTE r = GetRValue( blend_col );
1271         BYTE g = GetGValue( blend_col );
1272         BYTE b = GetBValue( blend_col );
1273
1274         if (style & ILD_BLEND25)
1275         {
1276             for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1277                 *ptr = ((*ptr & 0xff000000) |
1278                         ((((*ptr & 0x00ff0000) * 3 + (r << 16)) / 4) & 0x00ff0000) |
1279                         ((((*ptr & 0x0000ff00) * 3 + (g << 8))  / 4) & 0x0000ff00) |
1280                         ((((*ptr & 0x000000ff) * 3 + (b << 0))  / 4) & 0x000000ff));
1281         }
1282         else if (style & ILD_BLEND50)
1283         {
1284             for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1285                 *ptr = ((*ptr & 0xff000000) |
1286                         ((((*ptr & 0x00ff0000) + (r << 16)) / 2) & 0x00ff0000) |
1287                         ((((*ptr & 0x0000ff00) + (g << 8))  / 2) & 0x0000ff00) |
1288                         ((((*ptr & 0x000000ff) + (b << 0))  / 2) & 0x000000ff));
1289         }
1290     }
1291
1292     if (himl->has_alpha)  /* we already have an alpha channel in this case */
1293     {
1294         /* pre-multiply by the alpha channel */
1295         for (i = 0, ptr = bits; i < cx * cy; i++, ptr++)
1296         {
1297             DWORD alpha = *ptr >> 24;
1298             *ptr = ((*ptr & 0xff000000) |
1299                     (((*ptr & 0x00ff0000) * alpha / 255) & 0x00ff0000) |
1300                     (((*ptr & 0x0000ff00) * alpha / 255) & 0x0000ff00) |
1301                     (((*ptr & 0x000000ff) * alpha / 255)));
1302         }
1303     }
1304     else if (himl->hbmMask)
1305     {
1306         unsigned int width_bytes = (cx + 31) / 32 * 4;
1307         /* generate alpha channel from the mask */
1308         info->bmiHeader.biBitCount = 1;
1309         info->bmiHeader.biSizeImage = width_bytes * cy;
1310         info->bmiColors[0].rgbRed      = 0;
1311         info->bmiColors[0].rgbGreen    = 0;
1312         info->bmiColors[0].rgbBlue     = 0;
1313         info->bmiColors[0].rgbReserved = 0;
1314         info->bmiColors[1].rgbRed      = 0xff;
1315         info->bmiColors[1].rgbGreen    = 0xff;
1316         info->bmiColors[1].rgbBlue     = 0xff;
1317         info->bmiColors[1].rgbReserved = 0;
1318         if (!(mask = CreateDIBSection( himl->hdcMask, info, DIB_RGB_COLORS, &mask_bits, 0, 0 )))
1319             goto done;
1320         SelectObject( hdc, mask );
1321         BitBlt( hdc, 0, 0, cx, cy, himl->hdcMask, src_x, src_y, SRCCOPY );
1322         SelectObject( hdc, bmp );
1323         for (i = 0, ptr = bits; i < cy; i++)
1324             for (j = 0; j < cx; j++, ptr++)
1325                 if ((((BYTE *)mask_bits)[i * width_bytes + j / 8] << (j % 8)) & 0x80) *ptr = 0;
1326                 else *ptr |= 0xff000000;
1327     }
1328
1329     ret = GdiAlphaBlend( dest_dc, dest_x, dest_y, cx, cy, hdc, 0, 0, cx, cy, func );
1330
1331 done:
1332     DeleteDC( hdc );
1333     if (bmp) DeleteObject( bmp );
1334     if (mask) DeleteObject( mask );
1335     HeapFree( GetProcessHeap(), 0, info );
1336     return ret;
1337 }
1338
1339 /*************************************************************************
1340  * ImageList_DrawIndirect [COMCTL32.@]
1341  *
1342  * Draws an image using various parameters specified in pimldp.
1343  *
1344  * PARAMS
1345  *     pimldp [I] pointer to IMAGELISTDRAWPARAMS structure.
1346  *
1347  * RETURNS
1348  *     Success: TRUE
1349  *     Failure: FALSE
1350  */
1351
1352 BOOL WINAPI
1353 ImageList_DrawIndirect (IMAGELISTDRAWPARAMS *pimldp)
1354 {
1355     INT cx, cy, nOvlIdx;
1356     DWORD fState, dwRop;
1357     UINT fStyle;
1358     COLORREF oldImageBk, oldImageFg;
1359     HDC hImageDC, hImageListDC, hMaskListDC;
1360     HBITMAP hImageBmp, hOldImageBmp, hBlendMaskBmp;
1361     BOOL bIsTransparent, bBlend, bResult = FALSE, bMask;
1362     HIMAGELIST himl;
1363     HBRUSH hOldBrush;
1364     POINT pt;
1365     BOOL has_alpha;
1366
1367     if (!pimldp || !(himl = pimldp->himl)) return FALSE;
1368     if (!is_valid(himl)) return FALSE;
1369     if ((pimldp->i < 0) || (pimldp->i >= himl->cCurImage)) return FALSE;
1370
1371     imagelist_point_from_index( himl, pimldp->i, &pt );
1372     pt.x += pimldp->xBitmap;
1373     pt.y += pimldp->yBitmap;
1374
1375     fState = pimldp->cbSize < sizeof(IMAGELISTDRAWPARAMS) ? ILS_NORMAL : pimldp->fState;
1376     fStyle = pimldp->fStyle & ~ILD_OVERLAYMASK;
1377     cx = (pimldp->cx == 0) ? himl->cx : pimldp->cx;
1378     cy = (pimldp->cy == 0) ? himl->cy : pimldp->cy;
1379
1380     bIsTransparent = (fStyle & ILD_TRANSPARENT);
1381     if( pimldp->rgbBk == CLR_NONE )
1382         bIsTransparent = TRUE;
1383     if( ( pimldp->rgbBk == CLR_DEFAULT ) && ( himl->clrBk == CLR_NONE ) )
1384         bIsTransparent = TRUE;
1385     bMask = (himl->flags & ILC_MASK) && (fStyle & ILD_MASK) ;
1386     bBlend = (fStyle & (ILD_BLEND25 | ILD_BLEND50) ) && !bMask;
1387
1388     TRACE("himl(%p) hbmMask(%p) iImage(%d) x(%d) y(%d) cx(%d) cy(%d)\n",
1389           himl, himl->hbmMask, pimldp->i, pimldp->x, pimldp->y, cx, cy);
1390
1391     /* we will use these DCs to access the images and masks in the ImageList */
1392     hImageListDC = himl->hdcImage;
1393     hMaskListDC  = himl->hdcMask;
1394
1395     /* these will accumulate the image and mask for the image we're drawing */
1396     hImageDC = CreateCompatibleDC( pimldp->hdcDst );
1397     hImageBmp = CreateCompatibleBitmap( pimldp->hdcDst, cx, cy );
1398     hBlendMaskBmp = bBlend ? CreateBitmap(cx, cy, 1, 1, NULL) : 0;
1399
1400     /* Create a compatible DC. */
1401     if (!hImageListDC || !hImageDC || !hImageBmp ||
1402         (bBlend && !hBlendMaskBmp) || (himl->hbmMask && !hMaskListDC))
1403         goto cleanup;
1404     
1405     hOldImageBmp = SelectObject(hImageDC, hImageBmp);
1406   
1407     /*
1408      * To obtain a transparent look, background color should be set
1409      * to white and foreground color to black when blitting the
1410      * monochrome mask.
1411      */
1412     oldImageFg = SetTextColor( hImageDC, RGB( 0, 0, 0 ) );
1413     oldImageBk = SetBkColor( hImageDC, RGB( 0xff, 0xff, 0xff ) );
1414
1415     has_alpha = (himl->has_alpha && himl->has_alpha[pimldp->i]);
1416     if (!bMask && (has_alpha || (fState & ILS_ALPHA)))
1417     {
1418         COLORREF colour, blend_col = CLR_NONE;
1419         BLENDFUNCTION func;
1420
1421         if (bBlend)
1422         {
1423             blend_col = pimldp->rgbFg;
1424             if (blend_col == CLR_DEFAULT) blend_col = GetSysColor( COLOR_HIGHLIGHT );
1425             else if (blend_col == CLR_NONE) blend_col = GetTextColor( pimldp->hdcDst );
1426         }
1427
1428         func.BlendOp = AC_SRC_OVER;
1429         func.BlendFlags = 0;
1430         func.SourceConstantAlpha = (fState & ILS_ALPHA) ? pimldp->Frame : 255;
1431         func.AlphaFormat = AC_SRC_ALPHA;
1432
1433         if (bIsTransparent)
1434         {
1435             bResult = alpha_blend_image( himl, pimldp->hdcDst, pimldp->x, pimldp->y,
1436                                          pt.x, pt.y, cx, cy, func, fStyle, blend_col );
1437             goto end;
1438         }
1439         colour = pimldp->rgbBk;
1440         if (colour == CLR_DEFAULT) colour = himl->clrBk;
1441         if (colour == CLR_NONE) colour = GetBkColor( pimldp->hdcDst );
1442
1443         hOldBrush = SelectObject (hImageDC, CreateSolidBrush (colour));
1444         PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1445         alpha_blend_image( himl, hImageDC, 0, 0, pt.x, pt.y, cx, cy, func, fStyle, blend_col );
1446         DeleteObject (SelectObject (hImageDC, hOldBrush));
1447         bResult = BitBlt( pimldp->hdcDst, pimldp->x,  pimldp->y, cx, cy, hImageDC, 0, 0, SRCCOPY );
1448         goto end;
1449     }
1450
1451     /*
1452      * Draw the initial image
1453      */
1454     if( bMask ) {
1455         if (himl->hbmMask) {
1456             hOldBrush = SelectObject (hImageDC, CreateSolidBrush (GetTextColor(pimldp->hdcDst)));
1457             PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1458             BitBlt(hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCPAINT);
1459             DeleteObject (SelectObject (hImageDC, hOldBrush));
1460             if( bIsTransparent )
1461             {
1462                 BitBlt ( pimldp->hdcDst, pimldp->x,  pimldp->y, cx, cy, hImageDC, 0, 0, SRCAND);
1463                 bResult = TRUE;
1464                 goto end;
1465             }
1466         } else {
1467             hOldBrush = SelectObject (hImageDC, GetStockObject(BLACK_BRUSH));
1468             PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY);
1469             SelectObject(hImageDC, hOldBrush);
1470         }
1471     } else {
1472         /* blend the image with the needed solid background */
1473         COLORREF colour = RGB(0,0,0);
1474
1475         if( !bIsTransparent )
1476         {
1477             colour = pimldp->rgbBk;
1478             if( colour == CLR_DEFAULT )
1479                 colour = himl->clrBk;
1480             if( colour == CLR_NONE )
1481                 colour = GetBkColor(pimldp->hdcDst);
1482         }
1483
1484         hOldBrush = SelectObject (hImageDC, CreateSolidBrush (colour));
1485         PatBlt( hImageDC, 0, 0, cx, cy, PATCOPY );
1486         if (himl->hbmMask)
1487         {
1488             BitBlt( hImageDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND );
1489             BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCPAINT );
1490         }
1491         else
1492             BitBlt( hImageDC, 0, 0, cx, cy, hImageListDC, pt.x, pt.y, SRCCOPY);
1493         DeleteObject (SelectObject (hImageDC, hOldBrush));
1494     }
1495
1496     /* Time for blending, if required */
1497     if (bBlend) {
1498         HBRUSH hBlendBrush;
1499         COLORREF clrBlend = pimldp->rgbFg;
1500         HDC hBlendMaskDC = hImageListDC;
1501         HBITMAP hOldBitmap;
1502
1503         /* Create the blend Mask */
1504         hOldBitmap = SelectObject(hBlendMaskDC, hBlendMaskBmp);
1505         hBlendBrush = fStyle & ILD_BLEND50 ? himl->hbrBlend50 : himl->hbrBlend25;
1506         hOldBrush = SelectObject(hBlendMaskDC, hBlendBrush);
1507         PatBlt(hBlendMaskDC, 0, 0, cx, cy, PATCOPY);
1508         SelectObject(hBlendMaskDC, hOldBrush);
1509
1510         /* Modify the blend mask if an Image Mask exist */
1511         if(himl->hbmMask) {
1512             BitBlt(hBlendMaskDC, 0, 0, cx, cy, hMaskListDC, pt.x, pt.y, 0x220326); /* NOTSRCAND */
1513             BitBlt(hBlendMaskDC, 0, 0, cx, cy, hBlendMaskDC, 0, 0, NOTSRCCOPY);
1514         }
1515
1516         /* now apply blend to the current image given the BlendMask */
1517         if (clrBlend == CLR_DEFAULT) clrBlend = GetSysColor (COLOR_HIGHLIGHT);
1518         else if (clrBlend == CLR_NONE) clrBlend = GetTextColor (pimldp->hdcDst);
1519         hOldBrush = SelectObject (hImageDC, CreateSolidBrush(clrBlend));
1520         BitBlt (hImageDC, 0, 0, cx, cy, hBlendMaskDC, 0, 0, 0xB8074A); /* PSDPxax */
1521         DeleteObject(SelectObject(hImageDC, hOldBrush));
1522         SelectObject(hBlendMaskDC, hOldBitmap);
1523     }
1524
1525     /* Now do the overlay image, if any */
1526     nOvlIdx = (pimldp->fStyle & ILD_OVERLAYMASK) >> 8;
1527     if ( (nOvlIdx >= 1) && (nOvlIdx <= MAX_OVERLAYIMAGE)) {
1528         nOvlIdx = himl->nOvlIdx[nOvlIdx - 1];
1529         if ((nOvlIdx >= 0) && (nOvlIdx < himl->cCurImage)) {
1530             POINT ptOvl;
1531             imagelist_point_from_index( himl, nOvlIdx, &ptOvl );
1532             ptOvl.x += pimldp->xBitmap;
1533             if (himl->hbmMask && !(fStyle & ILD_IMAGE))
1534                 BitBlt (hImageDC, 0, 0, cx, cy, hMaskListDC, ptOvl.x, ptOvl.y, SRCAND);
1535             BitBlt (hImageDC, 0, 0, cx, cy, hImageListDC, ptOvl.x, ptOvl.y, SRCPAINT);
1536         }
1537     }
1538
1539     if (fState & ILS_SATURATE) FIXME("ILS_SATURATE: unimplemented!\n");
1540     if (fState & ILS_GLOW) FIXME("ILS_GLOW: unimplemented!\n");
1541     if (fState & ILS_SHADOW) FIXME("ILS_SHADOW: unimplemented!\n");
1542
1543     if (fStyle & ILD_PRESERVEALPHA) FIXME("ILD_PRESERVEALPHA: unimplemented!\n");
1544     if (fStyle & ILD_SCALE) FIXME("ILD_SCALE: unimplemented!\n");
1545     if (fStyle & ILD_DPISCALE) FIXME("ILD_DPISCALE: unimplemented!\n");
1546
1547     /* now copy the image to the screen */
1548     dwRop = SRCCOPY;
1549     if (himl->hbmMask && bIsTransparent ) {
1550         COLORREF oldDstFg = SetTextColor(pimldp->hdcDst, RGB( 0, 0, 0 ) );
1551         COLORREF oldDstBk = SetBkColor(pimldp->hdcDst, RGB( 0xff, 0xff, 0xff ));
1552         BitBlt (pimldp->hdcDst, pimldp->x,  pimldp->y, cx, cy, hMaskListDC, pt.x, pt.y, SRCAND);
1553         SetBkColor(pimldp->hdcDst, oldDstBk);
1554         SetTextColor(pimldp->hdcDst, oldDstFg);
1555         dwRop = SRCPAINT;
1556     }
1557     if (fStyle & ILD_ROP) dwRop = pimldp->dwRop;
1558     BitBlt (pimldp->hdcDst, pimldp->x,  pimldp->y, cx, cy, hImageDC, 0, 0, dwRop);
1559
1560     bResult = TRUE;
1561 end:
1562     /* cleanup the mess */
1563     SetBkColor(hImageDC, oldImageBk);
1564     SetTextColor(hImageDC, oldImageFg);
1565     SelectObject(hImageDC, hOldImageBmp);
1566 cleanup:
1567     DeleteObject(hBlendMaskBmp);
1568     DeleteObject(hImageBmp);
1569     DeleteDC(hImageDC);
1570
1571     return bResult;
1572 }
1573
1574
1575 /*************************************************************************
1576  * ImageList_Duplicate [COMCTL32.@]
1577  *
1578  * Duplicates an image list.
1579  *
1580  * PARAMS
1581  *     himlSrc [I] source image list handle
1582  *
1583  * RETURNS
1584  *     Success: Handle of duplicated image list.
1585  *     Failure: NULL
1586  */
1587
1588 HIMAGELIST WINAPI
1589 ImageList_Duplicate (HIMAGELIST himlSrc)
1590 {
1591     HIMAGELIST himlDst;
1592
1593     if (!is_valid(himlSrc)) {
1594         ERR("Invalid image list handle!\n");
1595         return NULL;
1596     }
1597
1598     himlDst = ImageList_Create (himlSrc->cx, himlSrc->cy, himlSrc->flags,
1599                                 himlSrc->cCurImage, himlSrc->cGrow);
1600
1601     if (himlDst)
1602     {
1603         SIZE sz;
1604
1605         imagelist_get_bitmap_size(himlSrc, himlSrc->cCurImage, &sz);
1606         BitBlt (himlDst->hdcImage, 0, 0, sz.cx, sz.cy,
1607                 himlSrc->hdcImage, 0, 0, SRCCOPY);
1608
1609         if (himlDst->hbmMask)
1610             BitBlt (himlDst->hdcMask, 0, 0, sz.cx, sz.cy,
1611                     himlSrc->hdcMask, 0, 0, SRCCOPY);
1612
1613         himlDst->cCurImage = himlSrc->cCurImage;
1614         if (himlSrc->has_alpha && himlDst->has_alpha)
1615             memcpy( himlDst->has_alpha, himlSrc->has_alpha, himlDst->cCurImage );
1616     }
1617     return himlDst;
1618 }
1619
1620
1621 /*************************************************************************
1622  * ImageList_EndDrag [COMCTL32.@]
1623  *
1624  * Finishes a drag operation.
1625  *
1626  * PARAMS
1627  *     no Parameters
1628  *
1629  * RETURNS
1630  *     Success: TRUE
1631  *     Failure: FALSE
1632  */
1633
1634 VOID WINAPI
1635 ImageList_EndDrag (void)
1636 {
1637     /* cleanup the InternalDrag struct */
1638     InternalDrag.hwnd = 0;
1639     if (InternalDrag.himl != InternalDrag.himlNoCursor)
1640         ImageList_Destroy (InternalDrag.himlNoCursor);
1641     ImageList_Destroy (InternalDrag.himl);
1642     InternalDrag.himlNoCursor = InternalDrag.himl = 0;
1643     InternalDrag.x= 0;
1644     InternalDrag.y= 0;
1645     InternalDrag.dxHotspot = 0;
1646     InternalDrag.dyHotspot = 0;
1647     InternalDrag.bShow = FALSE;
1648     DeleteObject(InternalDrag.hbmBg);
1649     InternalDrag.hbmBg = 0;
1650 }
1651
1652
1653 /*************************************************************************
1654  * ImageList_GetBkColor [COMCTL32.@]
1655  *
1656  * Returns the background color of an image list.
1657  *
1658  * PARAMS
1659  *     himl [I] Image list handle.
1660  *
1661  * RETURNS
1662  *     Success: background color
1663  *     Failure: CLR_NONE
1664  */
1665
1666 COLORREF WINAPI
1667 ImageList_GetBkColor (HIMAGELIST himl)
1668 {
1669     return himl ? himl->clrBk : CLR_NONE;
1670 }
1671
1672
1673 /*************************************************************************
1674  * ImageList_GetDragImage [COMCTL32.@]
1675  *
1676  * Returns the handle to the internal drag image list.
1677  *
1678  * PARAMS
1679  *     ppt        [O] Pointer to the drag position. Can be NULL.
1680  *     pptHotspot [O] Pointer to the position of the hot spot. Can be NULL.
1681  *
1682  * RETURNS
1683  *     Success: Handle of the drag image list.
1684  *     Failure: NULL.
1685  */
1686
1687 HIMAGELIST WINAPI
1688 ImageList_GetDragImage (POINT *ppt, POINT *pptHotspot)
1689 {
1690     if (is_valid(InternalDrag.himl)) {
1691         if (ppt) {
1692             ppt->x = InternalDrag.x;
1693             ppt->y = InternalDrag.y;
1694         }
1695         if (pptHotspot) {
1696             pptHotspot->x = InternalDrag.dxHotspot;
1697             pptHotspot->y = InternalDrag.dyHotspot;
1698         }
1699         return (InternalDrag.himl);
1700     }
1701
1702     return NULL;
1703 }
1704
1705
1706 /*************************************************************************
1707  * ImageList_GetFlags [COMCTL32.@]
1708  *
1709  * Gets the flags of the specified image list.
1710  *
1711  * PARAMS
1712  *     himl [I] Handle to image list
1713  *
1714  * RETURNS
1715  *     Image list flags.
1716  *
1717  * BUGS
1718  *    Stub.
1719  */
1720
1721 DWORD WINAPI
1722 ImageList_GetFlags(HIMAGELIST himl)
1723 {
1724     TRACE("%p\n", himl);
1725
1726     return is_valid(himl) ? himl->flags : 0;
1727 }
1728
1729
1730 /*************************************************************************
1731  * ImageList_GetIcon [COMCTL32.@]
1732  *
1733  * Creates an icon from a masked image of an image list.
1734  *
1735  * PARAMS
1736  *     himl  [I] handle to image list
1737  *     i     [I] image index
1738  *     flags [I] drawing style flags
1739  *
1740  * RETURNS
1741  *     Success: icon handle
1742  *     Failure: NULL
1743  */
1744
1745 HICON WINAPI
1746 ImageList_GetIcon (HIMAGELIST himl, INT i, UINT fStyle)
1747 {
1748     ICONINFO ii;
1749     HICON hIcon;
1750     HBITMAP hOldDstBitmap;
1751     HDC hdcDst;
1752     POINT pt;
1753
1754     TRACE("%p %d %d\n", himl, i, fStyle);
1755     if (!is_valid(himl) || (i < 0) || (i >= himl->cCurImage)) return NULL;
1756
1757     ii.fIcon = TRUE;
1758     ii.xHotspot = 0;
1759     ii.yHotspot = 0;
1760
1761     /* create colour bitmap */
1762     hdcDst = GetDC(0);
1763     ii.hbmColor = CreateCompatibleBitmap(hdcDst, himl->cx, himl->cy);
1764     ReleaseDC(0, hdcDst);
1765
1766     hdcDst = CreateCompatibleDC(0);
1767
1768     imagelist_point_from_index( himl, i, &pt );
1769
1770     /* draw mask*/
1771     ii.hbmMask  = CreateBitmap (himl->cx, himl->cy, 1, 1, NULL);
1772     hOldDstBitmap = SelectObject (hdcDst, ii.hbmMask);
1773     if (himl->hbmMask) {
1774         BitBlt (hdcDst, 0, 0, himl->cx, himl->cy,
1775                 himl->hdcMask, pt.x, pt.y, SRCCOPY);
1776     }
1777     else
1778         PatBlt (hdcDst, 0, 0, himl->cx, himl->cy, BLACKNESS);
1779
1780     /* draw image*/
1781     SelectObject (hdcDst, ii.hbmColor);
1782     BitBlt (hdcDst, 0, 0, himl->cx, himl->cy,
1783             himl->hdcImage, pt.x, pt.y, SRCCOPY);
1784
1785     /*
1786      * CreateIconIndirect requires us to deselect the bitmaps from
1787      * the DCs before calling
1788      */
1789     SelectObject(hdcDst, hOldDstBitmap);
1790
1791     hIcon = CreateIconIndirect (&ii);
1792
1793     DeleteObject (ii.hbmMask);
1794     DeleteObject (ii.hbmColor);
1795     DeleteDC (hdcDst);
1796
1797     return hIcon;
1798 }
1799
1800
1801 /*************************************************************************
1802  * ImageList_GetIconSize [COMCTL32.@]
1803  *
1804  * Retrieves the size of an image in an image list.
1805  *
1806  * PARAMS
1807  *     himl [I] handle to image list
1808  *     cx   [O] pointer to the image width.
1809  *     cy   [O] pointer to the image height.
1810  *
1811  * RETURNS
1812  *     Success: TRUE
1813  *     Failure: FALSE
1814  *
1815  * NOTES
1816  *     All images in an image list have the same size.
1817  */
1818
1819 BOOL WINAPI
1820 ImageList_GetIconSize (HIMAGELIST himl, INT *cx, INT *cy)
1821 {
1822     if (!is_valid(himl) || !cx || !cy)
1823         return FALSE;
1824     if ((himl->cx <= 0) || (himl->cy <= 0))
1825         return FALSE;
1826
1827     *cx = himl->cx;
1828     *cy = himl->cy;
1829
1830     return TRUE;
1831 }
1832
1833
1834 /*************************************************************************
1835  * ImageList_GetImageCount [COMCTL32.@]
1836  *
1837  * Returns the number of images in an image list.
1838  *
1839  * PARAMS
1840  *     himl [I] handle to image list
1841  *
1842  * RETURNS
1843  *     Success: Number of images.
1844  *     Failure: 0
1845  */
1846
1847 INT WINAPI
1848 ImageList_GetImageCount (HIMAGELIST himl)
1849 {
1850     if (!is_valid(himl))
1851         return 0;
1852
1853     return himl->cCurImage;
1854 }
1855
1856
1857 /*************************************************************************
1858  * ImageList_GetImageInfo [COMCTL32.@]
1859  *
1860  * Returns information about an image in an image list.
1861  *
1862  * PARAMS
1863  *     himl       [I] handle to image list
1864  *     i          [I] image index
1865  *     pImageInfo [O] pointer to the image information
1866  *
1867  * RETURNS
1868  *     Success: TRUE
1869  *     Failure: FALSE
1870  */
1871
1872 BOOL WINAPI
1873 ImageList_GetImageInfo (HIMAGELIST himl, INT i, IMAGEINFO *pImageInfo)
1874 {
1875     POINT pt;
1876
1877     if (!is_valid(himl) || (pImageInfo == NULL))
1878         return FALSE;
1879     if ((i < 0) || (i >= himl->cCurImage))
1880         return FALSE;
1881
1882     pImageInfo->hbmImage = himl->hbmImage;
1883     pImageInfo->hbmMask  = himl->hbmMask;
1884
1885     imagelist_point_from_index( himl, i, &pt );
1886     pImageInfo->rcImage.top    = pt.y;
1887     pImageInfo->rcImage.bottom = pt.y + himl->cy;
1888     pImageInfo->rcImage.left   = pt.x;
1889     pImageInfo->rcImage.right  = pt.x + himl->cx;
1890
1891     return TRUE;
1892 }
1893
1894
1895 /*************************************************************************
1896  * ImageList_GetImageRect [COMCTL32.@]
1897  *
1898  * Retrieves the rectangle of the specified image in an image list.
1899  *
1900  * PARAMS
1901  *     himl   [I] handle to image list
1902  *     i      [I] image index
1903  *     lpRect [O] pointer to the image rectangle
1904  *
1905  * RETURNS
1906  *    Success: TRUE
1907  *    Failure: FALSE
1908  *
1909  * NOTES
1910  *    This is an UNDOCUMENTED function!!!
1911  */
1912
1913 BOOL WINAPI
1914 ImageList_GetImageRect (HIMAGELIST himl, INT i, LPRECT lpRect)
1915 {
1916     POINT pt;
1917
1918     if (!is_valid(himl) || (lpRect == NULL))
1919         return FALSE;
1920     if ((i < 0) || (i >= himl->cCurImage))
1921         return FALSE;
1922
1923     imagelist_point_from_index( himl, i, &pt );
1924     lpRect->left   = pt.x;
1925     lpRect->top    = pt.y;
1926     lpRect->right  = pt.x + himl->cx;
1927     lpRect->bottom = pt.y + himl->cy;
1928
1929     return TRUE;
1930 }
1931
1932
1933 /*************************************************************************
1934  * ImageList_LoadImage  [COMCTL32.@]
1935  * ImageList_LoadImageA [COMCTL32.@]
1936  *
1937  * Creates an image list from a bitmap, icon or cursor.
1938  *
1939  * See ImageList_LoadImageW.
1940  */
1941
1942 HIMAGELIST WINAPI
1943 ImageList_LoadImageA (HINSTANCE hi, LPCSTR lpbmp, INT cx, INT cGrow,
1944                         COLORREF clrMask, UINT uType, UINT uFlags)
1945 {
1946     HIMAGELIST himl;
1947     LPWSTR lpbmpW;
1948     DWORD len;
1949
1950     if (IS_INTRESOURCE(lpbmp))
1951         return ImageList_LoadImageW(hi, (LPCWSTR)lpbmp, cx, cGrow, clrMask,
1952                                     uType, uFlags);
1953
1954     len = MultiByteToWideChar(CP_ACP, 0, lpbmp, -1, NULL, 0);
1955     lpbmpW = Alloc(len * sizeof(WCHAR));
1956     MultiByteToWideChar(CP_ACP, 0, lpbmp, -1, lpbmpW, len);
1957
1958     himl = ImageList_LoadImageW(hi, lpbmpW, cx, cGrow, clrMask, uType, uFlags);
1959     Free (lpbmpW);
1960     return himl;
1961 }
1962
1963
1964 /*************************************************************************
1965  * ImageList_LoadImageW [COMCTL32.@]
1966  *
1967  * Creates an image list from a bitmap, icon or cursor.
1968  *
1969  * PARAMS
1970  *     hi      [I] instance handle
1971  *     lpbmp   [I] name or id of the image
1972  *     cx      [I] width of each image
1973  *     cGrow   [I] number of images to expand
1974  *     clrMask [I] mask color
1975  *     uType   [I] type of image to load
1976  *     uFlags  [I] loading flags
1977  *
1978  * RETURNS
1979  *     Success: handle to the loaded image list
1980  *     Failure: NULL
1981  *
1982  * SEE
1983  *     LoadImage ()
1984  */
1985
1986 HIMAGELIST WINAPI
1987 ImageList_LoadImageW (HINSTANCE hi, LPCWSTR lpbmp, INT cx, INT cGrow,
1988                       COLORREF clrMask, UINT uType, UINT uFlags)
1989 {
1990     HIMAGELIST himl = NULL;
1991     HANDLE   handle;
1992     INT      nImageCount;
1993
1994     handle = LoadImageW (hi, lpbmp, uType, 0, 0, uFlags);
1995     if (!handle) {
1996         WARN("Couldn't load image\n");
1997         return NULL;
1998     }
1999
2000     if (uType == IMAGE_BITMAP) {
2001         DIBSECTION dib;
2002         UINT color;
2003
2004         if (GetObjectW (handle, sizeof(dib), &dib) == sizeof(BITMAP)) color = ILC_COLOR;
2005         else color = dib.dsBm.bmBitsPixel;
2006
2007         /* To match windows behavior, if cx is set to zero and
2008          the flag DI_DEFAULTSIZE is specified, cx becomes the
2009          system metric value for icons. If the flag is not specified
2010          the function sets the size to the height of the bitmap */
2011         if (cx == 0)
2012         {
2013             if (uFlags & DI_DEFAULTSIZE)
2014                 cx = GetSystemMetrics (SM_CXICON);
2015             else
2016                 cx = dib.dsBm.bmHeight;
2017         }
2018
2019         nImageCount = dib.dsBm.bmWidth / cx;
2020
2021         himl = ImageList_Create (cx, dib.dsBm.bmHeight, ILC_MASK | color, nImageCount, cGrow);
2022         if (!himl) {
2023             DeleteObject (handle);
2024             return NULL;
2025         }
2026         ImageList_AddMasked (himl, handle, clrMask);
2027     }
2028     else if ((uType == IMAGE_ICON) || (uType == IMAGE_CURSOR)) {
2029         ICONINFO ii;
2030         BITMAP bmp;
2031
2032         GetIconInfo (handle, &ii);
2033         GetObjectW (ii.hbmColor, sizeof(BITMAP), &bmp);
2034         himl = ImageList_Create (bmp.bmWidth, bmp.bmHeight,
2035                                  ILC_MASK | ILC_COLOR, 1, cGrow);
2036         if (!himl) {
2037             DeleteObject (ii.hbmColor);
2038             DeleteObject (ii.hbmMask);
2039             DeleteObject (handle);
2040             return NULL;
2041         }
2042         ImageList_Add (himl, ii.hbmColor, ii.hbmMask);
2043         DeleteObject (ii.hbmColor);
2044         DeleteObject (ii.hbmMask);
2045     }
2046
2047     DeleteObject (handle);
2048
2049     return himl;
2050 }
2051
2052
2053 /*************************************************************************
2054  * ImageList_Merge [COMCTL32.@]
2055  *
2056  * Create an image list containing a merged image from two image lists.
2057  *
2058  * PARAMS
2059  *     himl1 [I] handle to first image list
2060  *     i1    [I] first image index
2061  *     himl2 [I] handle to second image list
2062  *     i2    [I] second image index
2063  *     dx    [I] X offset of the second image relative to the first.
2064  *     dy    [I] Y offset of the second image relative to the first.
2065  *
2066  * RETURNS
2067  *     Success: The newly created image list. It contains a single image
2068  *              consisting of the second image merged with the first.
2069  *     Failure: NULL, if either himl1 or himl2 are invalid.
2070  *
2071  * NOTES
2072  *   - The returned image list should be deleted by the caller using
2073  *     ImageList_Destroy() when it is no longer required.
2074  *   - If either i1 or i2 are not valid image indices they will be treated
2075  *     as a blank image.
2076  */
2077 HIMAGELIST WINAPI
2078 ImageList_Merge (HIMAGELIST himl1, INT i1, HIMAGELIST himl2, INT i2,
2079                  INT dx, INT dy)
2080 {
2081     HIMAGELIST himlDst = NULL;
2082     INT      cxDst, cyDst;
2083     INT      xOff1, yOff1, xOff2, yOff2;
2084     POINT    pt1, pt2;
2085
2086     TRACE("(himl1=%p i1=%d himl2=%p i2=%d dx=%d dy=%d)\n", himl1, i1, himl2,
2087            i2, dx, dy);
2088
2089     if (!is_valid(himl1) || !is_valid(himl2))
2090         return NULL;
2091
2092     if (dx > 0) {
2093         cxDst = max (himl1->cx, dx + himl2->cx);
2094         xOff1 = 0;
2095         xOff2 = dx;
2096     }
2097     else if (dx < 0) {
2098         cxDst = max (himl2->cx, himl1->cx - dx);
2099         xOff1 = -dx;
2100         xOff2 = 0;
2101     }
2102     else {
2103         cxDst = max (himl1->cx, himl2->cx);
2104         xOff1 = 0;
2105         xOff2 = 0;
2106     }
2107
2108     if (dy > 0) {
2109         cyDst = max (himl1->cy, dy + himl2->cy);
2110         yOff1 = 0;
2111         yOff2 = dy;
2112     }
2113     else if (dy < 0) {
2114         cyDst = max (himl2->cy, himl1->cy - dy);
2115         yOff1 = -dy;
2116         yOff2 = 0;
2117     }
2118     else {
2119         cyDst = max (himl1->cy, himl2->cy);
2120         yOff1 = 0;
2121         yOff2 = 0;
2122     }
2123
2124     himlDst = ImageList_Create (cxDst, cyDst, ILC_MASK | ILC_COLOR, 1, 1);
2125
2126     if (himlDst)
2127     {
2128         imagelist_point_from_index( himl1, i1, &pt1 );
2129         imagelist_point_from_index( himl2, i2, &pt2 );
2130
2131         /* copy image */
2132         BitBlt (himlDst->hdcImage, 0, 0, cxDst, cyDst, himl1->hdcImage, 0, 0, BLACKNESS);
2133         if (i1 >= 0 && i1 < himl1->cCurImage)
2134             BitBlt (himlDst->hdcImage, xOff1, yOff1, himl1->cx, himl1->cy, himl1->hdcImage, pt1.x, pt1.y, SRCCOPY);
2135         if (i2 >= 0 && i2 < himl2->cCurImage)
2136         {
2137             if (himl2->flags & ILC_MASK)
2138             {
2139                 BitBlt (himlDst->hdcImage, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcMask , pt2.x, pt2.y, SRCAND);
2140                 BitBlt (himlDst->hdcImage, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcImage, pt2.x, pt2.y, SRCPAINT);
2141             }
2142             else
2143                 BitBlt (himlDst->hdcImage, xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcImage, pt2.x, pt2.y, SRCCOPY);
2144         }
2145
2146         /* copy mask */
2147         BitBlt (himlDst->hdcMask, 0, 0, cxDst, cyDst, himl1->hdcMask, 0, 0, WHITENESS);
2148         if (i1 >= 0 && i1 < himl1->cCurImage)
2149             BitBlt (himlDst->hdcMask,  xOff1, yOff1, himl1->cx, himl1->cy, himl1->hdcMask,  pt1.x, pt1.y, SRCCOPY);
2150         if (i2 >= 0 && i2 < himl2->cCurImage)
2151             BitBlt (himlDst->hdcMask,  xOff2, yOff2, himl2->cx, himl2->cy, himl2->hdcMask,  pt2.x, pt2.y, SRCAND);
2152
2153         himlDst->cCurImage = 1;
2154     }
2155
2156     return himlDst;
2157 }
2158
2159
2160 /* helper for ImageList_Read, see comments below */
2161 static void *read_bitmap(LPSTREAM pstm, BITMAPINFO *bmi)
2162 {
2163     BITMAPFILEHEADER    bmfh;
2164     int bitsperpixel, palspace;
2165     void *bits;
2166
2167     if (FAILED(IStream_Read ( pstm, &bmfh, sizeof(bmfh), NULL)))
2168         return NULL;
2169
2170     if (bmfh.bfType != (('M'<<8)|'B'))
2171         return NULL;
2172
2173     if (FAILED(IStream_Read ( pstm, &bmi->bmiHeader, sizeof(bmi->bmiHeader), NULL)))
2174         return NULL;
2175
2176     if ((bmi->bmiHeader.biSize != sizeof(bmi->bmiHeader)))
2177         return NULL;
2178
2179     TRACE("width %u, height %u, planes %u, bpp %u\n",
2180           bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight,
2181           bmi->bmiHeader.biPlanes, bmi->bmiHeader.biBitCount);
2182
2183     bitsperpixel = bmi->bmiHeader.biPlanes * bmi->bmiHeader.biBitCount;
2184     if (bitsperpixel<=8)
2185         palspace = (1<<bitsperpixel)*sizeof(RGBQUAD);
2186     else
2187         palspace = 0;
2188
2189     bmi->bmiHeader.biSizeImage = get_dib_image_size( bmi );
2190
2191     /* read the palette right after the end of the bitmapinfoheader */
2192     if (palspace && FAILED(IStream_Read(pstm, bmi->bmiColors, palspace, NULL)))
2193         return NULL;
2194
2195     bits = Alloc(bmi->bmiHeader.biSizeImage);
2196     if (!bits) return NULL;
2197
2198     if (FAILED(IStream_Read(pstm, bits, bmi->bmiHeader.biSizeImage, NULL)))
2199     {
2200         Free(bits);
2201         return NULL;
2202     }
2203     return bits;
2204 }
2205
2206 /*************************************************************************
2207  * ImageList_Read [COMCTL32.@]
2208  *
2209  * Reads an image list from a stream.
2210  *
2211  * PARAMS
2212  *     pstm [I] pointer to a stream
2213  *
2214  * RETURNS
2215  *     Success: handle to image list
2216  *     Failure: NULL
2217  *
2218  * The format is like this:
2219  *      ILHEAD                  ilheadstruct;
2220  *
2221  * for the color image part:
2222  *      BITMAPFILEHEADER        bmfh;
2223  *      BITMAPINFOHEADER        bmih;
2224  * only if it has a palette:
2225  *      RGBQUAD         rgbs[nr_of_paletted_colors];
2226  *
2227  *      BYTE                    colorbits[imagesize];
2228  *
2229  * the following only if the ILC_MASK bit is set in ILHEAD.ilFlags:
2230  *      BITMAPFILEHEADER        bmfh_mask;
2231  *      BITMAPINFOHEADER        bmih_mask;
2232  * only if it has a palette (it usually does not):
2233  *      RGBQUAD         rgbs[nr_of_paletted_colors];
2234  *
2235  *      BYTE                    maskbits[imagesize];
2236  */
2237 HIMAGELIST WINAPI ImageList_Read (LPSTREAM pstm)
2238 {
2239     char image_buf[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256];
2240     char mask_buf[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256];
2241     BITMAPINFO *image_info = (BITMAPINFO *)image_buf;
2242     BITMAPINFO *mask_info = (BITMAPINFO *)mask_buf;
2243     void *image_bits, *mask_bits = NULL;
2244     ILHEAD      ilHead;
2245     HIMAGELIST  himl;
2246     unsigned int i;
2247
2248     TRACE("%p\n", pstm);
2249
2250     if (FAILED(IStream_Read (pstm, &ilHead, sizeof(ILHEAD), NULL)))
2251         return NULL;
2252     if (ilHead.usMagic != (('L' << 8) | 'I'))
2253         return NULL;
2254     if (ilHead.usVersion != 0x101) /* probably version? */
2255         return NULL;
2256
2257     TRACE("cx %u, cy %u, flags 0x%04x, cCurImage %u, cMaxImage %u\n",
2258           ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
2259
2260     himl = ImageList_Create(ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
2261     if (!himl)
2262         return NULL;
2263
2264     if (!(image_bits = read_bitmap(pstm, image_info)))
2265     {
2266         WARN("failed to read bitmap from stream\n");
2267         return NULL;
2268     }
2269     if (ilHead.flags & ILC_MASK)
2270     {
2271         if (!(mask_bits = read_bitmap(pstm, mask_info)))
2272         {
2273             WARN("failed to read mask bitmap from stream\n");
2274             return NULL;
2275         }
2276     }
2277     else mask_info = NULL;
2278
2279     if (himl->has_alpha && image_info->bmiHeader.biBitCount == 32)
2280     {
2281         DWORD *ptr = image_bits;
2282         BYTE *mask_ptr = mask_bits;
2283         int stride = himl->cy * image_info->bmiHeader.biWidth;
2284
2285         if (image_info->bmiHeader.biHeight > 0)  /* bottom-up */
2286         {
2287             ptr += image_info->bmiHeader.biHeight * image_info->bmiHeader.biWidth - stride;
2288             mask_ptr += (image_info->bmiHeader.biHeight * image_info->bmiHeader.biWidth - stride) / 8;
2289             stride = -stride;
2290             image_info->bmiHeader.biHeight = himl->cy;
2291         }
2292         else image_info->bmiHeader.biHeight = -himl->cy;
2293
2294         for (i = 0; i < ilHead.cCurImage; i += TILE_COUNT)
2295         {
2296             add_dib_bits( himl, i, min( ilHead.cCurImage - i, TILE_COUNT ),
2297                           himl->cx, himl->cy, image_info, mask_info, ptr, mask_ptr );
2298             ptr += stride;
2299             mask_ptr += stride / 8;
2300         }
2301     }
2302     else
2303     {
2304         StretchDIBits( himl->hdcImage, 0, 0, image_info->bmiHeader.biWidth, image_info->bmiHeader.biHeight,
2305                        0, 0, image_info->bmiHeader.biWidth, image_info->bmiHeader.biHeight,
2306                        image_bits, image_info, DIB_RGB_COLORS, SRCCOPY);
2307         if (mask_info)
2308             StretchDIBits( himl->hdcMask, 0, 0, mask_info->bmiHeader.biWidth, mask_info->bmiHeader.biHeight,
2309                            0, 0, mask_info->bmiHeader.biWidth, mask_info->bmiHeader.biHeight,
2310                            mask_bits, mask_info, DIB_RGB_COLORS, SRCCOPY);
2311     }
2312     Free( image_bits );
2313     Free( mask_bits );
2314
2315     himl->cCurImage = ilHead.cCurImage;
2316     himl->cMaxImage = ilHead.cMaxImage;
2317
2318     ImageList_SetBkColor(himl,ilHead.bkcolor);
2319     for (i=0;i<4;i++)
2320         ImageList_SetOverlayImage(himl,ilHead.ovls[i],i+1);
2321     return himl;
2322 }
2323
2324
2325 /*************************************************************************
2326  * ImageList_Remove [COMCTL32.@]
2327  *
2328  * Removes an image from an image list
2329  *
2330  * PARAMS
2331  *     himl [I] image list handle
2332  *     i    [I] image index
2333  *
2334  * RETURNS
2335  *     Success: TRUE
2336  *     Failure: FALSE
2337  *
2338  * FIXME: as the image list storage test shows, native comctl32 simply shifts
2339  * images without creating a new bitmap.
2340  */
2341 BOOL WINAPI
2342 ImageList_Remove (HIMAGELIST himl, INT i)
2343 {
2344     HBITMAP hbmNewImage, hbmNewMask;
2345     HDC     hdcBmp;
2346     SIZE    sz;
2347
2348     TRACE("(himl=%p i=%d)\n", himl, i);
2349
2350     if (!is_valid(himl)) {
2351         ERR("Invalid image list handle!\n");
2352         return FALSE;
2353     }
2354
2355     if ((i < -1) || (i >= himl->cCurImage)) {
2356         TRACE("index out of range! %d\n", i);
2357         return FALSE;
2358     }
2359
2360     if (i == -1) {
2361         INT nCount;
2362
2363         /* remove all */
2364         if (himl->cCurImage == 0) {
2365             /* remove all on empty ImageList is allowed */
2366             TRACE("remove all on empty ImageList!\n");
2367             return TRUE;
2368         }
2369
2370         himl->cMaxImage = himl->cGrow;
2371         himl->cCurImage = 0;
2372         for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
2373              himl->nOvlIdx[nCount] = -1;
2374
2375         hbmNewImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2376         SelectObject (himl->hdcImage, hbmNewImage);
2377         DeleteObject (himl->hbmImage);
2378         himl->hbmImage = hbmNewImage;
2379
2380         if (himl->hbmMask) {
2381
2382             imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
2383             hbmNewMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2384             SelectObject (himl->hdcMask, hbmNewMask);
2385             DeleteObject (himl->hbmMask);
2386             himl->hbmMask = hbmNewMask;
2387         }
2388     }
2389     else {
2390         /* delete one image */
2391         TRACE("Remove single image! %d\n", i);
2392
2393         /* create new bitmap(s) */
2394         TRACE(" - Number of images: %d / %d (Old/New)\n",
2395                  himl->cCurImage, himl->cCurImage - 1);
2396
2397         hbmNewImage = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2398
2399         imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz );
2400         if (himl->hbmMask)
2401             hbmNewMask = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2402         else
2403             hbmNewMask = 0;  /* Just to keep compiler happy! */
2404
2405         hdcBmp = CreateCompatibleDC (0);
2406
2407         /* copy all images and masks prior to the "removed" image */
2408         if (i > 0) {
2409             TRACE("Pre image copy: Copy %d images\n", i);
2410
2411             SelectObject (hdcBmp, hbmNewImage);
2412             imagelist_copy_images( himl, himl->hdcImage, hdcBmp, 0, i, 0 );
2413
2414             if (himl->hbmMask) {
2415                 SelectObject (hdcBmp, hbmNewMask);
2416                 imagelist_copy_images( himl, himl->hdcMask, hdcBmp, 0, i, 0 );
2417             }
2418         }
2419
2420         /* copy all images and masks behind the removed image */
2421         if (i < himl->cCurImage - 1) {
2422             TRACE("Post image copy!\n");
2423
2424             SelectObject (hdcBmp, hbmNewImage);
2425             imagelist_copy_images( himl, himl->hdcImage, hdcBmp, i + 1,
2426                                    (himl->cCurImage - i), i );
2427
2428             if (himl->hbmMask) {
2429                 SelectObject (hdcBmp, hbmNewMask);
2430                 imagelist_copy_images( himl, himl->hdcMask, hdcBmp, i + 1,
2431                                        (himl->cCurImage - i), i );
2432             }
2433         }
2434
2435         DeleteDC (hdcBmp);
2436
2437         /* delete old images and insert new ones */
2438         SelectObject (himl->hdcImage, hbmNewImage);
2439         DeleteObject (himl->hbmImage);
2440         himl->hbmImage = hbmNewImage;
2441         if (himl->hbmMask) {
2442             SelectObject (himl->hdcMask, hbmNewMask);
2443             DeleteObject (himl->hbmMask);
2444             himl->hbmMask = hbmNewMask;
2445         }
2446
2447         himl->cCurImage--;
2448     }
2449
2450     return TRUE;
2451 }
2452
2453
2454 /*************************************************************************
2455  * ImageList_Replace [COMCTL32.@]
2456  *
2457  * Replaces an image in an image list with a new image.
2458  *
2459  * PARAMS
2460  *     himl     [I] handle to image list
2461  *     i        [I] image index
2462  *     hbmImage [I] handle to image bitmap
2463  *     hbmMask  [I] handle to mask bitmap. Can be NULL.
2464  *
2465  * RETURNS
2466  *     Success: TRUE
2467  *     Failure: FALSE
2468  */
2469
2470 BOOL WINAPI
2471 ImageList_Replace (HIMAGELIST himl, INT i, HBITMAP hbmImage,
2472                    HBITMAP hbmMask)
2473 {
2474     HDC hdcImage;
2475     BITMAP bmp;
2476     POINT pt;
2477
2478     TRACE("%p %d %p %p\n", himl, i, hbmImage, hbmMask);
2479
2480     if (!is_valid(himl)) {
2481         ERR("Invalid image list handle!\n");
2482         return FALSE;
2483     }
2484
2485     if ((i >= himl->cMaxImage) || (i < 0)) {
2486         ERR("Invalid image index!\n");
2487         return FALSE;
2488     }
2489
2490     if (!GetObjectW(hbmImage, sizeof(BITMAP), &bmp))
2491         return FALSE;
2492
2493     hdcImage = CreateCompatibleDC (0);
2494
2495     /* Replace Image */
2496     SelectObject (hdcImage, hbmImage);
2497
2498     if (add_with_alpha( himl, hdcImage, i, 1, bmp.bmWidth, bmp.bmHeight, hbmImage, hbmMask ))
2499         goto done;
2500
2501     imagelist_point_from_index(himl, i, &pt);
2502     StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
2503                   hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2504
2505     if (himl->hbmMask)
2506     {
2507         HDC hdcTemp;
2508         HBITMAP hOldBitmapTemp;
2509
2510         hdcTemp   = CreateCompatibleDC(0);
2511         hOldBitmapTemp = SelectObject(hdcTemp, hbmMask);
2512
2513         StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
2514                       hdcTemp, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
2515         SelectObject(hdcTemp, hOldBitmapTemp);
2516         DeleteDC(hdcTemp);
2517
2518         /* Remove the background from the image
2519         */
2520         BitBlt (himl->hdcImage, pt.x, pt.y, bmp.bmWidth, bmp.bmHeight,
2521                 himl->hdcMask, pt.x, pt.y, 0x220326); /* NOTSRCAND */
2522     }
2523
2524 done:
2525     DeleteDC (hdcImage);
2526
2527     return TRUE;
2528 }
2529
2530
2531 /*************************************************************************
2532  * ImageList_ReplaceIcon [COMCTL32.@]
2533  *
2534  * Replaces an image in an image list using an icon.
2535  *
2536  * PARAMS
2537  *     himl  [I] handle to image list
2538  *     i     [I] image index
2539  *     hIcon [I] handle to icon
2540  *
2541  * RETURNS
2542  *     Success: index of the replaced image
2543  *     Failure: -1
2544  */
2545
2546 INT WINAPI
2547 ImageList_ReplaceIcon (HIMAGELIST himl, INT nIndex, HICON hIcon)
2548 {
2549     HICON   hBestFitIcon;
2550     ICONINFO  ii;
2551     BITMAP  bmp;
2552     BOOL    ret;
2553     POINT   pt;
2554
2555     TRACE("(%p %d %p)\n", himl, nIndex, hIcon);
2556
2557     if (!is_valid(himl)) {
2558         ERR("invalid image list\n");
2559         return -1;
2560     }
2561     if ((nIndex >= himl->cMaxImage) || (nIndex < -1)) {
2562         ERR("invalid image index %d / %d\n", nIndex, himl->cMaxImage);
2563         return -1;
2564     }
2565
2566     hBestFitIcon = CopyImage(
2567         hIcon, IMAGE_ICON,
2568         himl->cx, himl->cy,
2569         LR_COPYFROMRESOURCE);
2570     /* the above will fail if the icon wasn't loaded from a resource, so try
2571      * again without LR_COPYFROMRESOURCE flag */
2572     if (!hBestFitIcon)
2573         hBestFitIcon = CopyImage(
2574             hIcon, IMAGE_ICON,
2575             himl->cx, himl->cy,
2576             0);
2577     if (!hBestFitIcon)
2578         return -1;
2579
2580     if (nIndex == -1) {
2581         if (himl->cCurImage + 1 >= himl->cMaxImage)
2582             IMAGELIST_InternalExpandBitmaps(himl, 1);
2583
2584         nIndex = himl->cCurImage;
2585         himl->cCurImage++;
2586     }
2587
2588     if (himl->has_alpha && GetIconInfo (hBestFitIcon, &ii))
2589     {
2590         HDC hdcImage = CreateCompatibleDC( 0 );
2591         GetObjectW (ii.hbmMask, sizeof(BITMAP), &bmp);
2592
2593         if (!ii.hbmColor)
2594         {
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         }
2605         else ret = add_with_alpha( himl, hdcImage, nIndex, 1, bmp.bmWidth, bmp.bmHeight,
2606                                    ii.hbmColor, ii.hbmMask );
2607
2608         DeleteDC( hdcImage );
2609         DeleteObject (ii.hbmMask);
2610         if (ii.hbmColor) DeleteObject (ii.hbmColor);
2611         if (ret) goto done;
2612     }
2613
2614     imagelist_point_from_index(himl, nIndex, &pt);
2615
2616     if (himl->hbmMask)
2617     {
2618         DrawIconEx( himl->hdcImage, pt.x, pt.y, hBestFitIcon, himl->cx, himl->cy, 0, 0, DI_IMAGE );
2619         PatBlt( himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy, WHITENESS );
2620         DrawIconEx( himl->hdcMask, pt.x, pt.y, hBestFitIcon, himl->cx, himl->cy, 0, 0, DI_MASK );
2621     }
2622     else
2623     {
2624         COLORREF color = himl->clrBk != CLR_NONE ? himl->clrBk : comctl32_color.clrWindow;
2625         HBRUSH brush = CreateSolidBrush( GetNearestColor( himl->hdcImage, color ));
2626
2627         SelectObject( himl->hdcImage, brush );
2628         PatBlt( himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy, PATCOPY );
2629         SelectObject( himl->hdcImage, GetStockObject(BLACK_BRUSH) );
2630         DeleteObject( brush );
2631         DrawIconEx( himl->hdcImage, pt.x, pt.y, hBestFitIcon, himl->cx, himl->cy, 0, 0, DI_NORMAL );
2632     }
2633
2634 done:
2635     DestroyIcon(hBestFitIcon);
2636
2637     TRACE("Insert index = %d, himl->cCurImage = %d\n", nIndex, himl->cCurImage);
2638     return nIndex;
2639 }
2640
2641
2642 /*************************************************************************
2643  * ImageList_SetBkColor [COMCTL32.@]
2644  *
2645  * Sets the background color of an image list.
2646  *
2647  * PARAMS
2648  *     himl  [I] handle to image list
2649  *     clrBk [I] background color
2650  *
2651  * RETURNS
2652  *     Success: previous background color
2653  *     Failure: CLR_NONE
2654  */
2655
2656 COLORREF WINAPI
2657 ImageList_SetBkColor (HIMAGELIST himl, COLORREF clrBk)
2658 {
2659     COLORREF clrOldBk;
2660
2661     if (!is_valid(himl))
2662         return CLR_NONE;
2663
2664     clrOldBk = himl->clrBk;
2665     himl->clrBk = clrBk;
2666     return clrOldBk;
2667 }
2668
2669
2670 /*************************************************************************
2671  * ImageList_SetDragCursorImage [COMCTL32.@]
2672  *
2673  * Combines the specified image with the current drag image
2674  *
2675  * PARAMS
2676  *     himlDrag  [I] handle to drag image list
2677  *     iDrag     [I] drag image index
2678  *     dxHotspot [I] X position of the hot spot
2679  *     dyHotspot [I] Y position of the hot spot
2680  *
2681  * RETURNS
2682  *     Success: TRUE
2683  *     Failure: FALSE
2684  *
2685  * NOTES
2686  *   - The names dxHotspot, dyHotspot are misleading because they have nothing
2687  *     to do with a hotspot but are only the offset of the origin of the new
2688  *     image relative to the origin of the old image.
2689  *
2690  *   - When this function is called and the drag image is visible, a
2691  *     short flickering occurs but this matches the Win9x behavior. It is
2692  *     possible to fix the flickering using code like in ImageList_DragMove.
2693  */
2694
2695 BOOL WINAPI
2696 ImageList_SetDragCursorImage (HIMAGELIST himlDrag, INT iDrag,
2697                               INT dxHotspot, INT dyHotspot)
2698 {
2699     HIMAGELIST himlTemp;
2700     BOOL visible;
2701
2702     if (!is_valid(InternalDrag.himl) || !is_valid(himlDrag))
2703         return FALSE;
2704
2705     TRACE(" dxH=%d dyH=%d nX=%d nY=%d\n",
2706            dxHotspot, dyHotspot, InternalDrag.dxHotspot, InternalDrag.dyHotspot);
2707
2708     visible = InternalDrag.bShow;
2709
2710     himlTemp = ImageList_Merge (InternalDrag.himlNoCursor, 0, himlDrag, iDrag,
2711                                 dxHotspot, dyHotspot);
2712
2713     if (visible) {
2714         /* hide the drag image */
2715         ImageList_DragShowNolock(FALSE);
2716     }
2717     if ((InternalDrag.himl->cx != himlTemp->cx) ||
2718            (InternalDrag.himl->cy != himlTemp->cy)) {
2719         /* the size of the drag image changed, invalidate the buffer */
2720         DeleteObject(InternalDrag.hbmBg);
2721         InternalDrag.hbmBg = 0;
2722     }
2723
2724     if (InternalDrag.himl != InternalDrag.himlNoCursor)
2725         ImageList_Destroy (InternalDrag.himl);
2726     InternalDrag.himl = himlTemp;
2727
2728     if (visible) {
2729         /* show the drag image */
2730         ImageList_DragShowNolock(TRUE);
2731     }
2732
2733     return TRUE;
2734 }
2735
2736
2737 /*************************************************************************
2738  * ImageList_SetFilter [COMCTL32.@]
2739  *
2740  * Sets a filter (or does something completely different)!!???
2741  * It removes 12 Bytes from the stack (3 Parameters).
2742  *
2743  * PARAMS
2744  *     himl     [I] SHOULD be a handle to image list
2745  *     i        [I] COULD be an index?
2746  *     dwFilter [I] ???
2747  *
2748  * RETURNS
2749  *     Success: TRUE ???
2750  *     Failure: FALSE ???
2751  *
2752  * BUGS
2753  *     This is an UNDOCUMENTED function!!!!
2754  *     empty stub.
2755  */
2756
2757 BOOL WINAPI
2758 ImageList_SetFilter (HIMAGELIST himl, INT i, DWORD dwFilter)
2759 {
2760     FIXME("(%p 0x%x 0x%x):empty stub!\n", himl, i, dwFilter);
2761
2762     return FALSE;
2763 }
2764
2765
2766 /*************************************************************************
2767  * ImageList_SetFlags [COMCTL32.@]
2768  *
2769  * Sets the image list flags.
2770  *
2771  * PARAMS
2772  *     himl  [I] Handle to image list
2773  *     flags [I] Flags to set
2774  *
2775  * RETURNS
2776  *     Old flags?
2777  *
2778  * BUGS
2779  *    Stub.
2780  */
2781
2782 DWORD WINAPI
2783 ImageList_SetFlags(HIMAGELIST himl, DWORD flags)
2784 {
2785     FIXME("(%p %08x):empty stub\n", himl, flags);
2786     return 0;
2787 }
2788
2789
2790 /*************************************************************************
2791  * ImageList_SetIconSize [COMCTL32.@]
2792  *
2793  * Sets the image size of the bitmap and deletes all images.
2794  *
2795  * PARAMS
2796  *     himl [I] handle to image list
2797  *     cx   [I] image width
2798  *     cy   [I] image height
2799  *
2800  * RETURNS
2801  *     Success: TRUE
2802  *     Failure: FALSE
2803  */
2804
2805 BOOL WINAPI
2806 ImageList_SetIconSize (HIMAGELIST himl, INT cx, INT cy)
2807 {
2808     INT nCount;
2809     HBITMAP hbmNew;
2810
2811     if (!is_valid(himl))
2812         return FALSE;
2813
2814     /* remove all images */
2815     himl->cMaxImage = himl->cInitial + 1;
2816     himl->cCurImage = 0;
2817     himl->cx        = cx;
2818     himl->cy        = cy;
2819
2820     /* initialize overlay mask indices */
2821     for (nCount = 0; nCount < MAX_OVERLAYIMAGE; nCount++)
2822         himl->nOvlIdx[nCount] = -1;
2823
2824     hbmNew = ImageList_CreateImage(himl->hdcImage, himl, himl->cMaxImage);
2825     SelectObject (himl->hdcImage, hbmNew);
2826     DeleteObject (himl->hbmImage);
2827     himl->hbmImage = hbmNew;
2828
2829     if (himl->hbmMask) {
2830         SIZE sz;
2831         imagelist_get_bitmap_size(himl, himl->cMaxImage, &sz);
2832         hbmNew = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2833         SelectObject (himl->hdcMask, hbmNew);
2834         DeleteObject (himl->hbmMask);
2835         himl->hbmMask = hbmNew;
2836     }
2837
2838     return TRUE;
2839 }
2840
2841
2842 /*************************************************************************
2843  * ImageList_SetImageCount [COMCTL32.@]
2844  *
2845  * Resizes an image list to the specified number of images.
2846  *
2847  * PARAMS
2848  *     himl        [I] handle to image list
2849  *     iImageCount [I] number of images in the image list
2850  *
2851  * RETURNS
2852  *     Success: TRUE
2853  *     Failure: FALSE
2854  */
2855
2856 BOOL WINAPI
2857 ImageList_SetImageCount (HIMAGELIST himl, UINT iImageCount)
2858 {
2859     HDC     hdcBitmap;
2860     HBITMAP hbmNewBitmap, hbmOld;
2861     INT     nNewCount, nCopyCount;
2862
2863     TRACE("%p %d\n",himl,iImageCount);
2864
2865     if (!is_valid(himl))
2866         return FALSE;
2867
2868     nNewCount = iImageCount + 1;
2869     nCopyCount = min(himl->cCurImage, iImageCount);
2870
2871     hdcBitmap = CreateCompatibleDC (0);
2872
2873     hbmNewBitmap = ImageList_CreateImage(hdcBitmap, himl, nNewCount);
2874
2875     if (hbmNewBitmap != 0)
2876     {
2877         hbmOld = SelectObject (hdcBitmap, hbmNewBitmap);
2878         imagelist_copy_images( himl, himl->hdcImage, hdcBitmap, 0, nCopyCount, 0 );
2879         SelectObject (hdcBitmap, hbmOld);
2880
2881         /* FIXME: delete 'empty' image space? */
2882
2883         SelectObject (himl->hdcImage, hbmNewBitmap);
2884         DeleteObject (himl->hbmImage);
2885         himl->hbmImage = hbmNewBitmap;
2886     }
2887     else
2888         ERR("Could not create new image bitmap !\n");
2889
2890     if (himl->hbmMask)
2891     {
2892         SIZE sz;
2893         imagelist_get_bitmap_size( himl, nNewCount, &sz );
2894         hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, 1, NULL);
2895         if (hbmNewBitmap != 0)
2896         {
2897             hbmOld = SelectObject (hdcBitmap, hbmNewBitmap);
2898             imagelist_copy_images( himl, himl->hdcMask, hdcBitmap, 0, nCopyCount, 0 );
2899             SelectObject (hdcBitmap, hbmOld);
2900
2901             /* FIXME: delete 'empty' image space? */
2902
2903             SelectObject (himl->hdcMask, hbmNewBitmap);
2904             DeleteObject (himl->hbmMask);
2905             himl->hbmMask = hbmNewBitmap;
2906         }
2907         else
2908             ERR("Could not create new mask bitmap!\n");
2909     }
2910
2911     DeleteDC (hdcBitmap);
2912
2913     if (himl->has_alpha)
2914     {
2915         char *new_alpha = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, himl->has_alpha, nNewCount );
2916         if (new_alpha) himl->has_alpha = new_alpha;
2917         else
2918         {
2919             HeapFree( GetProcessHeap(), 0, himl->has_alpha );
2920             himl->has_alpha = NULL;
2921         }
2922     }
2923
2924     /* Update max image count and current image count */
2925     himl->cMaxImage = nNewCount;
2926     himl->cCurImage = iImageCount;
2927
2928     return TRUE;
2929 }
2930
2931
2932 /*************************************************************************
2933  * ImageList_SetOverlayImage [COMCTL32.@]
2934  *
2935  * Assigns an overlay mask index to an existing image in an image list.
2936  *
2937  * PARAMS
2938  *     himl     [I] handle to image list
2939  *     iImage   [I] image index
2940  *     iOverlay [I] overlay mask index
2941  *
2942  * RETURNS
2943  *     Success: TRUE
2944  *     Failure: FALSE
2945  */
2946
2947 BOOL WINAPI
2948 ImageList_SetOverlayImage (HIMAGELIST himl, INT iImage, INT iOverlay)
2949 {
2950     if (!is_valid(himl))
2951         return FALSE;
2952     if ((iOverlay < 1) || (iOverlay > MAX_OVERLAYIMAGE))
2953         return FALSE;
2954     if ((iImage!=-1) && ((iImage < 0) || (iImage > himl->cCurImage)))
2955         return FALSE;
2956     himl->nOvlIdx[iOverlay - 1] = iImage;
2957     return TRUE;
2958 }
2959
2960
2961
2962 /* helper for ImageList_Write - write bitmap to pstm
2963  * currently everything is written as 24 bit RGB, except masks
2964  */
2965 static BOOL
2966 _write_bitmap(HBITMAP hBitmap, LPSTREAM pstm)
2967 {
2968     LPBITMAPFILEHEADER bmfh;
2969     LPBITMAPINFOHEADER bmih;
2970     LPBYTE data = NULL, lpBits;
2971     BITMAP bm;
2972     INT bitCount, sizeImage, offBits, totalSize;
2973     HDC xdc;
2974     BOOL result = FALSE;
2975
2976     if (!GetObjectW(hBitmap, sizeof(BITMAP), &bm))
2977         return FALSE;
2978
2979     bitCount = bm.bmBitsPixel;
2980     sizeImage = get_dib_stride(bm.bmWidth, bitCount) * bm.bmHeight;
2981
2982     totalSize = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
2983     if(bitCount <= 8)
2984         totalSize += (1 << bitCount) * sizeof(RGBQUAD);
2985     offBits = totalSize;
2986     totalSize += sizeImage;
2987
2988     data = Alloc(totalSize);
2989     bmfh = (LPBITMAPFILEHEADER)data;
2990     bmih = (LPBITMAPINFOHEADER)(data + sizeof(BITMAPFILEHEADER));
2991     lpBits = data + offBits;
2992
2993     /* setup BITMAPFILEHEADER */
2994     bmfh->bfType      = (('M' << 8) | 'B');
2995     bmfh->bfSize      = offBits;
2996     bmfh->bfReserved1 = 0;
2997     bmfh->bfReserved2 = 0;
2998     bmfh->bfOffBits   = offBits;
2999
3000     /* setup BITMAPINFOHEADER */
3001     bmih->biSize          = sizeof(BITMAPINFOHEADER);
3002     bmih->biWidth         = bm.bmWidth;
3003     bmih->biHeight        = bm.bmHeight;
3004     bmih->biPlanes        = 1;
3005     bmih->biBitCount      = bitCount;
3006     bmih->biCompression   = BI_RGB;
3007     bmih->biSizeImage     = sizeImage;
3008     bmih->biXPelsPerMeter = 0;
3009     bmih->biYPelsPerMeter = 0;
3010     bmih->biClrUsed       = 0;
3011     bmih->biClrImportant  = 0;
3012
3013     xdc = GetDC(0);
3014     result = GetDIBits(xdc, hBitmap, 0, bm.bmHeight, lpBits, (BITMAPINFO *)bmih, DIB_RGB_COLORS) == bm.bmHeight;
3015     ReleaseDC(0, xdc);
3016     if (!result)
3017         goto failed;
3018
3019     TRACE("width %u, height %u, planes %u, bpp %u\n",
3020           bmih->biWidth, bmih->biHeight,
3021           bmih->biPlanes, bmih->biBitCount);
3022
3023     if(FAILED(IStream_Write(pstm, data, totalSize, NULL)))
3024         goto failed;
3025
3026     result = TRUE;
3027
3028 failed:
3029     Free(data);
3030
3031     return result;
3032 }
3033
3034
3035 /*************************************************************************
3036  * ImageList_Write [COMCTL32.@]
3037  *
3038  * Writes an image list to a stream.
3039  *
3040  * PARAMS
3041  *     himl [I] handle to image list
3042  *     pstm [O] Pointer to a stream.
3043  *
3044  * RETURNS
3045  *     Success: TRUE
3046  *     Failure: FALSE
3047  *
3048  * BUGS
3049  *     probably.
3050  */
3051
3052 BOOL WINAPI
3053 ImageList_Write (HIMAGELIST himl, LPSTREAM pstm)
3054 {
3055     ILHEAD ilHead;
3056     int i;
3057
3058     TRACE("%p %p\n", himl, pstm);
3059
3060     if (!is_valid(himl))
3061         return FALSE;
3062
3063     ilHead.usMagic   = (('L' << 8) | 'I');
3064     ilHead.usVersion = 0x101;
3065     ilHead.cCurImage = himl->cCurImage;
3066     ilHead.cMaxImage = himl->cMaxImage;
3067     ilHead.cGrow     = himl->cGrow;
3068     ilHead.cx        = himl->cx;
3069     ilHead.cy        = himl->cy;
3070     ilHead.bkcolor   = himl->clrBk;
3071     ilHead.flags     = himl->flags;
3072     for(i = 0; i < 4; i++) {
3073         ilHead.ovls[i] = himl->nOvlIdx[i];
3074     }
3075
3076     TRACE("cx %u, cy %u, flags 0x04%x, cCurImage %u, cMaxImage %u\n",
3077           ilHead.cx, ilHead.cy, ilHead.flags, ilHead.cCurImage, ilHead.cMaxImage);
3078
3079     if(FAILED(IStream_Write(pstm, &ilHead, sizeof(ILHEAD), NULL)))
3080         return FALSE;
3081
3082     /* write the bitmap */
3083     if(!_write_bitmap(himl->hbmImage, pstm))
3084         return FALSE;
3085
3086     /* write the mask if we have one */
3087     if(himl->flags & ILC_MASK) {
3088         if(!_write_bitmap(himl->hbmMask, pstm))
3089             return FALSE;
3090     }
3091
3092     return TRUE;
3093 }
3094
3095
3096 static HBITMAP ImageList_CreateImage(HDC hdc, HIMAGELIST himl, UINT count)
3097 {
3098     HBITMAP hbmNewBitmap;
3099     UINT ilc = (himl->flags & 0xFE);
3100     SIZE sz;
3101
3102     imagelist_get_bitmap_size( himl, count, &sz );
3103
3104     if ((ilc >= ILC_COLOR4 && ilc <= ILC_COLOR32) || ilc == ILC_COLOR)
3105     {
3106         char buffer[sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD)];
3107         BITMAPINFO *bmi = (BITMAPINFO *)buffer;
3108
3109         TRACE("Creating DIBSection %d x %d, %d Bits per Pixel\n",
3110               sz.cx, sz.cy, himl->uBitsPixel);
3111
3112         memset( buffer, 0, sizeof(buffer) );
3113         bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
3114         bmi->bmiHeader.biWidth = sz.cx;
3115         bmi->bmiHeader.biHeight = sz.cy;
3116         bmi->bmiHeader.biPlanes = 1;
3117         bmi->bmiHeader.biBitCount = himl->uBitsPixel;
3118         bmi->bmiHeader.biCompression = BI_RGB;
3119
3120         if (himl->uBitsPixel <= ILC_COLOR8)
3121         {
3122             /* retrieve the default color map */
3123             HBITMAP tmp = CreateBitmap( 1, 1, 1, 1, NULL );
3124             GetDIBits( hdc, tmp, 0, 0, NULL, bmi, DIB_RGB_COLORS );
3125             DeleteObject( tmp );
3126         }
3127         hbmNewBitmap = CreateDIBSection(hdc, bmi, DIB_RGB_COLORS, NULL, 0, 0);
3128     }
3129     else /*if (ilc == ILC_COLORDDB)*/
3130     {
3131         TRACE("Creating Bitmap: %d Bits per Pixel\n", himl->uBitsPixel);
3132
3133         hbmNewBitmap = CreateBitmap (sz.cx, sz.cy, 1, himl->uBitsPixel, NULL);
3134     }
3135     TRACE("returning %p\n", hbmNewBitmap);
3136     return hbmNewBitmap;
3137 }
3138
3139 /*************************************************************************
3140  * ImageList_SetColorTable [COMCTL32.@]
3141  *
3142  * Sets the color table of an image list.
3143  *
3144  * PARAMS
3145  *     himl        [I] Handle to the image list.
3146  *     uStartIndex [I] The first index to set.
3147  *     cEntries    [I] Number of entries to set.
3148  *     prgb        [I] New color information for color table for the image list.
3149  *
3150  * RETURNS
3151  *     Success: Number of entries in the table that were set.
3152  *     Failure: Zero.
3153  *
3154  * SEE
3155  *     ImageList_Create(), SetDIBColorTable()
3156  */
3157
3158 UINT WINAPI
3159 ImageList_SetColorTable (HIMAGELIST himl, UINT uStartIndex, UINT cEntries, CONST RGBQUAD * prgb)
3160 {
3161     return SetDIBColorTable(himl->hdcImage, uStartIndex, cEntries, prgb);
3162 }
3163
3164 /*************************************************************************
3165  * ImageList_CoCreateInstance [COMCTL32.@]
3166  *
3167  * Creates a new imagelist instance and returns an interface pointer to it.
3168  *
3169  * PARAMS
3170  *     rclsid      [I] A reference to the CLSID (CLSID_ImageList).
3171  *     punkOuter   [I] Pointer to IUnknown interface for aggregation, if desired
3172  *     riid        [I] Identifier of the requested interface.
3173  *     ppv         [O] Returns the address of the pointer requested, or NULL.
3174  *
3175  * RETURNS
3176  *     Success: S_OK.
3177  *     Failure: Error value.
3178  */
3179 HRESULT WINAPI
3180 ImageList_CoCreateInstance (REFCLSID rclsid, const IUnknown *punkOuter, REFIID riid, void **ppv)
3181 {
3182     TRACE("(%s,%p,%s,%p)\n", debugstr_guid(rclsid), punkOuter, debugstr_guid(riid), ppv);
3183
3184     if (!IsEqualCLSID(&CLSID_ImageList, rclsid))
3185         return E_NOINTERFACE;
3186
3187     return ImageListImpl_CreateInstance(punkOuter, riid, ppv);
3188 }
3189
3190
3191 /*************************************************************************
3192  * IImageList implementation
3193  */
3194
3195 static HRESULT WINAPI ImageListImpl_QueryInterface(IImageList *iface,
3196     REFIID iid, void **ppv)
3197 {
3198     HIMAGELIST This = (HIMAGELIST) iface;
3199     TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
3200
3201     if (!ppv) return E_INVALIDARG;
3202
3203     if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IImageList, iid))
3204         *ppv = This;
3205     else
3206     {
3207         *ppv = NULL;
3208         return E_NOINTERFACE;
3209     }
3210
3211     IUnknown_AddRef((IUnknown*)*ppv);
3212     return S_OK;
3213 }
3214
3215 static ULONG WINAPI ImageListImpl_AddRef(IImageList *iface)
3216 {
3217     HIMAGELIST This = (HIMAGELIST) iface;
3218     ULONG ref = InterlockedIncrement(&This->ref);
3219
3220     TRACE("(%p) refcount=%u\n", iface, ref);
3221     return ref;
3222 }
3223
3224 static ULONG WINAPI ImageListImpl_Release(IImageList *iface)
3225 {
3226     HIMAGELIST This = (HIMAGELIST) iface;
3227     ULONG ref = InterlockedDecrement(&This->ref);
3228
3229     TRACE("(%p) refcount=%u\n", iface, ref);
3230
3231     if (ref == 0)
3232     {
3233         /* delete image bitmaps */
3234         if (This->hbmImage) DeleteObject (This->hbmImage);
3235         if (This->hbmMask)  DeleteObject (This->hbmMask);
3236
3237         /* delete image & mask DCs */
3238         if (This->hdcImage) DeleteDC (This->hdcImage);
3239         if (This->hdcMask)  DeleteDC (This->hdcMask);
3240
3241         /* delete blending brushes */
3242         if (This->hbrBlend25) DeleteObject (This->hbrBlend25);
3243         if (This->hbrBlend50) DeleteObject (This->hbrBlend50);
3244
3245         This->lpVtbl = NULL;
3246         HeapFree(GetProcessHeap(), 0, This->has_alpha);
3247         HeapFree(GetProcessHeap(), 0, This);
3248     }
3249
3250     return ref;
3251 }
3252
3253 static HRESULT WINAPI ImageListImpl_Add(IImageList *iface, HBITMAP hbmImage,
3254     HBITMAP hbmMask, int *pi)
3255 {
3256     HIMAGELIST This = (HIMAGELIST) iface;
3257     int ret;
3258
3259     if (!pi)
3260         return E_FAIL;
3261
3262     ret = ImageList_Add(This, hbmImage, hbmMask);
3263
3264     if (ret == -1)
3265         return E_FAIL;
3266
3267     *pi = ret;
3268     return S_OK;
3269 }
3270
3271 static HRESULT WINAPI ImageListImpl_ReplaceIcon(IImageList *iface, int i,
3272     HICON hicon, int *pi)
3273 {
3274     HIMAGELIST This = (HIMAGELIST) iface;
3275     int ret;
3276
3277     if (!pi)
3278         return E_FAIL;
3279
3280     ret = ImageList_ReplaceIcon(This, i, hicon);
3281
3282     if (ret == -1)
3283         return E_FAIL;
3284
3285     *pi = ret;
3286     return S_OK;
3287 }
3288
3289 static HRESULT WINAPI ImageListImpl_SetOverlayImage(IImageList *iface,
3290     int iImage, int iOverlay)
3291 {
3292     return ImageList_SetOverlayImage((HIMAGELIST) iface, iImage, iOverlay)
3293         ? S_OK : E_FAIL;
3294 }
3295
3296 static HRESULT WINAPI ImageListImpl_Replace(IImageList *iface, int i,
3297     HBITMAP hbmImage, HBITMAP hbmMask)
3298 {
3299     return ImageList_Replace((HIMAGELIST) iface, i, hbmImage, hbmMask) ? S_OK :
3300         E_FAIL;
3301 }
3302
3303 static HRESULT WINAPI ImageListImpl_AddMasked(IImageList *iface, HBITMAP hbmImage,
3304     COLORREF crMask, int *pi)
3305 {
3306     HIMAGELIST This = (HIMAGELIST) iface;
3307     int ret;
3308
3309     if (!pi)
3310         return E_FAIL;
3311
3312     ret = ImageList_AddMasked(This, hbmImage, crMask);
3313
3314     if (ret == -1)
3315         return E_FAIL;
3316
3317     *pi = ret;
3318     return S_OK;
3319 }
3320
3321 static HRESULT WINAPI ImageListImpl_Draw(IImageList *iface,
3322     IMAGELISTDRAWPARAMS *pimldp)
3323 {
3324     HIMAGELIST This = (HIMAGELIST) iface;
3325     HIMAGELIST old_himl;
3326     int ret;
3327
3328     /* As far as I can tell, Windows simply ignores the contents of pimldp->himl
3329        so we shall simulate the same */
3330     old_himl = pimldp->himl;
3331     pimldp->himl = This;
3332
3333     ret = ImageList_DrawIndirect(pimldp);
3334
3335     pimldp->himl = old_himl;
3336     return ret ? S_OK : E_INVALIDARG;
3337 }
3338
3339 static HRESULT WINAPI ImageListImpl_Remove(IImageList *iface, int i)
3340 {
3341     return (ImageList_Remove((HIMAGELIST) iface, i) == 0) ? E_INVALIDARG : S_OK;
3342 }
3343
3344 static HRESULT WINAPI ImageListImpl_GetIcon(IImageList *iface, int i, UINT flags,
3345     HICON *picon)
3346 {
3347     HICON hIcon;
3348
3349     if (!picon)
3350         return E_FAIL;
3351
3352     hIcon = ImageList_GetIcon((HIMAGELIST) iface, i, flags);
3353
3354     if (hIcon == NULL)
3355         return E_FAIL;
3356
3357     *picon = hIcon;
3358     return S_OK;
3359 }
3360
3361 static HRESULT WINAPI ImageListImpl_GetImageInfo(IImageList *iface, int i,
3362     IMAGEINFO *pImageInfo)
3363 {
3364     return ImageList_GetImageInfo((HIMAGELIST) iface, i, pImageInfo) ? S_OK : E_FAIL;
3365 }
3366
3367 static HRESULT WINAPI ImageListImpl_Copy(IImageList *iface, int iDst,
3368     IUnknown *punkSrc, int iSrc, UINT uFlags)
3369 {
3370     HIMAGELIST This = (HIMAGELIST) iface;
3371     IImageList *src = NULL;
3372     HRESULT ret;
3373
3374     if (!punkSrc)
3375         return E_FAIL;
3376
3377     /* TODO: Add test for IID_ImageList2 too */
3378     if (FAILED(IUnknown_QueryInterface(punkSrc, &IID_IImageList,
3379             (void **) &src)))
3380         return E_FAIL;
3381
3382     if (ImageList_Copy(This, iDst, (HIMAGELIST) src, iSrc, uFlags))
3383         ret = S_OK;
3384     else
3385         ret = E_FAIL;
3386
3387     IImageList_Release(src);
3388     return ret;
3389 }
3390
3391 static HRESULT WINAPI ImageListImpl_Merge(IImageList *iface, int i1,
3392     IUnknown *punk2, int i2, int dx, int dy, REFIID riid, void **ppv)
3393 {
3394     HIMAGELIST This = (HIMAGELIST) iface;
3395     IImageList *iml2 = NULL;
3396     HIMAGELIST hNew;
3397     HRESULT ret = E_FAIL;
3398
3399     TRACE("(%p)->(%d %p %d %d %d %s %p)\n", iface, i1, punk2, i2, dx, dy, debugstr_guid(riid), ppv);
3400
3401     /* TODO: Add test for IID_ImageList2 too */
3402     if (FAILED(IUnknown_QueryInterface(punk2, &IID_IImageList,
3403             (void **) &iml2)))
3404         return E_FAIL;
3405
3406     hNew = ImageList_Merge(This, i1, (HIMAGELIST) iml2, i2, dx, dy);
3407
3408     /* Get the interface for the new image list */
3409     if (hNew)
3410     {
3411         IImageList *imerge = (IImageList*)hNew;
3412
3413         ret = HIMAGELIST_QueryInterface(hNew, riid, ppv);
3414         IImageList_Release(imerge);
3415     }
3416
3417     IImageList_Release(iml2);
3418     return ret;
3419 }
3420
3421 static HRESULT WINAPI ImageListImpl_Clone(IImageList *iface, REFIID riid, void **ppv)
3422 {
3423     HIMAGELIST This = (HIMAGELIST) iface;
3424     HIMAGELIST clone;
3425     HRESULT ret = E_FAIL;
3426
3427     TRACE("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
3428
3429     clone = ImageList_Duplicate(This);
3430
3431     /* Get the interface for the new image list */
3432     if (clone)
3433     {
3434         IImageList *iclone = (IImageList*)clone;
3435
3436         ret = HIMAGELIST_QueryInterface(clone, riid, ppv);
3437         IImageList_Release(iclone);
3438     }
3439
3440     return ret;
3441 }
3442
3443 static HRESULT WINAPI ImageListImpl_GetImageRect(IImageList *iface, int i,
3444     RECT *prc)
3445 {
3446     HIMAGELIST This = (HIMAGELIST) iface;
3447     IMAGEINFO info;
3448
3449     if (!prc)
3450         return E_FAIL;
3451
3452     if (!ImageList_GetImageInfo(This, i, &info))
3453         return E_FAIL;
3454
3455     return CopyRect(prc, &info.rcImage) ? S_OK : E_FAIL;
3456 }
3457
3458 static HRESULT WINAPI ImageListImpl_GetIconSize(IImageList *iface, int *cx,
3459     int *cy)
3460 {
3461     HIMAGELIST This = (HIMAGELIST) iface;
3462
3463     return ImageList_GetIconSize(This, cx, cy) ? S_OK : E_INVALIDARG;
3464 }
3465
3466 static HRESULT WINAPI ImageListImpl_SetIconSize(IImageList *iface, int cx,
3467     int cy)
3468 {
3469     return ImageList_SetIconSize((HIMAGELIST) iface, cx, cy) ? S_OK : E_FAIL;
3470 }
3471
3472 static HRESULT WINAPI ImageListImpl_GetImageCount(IImageList *iface, int *pi)
3473 {
3474     *pi = ImageList_GetImageCount((HIMAGELIST) iface);
3475     return S_OK;
3476 }
3477
3478 static HRESULT WINAPI ImageListImpl_SetImageCount(IImageList *iface,
3479     UINT uNewCount)
3480 {
3481     return ImageList_SetImageCount((HIMAGELIST) iface, uNewCount) ? S_OK : E_FAIL;
3482 }
3483
3484 static HRESULT WINAPI ImageListImpl_SetBkColor(IImageList *iface, COLORREF clrBk,
3485     COLORREF *pclr)
3486 {
3487     *pclr = ImageList_SetBkColor((HIMAGELIST) iface, clrBk);
3488     return S_OK;
3489 }
3490
3491 static HRESULT WINAPI ImageListImpl_GetBkColor(IImageList *iface, COLORREF *pclr)
3492 {
3493     *pclr = ImageList_GetBkColor((HIMAGELIST) iface);
3494     return S_OK;
3495 }
3496
3497 static HRESULT WINAPI ImageListImpl_BeginDrag(IImageList *iface, int iTrack,
3498     int dxHotspot, int dyHotspot)
3499 {
3500     return ImageList_BeginDrag((HIMAGELIST) iface, iTrack, dxHotspot, dyHotspot) ? S_OK : E_FAIL;
3501 }
3502
3503 static HRESULT WINAPI ImageListImpl_EndDrag(IImageList *iface)
3504 {
3505     ImageList_EndDrag();
3506     return S_OK;
3507 }
3508
3509 static HRESULT WINAPI ImageListImpl_DragEnter(IImageList *iface, HWND hwndLock,
3510     int x, int y)
3511 {
3512     return ImageList_DragEnter(hwndLock, x, y) ? S_OK : E_FAIL;
3513 }
3514
3515 static HRESULT WINAPI ImageListImpl_DragLeave(IImageList *iface, HWND hwndLock)
3516 {
3517     return ImageList_DragLeave(hwndLock) ? S_OK : E_FAIL;
3518 }
3519
3520 static HRESULT WINAPI ImageListImpl_DragMove(IImageList *iface, int x, int y)
3521 {
3522     return ImageList_DragMove(x, y) ? S_OK : E_FAIL;
3523 }
3524
3525 static HRESULT WINAPI ImageListImpl_SetDragCursorImage(IImageList *iface,
3526     IUnknown *punk, int iDrag, int dxHotspot, int dyHotspot)
3527 {
3528     IImageList *iml2 = NULL;
3529     HRESULT ret;
3530
3531     if (!punk)
3532         return E_FAIL;
3533
3534     /* TODO: Add test for IID_ImageList2 too */
3535     if (FAILED(IUnknown_QueryInterface(punk, &IID_IImageList,
3536             (void **) &iml2)))
3537         return E_FAIL;
3538
3539     ret = ImageList_SetDragCursorImage((HIMAGELIST) iml2, iDrag, dxHotspot,
3540         dyHotspot);
3541
3542     IImageList_Release(iml2);
3543
3544     return ret ? S_OK : E_FAIL;
3545 }
3546
3547 static HRESULT WINAPI ImageListImpl_DragShowNolock(IImageList *iface, BOOL fShow)
3548 {
3549     return ImageList_DragShowNolock(fShow) ? S_OK : E_FAIL;
3550 }
3551
3552 static HRESULT WINAPI ImageListImpl_GetDragImage(IImageList *iface, POINT *ppt,
3553     POINT *pptHotspot, REFIID riid, PVOID *ppv)
3554 {
3555     HRESULT ret = E_FAIL;
3556     HIMAGELIST hNew;
3557
3558     if (!ppv)
3559         return E_FAIL;
3560
3561     hNew = ImageList_GetDragImage(ppt, pptHotspot);
3562
3563     /* Get the interface for the new image list */
3564     if (hNew)
3565     {
3566         IImageList *idrag = (IImageList*)hNew;
3567
3568         ret = HIMAGELIST_QueryInterface(hNew, riid, ppv);
3569         IImageList_Release(idrag);
3570     }
3571
3572     return ret;
3573 }
3574
3575 static HRESULT WINAPI ImageListImpl_GetItemFlags(IImageList *iface, int i,
3576     DWORD *dwFlags)
3577 {
3578     FIXME("STUB: %p %d %p\n", iface, i, dwFlags);
3579     return E_NOTIMPL;
3580 }
3581
3582 static HRESULT WINAPI ImageListImpl_GetOverlayImage(IImageList *iface, int iOverlay,
3583     int *piIndex)
3584 {
3585     HIMAGELIST This = (HIMAGELIST) iface;
3586     int i;
3587
3588     if ((iOverlay < 0) || (iOverlay > This->cCurImage))
3589         return E_FAIL;
3590
3591     for (i = 0; i < MAX_OVERLAYIMAGE; i++)
3592     {
3593         if (This->nOvlIdx[i] == iOverlay)
3594         {
3595             *piIndex = i + 1;
3596             return S_OK;
3597         }
3598     }
3599
3600     return E_FAIL;
3601 }
3602
3603
3604 static const IImageListVtbl ImageListImpl_Vtbl = {
3605     ImageListImpl_QueryInterface,
3606     ImageListImpl_AddRef,
3607     ImageListImpl_Release,
3608     ImageListImpl_Add,
3609     ImageListImpl_ReplaceIcon,
3610     ImageListImpl_SetOverlayImage,
3611     ImageListImpl_Replace,
3612     ImageListImpl_AddMasked,
3613     ImageListImpl_Draw,
3614     ImageListImpl_Remove,
3615     ImageListImpl_GetIcon,
3616     ImageListImpl_GetImageInfo,
3617     ImageListImpl_Copy,
3618     ImageListImpl_Merge,
3619     ImageListImpl_Clone,
3620     ImageListImpl_GetImageRect,
3621     ImageListImpl_GetIconSize,
3622     ImageListImpl_SetIconSize,
3623     ImageListImpl_GetImageCount,
3624     ImageListImpl_SetImageCount,
3625     ImageListImpl_SetBkColor,
3626     ImageListImpl_GetBkColor,
3627     ImageListImpl_BeginDrag,
3628     ImageListImpl_EndDrag,
3629     ImageListImpl_DragEnter,
3630     ImageListImpl_DragLeave,
3631     ImageListImpl_DragMove,
3632     ImageListImpl_SetDragCursorImage,
3633     ImageListImpl_DragShowNolock,
3634     ImageListImpl_GetDragImage,
3635     ImageListImpl_GetItemFlags,
3636     ImageListImpl_GetOverlayImage
3637 };
3638
3639 static BOOL is_valid(HIMAGELIST himl)
3640 {
3641     BOOL valid;
3642     __TRY
3643     {
3644         valid = himl && himl->lpVtbl == &ImageListImpl_Vtbl;
3645     }
3646     __EXCEPT_PAGE_FAULT
3647     {
3648         valid = FALSE;
3649     }
3650     __ENDTRY
3651     return valid;
3652 }
3653
3654 /*************************************************************************
3655  * HIMAGELIST_QueryInterface [COMCTL32.@]
3656  *
3657  * Returns a pointer to an IImageList or IImageList2 object for the given
3658  * HIMAGELIST.
3659  *
3660  * PARAMS
3661  *     himl        [I] Image list handle.
3662  *     riid        [I] Identifier of the requested interface.
3663  *     ppv         [O] Returns the address of the pointer requested, or NULL.
3664  *
3665  * RETURNS
3666  *     Success: S_OK.
3667  *     Failure: Error value.
3668  */
3669 HRESULT WINAPI
3670 HIMAGELIST_QueryInterface (HIMAGELIST himl, REFIID riid, void **ppv)
3671 {
3672     TRACE("(%p,%s,%p)\n", himl, debugstr_guid(riid), ppv);
3673     return IImageList_QueryInterface((IImageList *) himl, riid, ppv);
3674 }
3675
3676 static HRESULT ImageListImpl_CreateInstance(const IUnknown *pUnkOuter, REFIID iid, void** ppv)
3677 {
3678     HIMAGELIST This;
3679     HRESULT ret;
3680
3681     TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
3682
3683     *ppv = NULL;
3684
3685     if (pUnkOuter) return CLASS_E_NOAGGREGATION;
3686
3687     This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct _IMAGELIST));
3688     if (!This) return E_OUTOFMEMORY;
3689
3690     This->lpVtbl = &ImageListImpl_Vtbl;
3691     This->ref = 1;
3692
3693     ret = IUnknown_QueryInterface((IUnknown*)This, iid, ppv);
3694     IUnknown_Release((IUnknown*)This);
3695
3696     return ret;
3697 }