1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/imaglist.cpp
3 // Purpose: wxImageList implementation for Win32
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "imaglist.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if defined(__WIN95__)
34 #include "wx/window.h"
37 #include "wx/string.h"
45 #include "wx/msw/imaglist.h"
46 #include "wx/msw/private.h"
48 #if !defined(__GNUWIN32_OLD__) && !defined(__TWIN32__)
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 IMPLEMENT_DYNAMIC_CLASS(wxImageList
, wxObject
)
58 #define GetHImageList() ((HIMAGELIST)m_hImageList)
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 // returns the mask if it's valid, otherwise the bitmap mask and, if it's not
65 // valid neither, a "solid" mask (no transparent zones at all)
66 static wxBitmap
GetMaskForImage(const wxBitmap
& bitmap
, const wxBitmap
& mask
);
68 // ============================================================================
70 // ============================================================================
72 // ----------------------------------------------------------------------------
73 // wxImageList creation/destruction
74 // ----------------------------------------------------------------------------
76 wxImageList::wxImageList()
81 // Creates an image list
82 bool wxImageList::Create(int width
, int height
, bool mask
, int initial
)
84 UINT flags
= 0; // TODO shouldallow to specify ILC_COLORxxx here
88 // Grow by 1, I guess this is reasonable behaviour most of the time
89 m_hImageList
= (WXHIMAGELIST
) ImageList_Create(width
, height
, flags
,
93 wxLogLastError("ImageList_Create()");
96 return m_hImageList
!= 0;
99 wxImageList::~wxImageList()
103 ImageList_Destroy(GetHImageList());
108 // ----------------------------------------------------------------------------
109 // wxImageList attributes
110 // ----------------------------------------------------------------------------
112 // Returns the number of images in the image list.
113 int wxImageList::GetImageCount() const
115 wxASSERT_MSG( m_hImageList
, _T("invalid image list") );
117 return ImageList_GetImageCount(GetHImageList());
120 // ----------------------------------------------------------------------------
121 // wxImageList operations
122 // ----------------------------------------------------------------------------
124 // Adds a bitmap, and optionally a mask bitmap.
125 // Note that wxImageList creates new bitmaps, so you may delete
126 // 'bitmap' and 'mask'.
127 int wxImageList::Add(const wxBitmap
& bitmap
, const wxBitmap
& mask
)
129 wxBitmap bmpMask
= GetMaskForImage(bitmap
, mask
);
130 HBITMAP hbmpMask
= wxInvertMask(GetHbitmapOf(bmpMask
));
132 int index
= ImageList_Add(GetHImageList(), GetHbitmapOf(bitmap
), hbmpMask
);
135 wxLogError(_("Couldn't add an image to the image list."));
138 ::DeleteObject(hbmpMask
);
143 // Adds a bitmap, using the specified colour to create the mask bitmap
144 // Note that wxImageList creates new bitmaps, so you may delete
146 int wxImageList::Add(const wxBitmap
& bitmap
, const wxColour
& maskColour
)
149 wxFAIL_MSG(_T("ImageList_AddMasked not implemented in TWIN32"));
152 int index
= ImageList_AddMasked(GetHImageList(),
153 GetHbitmapOf(bitmap
),
154 wxColourToRGB(maskColour
));
157 wxLogError(_("Couldn't add an image to the image list."));
164 // Adds a bitmap and mask from an icon.
165 int wxImageList::Add(const wxIcon
& icon
)
167 int index
= ImageList_AddIcon(GetHImageList(), GetHiconOf(icon
));
170 wxLogError(_("Couldn't add an image to the image list."));
176 // Replaces a bitmap, optionally passing a mask bitmap.
177 // Note that wxImageList creates new bitmaps, so you may delete
178 // 'bitmap' and 'mask'.
179 bool wxImageList::Replace(int index
,
180 const wxBitmap
& bitmap
, const wxBitmap
& mask
)
183 wxFAIL_MSG(_T("ImageList_Replace not implemented in TWIN32"));
186 wxBitmap bmpMask
= GetMaskForImage(bitmap
, mask
);
187 HBITMAP hbmpMask
= wxInvertMask(GetHbitmapOf(bmpMask
));
189 bool ok
= ImageList_Replace(GetHImageList(), index
,
190 GetHbitmapOf(bitmap
), hbmpMask
) != 0;
193 wxLogLastError("ImageList_Add()");
196 ::DeleteObject(hbmpMask
);
202 // Replaces a bitmap and mask from an icon.
203 bool wxImageList::Replace(int i
, const wxIcon
& icon
)
205 bool ok
= ImageList_ReplaceIcon(GetHImageList(), i
, GetHiconOf(icon
)) != 0;
208 wxLogLastError("ImageList_ReplaceIcon()");
214 // Removes the image at the given index.
215 bool wxImageList::Remove(int index
)
218 wxFAIL_MSG(_T("ImageList_Replace not implemented in TWIN32"));
221 bool ok
= ImageList_Remove(GetHImageList(), index
) != 0;
224 wxLogLastError("ImageList_Remove()");
232 bool wxImageList::RemoveAll()
234 bool ok
= ImageList_RemoveAll(GetHImageList()) != 0;
237 wxLogLastError("ImageList_RemoveAll()");
243 // Draws the given image on a dc at the specified position.
244 // If 'solidBackground' is TRUE, Draw sets the image list background
245 // colour to the background colour of the wxDC, to speed up
246 // drawing by eliminating masked drawing where possible.
247 bool wxImageList::Draw(int index
,
251 bool solidBackground
)
254 wxFAIL_MSG(_T("ImageList_Replace not implemented in TWIN32"));
257 HDC hDC
= GetHdcOf(dc
);
258 wxCHECK_MSG( hDC
, FALSE
, _T("invalid wxDC in wxImageList::Draw") );
260 COLORREF clr
= CLR_NONE
; // transparent by default
261 if ( solidBackground
)
263 wxBrush
*brush
= & dc
.GetBackground();
264 if ( brush
&& brush
->Ok() )
266 clr
= wxColourToRGB(brush
->GetColour());
270 ImageList_SetBkColor(GetHImageList(), clr
);
273 if ( flags
& wxIMAGELIST_DRAW_NORMAL
)
275 if ( flags
& wxIMAGELIST_DRAW_TRANSPARENT
)
276 style
|= ILD_TRANSPARENT
;
277 if ( flags
& wxIMAGELIST_DRAW_SELECTED
)
278 style
|= ILD_SELECTED
;
279 if ( flags
& wxIMAGELIST_DRAW_FOCUSED
)
282 bool ok
= ImageList_Draw(GetHImageList(), index
, hDC
, x
, y
, style
) != 0;
285 wxLogLastError("ImageList_Draw()");
292 // ----------------------------------------------------------------------------
294 // ----------------------------------------------------------------------------
296 static wxBitmap
GetMaskForImage(const wxBitmap
& bitmap
, const wxBitmap
& mask
)
306 wxMask
*pMask
= bitmap
.GetMask();
309 bmpMask
.SetHBITMAP(pMask
->GetMaskBitmap());
315 // create a non transparent mask - apparently, this is needed under
316 // Win9x (it doesn't behave correctly if it's passed 0 mask)
317 bmpMask
.Create(bitmap
.GetWidth(), bitmap
.GetHeight(), 1);
320 dcMem
.SelectObject(bmpMask
);
322 dcMem
.SelectObject(wxNullBitmap
);