X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/38400bb46b1477680ec08ed04f2bcafa8de5e3bf..abd474ea63667f727940a009cc3e0b23ba9f418f:/src/os2/bmpbuttn.cpp diff --git a/src/os2/bmpbuttn.cpp b/src/os2/bmpbuttn.cpp index bfaf5a7217..82bb6dde95 100644 --- a/src/os2/bmpbuttn.cpp +++ b/src/os2/bmpbuttn.cpp @@ -23,8 +23,6 @@ #include "wx/os2/private.h" -IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton) - #define BUTTON_HEIGHT_FACTOR (EDIT_CONTROL_FACTOR * 1.1) bool wxBitmapButton::Create( wxWindow* pParent, @@ -36,7 +34,7 @@ bool wxBitmapButton::Create( wxWindow* pParent, const wxValidator& rValidator, const wxString& rsName ) { - m_bmpNormal = rBitmap; + m_bitmaps[State_Normal] = rBitmap; SetName(rsName); #if wxUSE_VALIDATORS SetValidator(rValidator); @@ -64,10 +62,10 @@ bool wxBitmapButton::Create( wxWindow* pParent, else m_windowId = vId; - if (nWidth == wxDefaultCoord && rBitmap.Ok()) + if (nWidth == wxDefaultCoord && rBitmap.IsOk()) nWidth = rBitmap.GetWidth() + 4 * m_marginX; - if (nHeight == wxDefaultCoord && rBitmap.Ok()) + if (nHeight == wxDefaultCoord && rBitmap.IsOk()) nHeight = rBitmap.GetHeight() + 4 * m_marginY; ULONG ulOS2Style = WS_VISIBLE | WS_TABSTOP | BS_USERBUTTON; @@ -108,21 +106,23 @@ bool wxBitmapButton::OS2OnDraw( WXDRAWITEMSTRUCT* pItem) if (!pUser) return false; - wxBitmap* pBitmap; + wxBitmap bitmap; bool bIsSelected = pUser->fsState & BDS_HILITED; wxClientDC vDc(this); - if (bIsSelected && m_bmpSelected.Ok()) - pBitmap = &m_bmpSelected; - else if ((pUser->fsState & BDS_DEFAULT) && m_bmpFocus.Ok()) - pBitmap = &m_bmpFocus; - else if ((pUser->fsState & BDS_DISABLED) && m_bmpDisabled.Ok()) - pBitmap = &m_bmpDisabled; - else - pBitmap = &m_bmpNormal; + if (bIsSelected) + bitmap = GetBitmapPressed(); + else if (pUser->fsState & BDS_DEFAULT) + bitmap = GetBitmapFocus(); + else if (pUser->fsState & BDS_DISABLED) + bitmap = GetBitmapDisabled(); - if (!pBitmap->Ok() ) - return false; + if (!bitmap.IsOk() ) + { + bitmap = GetBitmapLabel(); + if (!bitmap.IsOk() ) + return false; + } // @@ -133,8 +133,8 @@ bool wxBitmapButton::OS2OnDraw( WXDRAWITEMSTRUCT* pItem) wxPMDCImpl *impl = (wxPMDCImpl*) vDc.GetImpl(); int nWidth = impl->m_vRclPaint.xRight - impl->m_vRclPaint.xLeft; int nHeight = impl->m_vRclPaint.yTop - impl->m_vRclPaint.yBottom; - int nBmpWidth = pBitmap->GetWidth(); - int nBmpHeight = pBitmap->GetHeight(); + int nBmpWidth = bitmap.GetWidth(); + int nBmpHeight = bitmap.GetHeight(); nX1 = (nWidth - nBmpWidth) / 2; nY1 = (nHeight - nBmpHeight) / 2; @@ -153,14 +153,14 @@ bool wxBitmapButton::OS2OnDraw( WXDRAWITEMSTRUCT* pItem) // // Draw the bitmap // - vDc.DrawBitmap( *pBitmap, nX1, nY1, true ); + vDc.DrawBitmap( bitmap, nX1, nY1, true ); // // Draw focus / disabled state, if auto-drawing // if ((pUser->fsState == BDS_DISABLED) && bAutoDraw) { - DrawButtonDisable( vDc, *pBitmap ); + DrawButtonDisable( vDc, bitmap ); } else if ((pUser->fsState == BDS_DEFAULT) && bAutoDraw) {