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