| 1 | #ifndef _WX_FONTDLG_H_BASE_ |
| 2 | #define _WX_FONTDLG_H_BASE_ |
| 3 | |
| 4 | #if defined(__WXMSW__) |
| 5 | #include "wx/msw/fontdlg.h" |
| 6 | #elif defined(__WXMOTIF__) |
| 7 | #include "wx/generic/fontdlgg.h" |
| 8 | # define wxFontDialog wxGenericFontDialog |
| 9 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
| 10 | #elif defined(__WXGTK__) |
| 11 | #include "wx/gtk/fontdlg.h" |
| 12 | #elif defined(__WXQT__) |
| 13 | #include "wx/generic/fontdlgg.h" |
| 14 | # define wxFontDialog wxGenericFontDialog |
| 15 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
| 16 | #elif defined(__WXMAC__) |
| 17 | #include "wx/generic/fontdlgg.h" |
| 18 | # define wxFontDialog wxGenericFontDialog |
| 19 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
| 20 | #elif defined(__WXPM__) |
| 21 | #include "wx/os2/fontdlg.h" |
| 22 | #elif defined(__WXSTUBS__) |
| 23 | #include "wx/generic/fontdlgg.h" |
| 24 | # define wxFontDialog wxGenericFontDialog |
| 25 | # define sm_classwxFontDialog sm_classwxGenericFontDialog |
| 26 | #endif |
| 27 | |
| 28 | #endif |
| 29 | // _WX_FONTDLG_H_BASE_ |