]>
Commit | Line | Data |
---|---|---|
d9317fd4 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/metafile.h | |
3 | // Purpose: wxMetaFile class declaration | |
77ffb593 | 4 | // Author: wxWidgets team |
d9317fd4 VZ |
5 | // Modified by: |
6 | // Created: 13.01.00 | |
7 | // RCS-ID: $Id$ | |
77ffb593 | 8 | // Copyright: (c) wxWidgets team |
65571936 | 9 | // Licence: wxWindows licence |
d9317fd4 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_METAFILE_H_BASE_ |
13 | #define _WX_METAFILE_H_BASE_ | |
c801d85f | 14 | |
f2555abd MW |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_METAFILE | |
18 | ||
d9317fd4 VZ |
19 | // provide synonyms for all metafile classes |
20 | #define wxMetaFile wxMetafile | |
21 | #define wxMetaFileDC wxMetafileDC | |
22 | #define wxMetaFileDataObject wxMetafileDataObject | |
23 | ||
24 | #define wxMakeMetaFilePlaceable wxMakeMetafilePlaceable | |
25 | ||
2049ba38 | 26 | #if defined(__WXMSW__) |
3a5bcc4d | 27 | #if wxUSE_ENH_METAFILE |
4055ed82 | 28 | #if defined(__WXPALMOS__) |
ffecfa5a JS |
29 | #include "wx/palmos/enhmeta.h" |
30 | #else | |
547ceb38 | 31 | #include "wx/msw/enhmeta.h" |
ffecfa5a | 32 | #endif |
d9317fd4 | 33 | |
547ceb38 VZ |
34 | #if wxUSE_WIN_METAFILES_ALWAYS |
35 | // use normal metafiles as well | |
36 | #include "wx/msw/metafile.h" | |
37 | #else // also map all metafile classes to enh metafile | |
d9317fd4 VZ |
38 | typedef wxEnhMetaFile wxMetafile; |
39 | typedef wxEnhMetaFileDC wxMetafileDC; | |
547ceb38 VZ |
40 | #if wxUSE_DRAG_AND_DROP |
41 | typedef wxEnhMetaFileDataObject wxMetafileDataObject; | |
42 | #endif | |
43 | ||
d9317fd4 VZ |
44 | // this flag will be set if wxMetafile class is wxEnhMetaFile |
45 | #define wxMETAFILE_IS_ENH | |
46 | #endif // wxUSE_WIN_METAFILES_ALWAYS | |
3a5bcc4d | 47 | #else // !wxUSE_ENH_METAFILE |
4055ed82 | 48 | #if defined(__WXPALMOS__) |
ffecfa5a JS |
49 | #include "wx/palmos/metafile.h" |
50 | #else | |
547ceb38 VZ |
51 | #include "wx/msw/metafile.h" |
52 | #endif | |
ffecfa5a | 53 | #endif |
d9317fd4 VZ |
54 | #elif defined(__WXPM__) |
55 | #include "wx/os2/metafile.h" | |
a02bb143 SC |
56 | #elif defined(__WXMAC__) |
57 | #include "wx/mac/metafile.h" | |
1777b9bb | 58 | #endif |
c801d85f | 59 | |
f2555abd | 60 | #endif // wxUSE_METAFILE |
547ceb38 VZ |
61 | |
62 | #endif // _WX_METAFILE_H_BASE_ |