wx.DCTextColourChanger is a small helper class for setting a foreground text colour on a wx.DC and unsetting it automatically in the destructor, restoring the previous one.
See also
wx.DC.SetTextForeground
, wx.DCFontChanger, wx.DCPenChanger, wx.DCBrushChanger, wx.DCClipper
__init__ |
Trivial constructor not changing anything. |
Set |
Set the colour to use. |
__enter__ |
|
__exit__ |
wx.
DCTextColourChanger
(object)¶Possible constructors:
DCTextColourChanger(dc)
DCTextColourChanger(dc, col)
DCTextColourChanger is a small helper class for setting a foreground text colour on a DC and unsetting it automatically in the destructor, restoring the previous one.
__init__
(self, *args, **kw)¶__init__ (self, dc)
Trivial constructor not changing anything.
This constructor is useful if you don’t know beforehand if the colour needs to be changed or not. It simply creates the object which won’t do anything in its destructor unless Set
is called
Parameters: | dc (wx.DC) – |
---|
__init__ (self, dc, col)
Sets col on the given dc, storing the old one.
Parameters: |
---|
Set
(self, col)¶Set the colour to use.
This method is meant to be called once only and only on the objects created with the constructor overload not taking wx.Colour argument and has the same effect as the other constructor, i.e. sets the colour to the given col and ensures that the old value is restored when this object is destroyed.
Parameters: | col (wx.Colour) – |
---|
__enter__
(self)¶__exit__
(self, exc_type, exc_val, exc_tb)¶