.. include:: headings.inc .. _DCFontChanger: ========================================================================================================================================== |phoenix_title| **DCFontChanger** ========================================================================================================================================== :ref:`DCFontChanger` is a small helper class for setting a font on a :ref:`DC` and unsetting it automatically in the destructor, restoring the previous one. .. versionadded:: 2.9.0 .. seealso:: :meth:`DC.SetFont` , :ref:`DCTextColourChanger`, :ref:`DCPenChanger`, :ref:`DCBrushChanger`, :ref:`DCClipper` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **DCFontChanger** .. raw:: html

Inheritance diagram of DCFontChanger

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~DCFontChanger.__init__` Trivial constructor not changing anything. :meth:`~DCFontChanger.Set` Set the font to use. :meth:`~DCFontChanger.__enter__` :meth:`~DCFontChanger.__exit__` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: DCFontChanger(object) DCFontChanger is a small helper class for setting a font on a DC and unsetting it automatically in the destructor, restoring the previous one. **Possible constructors**:: DCFontChanger(dc) DCFontChanger(dc, font) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self, dc)` Trivial constructor not changing anything. This constructor is useful if you don't know beforehand if the font needs to be changed or not. It simply creates the object which won't do anything in its destructor unless :meth:`Set` is called -- in which case it would reset the previous font. :param `dc`: :type `dc`: DC .. versionadded:: 2.9.1 **~~~** **__init__** `(self, dc, font)` Sets `font` on the given `dc`, storing the old one. :param `dc`: The DC where the font must be temporary set. :type `dc`: DC :param `font`: The font to set. :type `font`: Font **~~~** .. method:: Set(self, font) Set the font to use. This method is meant to be called once only and only on the objects created with the constructor overload not taking :ref:`Colour` argument and has the same effect as the other constructor, i.e. sets the font to the given `font` and ensures that the old value is restored when this object is destroyed. :param `font`: :type `font`: Font .. method:: __enter__(self) .. method:: __exit__(self, exc_type, exc_val, exc_tb)