]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/statline.h
commdlg.lib is not in evc3
[wxWidgets.git] / include / wx / statline.h
index f660c5d94365d0d5bfd6bb7676f3555479a203ba..7bd1939cebdd32d2090f1cf833854bf76f479cba 100644 (file)
@@ -47,7 +47,9 @@ public:
     static int GetDefaultSize() { return 2; }
 
     // overriden base class virtuals
-    virtual bool AcceptsFocus() const { return FALSE; }
+    virtual bool AcceptsFocus() const { return false; }
+    virtual void ApplyParentThemeBackground(const wxColour& bg)
+        { SetBackgroundColour(bg); }
 
 protected:
     // set the right size for the right dimension
@@ -72,6 +74,8 @@ protected:
     {
         return AdjustSize(wxDefaultSize);
     }
+
+    DECLARE_NO_COPY_CLASS(wxStaticLineBase)
 };
 
 // ----------------------------------------------------------------------------
@@ -88,6 +92,8 @@ protected:
     #include "wx/os2/statline.h"
 #elif defined(__WXMAC__)
     #include "wx/mac/statline.h"
+#elif defined(__WXCOCOA__)
+    #include "wx/cocoa/statline.h"
 #else // use generic implementation for all other platforms
     #include "wx/generic/statline.h"
 #endif