]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/dcclient.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxClientDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "dcclient.h"
21 class WXDLLEXPORT wxClientDC
: public wxDC
23 DECLARE_DYNAMIC_CLASS(wxClientDC
)
28 // Create a DC corresponding to a canvas
29 wxClientDC(wxWindow
*win
);
34 class WXDLLEXPORT wxWindowDC
: public wxDC
36 DECLARE_DYNAMIC_CLASS(wxWindowDC
)
41 // Create a DC corresponding to a canvas
42 wxWindowDC(wxWindow
*win
);
47 class WXDLLEXPORT wxPaintDC
: public wxDC
49 DECLARE_DYNAMIC_CLASS(wxPaintDC
)
54 // Create a DC corresponding to a canvas
55 wxPaintDC(wxWindow
*win
);
60 static WXHDC m_staticPaintHDC
;
61 static int m_staticPaintCount
;