]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/font.h | |
3 | // Purpose: wxFontBase class: the interface of wxFont | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 20.09.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWidgets team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_FONT_H_BASE_ | |
13 | #define _WX_FONT_H_BASE_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #include "wx/defs.h" // for wxDEFAULT &c | |
20 | #include "wx/fontenc.h" // the font encoding constants | |
21 | #include "wx/gdiobj.h" // the base class | |
22 | #include "wx/gdicmn.h" // for wxGDIObjListBase | |
23 | ||
24 | // ---------------------------------------------------------------------------- | |
25 | // forward declarations | |
26 | // ---------------------------------------------------------------------------- | |
27 | ||
28 | class WXDLLIMPEXP_FWD_CORE wxFontData; | |
29 | class WXDLLIMPEXP_FWD_CORE wxFontBase; | |
30 | class WXDLLIMPEXP_FWD_CORE wxFont; | |
31 | class WXDLLIMPEXP_FWD_CORE wxSize; | |
32 | ||
33 | // ---------------------------------------------------------------------------- | |
34 | // font constants | |
35 | // ---------------------------------------------------------------------------- | |
36 | ||
37 | // standard font families: these may be used only for the font creation, it | |
38 | // doesn't make sense to query an existing font for its font family as, | |
39 | // especially if the font had been created from a native font description, it | |
40 | // may be unknown | |
41 | enum wxFontFamily | |
42 | { | |
43 | wxFONTFAMILY_DEFAULT = wxDEFAULT, | |
44 | wxFONTFAMILY_DECORATIVE = wxDECORATIVE, | |
45 | wxFONTFAMILY_ROMAN = wxROMAN, | |
46 | wxFONTFAMILY_SCRIPT = wxSCRIPT, | |
47 | wxFONTFAMILY_SWISS = wxSWISS, | |
48 | wxFONTFAMILY_MODERN = wxMODERN, | |
49 | wxFONTFAMILY_TELETYPE = wxTELETYPE, | |
50 | wxFONTFAMILY_MAX, | |
51 | wxFONTFAMILY_UNKNOWN = wxFONTFAMILY_MAX | |
52 | }; | |
53 | ||
54 | // font styles | |
55 | enum wxFontStyle | |
56 | { | |
57 | wxFONTSTYLE_NORMAL = wxNORMAL, | |
58 | wxFONTSTYLE_ITALIC = wxITALIC, | |
59 | wxFONTSTYLE_SLANT = wxSLANT, | |
60 | wxFONTSTYLE_MAX | |
61 | }; | |
62 | ||
63 | // font weights | |
64 | enum wxFontWeight | |
65 | { | |
66 | wxFONTWEIGHT_NORMAL = wxNORMAL, | |
67 | wxFONTWEIGHT_LIGHT = wxLIGHT, | |
68 | wxFONTWEIGHT_BOLD = wxBOLD, | |
69 | wxFONTWEIGHT_MAX | |
70 | }; | |
71 | ||
72 | // the font flag bits for the new font ctor accepting one combined flags word | |
73 | enum wxFontFlag | |
74 | { | |
75 | // no special flags: font with default weight/slant/anti-aliasing | |
76 | wxFONTFLAG_DEFAULT = 0, | |
77 | ||
78 | // slant flags (default: no slant) | |
79 | wxFONTFLAG_ITALIC = 1 << 0, | |
80 | wxFONTFLAG_SLANT = 1 << 1, | |
81 | ||
82 | // weight flags (default: medium) | |
83 | wxFONTFLAG_LIGHT = 1 << 2, | |
84 | wxFONTFLAG_BOLD = 1 << 3, | |
85 | ||
86 | // anti-aliasing flag: force on or off (default: the current system default) | |
87 | wxFONTFLAG_ANTIALIASED = 1 << 4, | |
88 | wxFONTFLAG_NOT_ANTIALIASED = 1 << 5, | |
89 | ||
90 | // underlined/strikethrough flags (default: no lines) | |
91 | wxFONTFLAG_UNDERLINED = 1 << 6, | |
92 | wxFONTFLAG_STRIKETHROUGH = 1 << 7, | |
93 | ||
94 | // the mask of all currently used flags | |
95 | wxFONTFLAG_MASK = wxFONTFLAG_ITALIC | | |
96 | wxFONTFLAG_SLANT | | |
97 | wxFONTFLAG_LIGHT | | |
98 | wxFONTFLAG_BOLD | | |
99 | wxFONTFLAG_ANTIALIASED | | |
100 | wxFONTFLAG_NOT_ANTIALIASED | | |
101 | wxFONTFLAG_UNDERLINED | | |
102 | wxFONTFLAG_STRIKETHROUGH | |
103 | }; | |
104 | ||
105 | // ---------------------------------------------------------------------------- | |
106 | // wxFontBase represents a font object | |
107 | // ---------------------------------------------------------------------------- | |
108 | ||
109 | class WXDLLIMPEXP_FWD_CORE wxNativeFontInfo; | |
110 | ||
111 | class WXDLLIMPEXP_CORE wxFontBase : public wxGDIObject | |
112 | { | |
113 | public: | |
114 | /* | |
115 | derived classes should provide the following ctors: | |
116 | ||
117 | wxFont(); | |
118 | wxFont(const wxString& nativeFontInfoString); | |
119 | wxFont(const wxNativeFontInfo& info); | |
120 | wxFont(int size, | |
121 | wxFontFamily family, | |
122 | wxFontStyle style, | |
123 | wxFontWeight weight, | |
124 | bool underlined = false, | |
125 | const wxString& face = wxEmptyString, | |
126 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
127 | wxFont(const wxSize& pixelSize, | |
128 | wxFontFamily family, | |
129 | wxFontStyle style, | |
130 | wxFontWeight weight, | |
131 | bool underlined = false, | |
132 | const wxString& face = wxEmptyString, | |
133 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
134 | */ | |
135 | ||
136 | // creator function | |
137 | virtual ~wxFontBase(); | |
138 | ||
139 | ||
140 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
141 | // from the font components | |
142 | static wxFont *New( | |
143 | int pointSize, // size of the font in points | |
144 | int family, // see wxFontFamily enum | |
145 | int style, // see wxFontStyle enum | |
146 | int weight, // see wxFontWeight enum | |
147 | bool underlined = false, // not underlined by default | |
148 | const wxString& face = wxEmptyString, // facename | |
149 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) // ISO8859-X, ... | |
150 | { return New(pointSize, (wxFontFamily)family, (wxFontStyle)style, | |
151 | (wxFontWeight)weight, underlined, face, encoding); } | |
152 | ||
153 | // from the font components | |
154 | static wxFont *New( | |
155 | const wxSize& pixelSize, // size of the font in pixels | |
156 | int family, // see wxFontFamily enum | |
157 | int style, // see wxFontStyle enum | |
158 | int weight, // see wxFontWeight enum | |
159 | bool underlined = false, // not underlined by default | |
160 | const wxString& face = wxEmptyString, // facename | |
161 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) // ISO8859-X, ... | |
162 | { return New(pixelSize, (wxFontFamily)family, (wxFontStyle)style, | |
163 | (wxFontWeight)weight, underlined, face, encoding); } | |
164 | #endif | |
165 | ||
166 | // from the font components | |
167 | static wxFont *New( | |
168 | int pointSize, // size of the font in points | |
169 | wxFontFamily family, // see wxFontFamily enum | |
170 | wxFontStyle style, // see wxFontStyle enum | |
171 | wxFontWeight weight, // see wxFontWeight enum | |
172 | bool underlined = false, // not underlined by default | |
173 | const wxString& face = wxEmptyString, // facename | |
174 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); // ISO8859-X, ... | |
175 | ||
176 | // from the font components | |
177 | static wxFont *New( | |
178 | const wxSize& pixelSize, // size of the font in pixels | |
179 | wxFontFamily family, // see wxFontFamily enum | |
180 | wxFontStyle style, // see wxFontStyle enum | |
181 | wxFontWeight weight, // see wxFontWeight enum | |
182 | bool underlined = false, // not underlined by default | |
183 | const wxString& face = wxEmptyString, // facename | |
184 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); // ISO8859-X, ... | |
185 | ||
186 | // from the font components but using the font flags instead of separate | |
187 | // parameters for each flag | |
188 | static wxFont *New(int pointSize, | |
189 | wxFontFamily family, | |
190 | int flags = wxFONTFLAG_DEFAULT, | |
191 | const wxString& face = wxEmptyString, | |
192 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
193 | ||
194 | ||
195 | // from the font components but using the font flags instead of separate | |
196 | // parameters for each flag | |
197 | static wxFont *New(const wxSize& pixelSize, | |
198 | wxFontFamily family, | |
199 | int flags = wxFONTFLAG_DEFAULT, | |
200 | const wxString& face = wxEmptyString, | |
201 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
202 | ||
203 | // from the (opaque) native font description object | |
204 | static wxFont *New(const wxNativeFontInfo& nativeFontDesc); | |
205 | ||
206 | // from the string representation of wxNativeFontInfo | |
207 | static wxFont *New(const wxString& strNativeFontDesc); | |
208 | ||
209 | // comparison | |
210 | bool operator==(const wxFont& font) const; | |
211 | bool operator!=(const wxFont& font) const { return !(*this == font); } | |
212 | ||
213 | // accessors: get the font characteristics | |
214 | virtual int GetPointSize() const = 0; | |
215 | virtual wxSize GetPixelSize() const; | |
216 | virtual bool IsUsingSizeInPixels() const; | |
217 | virtual wxFontFamily GetFamily() const = 0; | |
218 | virtual wxFontStyle GetStyle() const = 0; | |
219 | virtual wxFontWeight GetWeight() const = 0; | |
220 | virtual bool GetUnderlined() const = 0; | |
221 | virtual wxString GetFaceName() const = 0; | |
222 | virtual wxFontEncoding GetEncoding() const = 0; | |
223 | virtual const wxNativeFontInfo *GetNativeFontInfo() const = 0; | |
224 | ||
225 | virtual bool IsFixedWidth() const; | |
226 | ||
227 | wxString GetNativeFontInfoDesc() const; | |
228 | wxString GetNativeFontInfoUserDesc() const; | |
229 | ||
230 | // change the font characteristics | |
231 | virtual void SetPointSize( int pointSize ) = 0; | |
232 | virtual void SetPixelSize( const wxSize& pixelSize ); | |
233 | virtual void SetFamily( wxFontFamily family ) = 0; | |
234 | virtual void SetStyle( wxFontStyle style ) = 0; | |
235 | virtual void SetWeight( wxFontWeight weight ) = 0; | |
236 | ||
237 | virtual void SetUnderlined( bool underlined ) = 0; | |
238 | virtual void SetEncoding(wxFontEncoding encoding) = 0; | |
239 | virtual bool SetFaceName( const wxString& faceName ); | |
240 | void SetNativeFontInfo(const wxNativeFontInfo& info) | |
241 | { DoSetNativeFontInfo(info); } | |
242 | ||
243 | bool SetNativeFontInfo(const wxString& info); | |
244 | bool SetNativeFontInfoUserDesc(const wxString& info); | |
245 | ||
246 | // translate the fonts into human-readable string (i.e. GetStyleString() | |
247 | // will return "wxITALIC" for an italic font, ...) | |
248 | wxString GetFamilyString() const; | |
249 | wxString GetStyleString() const; | |
250 | wxString GetWeightString() const; | |
251 | ||
252 | // Unofficial API, don't use | |
253 | virtual void SetNoAntiAliasing( bool WXUNUSED(no) = true ) { } | |
254 | virtual bool GetNoAntiAliasing() const { return false; } | |
255 | ||
256 | // the default encoding is used for creating all fonts with default | |
257 | // encoding parameter | |
258 | static wxFontEncoding GetDefaultEncoding() { return ms_encodingDefault; } | |
259 | static void SetDefaultEncoding(wxFontEncoding encoding); | |
260 | ||
261 | protected: | |
262 | // the function called by both overloads of SetNativeFontInfo() | |
263 | virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info); | |
264 | ||
265 | private: | |
266 | // the currently default encoding: by default, it's the default system | |
267 | // encoding, but may be changed by the application using | |
268 | // SetDefaultEncoding() to make all subsequent fonts created without | |
269 | // specifying encoding parameter using this encoding | |
270 | static wxFontEncoding ms_encodingDefault; | |
271 | }; | |
272 | ||
273 | // wxFontBase <-> wxString utilities, used by wxConfig | |
274 | WXDLLIMPEXP_CORE wxString wxToString(const wxFontBase& font); | |
275 | WXDLLIMPEXP_CORE bool wxFromString(const wxString& str, wxFontBase* font); | |
276 | ||
277 | ||
278 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
279 | #define wxDECLARE_FONT_COMPAT_SETTER \ | |
280 | wxDEPRECATED_FUTURE( void SetFamily(int family) ) \ | |
281 | { SetFamily((wxFontFamily)family); } \ | |
282 | wxDEPRECATED_FUTURE( void SetStyle(int style) ) \ | |
283 | { SetStyle((wxFontStyle)style); } \ | |
284 | wxDEPRECATED_FUTURE( void SetWeight(int weight) ) \ | |
285 | { SetWeight((wxFontWeight)weight); } \ | |
286 | wxDEPRECATED_FUTURE( void SetFamily(wxDeprecatedGUIConstants family) ) \ | |
287 | { SetFamily((wxFontFamily)family); } \ | |
288 | wxDEPRECATED_FUTURE( void SetStyle(wxDeprecatedGUIConstants style) ) \ | |
289 | { SetStyle((wxFontStyle)style); } \ | |
290 | wxDEPRECATED_FUTURE( void SetWeight(wxDeprecatedGUIConstants weight) ) \ | |
291 | { SetWeight((wxFontWeight)weight); } | |
292 | #else | |
293 | #define wxDECLARE_FONT_COMPAT_SETTER /*empty*/ | |
294 | #endif | |
295 | ||
296 | // this macro must be used in all derived wxFont classes declarations | |
297 | #define wxDECLARE_COMMON_FONT_METHODS() \ | |
298 | wxDECLARE_FONT_COMPAT_SETTER \ | |
299 | \ | |
300 | /* functions for modifying font in place */ \ | |
301 | wxFont& MakeBold(); \ | |
302 | wxFont& MakeItalic(); \ | |
303 | wxFont& MakeLarger() { return Scale(1.2f); } \ | |
304 | wxFont& MakeSmaller() { return Scale(1/1.2f); } \ | |
305 | wxFont& Scale(float x); \ | |
306 | /* functions for creating fonts based on this one */ \ | |
307 | wxFont Bold() const; \ | |
308 | wxFont Italic() const; \ | |
309 | wxFont Larger() const { return Scaled(1.2f); } \ | |
310 | wxFont Smaller() const { return Scaled(1/1.2f); } \ | |
311 | wxFont Scaled(float x) const | |
312 | ||
313 | // include the real class declaration | |
314 | #if defined(__WXPALMOS__) | |
315 | #include "wx/palmos/font.h" | |
316 | #elif defined(__WXMSW__) | |
317 | #include "wx/msw/font.h" | |
318 | #elif defined(__WXMOTIF__) | |
319 | #include "wx/motif/font.h" | |
320 | #elif defined(__WXGTK20__) | |
321 | #include "wx/gtk/font.h" | |
322 | #elif defined(__WXGTK__) | |
323 | #include "wx/gtk1/font.h" | |
324 | #elif defined(__WXX11__) | |
325 | #include "wx/x11/font.h" | |
326 | #elif defined(__WXMGL__) | |
327 | #include "wx/mgl/font.h" | |
328 | #elif defined(__WXDFB__) | |
329 | #include "wx/dfb/font.h" | |
330 | #elif defined(__WXMAC__) | |
331 | #include "wx/osx/font.h" | |
332 | #elif defined(__WXCOCOA__) | |
333 | #include "wx/cocoa/font.h" | |
334 | #elif defined(__WXPM__) | |
335 | #include "wx/os2/font.h" | |
336 | #endif | |
337 | ||
338 | class WXDLLIMPEXP_CORE wxFontList: public wxGDIObjListBase | |
339 | { | |
340 | public: | |
341 | wxFont *FindOrCreateFont(int pointSize, | |
342 | wxFontFamily family, | |
343 | wxFontStyle style, | |
344 | wxFontWeight weight, | |
345 | bool underline = false, | |
346 | const wxString& face = wxEmptyString, | |
347 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
348 | ||
349 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
350 | wxFont *FindOrCreateFont(int pointSize, int family, int style, int weight, | |
351 | bool underline = false, | |
352 | const wxString& face = wxEmptyString, | |
353 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
354 | { return FindOrCreateFont(pointSize, (wxFontFamily)family, (wxFontStyle)style, | |
355 | (wxFontWeight)weight, underline, face, encoding); } | |
356 | #endif | |
357 | ||
358 | #if WXWIN_COMPATIBILITY_2_6 | |
359 | wxDEPRECATED( void AddFont(wxFont*) ); | |
360 | wxDEPRECATED( void RemoveFont(wxFont*) ); | |
361 | #endif | |
362 | }; | |
363 | ||
364 | extern WXDLLIMPEXP_DATA_CORE(wxFontList*) wxTheFontList; | |
365 | ||
366 | ||
367 | // provide comparison operators to allow code such as | |
368 | // | |
369 | // if ( font.GetStyle() == wxFONTSTYLE_SLANT ) | |
370 | // | |
371 | // to compile without warnings which it would otherwise provoke from some | |
372 | // compilers as it compares elements of different enums | |
373 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
374 | ||
375 | inline bool operator==(wxFontFamily s, wxDeprecatedGUIConstants t) | |
376 | { return static_cast<int>(s) == static_cast<int>(t); } | |
377 | inline bool operator!=(wxFontFamily s, wxDeprecatedGUIConstants t) | |
378 | { return !(s == t); } | |
379 | inline bool operator==(wxFontStyle s, wxDeprecatedGUIConstants t) | |
380 | { return static_cast<int>(s) == static_cast<int>(t); } | |
381 | inline bool operator!=(wxFontStyle s, wxDeprecatedGUIConstants t) | |
382 | { return !(s == t); } | |
383 | inline bool operator==(wxFontWeight s, wxDeprecatedGUIConstants t) | |
384 | { return static_cast<int>(s) == static_cast<int>(t); } | |
385 | inline bool operator!=(wxFontWeight s, wxDeprecatedGUIConstants t) | |
386 | { return !(s == t); } | |
387 | ||
388 | #endif // FUTURE_WXWIN_COMPATIBILITY_3_0 | |
389 | ||
390 | #endif | |
391 | // _WX_FONT_H_BASE_ |