]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e1d63b79 | 2 | // Name: wx/palmos/fontdlg.h |
ffecfa5a | 3 | // Purpose: wxFontDialog class |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PALMOS_FONTDLG_H_ | |
13 | #define _WX_PALMOS_FONTDLG_H_ | |
14 | ||
ffecfa5a JS |
15 | // ---------------------------------------------------------------------------- |
16 | // wxFontDialog | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxFontDialog : public wxFontDialogBase |
ffecfa5a JS |
20 | { |
21 | public: | |
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); } | |
27 | ||
28 | virtual int ShowModal(); | |
29 | ||
ffecfa5a JS |
30 | protected: |
31 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog) | |
32 | }; | |
33 | ||
34 | #endif | |
35 | // _WX_PALMOS_FONTDLG_H_ |