]>
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FONTDLG_H_
13 #define _WX_FONTDLG_H_
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
)
32 wxFontDialog(wxWindow
*parent
, wxFontData
*data
= NULL
);
34 bool Create(wxWindow
*parent
, wxFontData
*data
= NULL
);
37 wxFontData
& GetFontData(void) { return m_fontData
; }
40 wxWindow
*m_dialogParent
;
41 wxFontData m_fontData
;