1Font(3)               User Contributed Perl Documentation              Font(3)
2
3
4

NAME

6       font - Create and inspect fonts.
7

SYNOPSIS

9        $widget->Font(option?, arg, arg, ...?)
10
11        $font->Option?(arg, arg, ...)?
12

DESCRIPTION

14       The Font method provides several facilities for dealing with fonts,
15       such as defining named fonts and inspecting the actual attributes of a
16       font.  The command has several different forms, determined by the first
17       argument.  The following forms are currently supported:
18
19       $font->actual(-option?)
20       $widget->fontActual(font?, -option?)
21           Returns information about the actual attributes that are obtained
22           when font is used on $font's display; the actual attributes
23           obtained may differ from the attributes requested due to platform-
24           dependant limitations, such as the availability of font families
25           and pointsizes.  font is a font description; see "FONT DESCRIPTION"
26           below.  If option is specified, returns the value of that
27           attribute; if it is omitted, the return value is a list of all the
28           attributes and their values.  See "FONT OPTIONS" below for a list
29           of the possible attributes.
30
31       $font->configure(-option??=>value, -option=>value, ...?)
32           Query or modify the desired attributes for $font.  If no -option is
33           specified, returns a list describing all the options and their val‐
34           ues for fontname.  If a single -option is specified with no value,
35           then returns the current value of that attribute.  If one or more
36           option-value pairs are specified, then the method modifies the
37           given named font to have the given values; in this case, all wid‐
38           gets using that font will redisplay themselves using the new
39           attributes for the font.  See "FONT OPTIONS" below for a list of
40           the possible attributes.
41
42           Note: the above behaviour differs in detail to configure on wid‐
43           gets, images etc.
44
45       $font = $widget->Font(-option=>value, ...>?)
46       $font = $widget->fontCreate(?fontname??, -option=>value, ...>?)
47           Creates a new font object and returns a reference to it.  fontname
48           specifies the name for the font; if it is omitted, then Tk gener‐
49           ates a new name of the form fontx, where x is an integer.  There
50           may be any number of option-value pairs, which provide the desired
51           attributes for the new named font.  See "FONT OPTIONS" below for a
52           list of the possible attributes.
53
54           Note: the created font is not shared between widgets of different
55           MainWindows.
56
57       $font->delete
58       $widget->fontDelete(fontname?, fontname, ...?)
59           Delete the specified named fonts.  If there are widgets using the
60           named font, the named font won't actually be deleted until all the
61           instances are released.  Those widgets will continue to display
62           using the last known values for the named font.  If a deleted named
63           font is subsequently recreated with another call to fontCreate, the
64           widgets will use the new named font and redisplay themselves using
65           the new attributes of that font.
66
67       $widget->fontFamilies
68           The return value is a list of the case-insensitive names of all
69           font families that exist on $widget's display.
70
71       $font->measure(text)
72       $widget->fontMeasure(font, text)
73           Measures the amount of space the string text would use in the given
74           font when displayed in $widget.  font is a font description; see
75           "FONT DESCRIPTION" below.  The return value is the total width in
76           pixels of text, not including the extra pixels used by highly
77           exagerrated characters such as cursive ``f''.  If the string con‐
78           tains newlines or tabs, those characters are not expanded or
79           treated specially when measuring the string.
80
81       $font->metrics(-option?)
82       $widget->fontMetrics(font?, -option?)
83           Returns information about the metrics (the font-specific data), for
84           font when it is used on $widget's display.  font is a font descrip‐
85           tion; see "FONT DESCRIPTION" below.  If option is specified,
86           returns the value of that metric; if it is omitted, the return
87           value is a list of all the metrics and their values.  See "FONT
88           METRICS" below for a list of the possible metrics.
89
90       $widget->fontNames
91           The return value is a list of all font objects that are currently
92           defined for $widget's MainWindow.
93

FONT DESCRIPTION

