]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/dcscreen.h | |
3 | // Purpose: wxScreenDC base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows Licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCSCREEN_H_BASE_ | |
13 | #define _WX_DCSCREEN_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/dc.h" | |
17 | ||
18 | #if wxUSE_NEW_DC | |
19 | ||
20 | class WXDLLIMPEXP_CORE wxScreenDC : public wxWindowDC | |
21 | { | |
22 | public: | |
23 | wxScreenDC(); | |
24 | ||
25 | private: | |
26 | DECLARE_DYNAMIC_CLASS(wxScreenDC) | |
27 | }; | |
28 | ||
29 | #endif | |
30 | ||
31 | #if defined(__WXPALMOS__) | |
32 | #include "wx/palmos/dcscreen.h" | |
33 | #elif defined(__WXMSW__) | |
34 | #include "wx/msw/dcscreen.h" | |
35 | #elif defined(__WXMOTIF__) | |
36 | #include "wx/motif/dcscreen.h" | |
37 | #elif defined(__WXGTK20__) | |
38 | #include "wx/gtk/dcscreen.h" | |
39 | #elif defined(__WXGTK__) | |
40 | #include "wx/gtk1/dcscreen.h" | |
41 | #elif defined(__WXX11__) | |
42 | #include "wx/x11/dcscreen.h" | |
43 | #elif defined(__WXMGL__) | |
44 | #include "wx/mgl/dcscreen.h" | |
45 | #elif defined(__WXDFB__) | |
46 | #include "wx/dfb/dcscreen.h" | |
47 | #elif defined(__WXMAC__) | |
48 | #include "wx/mac/dcscreen.h" | |
49 | #elif defined(__WXCOCOA__) | |
50 | #include "wx/cocoa/dcscreen.h" | |
51 | #elif defined(__WXPM__) | |
52 | #include "wx/os2/dcscreen.h" | |
53 | #endif | |
54 | ||
55 | #endif | |
56 | // _WX_DCSCREEN_H_BASE_ |