1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxOverlay classes
7 // Created: 10-Oct-2006
9 // Copyright: (c) 2006 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 //---------------------------------------------------------------------------
25 // clears the overlay without restoring the former state
26 // to be done eg when the window content has been changed and repainted
34 %nokwargs wxDCOverlay;
36 // connects this overlay to the corresponding drawing dc, if the overlay is not initialized yet
37 // this call will do so
38 wxDCOverlay(wxOverlay &overlay, wxWindowDC *dc, int x , int y , int width , int height);
40 // convenience wrapper that behaves the same using the entire area of the dc
41 wxDCOverlay(wxOverlay &overlay, wxWindowDC *dc);
43 // removes the connection between the overlay and the dc
44 virtual ~wxDCOverlay();
46 // clears the layer, restoring the state at the last init
51 //---------------------------------------------------------------------------