Lines Matching refs:height

271   if (smw->core.height == 0) {
273 smw->core.height = GetMenuHeight(new);
316 (unsigned int) (*entry)->rectangle.height)) {
406 if (smw_new->core.height != smw_old->core.height) {
407 smw_new->simple_menu.menu_height = (smw_new->core.height != 0);
455 * If the user actually passed a width and height to the widget
457 * height.
467 Dimension width, height;
470 height = w->core.height;
476 height = (Dimension) arglist[i].value;
479 if ((width != w->core.width) || (height != w->core.height))
480 MakeSetValuesRequest(w, width, height);
513 reply->height = request->height;
516 old_height = entry->rectangle.height;
518 Layout(w, &(reply->width), &(reply->height) );
530 (reply->height == request->height) ) {
534 entry->rectangle.height = old_height;
543 entry->rectangle.height = old_height;
546 ((reply->height == request->height) && !(mode & CWWidth)) ||
548 (reply->height == request->height)) )
555 if (reply->height != request->height)
852 * height values.
855 * if width == NULL || height == NULL then it assumes the you do not care
859 * to be width and height that the child would get if it were layed out
872 Dimension width, height;
875 height = 0;
890 height = smw->core.height;
893 height = smw->simple_menu.top_margin;
899 (*entry)->rectangle.height = smw->simple_menu.row_height;
901 (*entry)->rectangle.y = height;
903 height += (*entry)->rectangle.height;
905 height += smw->simple_menu.bottom_margin;
910 height = smw->simple_menu.row_height;
926 MakeSetValuesRequest((Widget) smw, width, height);
930 if (height != 0)
931 *height_ret = height;
1025 location->y -= entry->rectangle.y + entry->rectangle.height/2;
1049 int height = w->core.height + 2 * w->core.border_width;
1063 if (y + height > scr_height)
1064 y = scr_height - height;
1103 * width, height - the size of the ask for.
1108 MakeSetValuesRequest(w, width, height)
1110 Dimension width, height;
1117 if ( (smw->core.width != width) || (smw->core.height != height) ) {
1120 XtSetArg(arglist[num_args], XtNheight, height); num_args++;
1182 Dimension height;
1185 return(smw->core.height);
1187 height = smw->simple_menu.top_margin + smw->simple_menu.bottom_margin;
1192 height += (*entry)->rectangle.height;
1194 height += smw->simple_menu.row_height * smw->composite.num_children;
1196 return(height);
1237 (y_loc >= smw->core.height) )
1244 ((*entry)->rectangle.y + (*entry)->rectangle.height > y_loc) )