+ DocDeclStr(
+ virtual void , SetColour(const wxColour& col),
+ "Set the brush's `wx.Colour`.", "");
+
+ DocDeclStr(
+ virtual void , SetStyle(int style),
+ "Sets the style of the brush. See `__init__` for a listing of styles.", "");
+
+ DocDeclStr(
+ virtual void , SetStipple(const wxBitmap& stipple),
+ "Sets the stipple `wx.Bitmap`.", "");
+
+
+ DocDeclStr(
+ wxColour , GetColour() const,
+ "Returns the `wx.Colour` of the brush.", "");
+
+ DocDeclStr(
+ int , GetStyle() const,
+ "Returns the style of the brush. See `__init__` for a listing of
+styles.", "");
+
+ DocDeclStr(
+ wxBitmap *, GetStipple() const,
+ "Returns the stiple `wx.Bitmap` of the brush. If the brush does not
+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 , IsOk(),
+ "Returns True if the brush is initialised and valid.", "");
+ %pythoncode { Ok = IsOk }