Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from the X Consortium.

Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
Digital Equipment Corporation

Portions Copyright \(co 1990, 1991 by
Tektronix, Inc.

Permission to use, copy, modify and distribute this documentation for
any purpose and without fee is hereby granted, provided that the above
copyright notice appears in all copies and that both that copyright notice
and this permission notice appear in all copies, and that the names of
Digital and Tektronix not be used in in advertising or publicity pertaining
to this documentation without specific, written prior permission.
Digital and Tektronix makes no representations about the suitability
of this documentation for any purpose.
It is provided "as is" without express or implied warranty.


XTextExtents __libmansuffix__ __xorgversion__ "XLIB FUNCTIONS"
NAME
XTextExtents, XTextExtents16, XQueryTextExtents, XQueryTextExtents16 - compute or query text extents
SYNTAX

int XTextExtents\^(\^XFontStruct *font_struct\^, _Xconst char *string\^, int nchars\^, int *direction_return\^, int *font_ascent_return, int *font_descent_return\^, XCharStruct *overall_return\^);

int XTextExtents16\^(\^XFontStruct *font_struct\^, _Xconst XChar2b *string\^, int nchars\^, int *direction_return\^, int *font_ascent_return, int *font_descent_return\^, XCharStruct *overall_return\^);

int XQueryTextExtents\^(\^Display *display\^, XID font_ID\^, _Xconst char *string\^, int nchars\^, int *direction_return\^, int *font_ascent_return, int *font_descent_return\^, XCharStruct *overall_return\^);

int XQueryTextExtents16\^(\^Display *display\^, XID font_ID\^, _Xconst XChar2b *string\^, int nchars\^, int *direction_return\^, int *font_ascent_return, int *font_descent_return\^, XCharStruct *overall_return\^);

ARGUMENTS
direction_return 1i
Returns the value of the direction hint ( FontLeftToRight or FontRightToLeft ).
display 1i
Specifies the connection to the X server.
font_ID 1i
Specifies either the font ID or the GContext ID that contains the font.
font_ascent_return 1i
Returns the font ascent.
font_descent_return 1i
Returns the font descent.
font_struct 1i
Specifies the XFontStruct structure.
nchars 1i
Specifies the number of characters in the character string.
string 1i
Specifies the character string.
overall_return 1i
Returns the overall size in the specified XCharStruct structure.
DESCRIPTION
The XTextExtents and XTextExtents16 functions perform the size computation locally and, thereby, avoid the round-trip overhead of XQueryTextExtents and XQueryTextExtents16 . Both functions return an XCharStruct structure, whose members are set to the values as follows.

The ascent member is set to the maximum of the ascent metrics of all characters in the string. The descent member is set to the maximum of the descent metrics. The width member is set to the sum of the character-width metrics of all characters in the string. For each character in the string, let W be the sum of the character-width metrics of all characters preceding it in the string. Let L be the left-side-bearing metric of the character plus W. Let R be the right-side-bearing metric of the character plus W. The lbearing member is set to the minimum L of all characters in the string. The rbearing member is set to the maximum R.

For fonts defined with linear indexing rather than 2-byte matrix indexing, each XChar2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics.

The XQueryTextExtents and XQueryTextExtents16 functions return the bounding box of the specified 8-bit and 16-bit character string in the specified font or the font contained in the specified GC. These functions query the X server and, therefore, suffer the round-trip overhead that is avoided by XTextExtents and XTextExtents16 . Both functions return a XCharStruct structure, whose members are set to the values as follows.

The ascent member is set to the maximum of the ascent metrics of all characters in the string. The descent member is set to the maximum of the descent metrics. The width member is set to the sum of the character-width metrics of all characters in the string. For each character in the string, let W be the sum of the character-width metrics of all characters preceding it in the string. Let L be the left-side-bearing metric of the character plus W. Let R be the right-side-bearing metric of the character plus W. The lbearing member is set to the minimum L of all characters in the string. The rbearing member is set to the maximum R.

For fonts defined with linear indexing rather than 2-byte matrix indexing, each XChar2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics.

Characters with all zero metrics are ignored. If the font has no defined default_char, the undefined characters in the string are also ignored.

XQueryTextExtents and XQueryTextExtents16 can generate BadFont and BadGC errors.

DIAGNOSTICS

1i BadFont A value for a Font or GContext argument does not name a defined Font.

1i BadGC A value for a GContext argument does not name a defined GContext.

"SEE ALSO"
XLoadFont(__libmansuffix__), XTextWidth(__libmansuffix__)

\*(xL