Lines Matching defs:bbox
964 XCharStruct bbox;
1011 &dummy, &dummy, &dummy, &bbox);
1012 valuePixels = bbox.rbearing - bbox.lbearing;
1015 &dummy, &dummy, &dummy, &bbox);
1016 if (valuePixels < bbox.rbearing - bbox.lbearing) {
1017 valuePixels = bbox.rbearing - bbox.lbearing;
1049 scalePtr->labelLength, &dummy, &dummy, &dummy, &bbox);
1050 scalePtr->vertLabelX = x + scalePtr->fontPtr->ascent/2 - bbox.lbearing;
1051 x = scalePtr->vertLabelX + bbox.rbearing
1234 XCharStruct bbox;
1240 &dummy, &dummy, &dummy, &bbox);
1247 if ((y - bbox.ascent) < (scalePtr->inset + SPACING)) {
1248 y = scalePtr->inset + SPACING + bbox.ascent;
1250 if ((y + bbox.descent) > (Tk_Height(tkwin) - scalePtr->inset - SPACING)) {
1251 y = Tk_Height(tkwin) - scalePtr->inset - SPACING - bbox.descent;
1254 rightEdge - bbox.rbearing, y, valueString, length);
1433 XCharStruct bbox;
1440 &dummy, &dummy, &dummy, &bbox);
1447 x -= (bbox.rbearing - bbox.lbearing)/2;
1448 if ((x + bbox.lbearing) < (scalePtr->inset + SPACING)) {
1449 x = scalePtr->inset + SPACING - bbox.lbearing;
1451 if ((x + bbox.rbearing) > (Tk_Width(tkwin) - scalePtr->inset)) {
1452 x = Tk_Width(tkwin) - scalePtr->inset - SPACING - bbox.rbearing;