]>
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_MSW_FONTDLG_H_
13 #define _WX_MSW_FONTDLG_H_
16 #pragma interface "fontdlg.h"
19 #include "wx/dialog.h"
20 #include "wx/cmndata.h"
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 class WXDLLEXPORT wxFontDialog
: public wxDialog
30 wxFontDialog(wxWindow
*parent
, wxFontData
*data
= NULL
);
32 bool Create(wxWindow
*parent
, wxFontData
*data
= NULL
);
34 virtual int ShowModal();
36 wxFontData
& GetFontData() { return m_fontData
; }
39 wxFontData m_fontData
;
41 DECLARE_DYNAMIC_CLASS(wxFontDialog
)