]>
Commit | Line | Data |
---|---|---|
7cf83330 JS |
1 | #ifndef _WX_DRAGIMAG_H_BASE_ |
2 | #define _WX_DRAGIMAG_H_BASE_ | |
3 | ||
fa8dca8d | 4 | #if wxUSE_DRAGIMAGE |
1e6feb95 | 5 | |
7cf83330 JS |
6 | #if defined(__WXMSW__) |
7 | #ifdef __WIN16__ | |
68be9f09 JS |
8 | #include "wx/generic/dragimgg.h" |
9 | #define wxDragImage wxGenericDragImage | |
10 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
11 | ||
7cf83330 JS |
12 | #else |
13 | #include "wx/msw/dragimag.h" | |
14 | #endif | |
15 | #elif defined(__WXMOTIF__) | |
68be9f09 JS |
16 | #include "wx/generic/dragimgg.h" |
17 | #define wxDragImage wxGenericDragImage | |
18 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
19 | ||
7cf83330 | 20 | #elif defined(__WXGTK__) |
68be9f09 JS |
21 | #include "wx/generic/dragimgg.h" |
22 | #define wxDragImage wxGenericDragImage | |
23 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
24 | ||
7cf83330 | 25 | #elif defined(__WXMAC__) |
68be9f09 JS |
26 | #include "wx/generic/dragimgg.h" |
27 | #define wxDragImage wxGenericDragImage | |
28 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
29 | ||
1777b9bb | 30 | #elif defined(__WXPM__) |
68be9f09 JS |
31 | #include "wx/generic/dragimgg.h" |
32 | #define wxDragImage wxGenericDragImage | |
33 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
34 | ||
7cf83330 | 35 | #elif defined(__WXSTUBS__) |
68be9f09 JS |
36 | #include "wx/generic/dragimgg.h" |
37 | #define wxDragImage wxGenericDragImage | |
38 | #define sm_classwxDragImage sm_classwxGenericDragImage | |
39 | ||
7cf83330 JS |
40 | #endif |
41 | ||
fa8dca8d | 42 | #endif // wxUSE_DRAGIMAGE |
1e6feb95 | 43 | |
7cf83330 JS |
44 | #endif |
45 | // _WX_DRAGIMAG_H_BASE_ |