]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_FONTDLG_H_BASE_ |
2 | #define _WX_FONTDLG_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f | 5 | #include "wx/msw/fontdlg.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
c801d85f | 7 | #include "wx/generic/fontdlgg.h" |
b4e76e0d | 8 | # define wxFontDialog wxGenericFontDialog |
8cb50e4b | 9 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
2049ba38 | 10 | #elif defined(__WXGTK__) |
c801d85f | 11 | #include "wx/generic/fontdlgg.h" |
d355d3fe | 12 | # define wxFontDialog wxGenericFontDialog |
8cb50e4b | 13 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
b4e76e0d RR |
14 | #elif defined(__WXQT__) |
15 | #include "wx/generic/fontdlgg.h" | |
16 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 17 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
34138703 JS |
18 | #elif defined(__WXMAC__) |
19 | #include "wx/generic/fontdlgg.h" | |
20 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 21 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
1777b9bb DW |
22 | #elif defined(__WXPM__) |
23 | #include "wx/generic/fontdlgg.h" | |
24 | # define wxFontDialog wxGenericFontDialog | |
25 | # define sm_classwxFontDialog sm_classwxGenericFontDialog | |
34138703 JS |
26 | #elif defined(__WXSTUBS__) |
27 | #include "wx/generic/fontdlgg.h" | |
28 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 29 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
c801d85f KB |
30 | #endif |
31 | ||
32 | #endif | |
34138703 | 33 | // _WX_FONTDLG_H_BASE_ |