]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "fontdlg.h"
19 #include "wx/dialog.h"
20 #include "wx/cmndata.h"
26 class WXDLLEXPORT wxFontDialog
: public wxDialog
28 DECLARE_DYNAMIC_CLASS(wxFontDialog
)
30 wxWindow
*dialogParent
;
34 wxFontDialog(wxWindow
*parent
, wxFontData
*data
= NULL
);
36 bool Create(wxWindow
*parent
, wxFontData
*data
= NULL
);
39 wxFontData
& GetFontData(void) { return fontData
; }