MINERVA superseeded IF/Prolog.
Please see
http://www.ifcomputer.co.jp/MINERVA
for details.
We discontinued to sell IF/Prolog Dec 31. 2003.
For current customers, we continue to provide
professional support for IF/Prolog until Dec 31, 2008.
void XtDrawFontExtents(w, direction, ascent, descent);
Widget w;
int *direction,
*ascent,
*descent;
XTextExtents()と同様の働きをします。
アクティブなGC中のフォントに関する全体的なフォント direction, ascent, descentが返されます。
void XtDrawStringExtents(w, string, width, ascent, descent);
Widget w;
char *string;
short *width,
*ascent,
*descent;
XTextExtents()と同様の働きをします。
アクティブなGC中のフォントに関する文字列 width, ascent, descentが返されます。
|