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
/
statbmp.cpp
diff --git
a/src/os2/statbmp.cpp
b/src/os2/statbmp.cpp
index 304f45835ea67c526dc3d37133abc7da67c76661..9a7f0985a39cc2601005a0ae7aa8877d58c3c153 100644
(file)
--- a/
src/os2/statbmp.cpp
+++ b/
src/os2/statbmp.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: statbmp.cpp
+// Name: s
rc/os2/s
tatbmp.cpp
// Purpose: wxStaticBitmap
// Author: David Webster
// Modified by:
// Purpose: wxStaticBitmap
// Author: David Webster
// Modified by:
@@
-12,23
+12,22
@@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#include "wx/dcclient.h"
-#include "wx/window.h"
-#include "wx/os2/private.h"
+#include "wx/statbmp.h"
#ifndef WX_PRECOMP
#include "wx/icon.h"
#ifndef WX_PRECOMP
#include "wx/icon.h"
- #include "wx/statbmp.h"
+ #include "wx/window.h"
+ #include "wx/dcclient.h"
#endif
#endif
+#include "wx/os2/private.h"
+
#include <stdio.h>
// ---------------------------------------------------------------------------
// macros
// ---------------------------------------------------------------------------
#include <stdio.h>
// ---------------------------------------------------------------------------
// macros
// ---------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
-
BEGIN_EVENT_TABLE(wxStaticBitmap, wxWindow)
EVT_PAINT(wxStaticBitmap::OnPaint)
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(wxStaticBitmap, wxWindow)
EVT_PAINT(wxStaticBitmap::OnPaint)
END_EVENT_TABLE()
@@
-42,7
+41,7
@@
static wxGDIImage* ConvertImage(
if(!bIsIcon )
{
wxASSERT_MSG( wxDynamicCast(&rBitmap, wxBitmap),
if(!bIsIcon )
{
wxASSERT_MSG( wxDynamicCast(&rBitmap, wxBitmap),
-
_
T("not an icon and not a bitmap?") );
+
wx
T("not an icon and not a bitmap?") );
const wxBitmap& rBmp = (const wxBitmap&)rBitmap;
wxMask* pMask = rBmp.GetMask();
const wxBitmap& rBmp = (const wxBitmap&)rBitmap;
wxMask* pMask = rBmp.GetMask();
@@
-119,7
+118,7
@@
bool wxStaticBitmap::Create( wxWindow* pParent,
sError = wxPMErrorToStr(vError);
return false;
}
sError = wxPMErrorToStr(vError);
return false;
}
- wxCHECK_MSG( m_hWnd,
FALSE
, wxT("Failed to create static bitmap") );
+ wxCHECK_MSG( m_hWnd,
false
, wxT("Failed to create static bitmap") );
m_pImage = ConvertImage(rBitmap);
::WinSendMsg( m_hWnd,
SM_SETHANDLE,
m_pImage = ConvertImage(rBitmap);
::WinSendMsg( m_hWnd,
SM_SETHANDLE,
@@
-135,14
+134,12
@@
bool wxStaticBitmap::Create( wxWindow* pParent,
bool wxStaticBitmap::ImageIsOk() const
{
bool wxStaticBitmap::ImageIsOk() const
{
- return(m_pImage && m_pImage->Ok());
+ return(m_pImage && m_pImage->
Is
Ok());
}
void wxStaticBitmap::Free()
{
}
void wxStaticBitmap::Free()
{
- if (m_pImage)
- delete m_pImage;
- m_pImage = NULL;
+ wxDELETE(m_pImage);
} // end of wxStaticBitmap::Free
wxSize wxStaticBitmap::DoGetBestSize() const
} // end of wxStaticBitmap::Free
wxSize wxStaticBitmap::DoGetBestSize() const
@@
-154,12
+151,10
@@
wxSize wxStaticBitmap::DoGetBestSize() const
return wxWindow::DoGetBestSize();
}
return wxWindow::DoGetBestSize();
}
-void wxStaticBitmap::OnPaint (
- wxPaintEvent& WXUNUSED(rEvent)
-)
+void wxStaticBitmap::OnPaint ( wxPaintEvent& WXUNUSED(rEvent) )
{
{
- wxPaintDC
vDc(this);
- wxBitmap*
pBitmap;
+ wxPaintDC vDc(this);
+ wxBitmap* pBitmap;
if (m_pImage->IsKindOf(CLASSINFO(wxIcon)))
{
if (m_pImage->IsKindOf(CLASSINFO(wxIcon)))
{
@@
-177,14
+172,12
@@
void wxStaticBitmap::OnPaint (
}
} // end of wxStaticBitmap::OnPaint
}
} // end of wxStaticBitmap::OnPaint
-void wxStaticBitmap::SetImage(
- const wxGDIImage& rBitmap
-)
+void wxStaticBitmap::SetImage( const wxGDIImage& rBitmap )
{
{
- int
nX = 0;
- int
nY = 0;
- int
nWidth = 0;
- int
nHeight = 0;
+ int nX = 0;
+ int nY = 0;
+ int nWidth = 0;
+ int nHeight = 0;
Free();
::WinSendMsg( GetHwnd()
Free();
::WinSendMsg( GetHwnd()