]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/fontdlg.h
2114a3f55a4e1ef2979b72187e4380ae0ce0c883
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_FONTDLG_H_
13 #define _WX_MSW_FONTDLG_H_
16 #pragma interface "fontdlg.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxFontDialog
: public wxFontDialogBase
26 wxFontDialog() : wxFontDialogBase() { }
27 wxFontDialog(wxWindow
*parent
) : wxFontDialogBase(parent
) { }
28 wxFontDialog(wxWindow
*parent
, const wxFontData
& data
)
29 : wxFontDialogBase(parent
, data
) { }
31 virtual int ShowModal();
34 wxFontDialog(wxWindow
*parent
, wxFontData
*data
)
35 : wxFontDialogBase(parent
, data
) { }
38 DECLARE_DYNAMIC_CLASS(wxFontDialog
)