]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | #ifndef __FONTDLGH_BASE__ |
2 | #define __FONTDLGH_BASE__ | |
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 RR |
8 | # define wxFontDialog wxGenericFontDialog |
9 | # define classwxFontDialog classwxGenericFontDialog | |
2049ba38 | 10 | #elif defined(__WXGTK__) |
c801d85f | 11 | #include "wx/generic/fontdlgg.h" |
d355d3fe RR |
12 | # define wxFontDialog wxGenericFontDialog |
13 | # define classwxFontDialog classwxGenericFontDialog | |
b4e76e0d RR |
14 | #elif defined(__WXQT__) |
15 | #include "wx/generic/fontdlgg.h" | |
16 | # define wxFontDialog wxGenericFontDialog | |
17 | # define classwxFontDialog classwxGenericFontDialog | |
c801d85f KB |
18 | #endif |
19 | ||
20 | #endif | |
21 | // __FONTDLGH_BASE__ |