95       The following formats are accepted as a font description anywhere font
96       is specified as an argument above; these same forms are also permitted
97       when specifying the -font option for widgets.
98
99       [1] fontname
100           The name of a named font, created using the fontCreate method.
101           When a widget uses a named font, it is guaranteed that this will
102           never cause an error, as long as the named font exists, no matter
103           what potentially invalid or meaningless set of attributes the named
104           font has.  If the named font cannot be displayed with exactly the
105           specified attributes, some other close font will be substituted
106           automatically.
107
108       [1a] $font
109           A font object created using the Font method. This is essentially
110           the same as using a named font. The object is a reference to the
111           name, and carries additional information e.g. which MainWindow it
112           relates to in an manner peculiar to perl/Tk.
113
114       [3] systemfont
115           The platform-specific name of a font, interpreted by the graphics
116           server.  This also includes, under X, an XLFD (see [4]) for which a
117           single ``*'' character was used to elide more than one field in the
118           middle of the name.  See "PLATFORM-SPECIFIC ISSUES" for a list of
119           the system fonts.
120
121       [3] [family,?size,??style,??style ...?]
122           A properly formed list whose first element is the desired font fam‐
123           ily and whose optional second element is the desired size.  The
124           interpretation of the size attribute follows the same rules
125           described for -size in "FONT OPTIONS" below.  Any additional
126           optional arguments following the size are font styles.  Possible
127           values for the style arguments are as follows:
128
129               normal      bold    roman   italic
130               underline   overstrike
131
132       [4] X-font names (XLFD)
133           A Unix-centric font name of the form -foundry-fam‐
134           ily-weight-slant-setwidth-addstyle-pixel-point-resx-resy-spac‐
135           ing-width-charset-encoding.  The ``*'' character may be used to
136           skip individual fields that the user does not care about.  There
137           must be exactly one ``*'' for each field skipped, except that a
138           ``*'' at the end of the XLFD skips any remaining fields; the short‐
139           est valid XLFD is simply ``*'', signifying all fields as defaults.
140           Any fields that were skipped are given default values.  For compat‐
141           ibility, an XLFD always chooses a font of the specified pixel size
142           (not point size); although this interpretation is not strictly cor‐
143           rect, all existing applications using XLFDs assumed that one
144           ``point'' was in fact one pixel and would display incorrectly (gen‐
145           erally larger) if the correct size font were actually used.
146
147       [5] option value ?option value ...?
148           A properly formed list of option-value pairs that specify the
149           desired attributes of the font, in the same format used when defin‐
150           ing a named font; see "FONT OPTIONS" below.
151
152       When font description font is used, the system attempts to parse the
153       description according to each of the above five rules, in the order
154       specified.  Cases [1] and [2] must match the name of an existing named
155       font or of a system font.  Cases [3], [4], and [5] are accepted on all
156       platforms and the closest available font will be used.  In some situa‐
157       tions it may not be possible to find any close font (e.g., the font
158       family was a garbage value); in that case, some system-dependant
159       default font is chosen.  If the font description does not match any of
160       the above patterns, an error is generated.
161

FONT METRICS

163       The following options are used by the metrics/fontMetrics method to
164       query font-specific data determined when the font was created.  These
165       properties are for the whole font itself and not for individual charac‐
166       ters drawn in that font.  In the following definitions, the ``base‐
167       line'' of a font is the horizontal line where the bottom of most let‐
168       ters line up; certain letters, such as lower-case ``g'' stick below the
169       baseline.
170
171       -ascent
172           The amount in pixels that the tallest letter sticks up above the
173           baseline of the font, plus any extra blank space added by the
174           designer of the font.  ($font->ascent is provided for compatibil‐
175           ity.)
176
177       -descent
178           The largest amount in pixels that any letter sticks down below the
179           baseline of the font, plus any extra blank space added by the
180           designer of the font.  ($font->descent is provided for compatibil‐
181           ity.)
182
183       -linespace
184           Returns how far apart vertically in pixels two lines of text using
185           the same font should be placed so that none of the characters in
186           one line overlap any of the characters in the other line.  This is
187           generally the sum of the ascent above the baseline line plus the
188           descent below the baseline.
189
190       -fixed
191           Returns a boolean flag that is ``1'' if this is a fixed-width font,
192           where each normal character is the the same width as all the other
193           characters, or is ``0'' if this is a proportionally-spaced font,
194           where individual characters have different widths.  The widths of
195           control characters, tab characters, and other non-printing charac‐
196           ters are not included when calculating this value.
197

FONT OPTIONS

