- // 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;
- }
-
- wxBitmap GetBitmap() const
- {
- wxASSERT_MSG( !m_isIcon, _T("no bitmap in this wxStaticBitmap") );
-
- return *(wxBitmap *)m_image;
- }
-
- // implementation only from now on
- // -------------------------------
-
- // implement base class virtuals
-#ifdef __WIN16__
- virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
-#endif // __WIN16__
- virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);