#include </home/zeitlin/src/wx/github/interface/wx/dc.h>
wxDCFontChanger is a small helper class for setting a font on a wxDC and unsetting it automatically in the destructor, restoring the previous one.
Public Member Functions | |
wxDCFontChanger (wxDC &dc) | |
Trivial constructor not changing anything. | |
wxDCFontChanger (wxDC &dc, const wxFont &font) | |
Sets font on the given dc, storing the old one. | |
void | Set (const wxFont &font) |
Set the font to use. | |
~wxDCFontChanger () | |
Restores the font originally selected in the DC passed to the ctor. |
wxDCFontChanger::wxDCFontChanger | ( | wxDC & | 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 Set() is called -- in which case it would reset the previous font.
Sets font on the given dc, storing the old one.
dc | The DC where the font must be temporary set. |
font | The font to set. |
wxDCFontChanger::~wxDCFontChanger | ( | ) |
Restores the font originally selected in the DC passed to the ctor.
void wxDCFontChanger::Set | ( | const wxFont & | 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 wxColour 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.