]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/statbmp.h
Made wxGTK compile and link again. Broke wxMSW a little.
[wxWidgets.git] / include / wx / msw / statbmp.h
index 42cb47350a0722cc5a1f2589ea52134d856700e1..e412b276ad7a64c9a520523e70186a5f449cf40d 100644 (file)
@@ -17,8 +17,9 @@
 #endif
 
 #include "wx/control.h"
+#include "wx/icon.h"
 
-WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBitmapNameStr;
 
 // a control showing an icon or a bitmap
 class WXDLLEXPORT wxStaticBitmap : public wxControl
@@ -63,9 +64,6 @@ public:
     virtual bool AcceptsFocus() const { return FALSE; }
 
     // IMPLEMENTATION
-    virtual void Command(wxCommandEvent& WXUNUSED(event)) { }
-    virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) { }
-
 #ifdef __WIN16__
     virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
     virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
@@ -86,9 +84,7 @@ protected:
         wxBitmap *bitmap;
     } m_image;
 
-    virtual void DoSetSize(int x, int y,
-                           int width, int height,
-                           int sizeFlags = wxSIZE_AUTO);
+    virtual wxSize DoGetBestSize();
 };
 
 #endif