]>
Commit | Line | Data |
---|---|---|
6762286d | 1 | ///////////////////////////////////////////////////////////////////////////// |
233f5738 | 2 | // Name: wx/osx/fontdlg.h |
6762286d SC |
3 | // Purpose: wxFontDialog class using fonts window services (10.2+). |
4 | // Author: Ryan Norton | |
5 | // Modified by: | |
6 | // Created: 2004-09-25 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Ryan Norton | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_FONTDLG_H_ | |
13 | #define _WX_FONTDLG_H_ | |
14 | ||
15 | #include "wx/dialog.h" | |
6762286d SC |
16 | |
17 | /* | |
18 | * Font dialog | |
19 | */ | |
20 | ||
21 | /* | |
22 | * support old notation | |
23 | */ | |
24 | #ifdef wxMAC_USE_EXPERIMENTAL_FONTDIALOG | |
25 | #define wxOSX_USE_EXPERIMENTAL_FONTDIALOG wxMAC_USE_EXPERIMENTAL_FONTDIALOG | |
5c6eb3a8 | 26 | #endif |
6762286d SC |
27 | |
28 | #ifndef wxOSX_USE_EXPERIMENTAL_FONTDIALOG | |
29 | #define wxOSX_USE_EXPERIMENTAL_FONTDIALOG 1 | |
30 | #endif | |
31 | ||
32 | #if wxOSX_USE_EXPERIMENTAL_FONTDIALOG | |
33 | ||
34 | class WXDLLIMPEXP_CORE wxFontDialog : public wxDialog | |
35 | { | |
36 | public: | |
37 | wxFontDialog(); | |
d05ff890 | 38 | wxFontDialog(wxWindow *parent); |
6762286d SC |
39 | wxFontDialog(wxWindow *parent, const wxFontData& data); |
40 | virtual ~wxFontDialog(); | |
41 | ||
d05ff890 | 42 | bool Create(wxWindow *parent); |
6762286d SC |
43 | bool Create(wxWindow *parent, const wxFontData& data); |
44 | ||
45 | int ShowModal(); | |
46 | wxFontData& GetFontData() { return m_fontData; } | |
47 | ||
48 | protected: | |
49 | wxFontData m_fontData; | |
50 | ||
51 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog) | |
52 | }; | |
53 | ||
54 | extern "C" int RunMixedFontDialog(wxFontDialog* dialog) ; | |
55 | ||
56 | #else // wxOSX_USE_EXPERIMENTAL_FONTDIALOG | |
57 | ||
58 | #if !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
59 | ||
60 | /*! | |
61 | * Forward declarations | |
62 | */ | |
63 | ||
64 | class wxFontColourSwatchCtrl; | |
65 | class wxFontPreviewCtrl; | |
66 | class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; | |
67 | class WXDLLIMPEXP_FWD_CORE wxSpinEvent; | |
68 | class WXDLLIMPEXP_FWD_CORE wxListBox; | |
69 | class WXDLLIMPEXP_FWD_CORE wxChoice; | |
70 | class WXDLLIMPEXP_FWD_CORE wxButton; | |
71 | class WXDLLIMPEXP_FWD_CORE wxStaticText; | |
72 | class WXDLLIMPEXP_FWD_CORE wxCheckBox; | |
73 | ||
74 | /*! | |
75 | * Control identifiers | |
76 | */ | |
77 | ||
78 | #define wxID_FONTDIALOG_FACENAME 20001 | |
79 | #define wxID_FONTDIALOG_FONTSIZE 20002 | |
80 | #define wxID_FONTDIALOG_BOLD 20003 | |
81 | #define wxID_FONTDIALOG_ITALIC 20004 | |
82 | #define wxID_FONTDIALOG_UNDERLINED 20005 | |
83 | #define wxID_FONTDIALOG_COLOUR 20006 | |
84 | #define wxID_FONTDIALOG_PREVIEW 20007 | |
85 | ||
86 | #endif | |
87 | // !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
88 | ||
89 | class WXDLLIMPEXP_CORE wxFontDialog: public wxDialog | |
90 | { | |
91 | DECLARE_DYNAMIC_CLASS(wxFontDialog) | |
92 | ||
93 | #if !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
94 | DECLARE_EVENT_TABLE() | |
95 | #endif | |
96 | ||
97 | public: | |
98 | wxFontDialog(); | |
99 | wxFontDialog(wxWindow *parent, const wxFontData& data); | |
100 | virtual ~wxFontDialog(); | |
101 | ||
102 | bool Create(wxWindow *parent, const wxFontData& data); | |
103 | ||
104 | int ShowModal(); | |
105 | wxFontData& GetFontData() { return m_fontData; } | |
106 | bool IsShown() const; | |
107 | void OnPanelClose(); | |
108 | void SetData(const wxFontData& data); | |
109 | ||
110 | #if !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
111 | ||
112 | /// Creates the controls and sizers | |
113 | void CreateControls(); | |
114 | ||
115 | /// Initialize font | |
116 | void InitializeFont(); | |
117 | ||
118 | /// Set controls according to current font | |
119 | void InitializeControls(); | |
120 | ||
121 | /// Respond to font change | |
122 | void ChangeFont(); | |
123 | ||
124 | /// Respond to colour change | |
125 | void OnColourChanged(wxCommandEvent& event); | |
126 | ||
ce7fe42e | 127 | /// wxEVT_LISTBOX event handler for wxID_FONTDIALOG_FACENAME |
6762286d SC |
128 | void OnFontdialogFacenameSelected( wxCommandEvent& event ); |
129 | ||
ce7fe42e | 130 | /// wxEVT_SPINCTRL event handler for wxID_FONTDIALOG_FONTSIZE |
6762286d SC |
131 | void OnFontdialogFontsizeUpdated( wxSpinEvent& event ); |
132 | ||
ce7fe42e | 133 | /// wxEVT_TEXT event handler for wxID_FONTDIALOG_FONTSIZE |
6762286d SC |
134 | void OnFontdialogFontsizeTextUpdated( wxCommandEvent& event ); |
135 | ||
ce7fe42e | 136 | /// wxEVT_CHECKBOX event handler for wxID_FONTDIALOG_BOLD |
6762286d SC |
137 | void OnFontdialogBoldClick( wxCommandEvent& event ); |
138 | ||
ce7fe42e | 139 | /// wxEVT_CHECKBOX event handler for wxID_FONTDIALOG_ITALIC |
6762286d SC |
140 | void OnFontdialogItalicClick( wxCommandEvent& event ); |
141 | ||
ce7fe42e | 142 | /// wxEVT_CHECKBOX event handler for wxID_FONTDIALOG_UNDERLINED |
6762286d SC |
143 | void OnFontdialogUnderlinedClick( wxCommandEvent& event ); |
144 | ||
ce7fe42e | 145 | /// wxEVT_BUTTON event handler for wxID_OK |
6762286d SC |
146 | void OnOkClick( wxCommandEvent& event ); |
147 | ||
148 | /// Should we show tooltips? | |
149 | static bool ShowToolTips(); | |
150 | ||
151 | wxListBox* m_facenameCtrl; | |
152 | wxSpinCtrl* m_sizeCtrl; | |
153 | wxCheckBox* m_boldCtrl; | |
154 | wxCheckBox* m_italicCtrl; | |
155 | wxCheckBox* m_underlinedCtrl; | |
156 | wxFontColourSwatchCtrl* m_colourCtrl; | |
157 | wxFontPreviewCtrl* m_previewCtrl; | |
158 | ||
159 | wxFont m_dialogFont; | |
160 | bool m_suppressUpdates; | |
161 | ||
162 | #endif | |
163 | // !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
164 | ||
165 | protected: | |
166 | wxWindow* m_dialogParent; | |
167 | wxFontData m_fontData; | |
168 | void* m_pEventHandlerRef; | |
169 | }; | |
170 | ||
171 | #endif | |
172 | ||
173 | #endif | |
174 | // _WX_FONTDLG_H_ |