]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/statbox.h
match CFTypeRef declaration to the one in defs.h
[wxWidgets.git] / include / wx / mac / carbon / statbox.h
index 6dd85bf43dc78c2527cb7521203eb4dbe13c2868..92b781ee5bc05cee0846dc1374a1c9ce372e7087 100644 (file)
 #ifndef _WX_STATBOX_H_
 #define _WX_STATBOX_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "statbox.h"
-#endif
-
 #include "wx/control.h"
 
-WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
+WXDLLEXPORT_DATA(extern const char) wxStaticBoxNameStr[];
 
 // Group box
 class WXDLLEXPORT wxStaticBox: public wxControl
@@ -47,8 +43,9 @@ class WXDLLEXPORT wxStaticBox: public wxControl
     virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
     virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
 
-
-protected:
+    virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
+    
+    virtual bool AcceptsFocus() const { return false; }
 };
 
 #endif