]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_FONTDLG_H_BASE_ |
2 | #define _WX_FONTDLG_H_BASE_ | |
c801d85f | 3 | |
1e6feb95 VZ |
4 | #if wxUSE_FONTDLG |
5 | ||
2049ba38 | 6 | #if defined(__WXMSW__) |
c801d85f | 7 | #include "wx/msw/fontdlg.h" |
2049ba38 | 8 | #elif defined(__WXMOTIF__) |
c801d85f | 9 | #include "wx/generic/fontdlgg.h" |
b4e76e0d | 10 | # define wxFontDialog wxGenericFontDialog |
8cb50e4b | 11 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
2049ba38 | 12 | #elif defined(__WXGTK__) |
8636aed8 | 13 | #include "wx/gtk/fontdlg.h" |
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 | 22 | #elif defined(__WXPM__) |
21802234 | 23 | #include "wx/os2/fontdlg.h" |
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 | ||
1e6feb95 VZ |
30 | #endif // wxUSE_FONTDLG |
31 | ||
c801d85f | 32 | #endif |
34138703 | 33 | // _WX_FONTDLG_H_BASE_ |