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