projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix missing and broken interface items for Phoenix
[wxWidgets.git]
/
src
/
os2
/
bitmap.cpp
diff --git
a/src/os2/bitmap.cpp
b/src/os2/bitmap.cpp
index 74db7030101b3c04d2f13403b885f43f7cfa6002..16373e6f32a07fb34dad65c732ce6854357b23d3 100644
(file)
--- a/
src/os2/bitmap.cpp
+++ b/
src/os2/bitmap.cpp
@@
-84,11
+84,7
@@
void wxBitmapRefData::Free()
wxLogLastError(wxT("GpiDeleteBitmap(hbitmap)"));
}
}
wxLogLastError(wxT("GpiDeleteBitmap(hbitmap)"));
}
}
- if (m_pBitmapMask)
- {
- delete m_pBitmapMask;
- m_pBitmapMask = NULL;
- }
+ wxDELETE(m_pBitmapMask);
} // end of wxBitmapRefData::Free
// ----------------------------------------------------------------------------
} // end of wxBitmapRefData::Free
// ----------------------------------------------------------------------------
@@
-146,7
+142,7
@@
bool wxBitmap::CopyFromCursor(
{
UnRef();
{
UnRef();
- if (!rCursor.Ok())
+ if (!rCursor.
Is
Ok())
return(false);
return(CopyFromIconOrCursor(rCursor));
} // end of wxBitmap::CopyFromCursor
return(false);
return(CopyFromIconOrCursor(rCursor));
} // end of wxBitmap::CopyFromCursor
@@
-157,7
+153,7
@@
bool wxBitmap::CopyFromIcon(
{
UnRef();
{
UnRef();
- if (!rIcon.Ok())
+ if (!rIcon.
Is
Ok())
return(false);
return CopyFromIconOrCursor(rIcon);
return(false);
return CopyFromIconOrCursor(rIcon);
@@
-276,19
+272,6
@@
wxBitmap::wxBitmap(
SetHBITMAP((WXHBITMAP)hBmp);
} // end of wxBitmap::wxBitmap
SetHBITMAP((WXHBITMAP)hBmp);
} // end of wxBitmap::wxBitmap
-wxBitmap::wxBitmap(
- int nW
-, int nH
-, int nD
-)
-{
- Init();
- (void)Create( nW
- ,nH
- ,nD
- );
-} // end of wxBitmap::wxBitmap
-
wxBitmap::wxBitmap(
const void* pData
, wxBitmapType lType
wxBitmap::wxBitmap(
const void* pData
, wxBitmapType lType
@@
-396,7
+379,7
@@
bool wxBitmap::Create(
}
SetHBITMAP((WXHBITMAP)hBmp);
}
SetHBITMAP((WXHBITMAP)hBmp);
- return Ok();
+ return
Is
Ok();
} // end of wxBitmap::Create
bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type)
} // end of wxBitmap::Create
bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type)
@@
-415,7
+398,7
@@
bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type)
else // no bitmap handler found
{
wxImage image;
else // no bitmap handler found
{
wxImage image;
- if ( image.LoadFile( filename, type ) && image.Ok() )
+ if ( image.LoadFile( filename, type ) && image.
Is
Ok() )
{
*this = wxBitmap(image);
{
*this = wxBitmap(image);
@@
-510,7
+493,7
@@
bool wxBitmap::SaveFile(
// FIXME what about palette? shouldn't we use it?
wxImage vImage = ConvertToImage();
// FIXME what about palette? shouldn't we use it?
wxImage vImage = ConvertToImage();
- if (!vImage.Ok())
+ if (!vImage.
Is
Ok())
return false;
return(vImage.SaveFile( rFilename
return false;
return(vImage.SaveFile( rFilename
@@
-529,7
+512,7
@@
bool wxBitmap::CreateFromImage (
, int nDepth
)
{
, int nDepth
)
{
- wxCHECK_MSG(rImage.Ok(), false, wxT("invalid image"));
+ wxCHECK_MSG(rImage.
Is
Ok(), false, wxT("invalid image"));
m_refData = new wxBitmapRefData();
int nSizeLimit = 1024 * 768 * 3;
m_refData = new wxBitmapRefData();
int nSizeLimit = 1024 * 768 * 3;
@@
-566,7
+549,7
@@
bool wxBitmap::CreateFromImage (
//
// Set bitmap parameters
//
//
// Set bitmap parameters
//
- wxCHECK_MSG(rImage.Ok(), false, wxT("invalid image"));
+ wxCHECK_MSG(rImage.
Is
Ok(), false, wxT("invalid image"));
SetWidth(nWidth);
SetHeight(nBmpHeight);
if (nDepth == 1)
SetWidth(nWidth);
SetHeight(nBmpHeight);
if (nDepth == 1)
@@
-641,7
+624,7
@@
bool wxBitmap::CreateFromImage (
);
#if wxUSE_PALETTE
HPAL hOldPalette = NULLHANDLE;
);
#if wxUSE_PALETTE
HPAL hOldPalette = NULLHANDLE;
- if (rImage.GetPalette().Ok())
+ if (rImage.GetPalette().
Is
Ok())
{
hOldPalette = ::GpiSelectPalette(hPS, (HPAL)rImage.GetPalette().GetHPALETTE());
}
{
hOldPalette = ::GpiSelectPalette(hPS, (HPAL)rImage.GetPalette().GetHPALETTE());
}
@@
-857,7
+840,7
@@
wxImage wxBitmap::ConvertToImage() const
wxImage vImage;
wxDC* pDC;
wxImage vImage;
wxDC* pDC;
- wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") );
+ wxCHECK_MSG(
Is
Ok(), wxNullImage, wxT("invalid bitmap") );
//
// Create an wxImage object
//
// Create an wxImage object
@@
-930,7
+913,7
@@
wxImage wxBitmap::ConvertToImage() const
// May already be selected into a PS
//
pDC = GetSelectedInto();
// May already be selected into a PS
//
pDC = GetSelectedInto();
- const wxPMDCImpl *impl;
+ const wxPMDCImpl *impl;
if (pDC != NULL &&
(impl = wxDynamicCast( pDC->GetImpl(), wxPMDCImpl )) != NULL)
{
if (pDC != NULL &&
(impl = wxDynamicCast( pDC->GetImpl(), wxPMDCImpl )) != NULL)
{
@@
-1089,7
+1072,7
@@
wxBitmap wxBitmap::GetSubBitmap(
const wxRect& rRect
) const
{
const wxRect& rRect
) const
{
- wxCHECK_MSG( Ok() &&
+ wxCHECK_MSG(
Is
Ok() &&
(rRect.x >= 0) && (rRect.y >= 0) &&
(rRect.x + rRect.width <= GetWidth()) &&
(rRect.y + rRect.height <= GetHeight()),
(rRect.x >= 0) && (rRect.y >= 0) &&
(rRect.x + rRect.width <= GetWidth()) &&
(rRect.y + rRect.height <= GetHeight()),
@@
-1099,7
+1082,7
@@
wxBitmap wxBitmap::GetSubBitmap(
,rRect.height
,GetDepth()
);
,rRect.height
,GetDepth()
);
- wxASSERT_MSG( vRet.Ok(), wxT("GetSubBitmap error") );
+ wxASSERT_MSG( vRet.
Is
Ok(), wxT("GetSubBitmap error") );
//
//
@@
-1285,7
+1268,7
@@
bool wxMask::Create(
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
- if (!rBitmap.Ok() || rBitmap.GetDepth() != 1)
+ if (!rBitmap.
Is
Ok() || rBitmap.GetDepth() != 1)
{
return false;
}
{
return false;
}
@@
-1333,7
+1316,7
@@
bool wxMask::Create(
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
- if (rBitmap.
Ok() && rBitmap.GetPalette()->
Ok())
+ if (rBitmap.
IsOk() && rBitmap.GetPalette()->Is
Ok())
{
unsigned char cRed;
unsigned char cGreen;
{
unsigned char cRed;
unsigned char cGreen;
@@
-1383,7
+1366,7
@@
bool wxMask::Create(
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap);
m_hMaskBitmap = 0;
}
- if (!rBitmap.Ok())
+ if (!rBitmap.
Is
Ok())
{
return false;
}
{
return false;
}
@@
-1566,7
+1549,7
@@
HBITMAP wxInvertMask(
{
HBITMAP hBmpInvMask = 0;
{
HBITMAP hBmpInvMask = 0;
- wxCHECK_MSG( hBmpMask, 0,
_
T("invalid bitmap in wxInvertMask") );
+ wxCHECK_MSG( hBmpMask, 0,
wx
T("invalid bitmap in wxInvertMask") );
//
// Get width/height from the bitmap if not given
//
// Get width/height from the bitmap if not given
@@
-1628,7
+1611,7
@@
HBITMAP wxInvertMask(
HBITMAP wxCopyBmp( HBITMAP hBmp, bool flip, int nWidth, int nHeight )
{
HBITMAP wxCopyBmp( HBITMAP hBmp, bool flip, int nWidth, int nHeight )
{
- wxCHECK_MSG( hBmp, 0,
_
T("invalid bitmap in wxCopyBmp") );
+ wxCHECK_MSG( hBmp, 0,
wx
T("invalid bitmap in wxCopyBmp") );
//
// Get width/height from the bitmap if not given
//
// Get width/height from the bitmap if not given