- // assert failure is provoked by an attempt to get an icon from bitmap or
- // vice versa
- const wxIcon& GetIcon() const
- { wxASSERT( m_isIcon ); return *(wxIcon *)m_image; }
- const wxBitmap& GetBitmap() const
- { wxASSERT( !m_isIcon ); return *(wxBitmap *)m_image; }
-
- // overriden base class virtuals
- virtual bool AcceptsFocus() const { return FALSE; }
-
- // IMPLEMENTATION
-#ifdef __WIN16__
- virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
- virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
-#endif // __WIN16__