]>
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$ | |
77ffb593 | 8 | // Copyright: (c) 1997-2002 wxWidgets team |
65571936 | 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 | ||
ca3e85cf | 46 | #if WXWIN_COMPATIBILITY_2_6 |
dbc65e27 | 47 | // deprecated interface, for compatibility only, don't use |
ca3e85cf | 48 | wxDEPRECATED( wxFontDialogBase(wxWindow *parent, const wxFontData *data) ); |
dbc65e27 | 49 | |
ca3e85cf WS |
50 | wxDEPRECATED( bool Create(wxWindow *parent, const wxFontData *data) ); |
51 | #endif // WXWIN_COMPATIBILITY_2_6 | |
dbc65e27 VZ |
52 | |
53 | protected: | |
a62848fd | 54 | virtual bool DoCreate(wxWindow *parent) { m_parent = parent; return true; } |
dbc65e27 | 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 | ||
ca3e85cf WS |
64 | #if WXWIN_COMPATIBILITY_2_6 |
65 | // deprecated interface, for compatibility only, don't use | |
66 | inline wxFontDialogBase::wxFontDialogBase(wxWindow *parent, const wxFontData *data) | |
67 | { m_parent = parent; InitFontData(data); } | |
68 | ||
69 | inline bool wxFontDialogBase::Create(wxWindow *parent, const wxFontData *data) | |
70 | { InitFontData(data); return Create(parent); } | |
71 | #endif // WXWIN_COMPATIBILITY_2_6 | |
72 | ||
dbc65e27 VZ |
73 | // ---------------------------------------------------------------------------- |
74 | // platform-specific wxFontDialog implementation | |
75 | // ---------------------------------------------------------------------------- | |
76 | ||
356c775f RN |
77 | #if defined( __WXMAC_OSX__ ) && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 ) |
78 | //set to 1 to use native mac font and color dialogs | |
fde692b5 | 79 | #define USE_NATIVE_FONT_DIALOG_FOR_MACOSX 0 |
356c775f RN |
80 | #else |
81 | //not supported on these platforms, leave 0 | |
82 | #define USE_NATIVE_FONT_DIALOG_FOR_MACOSX 0 | |
83 | #endif | |
fde692b5 | 84 | |
d22004c4 WS |
85 | #if defined(__WXUNIVERSAL__) || \ |
86 | defined(__WXMOTIF__) || \ | |
d22004c4 WS |
87 | defined(__WXCOCOA__) || \ |
88 | defined(__WXWINCE__) || \ | |
89 | defined(__WXGPE__) | |
90 | ||
dbc65e27 VZ |
91 | #include "wx/generic/fontdlgg.h" |
92 | #define wxFontDialog wxGenericFontDialog | |
4234ea8b | 93 | #elif defined(__WXMSW__) |
dbc65e27 | 94 | #include "wx/msw/fontdlg.h" |
1be7a35c | 95 | #elif defined(__WXGTK20__) |
dbc65e27 | 96 | #include "wx/gtk/fontdlg.h" |
1be7a35c MR |
97 | #elif defined(__WXGTK__) |
98 | #include "wx/gtk1/fontdlg.h" | |
1777b9bb | 99 | #elif defined(__WXPM__) |
dbc65e27 | 100 | #include "wx/os2/fontdlg.h" |
10dc1363 RN |
101 | #elif defined(__WXMAC__) |
102 | #include "wx/mac/fontdlg.h" | |
c801d85f KB |
103 | #endif |
104 | ||
dbc65e27 VZ |
105 | // ---------------------------------------------------------------------------- |
106 | // global public functions | |
107 | // ---------------------------------------------------------------------------- | |
108 | ||
65d877d2 VZ |
109 | // get the font from user and return it, returns wxNullFont if the dialog was |
110 | // cancelled | |
bf31fa26 VZ |
111 | wxFont WXDLLEXPORT |
112 | wxGetFontFromUser(wxWindow *parent = (wxWindow *)NULL, | |
f14d6dd1 | 113 | const wxFont& fontInit = wxNullFont, const wxString& caption = wxEmptyString); |
bf31fa26 | 114 | |
1e6feb95 VZ |
115 | #endif // wxUSE_FONTDLG |
116 | ||
c801d85f | 117 | #endif |
34138703 | 118 | // _WX_FONTDLG_H_BASE_ |