]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/button.h
wxCocoa: Added NSScrollView definition
[wxWidgets.git] / include / wx / button.h
index 1fc1859a306228c0b06be0de8b99afbc7d64cf0d..d4032a3b6c3e0f85fa0ccccbce61eaabeffe02e0 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef _WX_BUTTON_H_BASE_
 #define _WX_BUTTON_H_BASE_
 
+#include "wx/defs.h"
+
 #if wxUSE_BUTTON
 
 // ----------------------------------------------------------------------------
@@ -46,6 +48,8 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
 class WXDLLEXPORT wxButtonBase : public wxControl
 {
 public:
+    wxButtonBase() { }
+
     // show the image in the button in addition to the label
     virtual void SetImageLabel(const wxBitmap& WXUNUSED(bitmap)) { }
 
@@ -58,6 +62,8 @@ public:
 
     // returns the default button size for this platform
     static wxSize GetDefaultSize();
+
+    DECLARE_NO_COPY_CLASS(wxButtonBase)
 };
 
 #if defined(__WXUNIVERSAL__)
@@ -70,10 +76,10 @@ public:
     #include "wx/gtk/button.h"
 #elif defined(__WXMAC__)
     #include "wx/mac/button.h"
+#elif defined(__WXCOCOA__)
+    #include "wx/cocoa/button.h"
 #elif defined(__WXPM__)
     #include "wx/os2/button.h"
-#elif defined(__WXSTUBS__)
-    #include "wx/stubs/button.h"
 #endif
 
 #endif // wxUSE_BUTTON