]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog class. Use generic version if no
4 // platform-specific implementation.
5 // Author: David Webster
9 // Copyright: (c) David Webster
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_FONTDLG_H_
14 #define _WX_FONTDLG_H_
16 #include "wx/dialog.h"
17 #include "wx/cmndata.h"
23 class WXDLLEXPORT wxFontDialog
: public wxDialog
25 DECLARE_DYNAMIC_CLASS(wxFontDialog
)
28 wxFontDialog(wxWindow
*parent
, wxFontData
*data
= NULL
);
30 bool Create(wxWindow
*parent
, wxFontData
*data
= NULL
);
33 wxFontData
& GetFontData() { return m_fontData
; }
36 wxWindow
* m_dialogParent
;
37 wxFontData m_fontData
;