]>
Commit | Line | Data |
---|---|---|
dbc65e27 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/fontdlg.h | |
3 | // Purpose: common interface for different wxFontDialog classes | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 12.05.02 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997-2002 wxWindows team | |
371a5b4e | 9 | // Licence: wxWindows licence |
dbc65e27 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_FONTDLG_H_BASE_ |
13 | #define _WX_FONTDLG_H_BASE_ | |
c801d85f | 14 | |
dbc65e27 VZ |
15 | #include "wx/defs.h" // for wxUSE_FONTDLG |
16 | ||
1e6feb95 VZ |
17 | #if wxUSE_FONTDLG |
18 | ||
dbc65e27 VZ |
19 | #include "wx/dialog.h" // the base class |
20 | #include "wx/cmndata.h" // wxFontData | |
21 | ||
22 | // ---------------------------------------------------------------------------- | |
23 | // wxFontDialog interface | |
24 | // ---------------------------------------------------------------------------- | |
25 | ||
26 | class WXDLLEXPORT wxFontDialogBase : public wxDialog | |
27 | { | |
28 | public: | |
29 | // create the font dialog | |
30 | wxFontDialogBase() { } | |
3fde374f VZ |
31 | wxFontDialogBase(wxWindow *parent) { m_parent = parent; } |
32 | wxFontDialogBase(wxWindow *parent, const wxFontData& data) | |
33 | { m_parent = parent; InitFontData(&data); } | |
dbc65e27 VZ |
34 | |
35 | bool Create(wxWindow *parent) | |
36 | { return DoCreate(parent); } | |
37 | bool Create(wxWindow *parent, const wxFontData& data) | |
3fde374f | 38 | { InitFontData(&data); return Create(parent); } |
dbc65e27 VZ |
39 | |
40 | virtual ~wxFontDialogBase(); | |
41 | ||
42 | // retrieve the font data | |
43 | const wxFontData& GetFontData() const { return m_fontData; } | |
44 | wxFontData& GetFontData() { return m_fontData; } | |
45 | ||
46 | // deprecated interface, for compatibility only, don't use | |
47 | wxFontDialogBase(wxWindow *parent, const wxFontData *data) | |
3fde374f | 48 | { m_parent = parent; InitFontData(data); } |
dbc65e27 VZ |
49 | |
50 | bool Create(wxWindow *parent, const wxFontData *data) | |
3fde374f | 51 | { InitFontData(data); return Create(parent); } |
dbc65e27 VZ |
52 | |
53 | protected: | |
54 | virtual bool DoCreate(wxWindow *parent) { m_parent = parent; return TRUE; } | |
55 | ||
3fde374f VZ |
56 | void InitFontData(const wxFontData *data = NULL) |
57 | { if ( data ) m_fontData = *data; } | |
58 | ||
dbc65e27 | 59 | wxFontData m_fontData; |
fc7a2a60 VZ |
60 | |
61 | DECLARE_NO_COPY_CLASS(wxFontDialogBase) | |
dbc65e27 VZ |
62 | }; |
63 | ||
64 | // ---------------------------------------------------------------------------- | |
65 | // platform-specific wxFontDialog implementation | |
66 | // ---------------------------------------------------------------------------- | |
67 | ||
086b3a5b JS |
68 | #if defined(__WXUNIVERSAL__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXCOCOA__) \ |
69 | || defined(__WXWINCE__) | |
dbc65e27 VZ |
70 | #include "wx/generic/fontdlgg.h" |
71 | #define wxFontDialog wxGenericFontDialog | |
4234ea8b | 72 | #elif defined(__WXMSW__) |
dbc65e27 | 73 | #include "wx/msw/fontdlg.h" |
2049ba38 | 74 | #elif defined(__WXGTK__) |
dbc65e27 | 75 | #include "wx/gtk/fontdlg.h" |
1777b9bb | 76 | #elif defined(__WXPM__) |
dbc65e27 | 77 | #include "wx/os2/fontdlg.h" |
c801d85f KB |
78 | #endif |
79 | ||
dbc65e27 VZ |
80 | // ---------------------------------------------------------------------------- |
81 | // global public functions | |
82 | // ---------------------------------------------------------------------------- | |
83 | ||
65d877d2 VZ |
84 | // get the font from user and return it, returns wxNullFont if the dialog was |
85 | // cancelled | |
bf31fa26 VZ |
86 | wxFont WXDLLEXPORT |
87 | wxGetFontFromUser(wxWindow *parent = (wxWindow *)NULL, | |
88 | const wxFont& fontInit = wxNullFont); | |
89 | ||
1e6feb95 VZ |
90 | #endif // wxUSE_FONTDLG |
91 | ||
c801d85f | 92 | #endif |
34138703 | 93 | // _WX_FONTDLG_H_BASE_ |