X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d07d2bc9d05408c58b76c53a0a291915b88e5064..07502d7351ab56770752ad01ee28af497cf2ab9c:/wxPython/src/_brush.i diff --git a/wxPython/src/_brush.i b/wxPython/src/_brush.i index 3545f9b975..621faac4a0 100644 --- a/wxPython/src/_brush.i +++ b/wxPython/src/_brush.i @@ -33,6 +33,8 @@ a `wx.DC`. It has a colour and a style.", " :see: `wx.BrushList`, `wx.DC`, `wx.DC.SetBrush` "); +MustHaveApp(wxBrush); + class wxBrush : public wxGDIObject { public: DocCtorStr( @@ -54,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(); @@ -87,6 +95,11 @@ styles.", ""); have a wx.STIPPLE style, then the return value may be non-None but an uninitialised bitmap (`wx.Bitmap.Ok` returns False).", ""); + + DocDeclStr( + bool , IsHatch() const, + "Is the current style a hatch type?", ""); + DocDeclStr( bool , Ok(), @@ -99,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`"); + }; //---------------------------------------------------------------------------