X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/020303e6f9b582dfd75ba498a72f5f14f6cfff85..07502d7351ab56770752ad01ee28af497cf2ab9c:/wxPython/src/_brush.i?ds=sidebyside diff --git a/wxPython/src/_brush.i b/wxPython/src/_brush.i index 6f39b239ef..621faac4a0 100644 --- a/wxPython/src/_brush.i +++ b/wxPython/src/_brush.i @@ -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`"); + }; //---------------------------------------------------------------------------