| 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 | |
| 17 | #if defined(__WXPALMOS__) |
| 18 | #include "wx/palmos/dcscreen.h" |
| 19 | #elif defined(__WXMSW__) |
| 20 | #include "wx/msw/dcscreen.h" |
| 21 | #elif defined(__WXMOTIF__) |
| 22 | #include "wx/motif/dcscreen.h" |
| 23 | #elif defined(__WXGTK20__) |
| 24 | #include "wx/gtk/dcscreen.h" |
| 25 | #elif defined(__WXGTK__) |
| 26 | #include "wx/gtk1/dcscreen.h" |
| 27 | #elif defined(__WXX11__) |
| 28 | #include "wx/x11/dcscreen.h" |
| 29 | #elif defined(__WXMGL__) |
| 30 | #include "wx/mgl/dcscreen.h" |
| 31 | #elif defined(__WXDFB__) |
| 32 | #include "wx/dfb/dcscreen.h" |
| 33 | #elif defined(__WXMAC__) |
| 34 | #include "wx/mac/dcscreen.h" |
| 35 | #elif defined(__WXCOCOA__) |
| 36 | #include "wx/cocoa/dcscreen.h" |
| 37 | #elif defined(__WXPM__) |
| 38 | #include "wx/os2/dcscreen.h" |
| 39 | #endif |
| 40 | |
| 41 | #endif |
| 42 | // _WX_DCSCREEN_H_BASE_ |