1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/fontdlg.h
3 // Purpose: wxFontDialog class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PALMOS_FONTDLG_H_
13 #define _WX_PALMOS_FONTDLG_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_CORE wxFontDialog
: public wxFontDialogBase
22 wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
23 wxFontDialog(wxWindow
*parent
)
24 : wxFontDialogBase(parent
) { Create(parent
); }
25 wxFontDialog(wxWindow
*parent
, const wxFontData
& data
)
26 : wxFontDialogBase(parent
, data
) { Create(parent
, data
); }
28 virtual int ShowModal();
31 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog
)
35 // _WX_PALMOS_FONTDLG_H_