Add RAII AutoIconInfo class wrapping ICONINFO Windows struct.

This ensures that we never forget to delete the handles returned by
GetIconInfo() and also centralizes the error message given if it fails in a
single place.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-11-11 01:02:40 +00:00
parent e8a5baf061
commit 261e7eac73
6 changed files with 53 additions and 46 deletions

View File

@@ -613,6 +613,33 @@ public:
operator HRGN() const { return (HRGN)GetObject(); }
};
// Class automatically freeing ICONINFO struct fields after retrieving it using
// GetIconInfo().
class AutoIconInfo : public ICONINFO
{
public:
AutoIconInfo() { wxZeroMemory(*this); }
bool GetFrom(HICON hIcon)
{
if ( !::GetIconInfo(hIcon, this) )
{
wxLogLastError(wxT("GetIconInfo"));
return false;
}
return true;
}
~AutoIconInfo()
{
if ( hbmColor )
::DeleteObject(hbmColor);
if ( hbmMask )
::DeleteObject(hbmMask);
}
};
// class sets the specified clipping region during its life time
class HDCClipper
{

View File

@@ -2375,15 +2375,17 @@ static wxImage LoadImageFromResource(const wxString &name, wxBitmapType type)
}
else
{
ICONINFO info;
if ( !::GetIconInfo(hIcon, &info) )
{
wxLogLastError(wxT("GetIconInfo"));
AutoIconInfo info;
if ( !info.GetFrom(hIcon) )
return wxImage();
}
hBitmap.Init(info.hbmColor);
hMask.Init(info.hbmMask);
// Reset the fields to prevent them from being destroyed, we took
// ownership of them.
info.hbmColor =
info.hbmMask = 0;
}
}
else if ( type == wxBITMAP_TYPE_CUR_RESOURCE )

View File

@@ -488,13 +488,9 @@ bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon,
// it may be either HICON or HCURSOR
HICON hicon = (HICON)icon.GetHandle();
ICONINFO iconInfo;
if ( !::GetIconInfo(hicon, &iconInfo) )
{
wxLogLastError(wxT("GetIconInfo"));
AutoIconInfo iconInfo;
if ( !iconInfo.GetFrom(hicon) )
return false;
}
wxBitmapRefData *refData = new wxBitmapRefData;
m_refData = refData;
@@ -508,6 +504,10 @@ bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon,
refData->m_height = h;
refData->m_depth = wxDisplayDepth();
refData->m_hBitmap = (WXHBITMAP)iconInfo.hbmColor;
// Reset this field to prevent it from being destroyed by AutoIconInfo,
// we took ownership of it.
iconInfo.hbmColor = 0;
}
else // we only have monochrome icon/cursor
{
@@ -568,7 +568,7 @@ bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon,
// alpha, so check for this.
{
HBITMAP hdib = 0;
if ( CheckAlpha(iconInfo.hbmColor, &hdib) )
if ( CheckAlpha(refData->m_hBitmap, &hdib) )
refData->Set32bppHDIB(hdib);
}
break;
@@ -586,9 +586,6 @@ bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon,
refData->SetMask(wxInvertMask(iconInfo.hbmMask, w, h));
}
// delete the old one now as we don't need it any more
::DeleteObject(iconInfo.hbmMask);
return true;
#else // __WXMICROWIN__ || __WXWINCE__
wxUnusedVar(icon);

View File

@@ -288,28 +288,20 @@ void ReverseBitmap(HBITMAP bitmap, int width, int height)
HCURSOR CreateReverseCursor(HCURSOR cursor)
{
ICONINFO info;
if ( !::GetIconInfo(cursor, &info) )
AutoIconInfo info;
if ( !info.GetFrom(cursor) )
return NULL;
HCURSOR cursorRev = NULL;
BITMAP bmp;
if ( ::GetObject(info.hbmMask, sizeof(bmp), &bmp) )
{
ReverseBitmap(info.hbmMask, bmp.bmWidth, bmp.bmHeight);
if ( info.hbmColor )
ReverseBitmap(info.hbmColor, bmp.bmWidth, bmp.bmHeight);
info.xHotspot = (DWORD)bmp.bmWidth - 1 - info.xHotspot;
if ( !::GetObject(info.hbmMask, sizeof(bmp), &bmp) )
return NULL;
cursorRev = ::CreateIconIndirect(&info);
}
::DeleteObject(info.hbmMask);
ReverseBitmap(info.hbmMask, bmp.bmWidth, bmp.bmHeight);
if ( info.hbmColor )
::DeleteObject(info.hbmColor);
ReverseBitmap(info.hbmColor, bmp.bmWidth, bmp.bmHeight);
info.xHotspot = (DWORD)bmp.bmWidth - 1 - info.xHotspot;
return cursorRev;
return ::CreateIconIndirect(&info);
}
} // anonymous namespace

View File

@@ -663,12 +663,8 @@ wxSize wxGetHiconSize(HICON WXUNUSED_IN_WINCE(hicon))
#ifndef __WXWINCE__
if ( hicon )
{
ICONINFO info;
if ( !::GetIconInfo(hicon, &info) )
{
wxLogLastError(wxT("GetIconInfo"));
}
else
AutoIconInfo info;
if ( info.GetFrom(hicon) )
{
HBITMAP hbmp = info.hbmMask;
if ( hbmp )
@@ -678,11 +674,7 @@ wxSize wxGetHiconSize(HICON WXUNUSED_IN_WINCE(hicon))
{
size = wxSize(bm.bmWidth, bm.bmHeight);
}
::DeleteObject(info.hbmMask);
}
if ( info.hbmColor )
::DeleteObject(info.hbmColor);
}
}

View File

@@ -1736,9 +1736,8 @@ void wxGDIPlusContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxD
// the built-in conversion fails when there is alpha in the HICON (eg XP style icons), we can only
// find out by looking at the bitmap data whether there really was alpha in it
HICON hIcon = (HICON)icon.GetHICON();
ICONINFO iconInfo ;
// IconInfo creates the bitmaps for color and mask, we must dispose of them after use
if (!GetIconInfo(hIcon,&iconInfo))
AutoIconInfo iconInfo ;
if (!iconInfo.GetFrom(hIcon))
return;
Bitmap interim(iconInfo.hbmColor,NULL);
@@ -1788,8 +1787,6 @@ void wxGDIPlusContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxD
m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ;
delete image ;
DeleteObject(iconInfo.hbmColor);
DeleteObject(iconInfo.hbmMask);
}
void wxGDIPlusContext::DoDrawText(const wxString& str,