Query: xfreefontinfo
OS: hpux
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
XFreeFontInfo() XFreeFontInfo()
Name
XFreeFontInfo - free the memory allocated by XListFontsWithInfo.
Synopsis
XFreeFontInfo(names, info, actual_count)
char **names;
XFontStruct *info;
int actual_count;
Arguments
names Specifies a pointer to the list of font names that were returned by XListFontsWithInfo().
info Specifies a pointer to the list of font information that was returned by XListFontsWithInfo().
actual_count
Specifies the number of matched font names returned by XListFontsWithInfo().
Description
XFreeFontInfo() frees the list of font information structures allocated by XListFontsWithInfo(). It does not unload the specified fonts
themselves. To free an XFontStruct structure without closing the font, call XFreeFontInfo() with the names argument specified as NULL.
Structures
typedef struct {
XExtData *ext_data; /* hook for extension to hang data */
Font fid; /* Font ID for this font */
unsigned direction; /* hint about direction the font is painted */
unsigned min_char_or_byte2; /* first character */
unsigned max_char_or_byte2; /* last character */
unsigned min_byte1; /* first row that exists */
unsigned max_byte1; /* last row that exists */
Bool all_chars_exist; /* flag if all characters have non-zero size */
unsigned default_char; /* char to print for undefined character */
int n_properties; /* how many properties there are */
XFontProp *properties; /* pointer to array of additional properties */
XCharStruct min_bounds; /* minimum bounds over all existing char */
XCharStruct max_bounds; /* maximum bounds over all existing char */
XCharStruct *per_char; /* first_char to last_char information */
int ascent; /* logical extent above baseline for spacing */
int descent; /* logical descent below baseline for spacing */
} XFontStruct;
See Also
XCreateFontCursor(), XFreeFont(), XFreeFontNames(), XGetFontPath(), XGetFontProperty(), XListFonts(), XListFontsWithInfo(), XLoadFont(),
XLoadQueryFont(), XQueryFont(), XSetFont(), XSetFontPath(), XUnloadFont().
Xlib - Fonts XFreeFontInfo()
| Related Man Pages |
|---|
| xfreefontnames(3) - debian |
| xfreefontinfo(3) - hpux |
| xlistfontswithinfo(3) - hpux |
| xtextextena(3) - hpux |
| xtextwidth(3) - hpux |
| Similar Topics in the Unix Linux Community |
|---|
| PHP Man Pages Now Available (Over 10,000) |
| Is UNIX an open source OS ? |
| SAN Migration question |
| awk - Multi-line data to be stored in variable |
| Wrong Array... |