199       The following options are supported on all platforms, and are used when
200       constructing a named font or when specifying a font using style [5] as
201       above:
202
203       -family => name
204           The case-insensitive font family name.  Tk guarantees to support
205           the font families named Courier (a monospaced ``typewriter'' font),
206           Times (a serifed ``newspaper'' font), and Helvetica (a sans-serif
207           ``European'' font).  The most closely matching native font family
208           will automatically be substituted when one of the above font fami‐
209           lies is used.  The name may also be the name of a native, platform-
210           specific font family; in that case it will work as desired on one
211           platform but may not display correctly on other platforms.  If the
212           family is unspecified or unrecognized, a platform-specific default
213           font will be chosen.
214
215       -size => size
216           The desired size of the font.  If the size argument is a positive
217           number, it is interpreted as a size in points.  If size is a nega‐
218           tive number, its absolute value is interpreted as a size in pixels.
219           If a font cannot be displayed at the specified size, a nearby size
220           will be chosen.  If size is unspecified or zero, a platform-depen‐
221           dent default size will be chosen.
222
223           The original Tcl/Tk authors believe sizes should normally be speci‐
224           fied in points so the application will remain the same ruler size
225           on the screen, even when changing screen resolutions or moving
226           scripts across platforms. While this is an admirable goal it does
227           not work as well in practice as they hoped.  The mapping between
228           points and  pixels is set when the application starts, based on
229           alleged properties of the installed monitor, but it can be overrid‐
230           den by calling the  scaling command. However this can be problem‐
231           atic when system has no way of telling if (say) an 11" or 22" moni‐
232           tor is attached, also if it can tell then some monitor sizes may
233           result in poorer quality scaled fonts being used rather than a
234           "tuned" bitmap font.  In addition specifying pixels is useful in
235           certain circumstances such as when a piece of text must line up
236           with respect to a fixed-size bitmap.
237
238           At present the Tcl/Tk scheme is used unchanged, with "point" size
239           being returned by actual (as an integer), and used internally. Sug‐
240           gestions for work-rounds to undesirable behaviour welcome.
241
242       -weight => weight
243           The nominal thickness of the characters in the font.  The value
244           normal specifies a normal weight font, while bold specifies a bold
245           font.  The closest available weight to the one specified will be
246           chosen.  The default weight is normal.
247
248       -slant => slant
249           The amount the characters in the font are slanted away from the
250           vertical.  Valid values for slant are roman and italic.  A roman
251           font is the normal, upright appearance of a font, while an italic
252           font is one that is tilted some number of degrees from upright.
253           The closest available slant to the one specified will be chosen.
254           The default slant is roman.
255
256       -underline => boolean
257           The value is a boolean flag that specifies whether characters in
258           this font should be underlined.  The default value for underline is
259           false.
260
261       -overstrike => boolean
262           The value is a boolean flag that specifies whether a horizontal
263           line should be drawn through the middle of characters in this font.
264           The default value for overstrike is false.
265

PLATFORM-SPECIFIC ISSUES

267       The following named system fonts are supported:
268
269       X Windows:
270           All valid X font names, including those listed by xlsfonts(1), are
271           available.
272
273       MS Windows:
274            system       ansi       device
275            systemfixed  ansifixed  oemfixed
276
277       Macintosh:
278            system       application
279

COMPATIBILITY WITH PREVIOUS VERSIONS

281       In prior versions of perl/Tk the $widget->Font method was a perl wrap‐
282       per on the original "[4] X-font names (XLFD)" style as described above
283       (which was the only form supported by versions of core tk prior to ver‐
284       sion tk8.0).  This module is provided in its original form (it has just
285       been renamed) via:
286
287        use Tk::X11Font;
288        I<$widget>-E<gt>B<X11Font>(...)
289
290       However the methods of the old scheme have been mimiced as closely as
291       possible with the new scheme. It is intended that code should work
292       without modification, except for the case of using :
293
294         @names = $font->Name;
295
296       i.e. the Name method in an array/list context. This now returns one
297       element on all platforms (as it did on Win32), while previously on X
298       systems it returned a list of fonts that matched an under-specified
299       pattern.
300
301       Briefly the methods supported for compatibilty are as follows:
302
303       $newfont = $font->Clone(-option=>value, ...>?)
304           Returns a new font object $newfont related to the original $font by
305           changing the values of the specified -options.
306
307       $font->Family - maps to -family
308       $font->Weight - maps to -weight
309       $font->Slant - maps to -slant
310       $font->Pixel and Point - map to -size
311
312       New code should use $font->configure to achieve same effect as last
313       four items above.
314
315       Foundry, Swidth, Adstyle, Xres, Yres, Space, Avgwidth, Registry, Encod‐
316       ing
317           Are all ignored if set, and return '*' if queried.
318
319       $font->Name
320           Returns the name of a named font, or a string representation of an
321           unnamed font. Using $font in a scalar context does the same. Note
322           this is distinctly different from behaviour of X11Font's Name in a
323           list context.
324
325       $font->Pattern
326           Returns a XLFD string for the font based on actual values, and some
327           heuristics to map Tk's forms to the "standard" X conventions.
328

SEE ALSO

330       Tk::options
331
332       Tk::X11Font
333

KEYWORDS

335       font
336
337
338
339perl v5.8.8                       2008-02-05                           Font(3)
Impressum