]> git.saurik.com Git - wxWidgets.git/blob - include/wx/fontdlg.h
first pass of wxUniv merge - nothing works, most parts don't even compile
[wxWidgets.git] / include / wx / fontdlg.h
1 #ifndef _WX_FONTDLG_H_BASE_
2 #define _WX_FONTDLG_H_BASE_
3
4 #if wxUSE_FONTDLG
5
6 #if defined(__WXMSW__)
7 #include "wx/msw/fontdlg.h"
8 #elif defined(__WXMOTIF__)
9 #include "wx/generic/fontdlgg.h"
10 # define wxFontDialog wxGenericFontDialog
11 # define sm_classwxFontDialog sm_classwxGenericFontDialog
12 #elif defined(__WXGTK__)
13 #include "wx/gtk/fontdlg.h"
14 #elif defined(__WXQT__)
15 #include "wx/generic/fontdlgg.h"
16 # define wxFontDialog wxGenericFontDialog
17 # define sm_classwxFontDialog sm_classwxGenericFontDialog
18 #elif defined(__WXMAC__)
19 #include "wx/generic/fontdlgg.h"
20 # define wxFontDialog wxGenericFontDialog
21 # define sm_classwxFontDialog sm_classwxGenericFontDialog
22 #elif defined(__WXPM__)
23 #include "wx/os2/fontdlg.h"
24 #elif defined(__WXSTUBS__)
25 #include "wx/generic/fontdlgg.h"
26 # define wxFontDialog wxGenericFontDialog
27 # define sm_classwxFontDialog sm_classwxGenericFontDialog
28 #endif
29
30 #endif // wxUSE_FONTDLG
31
32 #endif
33 // _WX_FONTDLG_H_BASE_