Lines Matching refs:font
47 XFontStruct *font)
62 if(vrotate->font == font)
72 XFontStruct *font)
87 if(vmap->font == font)
97 XFontStruct *font,
108 if(is_rotate(oc, font) == True) {
109 escapement += _XTextHeight16(font, buf2b, 1);
111 escapement += (int) (font->max_bounds.ascent +
112 font->max_bounds.descent);
117 if(is_rotate(oc, font) == True) {
118 escapement += _XTextHeight(font, buf, 1);
120 escapement += (int) (font->max_bounds.ascent +
121 font->max_bounds.descent);
137 XFontStruct *font;
155 * First, see if the "Best Match" font for the FontSet was set.
156 * If it was, use that font. If it was not set, then use the
157 * font defined by font_set->font_data[0] (which is what
160 * parse_fontname() and parse_fontdata(), fs->font will
162 * the check for "fd->font", but we won't :-) -- jjw/pma (HP)
165 * Note that fd->font is junk so using the result of the
172 if((font = font_set->font) == (XFontStruct *) NULL) {
175 (font = fd->font) == (XFontStruct *) NULL)
184 escapement += XTextWidth16(font, (XChar2b *)ptr, char_len);
187 escapement += XTextWidth(font, (char *)ptr, char_len);
193 if(font_set->font == font) {
199 (font = fd->font) == (XFontStruct *) NULL)
202 if(is_codemap(oc, fd->font) == False) {
209 (font = fd->font) == (XFontStruct *) NULL)
218 escapement += escapement_vertical(oc, font, is_xchar2b,
247 XFontStruct *font;
261 args[0] = (XPointer) &font;