virtual void SetIcon(const wxIcon& icon) { SetImage(&icon); }
virtual void SetBitmap(const wxBitmap& bitmap) { SetImage(&bitmap); }
- // assert failure is provoked by an attempt to get an icon from bitmap or
- // vice versa
- wxIcon GetIcon() const
- {
- wxASSERT_MSG( m_isIcon, _T("no icon in this wxStaticBitmap") );
-
- return *(wxIcon *)m_image;
- }
+ // can always be used, whether we have a bitmap or an icon in reality
+ wxBitmap GetBitmap() const;
- wxBitmap GetBitmap() const
- {
- wxASSERT_MSG( !m_isIcon, _T("no bitmap in this wxStaticBitmap") );
-
- return *(wxBitmap *)m_image;
- }
+ // can only be used if an icon had been originally used
+ wxIcon GetIcon() const;
- // implementation only from now on
- // -------------------------------
protected:
virtual wxBorder GetDefaultBorder() const;
return m_image && m_image->Ok();
}
+wxIcon wxStaticBitmap::GetIcon() const
+{
+ wxCHECK_MSG( m_image, wxIcon(), _T("no image in wxStaticBitmap") );
+
+ // we can't ask for an icon if all we have is a bitmap
+ wxCHECK_MSG( m_isIcon, wxIcon(), _T("no icon in this wxStaticBitmap") );
+
+ return *(wxIcon *)m_image;
+}
+
+wxBitmap wxStaticBitmap::GetBitmap() const
+{
+ if ( m_isIcon )
+ {
+ // don't fail because we might have replaced the bitmap with icon
+ // ourselves internally in ConvertImage() to keep the transparency but
+ // the user code doesn't know about it so it still can use GetBitmap()
+ // to retrieve the bitmap
+ return wxBitmap(GetIcon());
+ }
+ else // we have a bitmap
+ {
+ wxCHECK_MSG( m_image, wxBitmap(), _T("no image in wxStaticBitmap") );
+
+ return *(wxBitmap *)m_image;
+ }
+}
+
void wxStaticBitmap::Free()
{
delete m_image;