1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/fontdlg.h
3 // Purpose: wxFontDialog class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MSW_FONTDLG_H_
12 #define _WX_MSW_FONTDLG_H_
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 class WXDLLIMPEXP_CORE wxFontDialog
: public wxFontDialogBase
21 wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
22 wxFontDialog(wxWindow
*parent
)
23 : wxFontDialogBase(parent
) { Create(parent
); }
24 wxFontDialog(wxWindow
*parent
, const wxFontData
& data
)
25 : wxFontDialogBase(parent
, data
) { Create(parent
, data
); }
27 virtual int ShowModal();
29 #if WXWIN_COMPATIBILITY_2_6
30 // deprecated interface, don't use
31 wxDEPRECATED( wxFontDialog(wxWindow
*parent
, const wxFontData
*data
) );
32 #endif // WXWIN_COMPATIBILITY_2_6
35 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog
)
38 #if WXWIN_COMPATIBILITY_2_6
39 // deprecated interface, don't use
40 inline wxFontDialog::wxFontDialog(wxWindow
*parent
, const wxFontData
*data
)
41 : wxFontDialogBase(parent
) { InitFontData(data
); Create(parent
); }
42 #endif // WXWIN_COMPATIBILITY_2_6