]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/stubs/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class
8 // Copyright: (c) AUTHOR
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
)
31 wxFontDialog(wxWindow
*parent
, wxFontData
*data
= NULL
);
33 bool Create(wxWindow
*parent
, wxFontData
*data
= NULL
);
36 wxFontData
& GetFontData() { return m_fontData
; }
39 wxWindow
* m_dialogParent
;
40 wxFontData m_fontData
;