]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
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 | ||
34138703 JS |
12 | #ifndef _WX_DCSCREEN_H_BASE_ |
13 | #define _WX_DCSCREEN_H_BASE_ | |
c801d85f | 14 | |
e45689df | 15 | #include "wx/defs.h" |
ab171e95 RR |
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 | |
e45689df | 30 | |
4055ed82 | 31 | #if defined(__WXPALMOS__) |
ffecfa5a JS |
32 | #include "wx/palmos/dcscreen.h" |
33 | #elif defined(__WXMSW__) | |
c801d85f | 34 | #include "wx/msw/dcscreen.h" |
2049ba38 | 35 | #elif defined(__WXMOTIF__) |
34138703 | 36 | #include "wx/motif/dcscreen.h" |
1be7a35c | 37 | #elif defined(__WXGTK20__) |
c801d85f | 38 | #include "wx/gtk/dcscreen.h" |
1be7a35c MR |
39 | #elif defined(__WXGTK__) |
40 | #include "wx/gtk1/dcscreen.h" | |
83df96d6 JS |
41 | #elif defined(__WXX11__) |
42 | #include "wx/x11/dcscreen.h" | |
1e6feb95 VZ |
43 | #elif defined(__WXMGL__) |
44 | #include "wx/mgl/dcscreen.h" | |
b3c86150 VS |
45 | #elif defined(__WXDFB__) |
46 | #include "wx/dfb/dcscreen.h" | |
34138703 JS |
47 | #elif defined(__WXMAC__) |
48 | #include "wx/mac/dcscreen.h" | |
e64df9bc DE |
49 | #elif defined(__WXCOCOA__) |
50 | #include "wx/cocoa/dcscreen.h" | |
1777b9bb DW |
51 | #elif defined(__WXPM__) |
52 | #include "wx/os2/dcscreen.h" | |
c801d85f KB |
53 | #endif |
54 | ||
c8ddadff | 55 | |
c801d85f | 56 | #endif |
34138703 | 57 | // _WX_DCSCREEN_H_BASE_ |