]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/statbmp.h
not needed
[wxWidgets.git] / include / wx / os2 / statbmp.h
index 01ad8f183a6353663c714ff2a18535fcdfdb9a0e..4f34c65d5ffe94b3b48be1598cefc9943580fe8d 100644 (file)
 #include "wx/control.h"
 #include "wx/icon.h"
 
-WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
-
-class WXDLLEXPORT wxStaticBitmap: public wxControl
+class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
 {
-    DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
  public:
     inline wxStaticBitmap() { Init(); }
 
@@ -56,11 +53,16 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl
     // vice versa
     const wxIcon& GetIcon() const
       { wxASSERT( m_bIsIcon ); return *(wxIcon *)m_pImage; }
-    const wxBitmap& GetBitmap() const
+    wxBitmap GetBitmap() const
       { wxASSERT( !m_bIsIcon ); return *(wxBitmap *)m_pImage; }
 
     // 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;
@@ -76,7 +78,10 @@ protected:
     // we can have either an icon or a bitmap
     bool                            m_bIsIcon;
     wxGDIImage*                     m_pImage;
-};
+private:
+    DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
+    DECLARE_EVENT_TABLE()
+}; // end of wxStaticBitmap
 
 #endif
     // _WX_STATBMP_H_