Lines Matching refs:height

282   if (smw->core.height == 0) {
284 smw->core.height = GetMenuHeight(new);
327 (unsigned int) (*entry)->rectangle.height)) {
419 if (smw_new->core.height != smw_old->core.height) {
420 smw_new->simple_menu.menu_height = (smw_new->core.height != 0);
468 * If the user actually passed a width and height to the widget
470 * height.
480 Dimension width, height;
483 height = w->core.height;
489 height = (Dimension) arglist[i].value;
492 if ((width != w->core.width) || (height != w->core.height))
493 MakeSetValuesRequest(w, width, height);
526 reply->height = request->height;
529 old_height = entry->rectangle.height;
531 Layout(w, &(reply->width), &(reply->height) );
543 (reply->height == request->height) ) {
547 entry->rectangle.height = old_height;
556 entry->rectangle.height = old_height;
559 ((reply->height == request->height) && !(mode & CWWidth)) ||
561 (reply->height == request->height)) )
568 if (reply->height != request->height)
889 * height values.
892 * if width == NULL || height == NULL then it assumes the you do not care
896 * to be width and height that the child would get if it were layed out
909 Dimension width, height;
912 height = 0;
927 height = smw->core.height;
930 height = smw->simple_menu.top_margin;
936 (*entry)->rectangle.height = smw->simple_menu.row_height;
938 (*entry)->rectangle.y = height;
940 height += (*entry)->rectangle.height;
942 height += smw->simple_menu.bottom_margin;
947 height = smw->simple_menu.row_height;
963 MakeSetValuesRequest((Widget) smw, width, height);
967 if (height != 0)
968 *height_ret = height;
1061 location->y -= entry->rectangle.y + entry->rectangle.height/2;
1085 int height = w->core.height + 2 * w->core.border_width;
1097 if (y + height > scr_height)
1098 y = scr_height - height;
1140 * width, height - the size of the ask for.
1145 MakeSetValuesRequest(w, width, height)
1147 Dimension width, height;
1154 if ( (smw->core.width != width) || (smw->core.height != height) ) {
1157 XtSetArg(arglist[num_args], XtNheight, height); num_args++;
1219 Dimension height;
1222 return(smw->core.height);
1224 height = smw->simple_menu.top_margin + smw->simple_menu.bottom_margin;
1229 height += (*entry)->rectangle.height;
1231 height += smw->simple_menu.row_height * smw->composite.num_children;
1233 return(height);
1274 (y_loc >= (int)smw->core.height) )
1281 ((*entry)->rectangle.y + (int) (*entry)->rectangle.height > y_loc) )