]>
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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
, const wxFontData
& data
);
35 bool Create(wxWindow
*parent
, const wxFontData
& data
);
38 wxFontData
& GetFontData() { return m_fontData
; }
41 void SetData(wxFontData
& data
);
44 wxWindow
* m_dialogParent
;
45 wxFontData m_fontData
;
46 void* m_pEventHandlerRef
;