]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: font.h | |
e54c96f1 | 3 | // Purpose: interface of wxFont |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
0b70c946 FM |
9 | |
10 | /** | |
11 | Standard font families: these may be used only for the font creation, it | |
12 | doesn't make sense to query an existing font for its font family as, | |
13 | especially if the font had been created from a native font description, it | |
14 | may be unknown. | |
15 | */ | |
16 | enum wxFontFamily | |
17 | { | |
18 | wxFONTFAMILY_DEFAULT = wxDEFAULT, //!< Chooses a default font. | |
19 | wxFONTFAMILY_DECORATIVE = wxDECORATIVE, //!< A decorative font. | |
20 | wxFONTFAMILY_ROMAN = wxROMAN, //!< A formal, serif font. | |
21 | wxFONTFAMILY_SCRIPT = wxSCRIPT, //!< A handwriting font. | |
22 | wxFONTFAMILY_SWISS = wxSWISS, //!< A sans-serif font. | |
23 | wxFONTFAMILY_MODERN = wxMODERN, //!< A fixed pitch font. | |
24 | wxFONTFAMILY_TELETYPE = wxTELETYPE, //!< A teletype font. | |
25 | wxFONTFAMILY_MAX, | |
26 | wxFONTFAMILY_UNKNOWN = wxFONTFAMILY_MAX | |
27 | }; | |
28 | ||
29 | /** | |
30 | Font styles. | |
31 | */ | |
32 | enum wxFontStyle | |
33 | { | |
34 | wxFONTSTYLE_NORMAL = wxNORMAL, | |
35 | wxFONTSTYLE_ITALIC = wxITALIC, | |
36 | wxFONTSTYLE_SLANT = wxSLANT, | |
37 | wxFONTSTYLE_MAX | |
38 | }; | |
39 | ||
40 | /** | |
41 | Font weights. | |
42 | */ | |
43 | enum wxFontWeight | |
44 | { | |
45 | wxFONTWEIGHT_NORMAL = wxNORMAL, //!< Normal font. | |
46 | wxFONTWEIGHT_LIGHT = wxLIGHT, //!< Light font. | |
47 | wxFONTWEIGHT_BOLD = wxBOLD, //!< Bold font. | |
48 | wxFONTWEIGHT_MAX | |
49 | }; | |
50 | ||
51 | /** | |
52 | The font flag bits for the new font ctor accepting one combined flags word. | |
53 | */ | |
54 | enum wxFontFlag | |
55 | { | |
56 | /// no special flags: font with default weight/slant/anti-aliasing | |
57 | wxFONTFLAG_DEFAULT = 0, | |
58 | ||
59 | /// slant flags (default: no slant) | |
60 | wxFONTFLAG_ITALIC = 1 << 0, | |
61 | wxFONTFLAG_SLANT = 1 << 1, | |
62 | ||
63 | /// weight flags (default: medium) | |
64 | wxFONTFLAG_LIGHT = 1 << 2, | |
65 | wxFONTFLAG_BOLD = 1 << 3, | |
66 | ||
67 | /// anti-aliasing flag: force on or off (default: the current system default) | |
68 | wxFONTFLAG_ANTIALIASED = 1 << 4, | |
69 | wxFONTFLAG_NOT_ANTIALIASED = 1 << 5, | |
70 | ||
71 | /// underlined/strikethrough flags (default: no lines) | |
72 | wxFONTFLAG_UNDERLINED = 1 << 6, | |
73 | wxFONTFLAG_STRIKETHROUGH = 1 << 7, | |
74 | ||
75 | /// the mask of all currently used flags | |
76 | wxFONTFLAG_MASK = wxFONTFLAG_ITALIC | | |
77 | wxFONTFLAG_SLANT | | |
78 | wxFONTFLAG_LIGHT | | |
79 | wxFONTFLAG_BOLD | | |
80 | wxFONTFLAG_ANTIALIASED | | |
81 | wxFONTFLAG_NOT_ANTIALIASED | | |
82 | wxFONTFLAG_UNDERLINED | | |
83 | wxFONTFLAG_STRIKETHROUGH | |
84 | }; | |
85 | ||
86 | ||
87 | ||
88 | /** | |
89 | Font encodings. | |
90 | */ | |
91 | enum wxFontEncoding | |
92 | { | |
93 | /// Default system encoding. | |
94 | wxFONTENCODING_SYSTEM = -1, // system default | |
95 | ||
96 | /// Default application encoding. | |
97 | wxFONTENCODING_DEFAULT, // current default encoding | |
98 | ||
99 | // ISO8859 standard defines a number of single-byte charsets | |
9a6fda22 FM |
100 | wxFONTENCODING_ISO8859_1, //!< West European (Latin1) |
101 | wxFONTENCODING_ISO8859_2, //!< Central and East European (Latin2) | |
102 | wxFONTENCODING_ISO8859_3, //!< Esperanto (Latin3) | |
103 | wxFONTENCODING_ISO8859_4, //!< Baltic (old) (Latin4) | |
104 | wxFONTENCODING_ISO8859_5, //!< Cyrillic | |
105 | wxFONTENCODING_ISO8859_6, //!< Arabic | |
106 | wxFONTENCODING_ISO8859_7, //!< Greek | |
107 | wxFONTENCODING_ISO8859_8, //!< Hebrew | |
108 | wxFONTENCODING_ISO8859_9, //!< Turkish (Latin5) | |
109 | wxFONTENCODING_ISO8859_10, //!< Variation of Latin4 (Latin6) | |
110 | wxFONTENCODING_ISO8859_11, //!< Thai | |
111 | wxFONTENCODING_ISO8859_12, //!< doesn't exist currently, but put it | |
112 | //!< here anyhow to make all ISO8859 | |
113 | //!< consecutive numbers | |
114 | wxFONTENCODING_ISO8859_13, //!< Baltic (Latin7) | |
115 | wxFONTENCODING_ISO8859_14, //!< Latin8 | |
116 | wxFONTENCODING_ISO8859_15, //!< Latin9 (a.k.a. Latin0, includes euro) | |
0b70c946 FM |
117 | wxFONTENCODING_ISO8859_MAX, |
118 | ||
119 | // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html) | |
9a6fda22 FM |
120 | wxFONTENCODING_KOI8, //!< KOI8 Russian |
121 | wxFONTENCODING_KOI8_U, //!< KOI8 Ukrainian | |
122 | wxFONTENCODING_ALTERNATIVE, //!< same as MS-DOS CP866 | |
123 | wxFONTENCODING_BULGARIAN, //!< used under Linux in Bulgaria | |
0b70c946 FM |
124 | |
125 | // what would we do without Microsoft? They have their own encodings | |
126 | // for DOS | |
9a6fda22 FM |
127 | wxFONTENCODING_CP437, //!< original MS-DOS codepage |
128 | wxFONTENCODING_CP850, //!< CP437 merged with Latin1 | |
129 | wxFONTENCODING_CP852, //!< CP437 merged with Latin2 | |
130 | wxFONTENCODING_CP855, //!< another cyrillic encoding | |
131 | wxFONTENCODING_CP866, //!< and another one | |
0b70c946 | 132 | // and for Windows |
9a6fda22 FM |
133 | wxFONTENCODING_CP874, //!< WinThai |
134 | wxFONTENCODING_CP932, //!< Japanese (shift-JIS) | |
135 | wxFONTENCODING_CP936, //!< Chinese simplified (GB) | |
136 | wxFONTENCODING_CP949, //!< Korean (Hangul charset) | |
137 | wxFONTENCODING_CP950, //!< Chinese (traditional - Big5) | |
138 | wxFONTENCODING_CP1250, //!< WinLatin2 | |
139 | wxFONTENCODING_CP1251, //!< WinCyrillic | |
140 | wxFONTENCODING_CP1252, //!< WinLatin1 | |
141 | wxFONTENCODING_CP1253, //!< WinGreek (8859-7) | |
142 | wxFONTENCODING_CP1254, //!< WinTurkish | |
143 | wxFONTENCODING_CP1255, //!< WinHebrew | |
144 | wxFONTENCODING_CP1256, //!< WinArabic | |
145 | wxFONTENCODING_CP1257, //!< WinBaltic (same as Latin 7) | |
0b70c946 FM |
146 | wxFONTENCODING_CP12_MAX, |
147 | ||
9a6fda22 FM |
148 | wxFONTENCODING_UTF7, //!< UTF-7 Unicode encoding |
149 | wxFONTENCODING_UTF8, //!< UTF-8 Unicode encoding | |
150 | wxFONTENCODING_EUC_JP, //!< Extended Unix Codepage for Japanese | |
151 | wxFONTENCODING_UTF16BE, //!< UTF-16 Big Endian Unicode encoding | |
152 | wxFONTENCODING_UTF16LE, //!< UTF-16 Little Endian Unicode encoding | |
153 | wxFONTENCODING_UTF32BE, //!< UTF-32 Big Endian Unicode encoding | |
0b70c946 FM |
154 | wxFONTENCODING_UTF32LE, // UTF-32 Little Endian Unicode encoding |
155 | ||
9a6fda22 | 156 | wxFONTENCODING_MACROMAN, //!< the standard mac encodings |
0b70c946 FM |
157 | wxFONTENCODING_MACJAPANESE, |
158 | wxFONTENCODING_MACCHINESETRAD, | |
159 | wxFONTENCODING_MACKOREAN, | |
160 | wxFONTENCODING_MACARABIC, | |
161 | wxFONTENCODING_MACHEBREW, | |
162 | wxFONTENCODING_MACGREEK, | |
163 | wxFONTENCODING_MACCYRILLIC, | |
164 | wxFONTENCODING_MACDEVANAGARI, | |
165 | wxFONTENCODING_MACGURMUKHI, | |
166 | wxFONTENCODING_MACGUJARATI, | |
167 | wxFONTENCODING_MACORIYA, | |
168 | wxFONTENCODING_MACBENGALI, | |
169 | wxFONTENCODING_MACTAMIL, | |
170 | wxFONTENCODING_MACTELUGU, | |
171 | wxFONTENCODING_MACKANNADA, | |
172 | wxFONTENCODING_MACMALAJALAM, | |
173 | wxFONTENCODING_MACSINHALESE, | |
174 | wxFONTENCODING_MACBURMESE, | |
175 | wxFONTENCODING_MACKHMER, | |
176 | wxFONTENCODING_MACTHAI, | |
177 | wxFONTENCODING_MACLAOTIAN, | |
178 | wxFONTENCODING_MACGEORGIAN, | |
179 | wxFONTENCODING_MACARMENIAN, | |
180 | wxFONTENCODING_MACCHINESESIMP, | |
181 | wxFONTENCODING_MACTIBETAN, | |
182 | wxFONTENCODING_MACMONGOLIAN, | |
183 | wxFONTENCODING_MACETHIOPIC, | |
184 | wxFONTENCODING_MACCENTRALEUR, | |
185 | wxFONTENCODING_MACVIATNAMESE, | |
186 | wxFONTENCODING_MACARABICEXT, | |
187 | wxFONTENCODING_MACSYMBOL, | |
188 | wxFONTENCODING_MACDINGBATS, | |
189 | wxFONTENCODING_MACTURKISH, | |
190 | wxFONTENCODING_MACCROATIAN, | |
191 | wxFONTENCODING_MACICELANDIC, | |
192 | wxFONTENCODING_MACROMANIAN, | |
193 | wxFONTENCODING_MACCELTIC, | |
194 | wxFONTENCODING_MACGAELIC, | |
195 | wxFONTENCODING_MACKEYBOARD, | |
196 | ||
197 | // more CJK encodings (for historical reasons some are already declared | |
198 | // above) | |
9a6fda22 | 199 | wxFONTENCODING_ISO2022_JP, //!< ISO-2022-JP JIS encoding |
0b70c946 | 200 | |
9a6fda22 | 201 | wxFONTENCODING_MAX, //!< highest enumerated encoding value |
0b70c946 FM |
202 | |
203 | wxFONTENCODING_MACMIN = wxFONTENCODING_MACROMAN , | |
204 | wxFONTENCODING_MACMAX = wxFONTENCODING_MACKEYBOARD , | |
205 | ||
206 | // aliases for endian-dependent UTF encodings | |
9a6fda22 FM |
207 | wxFONTENCODING_UTF16, //!< native UTF-16 |
208 | wxFONTENCODING_UTF32, //!< native UTF-32 | |
209 | ||
210 | /// Alias for the native Unicode encoding on this platform | |
211 | /// (this is used by wxEncodingConverter and wxUTFFile only for now) | |
212 | wxFONTENCODING_UNICODE, | |
0b70c946 FM |
213 | |
214 | // alternative names for Far Eastern encodings | |
215 | // Chinese | |
9a6fda22 FM |
216 | wxFONTENCODING_GB2312 = wxFONTENCODING_CP936, //!< Simplified Chinese |
217 | wxFONTENCODING_BIG5 = wxFONTENCODING_CP950, //!< Traditional Chinese | |
0b70c946 FM |
218 | |
219 | // Japanese (see http://zsigri.tripod.com/fontboard/cjk/jis.html) | |
9a6fda22 | 220 | wxFONTENCODING_SHIFT_JIS = wxFONTENCODING_CP932 //!< Shift JIS |
0b70c946 FM |
221 | }; |
222 | ||
223 | ||
224 | ||
23324ae1 FM |
225 | /** |
226 | @class wxFont | |
7c913512 | 227 | |
0b70c946 FM |
228 | A font is an object which determines the appearance of text. |
229 | Fonts are used for drawing text to a device context, and setting the appearance | |
230 | of a window's text. | |
7c913512 | 231 | |
0b70c946 | 232 | This class uses @ref overview_refcount "reference counting and copy-on-write" |
23324ae1 FM |
233 | internally so that assignments between two instances of this class are very |
234 | cheap. You can therefore use actual objects instead of pointers without | |
235 | efficiency problems. If an instance of this class is changed it will create | |
236 | its own data internally so that other instances, which previously shared the | |
237 | data using the reference counting, are not affected. | |
7c913512 | 238 | |
23324ae1 | 239 | You can retrieve the current system font settings with wxSystemSettings. |
7c913512 | 240 | |
23324ae1 FM |
241 | @library{wxcore} |
242 | @category{gdi} | |
7c913512 | 243 | |
23324ae1 | 244 | @stdobjects |
65874118 | 245 | ::wxNullFont, ::wxNORMAL_FONT, ::wxSMALL_FONT, ::wxITALIC_FONT, ::wxSWISS_FONT |
7c913512 | 246 | |
0b70c946 FM |
247 | @see @ref overview_font, wxDC::SetFont, wxDC::DrawText, |
248 | wxDC::GetTextExtent, wxFontDialog, wxSystemSettings | |
23324ae1 FM |
249 | */ |
250 | class wxFont : public wxGDIObject | |
251 | { | |
252 | public: | |
45a591fa | 253 | /** |
0b70c946 | 254 | Default ctor. |
45a591fa VZ |
255 | */ |
256 | wxFont(); | |
257 | ||
258 | /** | |
0b70c946 | 259 | Copy constructor, uses @ref overview_refcount "reference counting". |
45a591fa VZ |
260 | */ |
261 | wxFont(const wxFont& font); | |
262 | ||
23324ae1 FM |
263 | /** |
264 | Creates a font object with the specified attributes. | |
3c4f71cc | 265 | |
7c913512 | 266 | @param pointSize |
b5791cc7 | 267 | Size in points. See SetPointSize() for more info. |
45a591fa VZ |
268 | @param family |
269 | Font family, a generic way of referring to fonts without specifying actual | |
0b70c946 | 270 | facename. One of the ::wxFontFamily enumeration values. |
45a591fa | 271 | @param style |
b5791cc7 | 272 | One of @c wxFONTSTYLE_NORMAL, @c wxFONTSTYLE_SLANT and @c wxFONTSTYLE_ITALIC. |
45a591fa | 273 | @param weight |
b5791cc7 FM |
274 | Font weight, sometimes also referred to as font boldness. |
275 | One of the ::wxFontWeight enumeration values. | |
45a591fa | 276 | @param underline |
0b70c946 FM |
277 | The value can be @true or @false. |
278 | At present this has an effect on Windows and Motif 2.x only. | |
45a591fa | 279 | @param faceName |
0b70c946 FM |
280 | An optional string specifying the actual typeface to be used. |
281 | If it is an empty string, a default typeface will be chosen based on the family. | |
45a591fa | 282 | @param encoding |
0b70c946 FM |
283 | An encoding which may be one of the enumeration values of ::wxFontEncoding. |
284 | Briefly these can be summed up as: | |
285 | <TABLE> | |
b5791cc7 FM |
286 | <TR><TD>@c wxFONTENCODING_SYSTEM</TD><TD>Default system encoding.</TD></TR> |
287 | <TR><TD>@c wxFONTENCODING_DEFAULT</TD><TD> | |
8f1337ed FM |
288 | Default application encoding: this is the encoding set by calls to |
289 | SetDefaultEncoding() and which may be set to, say, KOI8 to create all | |
290 | fonts by default with KOI8 encoding. Initially, the default application | |
291 | encoding is the same as default system encoding.</TD></TR> | |
b5791cc7 FM |
292 | <TR><TD>@c wxFONTENCODING_ISO8859_1...15</TD><TD>ISO8859 encodings.</TD></TR> |
293 | <TR><TD>@c wxFONTENCODING_KOI8</TD><TD>The standard Russian encoding for Internet.</TD></TR> | |
294 | <TR><TD>@c wxFONTENCODING_CP1250...1252</TD><TD>Windows encodings similar to ISO8859 (but not identical).</TD></TR> | |
0b70c946 | 295 | </TABLE> |
45a591fa | 296 | If the specified encoding isn't available, no font is created |
8f1337ed | 297 | (see also @ref overview_fontencoding). |
45a591fa VZ |
298 | |
299 | @remarks If the desired font does not exist, the closest match will be | |
0b70c946 | 300 | chosen. Under Windows, only scalable TrueType fonts are used. |
45a591fa | 301 | */ |
882678eb | 302 | wxFont(int pointSize, wxFontFamily family, wxFontStyle style, |
45a591fa | 303 | wxFontWeight weight, |
11e3af6e | 304 | bool underline = false, |
e9c3992c | 305 | const wxString& faceName = wxEmptyString, |
45a591fa | 306 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
0b70c946 | 307 | |
45a591fa VZ |
308 | /** |
309 | Creates a font object with the specified attributes. | |
310 | ||
7c913512 | 311 | @param pixelSize |
b5791cc7 | 312 | Size in pixels. See SetPixelSize() for more info. |
7c913512 | 313 | @param family |
4cc4bfaf | 314 | Font family, a generic way of referring to fonts without specifying actual |
0b70c946 | 315 | facename. One of ::wxFontFamily enumeration values. |
4cc4bfaf | 316 | @param style |
b5791cc7 | 317 | One of @c wxFONTSTYLE_NORMAL, @c wxFONTSTYLE_SLANT and @c wxFONTSTYLE_ITALIC. |
7c913512 | 318 | @param weight |
0b70c946 FM |
319 | Font weight, sometimes also referred to as font boldness. |
320 | One of the ::wxFontWeight enumeration values. | |
4cc4bfaf | 321 | @param underline |
0b70c946 FM |
322 | The value can be @true or @false. |
323 | At present this has an effect on Windows and Motif 2.x only. | |
4cc4bfaf | 324 | @param faceName |
0b70c946 FM |
325 | An optional string specifying the actual typeface to be used. |
326 | If it is an empty string, a default typeface will be chosen based on the family. | |
7c913512 | 327 | @param encoding |
0b70c946 FM |
328 | An encoding which may be one of the enumeration values of ::wxFontEncoding. |
329 | Briefly these can be summed up as: | |
330 | <TABLE> | |
b5791cc7 FM |
331 | <TR><TD>@c wxFONTENCODING_SYSTEM</TD><TD>Default system encoding.</TD></TR> |
332 | <TR><TD>@c wxFONTENCODING_DEFAULT</TD><TD> | |
8f1337ed FM |
333 | Default application encoding: this is the encoding set by calls to |
334 | SetDefaultEncoding() and which may be set to, say, KOI8 to create all | |
335 | fonts by default with KOI8 encoding. Initially, the default application | |
336 | encoding is the same as default system encoding.</TD></TR> | |
b5791cc7 FM |
337 | <TR><TD>@c wxFONTENCODING_ISO8859_1...15</TD><TD>ISO8859 encodings.</TD></TR> |
338 | <TR><TD>@c wxFONTENCODING_KOI8</TD><TD>The standard Russian encoding for Internet.</TD></TR> | |
339 | <TR><TD>@c wxFONTENCODING_CP1250...1252</TD><TD>Windows encodings similar to ISO8859 (but not identical).</TD></TR> | |
0b70c946 | 340 | </TABLE> |
4cc4bfaf | 341 | If the specified encoding isn't available, no font is created |
8f1337ed | 342 | (see also @ref overview_fontencoding). |
3c4f71cc | 343 | |
23324ae1 | 344 | @remarks If the desired font does not exist, the closest match will be |
0b70c946 | 345 | chosen. Under Windows, only scalable TrueType fonts are used. |
23324ae1 | 346 | */ |
7c913512 | 347 | wxFont(const wxSize& pixelSize, wxFontFamily family, |
882678eb | 348 | wxFontStyle style, wxFontWeight weight, |
11e3af6e | 349 | bool underline = false, |
e9c3992c | 350 | const wxString& faceName = wxEmptyString, |
7c913512 | 351 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
23324ae1 FM |
352 | |
353 | /** | |
354 | Destructor. | |
0b70c946 | 355 | |
674d80a7 | 356 | See @ref overview_refcount_destruct "reference-counted object destruction" |
0b70c946 | 357 | for more info. |
3c4f71cc | 358 | |
23324ae1 | 359 | @remarks Although all remaining fonts are deleted when the application |
4cc4bfaf FM |
360 | exits, the application should try to clean up all fonts |
361 | itself. This is because wxWidgets cannot know if a | |
362 | pointer to the font object is stored in an application | |
363 | data structure, and there is a risk of double deletion. | |
23324ae1 | 364 | */ |
adaaa686 | 365 | virtual ~wxFont(); |
23324ae1 FM |
366 | |
367 | /** | |
368 | Returns the current application's default encoding. | |
3c4f71cc | 369 | |
0b70c946 | 370 | @see @ref overview_fontencoding, SetDefaultEncoding() |
23324ae1 FM |
371 | */ |
372 | static wxFontEncoding GetDefaultEncoding(); | |
373 | ||
374 | /** | |
375 | Returns the typeface name associated with the font, or the empty string if | |
0b70c946 | 376 | there is no typeface information. |
3c4f71cc | 377 | |
4cc4bfaf | 378 | @see SetFaceName() |
23324ae1 | 379 | */ |
adaaa686 | 380 | virtual wxString GetFaceName() const; |
23324ae1 FM |
381 | |
382 | /** | |
383 | Gets the font family. See SetFamily() for a list of valid | |
384 | family identifiers. | |
3c4f71cc | 385 | |
4cc4bfaf | 386 | @see SetFamily() |
23324ae1 | 387 | */ |
26818748 | 388 | virtual wxFontFamily GetFamily() const; |
23324ae1 FM |
389 | |
390 | /** | |
391 | Returns the platform-dependent string completely describing this font. | |
392 | Returned string is always non-empty. | |
0b70c946 | 393 | |
23324ae1 | 394 | Note that the returned string is not meant to be shown or edited by the user: a |
0b70c946 | 395 | typical use of this function is for serializing in string-form a wxFont object. |
3c4f71cc | 396 | |
4cc4bfaf | 397 | @see SetNativeFontInfo(),GetNativeFontInfoUserDesc() |
23324ae1 | 398 | */ |
328f5751 | 399 | wxString GetNativeFontInfoDesc() const; |
23324ae1 FM |
400 | |
401 | /** | |
0b70c946 FM |
402 | Returns a user-friendly string for this font object. |
403 | Returned string is always non-empty. | |
404 | ||
23324ae1 FM |
405 | Some examples of the formats of returned strings (which are platform-dependent) |
406 | are in SetNativeFontInfoUserDesc(). | |
3c4f71cc | 407 | |
4cc4bfaf | 408 | @see GetNativeFontInfoDesc() |
23324ae1 | 409 | */ |
adaaa686 | 410 | wxString GetNativeFontInfoUserDesc() const; |
23324ae1 FM |
411 | |
412 | /** | |
413 | Gets the point size. | |
3c4f71cc | 414 | |
4cc4bfaf | 415 | @see SetPointSize() |
23324ae1 | 416 | */ |
adaaa686 | 417 | virtual int GetPointSize() const; |
23324ae1 FM |
418 | |
419 | /** | |
b5791cc7 FM |
420 | Gets the pixel size. |
421 | ||
422 | Note that under wxMSW if you passed to SetPixelSize() (or to the ctor) | |
423 | a wxSize object with a null width value, you'll get a null width in | |
424 | the returned object. | |
425 | ||
426 | @see SetPixelSize() | |
427 | */ | |
428 | virtual wxSize GetPixelSize() const; | |
429 | ||
430 | /** | |
431 | Gets the font style. See ::wxFontStyle for a list of valid styles. | |
3c4f71cc | 432 | |
4cc4bfaf | 433 | @see SetStyle() |
23324ae1 | 434 | */ |
26818748 | 435 | virtual wxFontStyle GetStyle() const; |
23324ae1 FM |
436 | |
437 | /** | |
438 | Returns @true if the font is underlined, @false otherwise. | |
3c4f71cc | 439 | |
4cc4bfaf | 440 | @see SetUnderlined() |
23324ae1 | 441 | */ |
adaaa686 | 442 | virtual bool GetUnderlined() const; |
23324ae1 FM |
443 | |
444 | /** | |
b5791cc7 | 445 | Gets the font weight. See ::wxFontWeight for a list of valid weight identifiers. |
3c4f71cc | 446 | |
4cc4bfaf | 447 | @see SetWeight() |
23324ae1 | 448 | */ |
26818748 | 449 | virtual wxFontWeight GetWeight() const; |
23324ae1 FM |
450 | |
451 | /** | |
452 | Returns @true if the font is a fixed width (or monospaced) font, | |
453 | @false if it is a proportional one or font is invalid. | |
454 | */ | |
adaaa686 | 455 | virtual bool IsFixedWidth() const; |
23324ae1 FM |
456 | |
457 | /** | |
458 | Returns @true if this object is a valid font, @false otherwise. | |
459 | */ | |
0004982c | 460 | virtual bool IsOk() const; |
23324ae1 FM |
461 | |
462 | //@{ | |
463 | /** | |
5449f13b FM |
464 | This function takes the same parameters as the relative |
465 | @ref wxFont::wxFont "wxFont constructor" and returns a new font | |
674d80a7 | 466 | object allocated on the heap. |
23324ae1 | 467 | */ |
882678eb | 468 | static wxFont* New(int pointSize, wxFontFamily family, wxFontStyle style, |
4cc4bfaf | 469 | wxFontWeight weight, |
11e3af6e | 470 | bool underline = false, |
e9c3992c | 471 | const wxString& faceName = wxEmptyString, |
4cc4bfaf FM |
472 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
473 | static wxFont* New(int pointSize, wxFontFamily family, | |
474 | int flags = wxFONTFLAG_DEFAULT, | |
e9c3992c | 475 | const wxString& faceName = wxEmptyString, |
4cc4bfaf FM |
476 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
477 | static wxFont* New(const wxSize& pixelSize, | |
478 | wxFontFamily family, | |
882678eb | 479 | wxFontStyle style, |
4cc4bfaf | 480 | wxFontWeight weight, |
11e3af6e | 481 | bool underline = false, |
e9c3992c | 482 | const wxString& faceName = wxEmptyString, |
4cc4bfaf FM |
483 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
484 | static wxFont* New(const wxSize& pixelSize, | |
485 | wxFontFamily family, | |
486 | int flags = wxFONTFLAG_DEFAULT, | |
e9c3992c | 487 | const wxString& faceName = wxEmptyString, |
4cc4bfaf | 488 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
23324ae1 FM |
489 | //@} |
490 | ||
491 | /** | |
492 | Sets the default font encoding. | |
3c4f71cc | 493 | |
0b70c946 | 494 | @see @ref overview_fontencoding, GetDefaultEncoding() |
23324ae1 FM |
495 | */ |
496 | static void SetDefaultEncoding(wxFontEncoding encoding); | |
497 | ||
498 | /** | |
499 | Sets the facename for the font. | |
500 | Returns @true if the given face name exists; @false otherwise. | |
3c4f71cc | 501 | |
7c913512 | 502 | @param faceName |
4cc4bfaf | 503 | A valid facename, which should be on the end-user's system. |
3c4f71cc | 504 | |
23324ae1 | 505 | @remarks To avoid portability problems, don't rely on a specific face, |
0b70c946 FM |
506 | but specify the font family instead or as well. |
507 | A suitable font will be found on the end-user's system. | |
4cc4bfaf FM |
508 | If both the family and the facename are specified, |
509 | wxWidgets will first search for the specific face, and | |
510 | then for a font belonging to the same family. | |
3c4f71cc | 511 | |
4cc4bfaf | 512 | @see GetFaceName(), SetFamily() |
23324ae1 | 513 | */ |
adaaa686 | 514 | virtual bool SetFaceName(const wxString& faceName); |
23324ae1 FM |
515 | |
516 | /** | |
517 | Sets the font family. | |
3c4f71cc | 518 | |
7c913512 | 519 | @param family |
0b70c946 | 520 | One of the ::wxFontFamily values. |
3c4f71cc | 521 | |
4cc4bfaf | 522 | @see GetFamily(), SetFaceName() |
23324ae1 | 523 | */ |
a44f3b5a | 524 | virtual void SetFamily(wxFontFamily family); |
23324ae1 FM |
525 | |
526 | /** | |
0b70c946 FM |
527 | Creates the font corresponding to the given native font description string |
528 | which must have been previously returned by GetNativeFontInfoDesc(). | |
529 | ||
530 | If the string is invalid, font is unchanged. | |
531 | This function is typically used for de-serializing a wxFont object | |
532 | previously saved in a string-form. | |
533 | ||
534 | @return @true if the creation was successful. | |
3c4f71cc | 535 | |
4cc4bfaf | 536 | @see SetNativeFontInfoUserDesc() |
23324ae1 FM |
537 | */ |
538 | bool SetNativeFontInfo(const wxString& info); | |
539 | ||
540 | /** | |
541 | Creates the font corresponding to the given native font description string and | |
0b70c946 | 542 | returns @true if the creation was successful. |
3c4f71cc | 543 | |
0b70c946 FM |
544 | Unlike SetNativeFontInfo(), this function accepts strings which are user-friendly. |
545 | Examples of accepted string formats are: | |
3c4f71cc | 546 | |
0b70c946 FM |
547 | @beginTable |
548 | @hdr3col{platform, generic syntax, example} | |
b5791cc7 FM |
549 | @row3col{wxGTK2, <tt>[FACE-NAME] [bold] [oblique|italic] [POINTSIZE]</tt>, Monospace bold 10} |
550 | @row3col{wxMSW, <tt>[light|bold] [italic] [FACE-NAME] [POINTSIZE] [ENCODING]</tt>, Tahoma 10 WINDOWS-1252} | |
0b70c946 | 551 | @endTable |
3c4f71cc | 552 | |
0b70c946 | 553 | @todo add an example for wxMac |
3c4f71cc | 554 | |
23324ae1 | 555 | For more detailed information about the allowed syntaxes you can look at the |
0b70c946 FM |
556 | documentation of the native API used for font-rendering |
557 | (e.g. @c pango_font_description_from_string on GTK). | |
3c4f71cc | 558 | |
4cc4bfaf | 559 | @see SetNativeFontInfo() |
23324ae1 FM |
560 | */ |
561 | bool SetNativeFontInfoUserDesc(const wxString& info); | |
562 | ||
563 | /** | |
564 | Sets the point size. | |
b5791cc7 FM |
565 | |
566 | The <em>point size</em> is defined as 1/72 of the anglo-Saxon inch | |
567 | (25.4 mm): it is approximately 0.0139 inch or 352.8 um. | |
3c4f71cc | 568 | |
7c913512 | 569 | @param pointSize |
4cc4bfaf | 570 | Size in points. |
3c4f71cc | 571 | |
4cc4bfaf | 572 | @see GetPointSize() |
23324ae1 | 573 | */ |
adaaa686 | 574 | virtual void SetPointSize(int pointSize); |
23324ae1 | 575 | |
b5791cc7 FM |
576 | /** |
577 | Sets the pixel size. | |
578 | ||
579 | The height parameter of @a pixelSize must be positive while the width | |
580 | parameter may also be zero (to indicate that you're not interested in the | |
581 | width of the characters: a suitable width will be chosen for best rendering). | |
582 | ||
583 | This feature (specifying the font pixel size) is directly supported only | |
584 | under wxMSW and wxGTK currently; under other platforms a font with the | |
585 | closest size to the given one is found using binary search (this maybe slower). | |
586 | ||
587 | @see GetPixelSize() | |
588 | */ | |
589 | virtual void SetPixelSize(const wxSize& pixelSize); | |
590 | ||
23324ae1 FM |
591 | /** |
592 | Sets the font style. | |
3c4f71cc | 593 | |
7c913512 | 594 | @param style |
0b70c946 | 595 | One of the ::wxFontStyle enumeration values. |
3c4f71cc | 596 | |
4cc4bfaf | 597 | @see GetStyle() |
23324ae1 | 598 | */ |
a44f3b5a | 599 | virtual void SetStyle(wxFontStyle style); |
23324ae1 FM |
600 | |
601 | /** | |
602 | Sets underlining. | |
3c4f71cc | 603 | |
45a591fa | 604 | @param underlined |
4cc4bfaf | 605 | @true to underline, @false otherwise. |
3c4f71cc | 606 | |
4cc4bfaf | 607 | @see GetUnderlined() |
23324ae1 | 608 | */ |
26818748 | 609 | virtual void SetUnderlined(bool underlined); |
23324ae1 FM |
610 | |
611 | /** | |
612 | Sets the font weight. | |
3c4f71cc | 613 | |
7c913512 | 614 | @param weight |
0b70c946 | 615 | One of the ::wxFontWeight values. |
3c4f71cc | 616 | |
4cc4bfaf | 617 | @see GetWeight() |
23324ae1 | 618 | */ |
a44f3b5a | 619 | virtual void SetWeight(wxFontWeight weight); |
23324ae1 FM |
620 | |
621 | /** | |
622 | Inequality operator. | |
0b70c946 | 623 | |
674d80a7 | 624 | See @ref overview_refcount_equality "reference-counted object comparison" for |
23324ae1 FM |
625 | more info. |
626 | */ | |
fadc2df6 | 627 | bool operator!=(const wxFont& font) const; |
23324ae1 | 628 | |
23324ae1 FM |
629 | /** |
630 | Equality operator. | |
0b70c946 | 631 | |
674d80a7 | 632 | See @ref overview_refcount_equality "reference-counted object comparison" for |
23324ae1 FM |
633 | more info. |
634 | */ | |
fadc2df6 | 635 | bool operator==(const wxFont& font) const; |
0b70c946 FM |
636 | |
637 | /** | |
638 | Assignment operator, using @ref overview_refcount "reference counting". | |
639 | */ | |
640 | wxFont& operator =(const wxFont& font); | |
23324ae1 | 641 | }; |
e54c96f1 FM |
642 | |
643 | ||
644 | /** | |
65874118 | 645 | An empty wxFont. |
e54c96f1 | 646 | */ |
7fa7088e | 647 | wxFont wxNullFont; |
e54c96f1 FM |
648 | |
649 | /** | |
0b70c946 | 650 | Equivalent to wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT). |
b5791cc7 FM |
651 | |
652 | @see wxSystemSettings | |
e54c96f1 | 653 | */ |
7fa7088e | 654 | wxFont wxNORMAL_FONT; |
e54c96f1 FM |
655 | |
656 | /** | |
b5791cc7 | 657 | A font using the @c wxFONTFAMILY_SWISS family and 2 points smaller than |
0b70c946 | 658 | ::wxNORMAL_FONT. |
e54c96f1 | 659 | */ |
7fa7088e | 660 | wxFont wxSMALL_FONT; |
e54c96f1 FM |
661 | |
662 | /** | |
b5791cc7 | 663 | A font using the @c wxFONTFAMILY_ROMAN family and @c wxFONTSTYLE_ITALIC style and |
0b70c946 | 664 | of the same size of ::wxNORMAL_FONT. |
e54c96f1 | 665 | */ |
7fa7088e | 666 | wxFont wxITALIC_FONT; |
e54c96f1 FM |
667 | |
668 | /** | |
0b70c946 | 669 | A font identic to ::wxNORMAL_FONT except for the family used which is |
b5791cc7 | 670 | @c wxFONTFAMILY_SWISS. |
e54c96f1 | 671 | */ |
7fa7088e BP |
672 | wxFont wxSWISS_FONT; |
673 | ||
674 | ||
65874118 FM |
675 | /** |
676 | @class wxFontList | |
65874118 | 677 | |
0b70c946 FM |
678 | A font list is a list containing all fonts which have been created. |
679 | There is only one instance of this class: ::wxTheFontList. | |
680 | ||
681 | Use this object to search for a previously created font of the desired type | |
682 | and create it if not already found. | |
683 | ||
65874118 FM |
684 | In some windowing systems, the font may be a scarce resource, so it is best to |
685 | reuse old resources if possible. When an application finishes, all fonts will | |
0b70c946 | 686 | be deleted and their resources freed, eliminating the possibility of 'memory |
65874118 FM |
687 | leaks'. |
688 | ||
689 | @library{wxcore} | |
690 | @category{gdi} | |
691 | ||
692 | @see wxFont | |
693 | */ | |
694 | class wxFontList : public wxList | |
695 | { | |
696 | public: | |
697 | /** | |
698 | Constructor. The application should not construct its own font list: | |
0b70c946 | 699 | use the object pointer ::wxTheFontList. |
65874118 FM |
700 | */ |
701 | wxFontList(); | |
702 | ||
703 | /** | |
704 | Finds a font of the given specification, or creates one and adds it to the | |
0b70c946 | 705 | list. See the @ref wxFont "wxFont constructor" for details of the arguments. |
65874118 | 706 | */ |
a44f3b5a FM |
707 | wxFont* FindOrCreateFont(int point_size, wxFontFamily family, wxFontStyle style, |
708 | wxFontWeight weight, bool underline = false, | |
709 | const wxString& facename = wxEmptyString, | |
65874118 FM |
710 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
711 | }; | |
712 | ||
713 | ||
0b70c946 FM |
714 | /** |
715 | The global wxFontList instance. | |
716 | */ | |
717 | wxFontList* wxTheFontList; | |
718 | ||
7fa7088e BP |
719 | |
720 | // ============================================================================ | |
721 | // Global functions/macros | |
722 | // ============================================================================ | |
723 | ||
b21126db | 724 | /** @addtogroup group_funcmacro_misc */ |
7fa7088e | 725 | //@{ |
e54c96f1 FM |
726 | |
727 | /** | |
7fa7088e BP |
728 | Converts string to a wxFont best represented by the given string. Returns |
729 | @true on success. | |
730 | ||
731 | @see wxToString(const wxFont&) | |
732 | ||
733 | @header{wx/font.h} | |
e54c96f1 | 734 | */ |
7fa7088e | 735 | bool wxFromString(const wxString& string, wxFont* font); |
e54c96f1 FM |
736 | |
737 | /** | |
7fa7088e BP |
738 | Converts the given wxFont into a string. |
739 | ||
740 | @see wxFromString(const wxString&, wxFont*) | |
741 | ||
742 | @header{wx/font.h} | |
e54c96f1 | 743 | */ |
7fa7088e | 744 | wxString wxToString(const wxFont& font); |
e54c96f1 | 745 | |
7fa7088e | 746 | //@} |
e54c96f1 | 747 |