]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/brush.h
fixed Cygwin compilation (there's no _get_osfhandle)
[wxWidgets.git] / include / wx / cocoa / brush.h
index 050fad84541d3f1b686a3e281ddee430423f70c1..e3d793db541696443505f5924c3d038b0c878e61 100644 (file)
@@ -21,7 +21,7 @@ class WXDLLEXPORT wxBrush;
 // ========================================================================
 // wxBrush
 // ========================================================================
-class WXDLLEXPORT wxBrush: public wxGDIObject
+class WXDLLEXPORT wxBrush: public wxBrushBase
 {
     DECLARE_DYNAMIC_CLASS(wxBrush)
 // ------------------------------------------------------------------------
@@ -32,7 +32,7 @@ public:
     wxBrush(const wxColour& col, int style = wxSOLID);
     wxBrush(const wxBitmap& stipple);
     wxBrush(const wxBrush& brush)
-    :   wxGDIObject()
+    :   wxBrushBase()
     {   Ref(brush); }
     ~wxBrush();
 
@@ -56,12 +56,9 @@ public:
 
     // accessors
     wxColour GetColour() const;
-    int GetStyle() const;
+    virtual int GetStyle() const;
     wxBitmap *GetStipple() const;
 
-    bool IsHatch() const
-        { return (GetStyle()>=wxBDIAGONAL_HATCH) && (GetStyle()<=wxVERTICAL_HATCH); }
-
     virtual bool Ok() const
     {   return (m_refData != NULL); }