#include "wx/control.h"
#include "wx/icon.h"
-WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
-
class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
{
public:
// overriden base class virtuals
virtual bool AcceptsFocus() const { return FALSE; }
+ virtual MRESULT OS2WindowProc( WXUINT uMsg
+ ,WXWPARAM wParam
+ ,WXLPARAM lParam
+ );
+ void OnPaint(wxPaintEvent& rEvent);
protected:
virtual wxSize DoGetBestSize() const;
wxGDIImage* m_pImage;
private:
DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
-};
+ DECLARE_EVENT_TABLE()
+}; // end of wxStaticBitmap
#endif
// _WX_STATBMP_H_