]>
Commit | Line | Data |
---|---|---|
3c1866e8 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/fontmap.h | |
3 | // Purpose: wxFontMapper class | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 04.11.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
371a5b4e | 9 | // Licence: wxWindows licence |
3c1866e8 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FONTMAPPER_H_ | |
13 | #define _WX_FONTMAPPER_H_ | |
14 | ||
3c1866e8 VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
1e6feb95 VZ |
19 | #if wxUSE_FONTMAP |
20 | ||
f6bcfd97 | 21 | #include "wx/fontenc.h" // for wxFontEncoding |
3c1866e8 | 22 | |
1e6feb95 VZ |
23 | #if wxUSE_GUI |
24 | #include "wx/fontutil.h" // for wxNativeEncodingInfo | |
25 | #endif // wxUSE_GUI | |
26 | ||
f1c75e0f | 27 | #if wxUSE_CONFIG && wxUSE_FILECONFIG |
bddd7a8d | 28 | class WXDLLIMPEXP_BASE wxConfigBase; |
f6bcfd97 BP |
29 | #endif // wxUSE_CONFIG |
30 | ||
bddd7a8d | 31 | class WXDLLIMPEXP_BASE wxFontMapper; |
e2478fde | 32 | |
f6bcfd97 | 33 | #if wxUSE_GUI |
bddd7a8d | 34 | class WXDLLIMPEXP_CORE wxWindow; |
f6bcfd97 | 35 | #endif // wxUSE_GUI |
3c1866e8 | 36 | |
e2478fde VZ |
37 | // ============================================================================ |
38 | // wxFontMapper manages user-definable correspondence between wxWindows font | |
39 | // encodings and the fonts present on the machine. | |
3c1866e8 | 40 | // |
e2478fde VZ |
41 | // This is a singleton class, font mapper objects can only be accessed using |
42 | // wxFontMapper::Get(). | |
43 | // ============================================================================ | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // wxFontMapperBase: this is a non-interactive class which just uses its built | |
47 | // in knowledge of the encodings equivalence | |
3c1866e8 VZ |
48 | // ---------------------------------------------------------------------------- |
49 | ||
bddd7a8d | 50 | class WXDLLIMPEXP_BASE wxFontMapperBase |
3c1866e8 VZ |
51 | { |
52 | public: | |
e2478fde VZ |
53 | // constructtor and such |
54 | // --------------------- | |
55 | ||
3c1866e8 | 56 | // default ctor |
e2478fde | 57 | wxFontMapperBase(); |
3c1866e8 | 58 | |
e2478fde VZ |
59 | // virtual dtor for any base class |
60 | virtual ~wxFontMapperBase(); | |
3c1866e8 | 61 | |
142b3bc2 VS |
62 | // return instance of the wxFontMapper singleton |
63 | static wxFontMapper *Get(); | |
e2478fde | 64 | |
f1c75e0f | 65 | // set the singleton to 'mapper' instance and return previous one |
142b3bc2 VS |
66 | static wxFontMapper *Set(wxFontMapper *mapper); |
67 | ||
e2478fde VZ |
68 | // translates charset strings to encoding |
69 | // -------------------------------------- | |
6648cd46 | 70 | |
3c1866e8 VZ |
71 | // returns the encoding for the given charset (in the form of RFC 2046) or |
72 | // wxFONTENCODING_SYSTEM if couldn't decode it | |
e2478fde VZ |
73 | // |
74 | // interactive parameter is ignored in the base class, we behave as if it | |
75 | // were always false | |
3c1866e8 | 76 | virtual wxFontEncoding CharsetToEncoding(const wxString& charset, |
e2478fde VZ |
77 | bool interactive = true); |
78 | ||
e2478fde VZ |
79 | // information about supported encodings |
80 | // ------------------------------------- | |
3c1866e8 | 81 | |
e2478fde VZ |
82 | // get the number of font encodings we know about |
83 | static size_t GetSupportedEncodingsCount(); | |
84 | ||
85 | // get the n-th supported encoding | |
86 | static wxFontEncoding GetEncoding(size_t n); | |
7beba2fc VZ |
87 | |
88 | // return internal string identifier for the encoding (see also | |
89 | // GetEncodingDescription()) | |
90 | static wxString GetEncodingName(wxFontEncoding encoding); | |
91 | ||
92 | // return user-readable string describing the given encoding | |
93 | // | |
94 | // NB: hard-coded now, but might change later (read it from config?) | |
95 | static wxString GetEncodingDescription(wxFontEncoding encoding); | |
96 | ||
3c1866e8 VZ |
97 | |
98 | // functions which allow to configure the config object used: by default, | |
99 | // the global one (from wxConfigBase::Get() will be used) and the default | |
100 | // root path for the config settings is the string returned by | |
101 | // GetDefaultConfigPath() | |
102 | // ---------------------------------------------------------------------- | |
103 | ||
f1c75e0f | 104 | #if wxUSE_CONFIG && wxUSE_FILECONFIG |
3c1866e8 VZ |
105 | // set the config object to use (may be NULL to use default) |
106 | void SetConfig(wxConfigBase *config) { m_config = config; } | |
107 | ||
108 | // set the root config path to use (should be an absolute path) | |
109 | void SetConfigPath(const wxString& prefix); | |
110 | ||
111 | // return default config path | |
112 | static const wxChar *GetDefaultConfigPath(); | |
e2478fde | 113 | #endif // wxUSE_CONFIG |
3c1866e8 | 114 | |
f6bcfd97 | 115 | |
e2478fde | 116 | protected: |
f1c75e0f | 117 | #if wxUSE_CONFIG && wxUSE_FILECONFIG |
e2478fde | 118 | // get the config object we're using -- if it wasn't set explicitly, this |
3c1866e8 VZ |
119 | // function will use wxConfig::Get() to get the global one |
120 | wxConfigBase *GetConfig(); | |
121 | ||
e2478fde | 122 | // gets the root path for our settings -- if it wasn't set explicitly, use |
3c1866e8 VZ |
123 | // GetDefaultConfigPath() |
124 | const wxString& GetConfigPath(); | |
125 | ||
e2478fde VZ |
126 | // change to the given (relative) path in the config, return true if ok |
127 | // (then GetConfig() will return something !NULL), false if no config | |
3c1866e8 VZ |
128 | // object |
129 | // | |
130 | // caller should provide a pointer to the string variable which should be | |
131 | // later passed to RestorePath() | |
132 | bool ChangePath(const wxString& pathNew, wxString *pathOld); | |
133 | ||
134 | // restore the config path after use | |
135 | void RestorePath(const wxString& pathOld); | |
136 | ||
e2478fde VZ |
137 | // config object and path (in it) to use |
138 | wxConfigBase *m_config; | |
139 | bool m_configIsDummy; | |
140 | ||
141 | wxString m_configRootPath; | |
142 | #endif // wxUSE_CONFIG | |
143 | ||
4dc55027 VZ |
144 | // the real implementation of the base class version of CharsetToEncoding() |
145 | // | |
146 | // returns wxFONTENCODING_UNKNOWN if encoding is unknown and we shouldn't | |
147 | // ask the user about it, wxFONTENCODING_SYSTEM if it is unknown but we | |
148 | // should/could ask the user | |
149 | int NonInteractiveCharsetToEncoding(const wxString& charset); | |
150 | ||
e2478fde VZ |
151 | private: |
152 | // the global fontmapper object or NULL | |
153 | static wxFontMapper *sm_instance; | |
154 | ||
155 | friend class wxFontMapperPathChanger; | |
156 | ||
157 | DECLARE_NO_COPY_CLASS(wxFontMapperBase) | |
158 | }; | |
159 | ||
160 | // ---------------------------------------------------------------------------- | |
161 | // wxFontMapper: interactive extension of wxFontMapperBase | |
162 | // | |
163 | // The default implementations of all functions will ask the user if they are | |
164 | // not capable of finding the answer themselves and store the answer in a | |
165 | // config file (configurable via SetConfigXXX functions). This behaviour may | |
166 | // be disabled by giving the value of false to "interactive" parameter. | |
167 | // However, the functions will always consult the config file to allow the | |
168 | // user-defined values override the default logic and there is no way to | |
169 | // disable this -- which shouldn't be ever needed because if "interactive" was | |
170 | // never true, the config file is never created anyhow. | |
171 | // ---------------------------------------------------------------------------- | |
172 | ||
f6bcfd97 | 173 | #if wxUSE_GUI |
e2478fde | 174 | |
bddd7a8d | 175 | class WXDLLIMPEXP_CORE wxFontMapper : public wxFontMapperBase |
e2478fde VZ |
176 | { |
177 | public: | |
178 | // default ctor | |
179 | wxFontMapper(); | |
180 | ||
181 | // virtual dtor for a base class | |
182 | virtual ~wxFontMapper(); | |
183 | ||
184 | // working with the encodings | |
185 | // -------------------------- | |
186 | ||
187 | // returns the encoding for the given charset (in the form of RFC 2046) or | |
188 | // wxFONTENCODING_SYSTEM if couldn't decode it | |
189 | virtual wxFontEncoding CharsetToEncoding(const wxString& charset, | |
190 | bool interactive = true); | |
191 | ||
192 | // find an alternative for the given encoding (which is supposed to not be | |
193 | // available on this system). If successful, return true and fill info | |
194 | // structure with the parameters required to create the font, otherwise | |
195 | // return false | |
196 | virtual bool GetAltForEncoding(wxFontEncoding encoding, | |
197 | wxNativeEncodingInfo *info, | |
198 | const wxString& facename = wxEmptyString, | |
199 | bool interactive = true); | |
200 | ||
201 | // version better suitable for 'public' use. Returns wxFontEcoding | |
202 | // that can be used it wxFont ctor | |
203 | bool GetAltForEncoding(wxFontEncoding encoding, | |
204 | wxFontEncoding *alt_encoding, | |
205 | const wxString& facename = wxEmptyString, | |
206 | bool interactive = true); | |
207 | ||
208 | // checks whether given encoding is available in given face or not. | |
209 | // If no facename is given, | |
210 | virtual bool IsEncodingAvailable(wxFontEncoding encoding, | |
211 | const wxString& facename = wxEmptyString); | |
212 | ||
213 | ||
214 | // configure the appearance of the dialogs we may popup | |
215 | // ---------------------------------------------------- | |
216 | ||
217 | // the parent window for modal dialogs | |
218 | void SetDialogParent(wxWindow *parent) { m_windowParent = parent; } | |
219 | ||
220 | // the title for the dialogs (note that default is quite reasonable) | |
221 | void SetDialogTitle(const wxString& title) { m_titleDialog = title; } | |
222 | ||
223 | ||
224 | protected: | |
7beba2fc VZ |
225 | // GetAltForEncoding() helper: tests for the existence of the given |
226 | // encoding and saves the result in config if ok - this results in the | |
227 | // following (desired) behaviour: when an unknown/unavailable encoding is | |
228 | // requested for the first time, the user is asked about a replacement, | |
229 | // but if he doesn't choose any and the default logic finds one, it will | |
230 | // be saved in the config so that the user won't be asked about it any | |
231 | // more | |
232 | bool TestAltEncoding(const wxString& configEntry, | |
233 | wxFontEncoding encReplacement, | |
234 | wxNativeEncodingInfo *info); | |
235 | ||
3c1866e8 VZ |
236 | // the title for our dialogs |
237 | wxString m_titleDialog; | |
238 | ||
239 | // the parent window for our dialogs | |
240 | wxWindow *m_windowParent; | |
7beba2fc | 241 | |
142b3bc2 | 242 | private: |
22f3361e | 243 | DECLARE_NO_COPY_CLASS(wxFontMapper) |
3c1866e8 VZ |
244 | }; |
245 | ||
e2478fde VZ |
246 | #else // !wxUSE_GUI |
247 | ||
bddd7a8d | 248 | class WXDLLIMPEXP_BASE wxFontMapper : public wxFontMapperBase |
e2478fde VZ |
249 | { |
250 | }; | |
251 | ||
252 | #endif // wxUSE_GUI/!wxUSE_GUI | |
253 | ||
7beba2fc VZ |
254 | // ---------------------------------------------------------------------------- |
255 | // global variables | |
256 | // ---------------------------------------------------------------------------- | |
257 | ||
e2478fde VZ |
258 | // the default font mapper for wxWindows programs do NOT use! This is for |
259 | // backward compatibility, use wxFontMapper::Get() instead | |
142b3bc2 | 260 | #define wxTheFontMapper (wxFontMapper::Get()) |
7beba2fc | 261 | |
adf9e099 VZ |
262 | #else // !wxUSE_FONTMAP |
263 | ||
264 | #if wxUSE_GUI | |
265 | // wxEncodingToCodepage (utils.cpp) needs wxGetNativeFontEncoding | |
392c7148 | 266 | #include "wx/fontutil.h" |
adf9e099 VZ |
267 | #endif |
268 | ||
269 | #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP | |
1e6feb95 | 270 | |
3c1866e8 | 271 | #endif // _WX_FONTMAPPER_H_ |
e2478fde | 272 |