]>
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__) |
8636aed8 | 11 | #include "wx/gtk/fontdlg.h" |
b4e76e0d RR |
12 | #elif defined(__WXQT__) |
13 | #include "wx/generic/fontdlgg.h" | |
14 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 15 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
34138703 JS |
16 | #elif defined(__WXMAC__) |
17 | #include "wx/generic/fontdlgg.h" | |
18 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 19 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
1777b9bb DW |
20 | #elif defined(__WXPM__) |
21 | #include "wx/generic/fontdlgg.h" | |
22 | # define wxFontDialog wxGenericFontDialog | |
23 | # define sm_classwxFontDialog sm_classwxGenericFontDialog | |
34138703 JS |
24 | #elif defined(__WXSTUBS__) |
25 | #include "wx/generic/fontdlgg.h" | |
26 | # define wxFontDialog wxGenericFontDialog | |
8cb50e4b | 27 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
c801d85f KB |
28 | #endif |
29 | ||
30 | #endif | |
34138703 | 31 | // _WX_FONTDLG_H_BASE_ |