]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFontDialog
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTK_FONTDLGH__
12 #define __GTK_FONTDLGH__
15 #pragma interface "fontdlg.h"
19 #include "wx/gdicmn.h"
21 #include "wx/dialog.h"
22 #include "wx/cmndata.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 class wxFontDialog
: public wxDialog
38 wxFontDialog( wxWindow
*parent
, wxFontData
*data
= (wxFontData
*) NULL
);
41 wxFontData
& GetFontData() { return m_fontData
; }
44 wxFontData m_fontData
;
47 DECLARE_DYNAMIC_CLASS(wxFontDialog
)