]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class using fonts window services (10.2+).
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FONTDLG_H_
13 #define _WX_FONTDLG_H_
15 #include "wx/dialog.h"
16 #include "wx/cmndata.h"
22 class WXDLLEXPORT wxFontDialog
: public wxDialog
24 DECLARE_DYNAMIC_CLASS(wxFontDialog
)
28 wxFontDialog(wxWindow
*parent
, const wxFontData
& data
);
31 bool Create(wxWindow
*parent
, const wxFontData
& data
);
34 wxFontData
& GetFontData() { return m_fontData
; }
37 void SetData(const wxFontData
& data
);
40 wxWindow
* m_dialogParent
;
41 wxFontData m_fontData
;
42 void* m_pEventHandlerRef
;