]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_brush.i
Several methods dropped the const from their signature
[wxWidgets.git] / wxPython / src / _brush.i
index 6f39b239ef9fb01daccfe72037ab4d6dd1b165c6..621faac4a0d4c6231cf2d6437e1b98c2d1afe811 100644 (file)
@@ -56,8 +56,14 @@ public:
     wx.VERTICAL_HATCH     Vertical hatch.
     ===================   =============================
 
+:see: `wx.BrushFromBitmap`
 ");
 
+    DocCtorStrName(
+        wxBrush(const wxBitmap& stippleBitmap),
+        "Constructs a stippled brush using a bitmap.", "",
+        BrushFromBitmap);
+
     ~wxBrush();
 
 
@@ -106,6 +112,11 @@ uninitialised bitmap (`wx.Bitmap.Ok` returns False).", "");
 #endif
 
     %pythoncode { def __nonzero__(self): return self.Ok() }
+
+    %property(Colour, GetColour, SetColour, doc="See `GetColour` and `SetColour`");
+    %property(Stipple, GetStipple, SetStipple, doc="See `GetStipple` and `SetStipple`");
+    %property(Style, GetStyle, SetStyle, doc="See `GetStyle` and `SetStyle`");
+
 };
 
 //---------------------------------------------------------------------------