Added wx.BrushFromBitmap to create a stippled brush in a single step.
Also added missing brysh style flags: wx.STIPPLE_MASK wx.STIPPLE_MASK_OPAQUE. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,6 +1,18 @@
|
|||||||
Recent Changes for wxPython
|
Recent Changes for wxPython
|
||||||
=====================================================================
|
=====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
2.6.0.1
|
||||||
|
-------
|
||||||
|
|
||||||
|
Added wx.BrushFromBitmap to create a stippled brush in a single step.
|
||||||
|
Also added missing brysh style flags: wx.STIPPLE_MASK
|
||||||
|
wx.STIPPLE_MASK_OPAQUE.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
2.6.0.0
|
2.6.0.0
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
@@ -56,8 +56,14 @@ public:
|
|||||||
wx.VERTICAL_HATCH Vertical hatch.
|
wx.VERTICAL_HATCH Vertical hatch.
|
||||||
=================== =============================
|
=================== =============================
|
||||||
|
|
||||||
|
:see: `wx.BrushFromBitmap`
|
||||||
");
|
");
|
||||||
|
|
||||||
|
DocCtorStrName(
|
||||||
|
wxBrush(const wxBitmap& stippleBitmap),
|
||||||
|
"Constructs a stippled brush using a bitmap.", "",
|
||||||
|
BrushFromBitmap);
|
||||||
|
|
||||||
~wxBrush();
|
~wxBrush();
|
||||||
|
|
||||||
|
|
||||||
|
@@ -785,6 +785,8 @@ enum {
|
|||||||
wxUSER_DASH,
|
wxUSER_DASH,
|
||||||
wxTRANSPARENT,
|
wxTRANSPARENT,
|
||||||
wxSTIPPLE,
|
wxSTIPPLE,
|
||||||
|
wxSTIPPLE_MASK,
|
||||||
|
wxSTIPPLE_MASK_OPAQUE,
|
||||||
wxBDIAGONAL_HATCH,
|
wxBDIAGONAL_HATCH,
|
||||||
wxCROSSDIAG_HATCH,
|
wxCROSSDIAG_HATCH,
|
||||||
wxFDIAGONAL_HATCH,
|
wxFDIAGONAL_HATCH,
|
||||||
|
Reference in New Issue
Block a user