Lines Matching refs:height

51 /* These added so widget knows whether its height, width are user selected.
276 * changex, changey - allow the height or width to change?
278 * Returns: TRUE if width or height have been changed
287 Dimension height = w->core.height;
291 if( Layout( w, changex, changey, &width, &height ) )
292 ChangeSize( w, width, height );
302 ChangeSize(w, width, height)
304 Dimension width, height;
310 request.height = height;
318 Layout(w, (request.height != reply.height),
320 &(reply.width), &(reply.height));
328 Layout(w, FALSE, FALSE, &(request.width), &(request.height));
367 (lw->core.height != 0) * HeightLock +
372 /* Set row height. based on font or fontset */
376 XExtentsOfFontSet(lw->list.fontset)->max_ink_extent.height
457 yloc += event->xexpose.height;
495 * clipping to the interior of internal_width/height by hand, as its a
512 Dimension height = lw->list.row_height;
514 Dimension frame_limited_height= w->core.height- lw->list.internal_height- y;
516 /* Clip the rectangle width and height to the edge of the drawable area */
520 if ( height> frame_limited_height)
521 height = frame_limited_height;
530 height = height - ( lw->list.internal_height - x );
534 width, height );
541 * write in the empty margin (specified by internal_width/height) (which also
556 rect.height = lw->core.height - lw->list.internal_height * 2;
712 new_height = intended->height;
714 new_height = w->core.height;
719 * We only care about our height and width.
730 requested->height = new_height;
746 Dimension width, height;
749 height = w->core.height;
751 if (Layout(w, FALSE, FALSE, &width, &height))
763 * width, height- the is the current width and height that we are going
767 * RETURNS: TRUE if width or height have been changed. */
770 Layout(w, xfree, yfree, width, height)
773 Dimension *width, *height;
798 if (yfree) { /* If allowed resize height. */
799 *height = (lw->list.nrows * lw->list.row_height)
807 * If both width and height are free to change the use default_cols
808 * to determine the number columns and set new width and height to
818 *height = (lw->list.nrows * lw->list.row_height)
824 * If the height is free to move (width still fixed) then resize the height
833 *height = (lw->list.nrows * lw->list.row_height)
839 * The last case is xfree and !yfree we use the height to determine
844 lw->list.nrows = (int)(*height - 2 * lw->list.internal_height)
957 /* If the request height/width is different, lock it. Unless its 0. If */
964 if ( nl->core.height != cl->core.height )
966 if ( nl->core.height == 0 )
997 nl->list.row_height = ext->max_ink_extent.height + nl->list.row_space;
1006 nl->list.row_height = ext->max_ink_extent.height + nl->list.row_space;
1014 (cl->core.height != nl->core.height) ||
1033 &nl->core.width, &nl->core.height );
1099 Dimension new_height = w->core.height;