]>
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 wxFontDialogBase
26 wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
27 wxFontDialog (wxWindow
* pParent
) : wxFontDialogBase(pParent
) { Create(pParent
); }
28 wxFontDialog( wxWindow
* pParent
29 ,const wxFontData
& rData
31 : wxFontDialogBase( pParent
40 virtual int ShowModal();
43 // Deprecated interface, don't use
45 wxFontDialog( wxWindow
* pParent
46 ,const wxFontData
* pData
48 : wxFontDialogBase( pParent
57 DECLARE_DYNAMIC_CLASS(wxFontDialog
)
58 }; // end of CLASS wxFontDialog