Version: 3.3.0

#include <wx/dc.h>

Detailed Description

wxDCPenChanger is a small helper class for setting a pen on a wxDC and unsetting it automatically in the destructor, restoring the previous one.

Library:  wxCore
Category:  Graphics Device Interface (GDI)
See also
wxDC::SetPen(), wxDCFontChanger, wxDCTextColourChanger, wxDCBrushChanger, wxDCClipper

Public Member Functions

 wxDCPenChanger (wxDC &dc, const wxPen &pen)
 Sets pen on the given dc, storing the old one. More...
 
 ~wxDCPenChanger ()
 Restores the pen originally selected in the DC passed to the ctor. More...
 

Constructor & Destructor Documentation

◆ wxDCPenChanger()

wxDCPenChanger::wxDCPenChanger ( wxDC dc,
const wxPen pen 
)

Sets pen on the given dc, storing the old one.

Parameters
dcThe DC where the pen must be temporary set.
penThe pen to set.

◆ ~wxDCPenChanger()

wxDCPenChanger::~wxDCPenChanger ( )

Restores the pen originally selected in the DC passed to the ctor.