1 \section{\class{wxFont
}}\label{wxfont
}
3 A font is an object which determines the appearance of text. Fonts are
4 used for drawing text to a device context, and setting the appearance of
7 You can retrieve the current system font settings with
\helpref{wxSystemSettings
}{wxsystemsettings
}.
9 \helpref{wxSystemSettings
}{wxsystemsettings
}
11 \wxheading{Derived from
}
13 \helpref{wxGDIObject
}{wxgdiobject
}\\
14 \helpref{wxObject
}{wxobject
}
16 \wxheading{Include files
}
22 The possible values for the
\arg{family
} parameter of
\helpref{wxFont
23 constructor
}{wxfontctor
} are (the old names are for compatibility only):
28 wxFONTFAMILY_DEFAULT = wxDEFAULT,
29 wxFONTFAMILY_DECORATIVE = wxDECORATIVE,
30 wxFONTFAMILY_ROMAN = wxROMAN,
31 wxFONTFAMILY_SCRIPT = wxSCRIPT,
32 wxFONTFAMILY_SWISS = wxSWISS,
33 wxFONTFAMILY_MODERN = wxMODERN,
34 wxFONTFAMILY_TELETYPE = wxTELETYPE,
39 The font flags which can be used during the font creation are:
44 // no special flags: font with default weight/slant/anti-aliasing
45 wxFONTFLAG_DEFAULT =
0,
47 // slant flags (default: no slant)
48 wxFONTFLAG_ITALIC =
1 <<
0,
49 wxFONTFLAG_SLANT =
1 <<
1,
51 // weight flags (default: medium)
52 wxFONTFLAG_LIGHT =
1 <<
2,
53 wxFONTFLAG_BOLD =
1 <<
3,
55 // anti-aliasing flag: force on or off (default: the current system default)
56 wxFONTFLAG_ANTIALIASED =
1 <<
4,
57 wxFONTFLAG_NOT_ANTIALIASED =
1 <<
5,
59 // underlined/strikethrough flags (default: no lines)
60 wxFONTFLAG_UNDERLINED =
1 <<
6,
61 wxFONTFLAG_STRIKETHROUGH =
1 <<
7,
65 The known font encodings are:
70 wxFONTENCODING_SYSTEM = -
1, // system default
71 wxFONTENCODING_DEFAULT, // current default encoding
73 // ISO8859 standard defines a number of single-byte charsets
74 wxFONTENCODING_ISO8859_1, // West European (Latin1)
75 wxFONTENCODING_ISO8859_2, // Central and East European (Latin2)
76 wxFONTENCODING_ISO8859_3, // Esperanto (Latin3)
77 wxFONTENCODING_ISO8859_4, // Baltic (old) (Latin4)
78 wxFONTENCODING_ISO8859_5, // Cyrillic
79 wxFONTENCODING_ISO8859_6, // Arabic
80 wxFONTENCODING_ISO8859_7, // Greek
81 wxFONTENCODING_ISO8859_8, // Hebrew
82 wxFONTENCODING_ISO8859_9, // Turkish (Latin5)
83 wxFONTENCODING_ISO8859_10, // Variation of Latin4 (Latin6)
84 wxFONTENCODING_ISO8859_11, // Thai
85 wxFONTENCODING_ISO8859_12, // doesn't exist currently, but put it
86 // here anyhow to make all ISO8859
87 // consecutive numbers
88 wxFONTENCODING_ISO8859_13, // Baltic (Latin7)
89 wxFONTENCODING_ISO8859_14, // Latin8
90 wxFONTENCODING_ISO8859_15, // Latin9 (a.k.a. Latin0, includes euro)
91 wxFONTENCODING_ISO8859_MAX,
93 // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html)
94 wxFONTENCODING_KOI8, // we don't support any of KOI8 variants
95 wxFONTENCODING_ALTERNATIVE, // same as MS-DOS CP866
96 wxFONTENCODING_BULGARIAN, // used under Linux in Bulgaria
98 // what would we do without Microsoft? They have their own encodings
100 wxFONTENCODING_CP437, // original MS-DOS codepage
101 wxFONTENCODING_CP850, // CP437 merged with Latin1
102 wxFONTENCODING_CP852, // CP437 merged with Latin2
103 wxFONTENCODING_CP855, // another cyrillic encoding
104 wxFONTENCODING_CP866, // and another one
106 wxFONTENCODING_CP874, // WinThai
107 wxFONTENCODING_CP1250, // WinLatin2
108 wxFONTENCODING_CP1251, // WinCyrillic
109 wxFONTENCODING_CP1252, // WinLatin1
110 wxFONTENCODING_CP1253, // WinGreek (
8859-
7)
111 wxFONTENCODING_CP1254, // WinTurkish
112 wxFONTENCODING_CP1255, // WinHebrew
113 wxFONTENCODING_CP1256, // WinArabic
114 wxFONTENCODING_CP1257, // WinBaltic (same as Latin
7)
115 wxFONTENCODING_CP12_MAX,
117 wxFONTENCODING_UTF7, // UTF-
7 Unicode encoding
118 wxFONTENCODING_UTF8, // UTF-
8 Unicode encoding
120 wxFONTENCODING_UNICODE, // Unicode - currently used only by
121 // wxEncodingConverter class
127 \wxheading{Predefined objects
}
135 {\bf wxNORMAL
\_FONT\\
142 \helpref{wxFont overview
}{wxfontoverview
},
\helpref{wxDC::SetFont
}{wxdcsetfont
},
\rtfsp
143 \helpref{wxDC::DrawText
}{wxdcdrawtext
},
\helpref{wxDC::GetTextExtent
}{wxdcgettextextent
},
\rtfsp
144 \helpref{wxFontDialog
}{wxfontdialog
},
\helpref{wxSystemSettings
}{wxsystemsettings
}
146 \latexignore{\rtfignore{\wxheading{Members
}}}
149 \membersection{wxFont::wxFont
}\label{wxfontctor
}
151 \func{}{wxFont
}{\void}
155 \func{}{wxFont
}{\param{int
}{ pointSize
},
\param{wxFontFamily
}{ family
},
\param{int
}{ style
},
\param{int
}{ weight
},
156 \param{const bool
}{ underline = false
},
\param{const wxString\&
}{faceName = ""
},
157 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
159 \func{}{wxFont
}{\param{const wxSize\&
}{ pixelSize
},
\param{wxFontFamily
}{ family
},
\param{int
}{ style
},
\param{int
}{ weight
},
160 \param{const bool
}{ underline = false
},
\param{const wxString\&
}{faceName = ""
},
161 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
163 Creates a font object with the specified attributes.
165 \wxheading{Parameters
}
167 \docparam{pointSize
}{Size in points.
}
169 \docparam{pixelSize
}{Size in pixels: this is directly supported only under MSW
170 currently where this constructor can be used directly, under other platforms a
171 font with the closest size to the given one is found using binary search and
172 the static
\helpref{New
}{wxfontnew
} method must be used.
}
174 \docparam{family
}{Font family, a generic way of referring to fonts without specifying actual facename. One of:
177 \begin{twocollist
}\itemsep=
0pt
178 \twocolitem{{\bf wxDEFAULT
}}{Chooses a default font.
}
179 \twocolitem{{\bf wxDECORATIVE
}}{A decorative font.
}
180 \twocolitem{{\bf wxROMAN
}}{A formal, serif font.
}
181 \twocolitem{{\bf wxSCRIPT
}}{A handwriting font.
}
182 \twocolitem{{\bf wxSWISS
}}{A sans-serif font.
}
183 \twocolitem{{\bf wxMODERN
}}{A fixed pitch font.
}
186 \docparam{style
}{One of
{\bf wxNORMAL
},
{\bf wxSLANT
} and
{\bf wxITALIC
}.
}
188 \docparam{weight
}{One of
{\bf wxNORMAL
},
{\bf wxLIGHT
} and
{\bf wxBOLD
}.
}
190 \docparam{underline
}{The value can be true or false. At present this has an effect on Windows and Motif
2.x only.
}
192 \docparam{faceName
}{An optional string specifying the actual typeface to be used. If the empty string,
193 a default typeface will chosen based on the family.
}
195 \docparam{encoding
}{An encoding which may be one of
197 \begin{twocollist
}\itemsep=
0pt
198 \twocolitem{{\bf wxFONTENCODING
\_SYSTEM}}{Default system encoding.
}
199 \twocolitem{{\bf wxFONTENCODING
\_DEFAULT}}{Default application encoding: this
200 is the encoding set by calls to
201 \helpref{SetDefaultEncoding
}{wxfontsetdefaultencoding
} and which may be set to,
202 say, KOI8 to create all fonts by default with KOI8 encoding. Initially, the
203 default application encoding is the same as default system encoding.
}
204 \twocolitem{{\bf wxFONTENCODING
\_ISO8859\_1..
.15}}{ISO8859 encodings.
}
205 \twocolitem{{\bf wxFONTENCODING
\_KOI8}}{The standard Russian encoding for Internet.
}
206 \twocolitem{{\bf wxFONTENCODING
\_CP1250..
.1252}}{Windows encodings similar to ISO8859 (but not identical).
}
208 If the specified encoding isn't available, no font is created
209 (see also
\helpref{font encoding overview
}{wxfontencodingoverview
}).
214 If the desired font does not exist, the closest match will be chosen.
215 Under Windows, only scalable TrueType fonts are used.
217 See also
\helpref{wxDC::SetFont
}{wxdcsetfont
},
\helpref{wxDC::DrawText
}{wxdcdrawtext
}
218 and
\helpref{wxDC::GetTextExtent
}{wxdcgettextextent
}.
221 \membersection{wxFont::
\destruct{wxFont
}}\label{wxfontdtor
}
223 \func{}{\destruct{wxFont
}}{\void}
229 The destructor may not delete the underlying font object of the native windowing
230 system, since wxFont uses a reference counting system for efficiency.
232 Although all remaining fonts are deleted when the application exits,
233 the application should try to clean up all fonts itself. This is because
234 wxWidgets cannot know if a pointer to the font object is stored in an
235 application data structure, and there is a risk of double deletion.
238 \membersection{wxFont::IsFixedWidth
}\label{wxfontisfixedwidth
}
240 \constfunc{bool
}{IsFixedWidth
}{\void}
242 Returns
{\tt true
} if the font is a fixed width (or monospaced) font,
243 {\tt false
} if it is a proportional one or font is invalid.
246 \membersection{wxFont::GetDefaultEncoding
}\label{wxfontgetdefaultencoding
}
248 \func{static wxFontEncoding
}{GetDefaultEncoding
}{\void}
250 Returns the current application's default encoding.
254 \helpref{Font encoding overview
}{wxfontencodingoverview
},
255 \helpref{SetDefaultEncoding
}{wxfontsetdefaultencoding
}
258 \membersection{wxFont::GetFaceName
}\label{wxfontgetfacename
}
260 \constfunc{wxString
}{GetFaceName
}{\void}
262 Returns the typeface name associated with the font, or the empty string if there is no
263 typeface information.
267 \helpref{wxFont::SetFaceName
}{wxfontsetfacename
}
270 \membersection{wxFont::GetFamily
}\label{wxfontgetfamily
}
272 \constfunc{int
}{GetFamily
}{\void}
274 Gets the font family. See
\helpref{wxFont::wxFont
}{wxfontctor
} for a list of valid
279 \helpref{wxFont::SetFamily
}{wxfontsetfamily
}
282 \membersection{wxFont::GetNativeFontInfoDesc
}\label{wxfontgetnativefontinfodesc
}
284 \constfunc{wxString
}{GetNativeFontInfoDesc
}{\void}
286 Returns the platform-dependent string completely describing this font or an
287 empty string if the font wasn't constructed using the native font description.
291 \helpref{wxFont::SetNativeFontInfo
}{wxfontsetnativefontinfo
}
294 \membersection{wxFont::GetPointSize
}\label{wxfontgetpointsize
}
296 \constfunc{int
}{GetPointSize
}{\void}
302 \helpref{wxFont::SetPointSize
}{wxfontsetpointsize
}
305 \membersection{wxFont::GetStyle
}\label{wxfontgetstyle
}
307 \constfunc{int
}{GetStyle
}{\void}
309 Gets the font style. See
\helpref{wxFont::wxFont
}{wxfontctor
} for a list of valid
314 \helpref{wxFont::SetStyle
}{wxfontsetstyle
}
317 \membersection{wxFont::GetUnderlined
}\label{wxfontgetunderlined
}
319 \constfunc{bool
}{GetUnderlined
}{\void}
321 Returns true if the font is underlined, false otherwise.
325 \helpref{wxFont::SetUnderlined
}{wxfontsetunderlined
}
328 \membersection{wxFont::GetWeight
}\label{wxfontgetweight
}
330 \constfunc{int
}{GetWeight
}{\void}
332 Gets the font weight. See
\helpref{wxFont::wxFont
}{wxfontctor
} for a list of valid
337 \helpref{wxFont::SetWeight
}{wxfontsetweight
}
340 \membersection{wxFont::New
}\label{wxfontnew
}
342 \func{static wxFont *
}{New
}{\param{int
}{ pointSize
},
\param{wxFontFamily
}{ family
},
\param{int
}{ style
},
\param{int
}{ weight
},
343 \param{const bool
}{ underline = false
},
\param{const wxString\&
}{faceName = ""
},
344 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
346 \func{static wxFont *
}{New
}{\param{int
}{ pointSize
},
\param{wxFontFamily
}{ family
},
347 \param{int
}{ flags =
\texttt{wxFONTFLAG
\_DEFAULT}},
\param{const wxString\&
}{faceName = ""
},
348 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
350 \func{static wxFont *
}{New
}{\param{const wxSize\&
}{ pixelSize
},
\param{wxFontFamily
}{ family
},
\param{int
}{ style
},
\param{int
}{ weight
},
351 \param{const bool
}{ underline = false
},
\param{const wxString\&
}{faceName = ""
},
352 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
354 \func{static wxFont *
}{New
}{\param{const wxSize\&
}{ pixelSize
},
\param{wxFontFamily
}{ family
},
355 \param{int
}{ flags =
\texttt{wxFONTFLAG
\_DEFAULT}},
\param{const wxString\&
}{faceName = ""
},
356 \param{wxFontEncoding
}{encoding = wxFONTENCODING
\_DEFAULT}}
358 These functions take the same parameters as
\helpref{wxFont
359 constructor
}{wxfontctor
} and return a new font object allocated on the heap.
361 Using
\texttt{New()
} is currently the only way to directly create a font with
362 the given size in pixels on platforms other than wxMSW.
365 \membersection{wxFont::Ok
}\label{wxfontok
}
367 \constfunc{bool
}{Ok
}{\void}
369 Returns
{\tt true
} if this object is a valid font,
{\tt false
} otherwise.
372 \membersection{wxFont::SetDefaultEncoding
}\label{wxfontsetdefaultencoding
}
374 \func{static void
}{SetDefaultEncoding
}{\param{wxFontEncoding
}{encoding
}}
376 Sets the default font encoding.
380 \helpref{Font encoding overview
}{wxfontencodingoverview
},
381 \helpref{GetDefaultEncoding
}{wxfontgetdefaultencoding
}
384 \membersection{wxFont::SetFaceName
}\label{wxfontsetfacename
}
386 \func{void
}{SetFaceName
}{\param{const wxString\&
}{faceName
}}
388 Sets the facename for the font.
390 \wxheading{Parameters
}
392 \docparam{faceName
}{A valid facename, which should be on the end-user's system.
}
396 To avoid portability problems, don't rely on a specific face, but specify the font family
397 instead or as well. A suitable font will be found on the end-user's system. If both the
398 family and the facename are specified, wxWidgets will first search for the specific face,
399 and then for a font belonging to the same family.
403 \helpref{wxFont::GetFaceName
}{wxfontgetfacename
},
\helpref{wxFont::SetFamily
}{wxfontsetfamily
}
406 \membersection{wxFont::SetFamily
}\label{wxfontsetfamily
}
408 \func{void
}{SetFamily
}{\param{int
}{ family
}}
410 Sets the font family.
412 \wxheading{Parameters
}
414 \docparam{family
}{One of:
417 \begin{twocollist
}\itemsep=
0pt
418 \twocolitem{{\bf wxDEFAULT
}}{Chooses a default font.
}
419 \twocolitem{{\bf wxDECORATIVE
}}{A decorative font.
}
420 \twocolitem{{\bf wxROMAN
}}{A formal, serif font.
}
421 \twocolitem{{\bf wxSCRIPT
}}{A handwriting font.
}
422 \twocolitem{{\bf wxSWISS
}}{A sans-serif font.
}
423 \twocolitem{{\bf wxMODERN
}}{A fixed pitch font.
}
428 \helpref{wxFont::GetFamily
}{wxfontgetfamily
},
\helpref{wxFont::SetFaceName
}{wxfontsetfacename
}
431 \membersection{wxFont::SetNativeFontInfo
}\label{wxfontsetnativefontinfo
}
433 \func{void
}{SetNativeFontInfo
}{\param{const wxString\&
}{info
}}
435 Creates the font corresponding to the given native font description string
436 which must have been previously returned by
437 \helpref{GetNativeFontInfoDesc
}{wxfontgetnativefontinfodesc
}. If the string is
438 invalid, font is unchanged.
441 \membersection{wxFont::SetPointSize
}\label{wxfontsetpointsize
}
443 \func{void
}{SetPointSize
}{\param{int
}{ pointSize
}}
447 \wxheading{Parameters
}
449 \docparam{pointSize
}{Size in points.
}
453 \helpref{wxFont::GetPointSize
}{wxfontgetpointsize
}
456 \membersection{wxFont::SetStyle
}\label{wxfontsetstyle
}
458 \func{void
}{SetStyle
}{\param{int
}{ style
}}
462 \wxheading{Parameters
}
464 \docparam{style
}{One of
{\bf wxNORMAL
},
{\bf wxSLANT
} and
{\bf wxITALIC
}.
}
468 \helpref{wxFont::GetStyle
}{wxfontgetstyle
}
471 \membersection{wxFont::SetUnderlined
}\label{wxfontsetunderlined
}
473 \func{void
}{SetUnderlined
}{\param{const bool
}{ underlined
}}
477 \wxheading{Parameters
}
479 \docparam{underlining
}{true to underline, false otherwise.
}
483 \helpref{wxFont::GetUnderlined
}{wxfontgetunderlined
}
486 \membersection{wxFont::SetWeight
}\label{wxfontsetweight
}
488 \func{void
}{SetWeight
}{\param{int
}{ weight
}}
490 Sets the font weight.
492 \wxheading{Parameters
}
494 \docparam{weight
}{One of
{\bf wxNORMAL
},
{\bf wxLIGHT
} and
{\bf wxBOLD
}.
}
498 \helpref{wxFont::GetWeight
}{wxfontgetweight
}
501 \membersection{wxFont::operator $=$
}\label{wxfontassignment
}
503 \func{wxFont\&
}{operator $=$
}{\param{const wxFont\&
}{font
}}
505 Assignment operator, using reference counting. Returns a reference
509 \membersection{wxFont::operator $==$
}\label{wxfontequals
}
511 \func{bool
}{operator $==$
}{\param{const wxFont\&
}{font
}}
513 Equality operator. Two fonts are equal if they contain pointers
514 to the same underlying font data. It does not compare each attribute,
515 so two independently-created fonts using the same parameters will
519 \membersection{wxFont::operator $!=$
}\label{wxfontnotequals
}
521 \func{bool
}{operator $!=$
}{\param{const wxFont\&
}{font
}}
523 Inequality operator. Two fonts are not equal if they contain pointers
524 to different underlying font data. It does not compare each attribute.