]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class. Use generic version if no
4 // platform-specific implementation.
5 // Author: Stefan Csomor
9 // Copyright: (c) Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_FONTDLG_H_
14 #define _WX_FONTDLG_H_
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma interface "fontdlg.h"
20 #include "wx/dialog.h"
21 #include "wx/cmndata.h"
27 class WXDLLEXPORT wxFontDialog
: public wxDialog
29 DECLARE_DYNAMIC_CLASS(wxFontDialog
)
32 wxFontDialog(wxWindow
*parent
, const wxFontData
& data
);
34 bool Create(wxWindow
*parent
, const wxFontData
& data
);
37 wxFontData
& GetFontData() { return m_fontData
; }
40 wxWindow
* m_dialogParent
;
41 wxFontData m_fontData
;