#pragma hdrstop
#endif
-#if defined(__WIN95__)
-
#ifndef WX_PRECOMP
#include "wx/window.h"
#include "wx/icon.h"
#include "wx/msw/imaglist.h"
#include "wx/msw/private.h"
-#if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
- #include <commctrl.h>
-#endif
+// include <commctrl.h> "properly"
+#include "wx/msw/wrapcctl.h"
// ----------------------------------------------------------------------------
// wxWin macros
// Replaces a bitmap and mask from an icon.
bool wxImageList::Replace(int i, const wxIcon& icon)
{
- bool ok = ImageList_ReplaceIcon(GetHImageList(), i, GetHiconOf(icon)) != 0;
+ bool ok = ImageList_ReplaceIcon(GetHImageList(), i, GetHiconOf(icon)) != -1;
if ( !ok )
{
wxLogLastError(wxT("ImageList_ReplaceIcon()"));
// Get the bitmap
wxBitmap wxImageList::GetBitmap(int index) const
{
+#if wxUSE_WXDIB
int bmp_width = 0, bmp_height = 0;
GetSize(index, bmp_width, bmp_height);
image = bitmap.ConvertToImage();
image.SetMaskColour(r, g, b);
bitmap = wxBitmap(image);
-
+#else
+ wxBitmap bitmap;
+#endif
return bitmap;
}
{
wxIcon icon;
icon.SetHICON((WXHICON)hIcon);
-
+
int iconW, iconH;
GetSize(index, iconW, iconH);
icon.SetSize(iconW, iconH);
-
+
return icon;
}
- else
+ else
return wxNullIcon;
}
return hbmpMaskInv;
}
-
-#endif // Win95
-