Lines Matching refs:height

145 	     horizontal ? clip->core.width : clip->core.height);
222 * Set the clip widget to the correct height.
226 clip_height = w->core.height;
233 (w->core.height > v_bar->core.height + v_bar->core.border_width) )
234 clip_height -= v_bar->core.height + v_bar->core.border_width;
320 child->core.height, (Dimension)0 );
351 GetGeometry( widget, child->core.width, child->core.height );
353 ( (FormWidget)w, w->core.width, w->core.height );
384 clip->core.height, child->core.height );
400 if (-y + clip->core.height > child->core.height)
401 y = -(child->core.height - clip->core.height);
431 clip_height = w->core.height;
449 * intended.{width,height} caches the eventual child dimensions,
462 if (child->core.height < clip_height)
463 intended.height = clip_height;
465 intended.height = child->core.height;
472 preferred.height = child->core.height;
481 preferred.height = intended.height;
484 prev_height = intended.height;
498 clip_height -= bar->core.height + \
506 if (w->viewport.allowvert && preferred.height > clip_height) {
516 intended.height = preferred.height;
522 if (!w->viewport.allowvert || preferred.height < clip_height) {
523 intended.height = clip_height;
530 && intended.height != prev_height));
541 w->viewport.horiz_bar->core.height +
557 XtResizeWidget( bar, clip_width, bar->core.height, bw );
563 ? w->core.height - bar->core.height - bw
586 ? w->viewport.horiz_bar->core.height
594 (Dimension)intended.height, (Dimension)0 );
605 * intended - the cache of the childs height is
633 *clip_height -= w->viewport.horiz_bar->core.height +
640 intended->height = *clip_height;
660 intended->height = preferred.height;
662 intended->height = child->core.height;
667 intended->height = child->core.height;
673 AssignMax(intended->height, *clip_height);
684 static Boolean Layout(w, width, height)
686 Dimension width, height;
690 w->form.preferred_height = w->core.height;
736 y = (int)(-*percent * child->core.height);
738 y = -(int)(*percent * child->core.height);
770 (rHeight ? request->height : w->core.height)
773 height_remaining = w->core.height;
776 /* horizontal scrollbar will be needed so possibly reduce height */
780 height_remaining -= bar->core.height + bar->core.border_width;
787 if (rHeight && height_remaining != request->height) {
788 if (w->viewport.allowvert && request->height > height_remaining) {
806 allowed.height = height_remaining;
810 if (allowed.width != request->width || allowed.height != request->height) {
816 if (rHeight) child->core.height = request->height;
829 static Boolean GetGeometry(w, width, height)
831 Dimension width, height;
836 if (width == w->core.width && height == w->core.height)
841 geometry.height = height;
846 if (((ViewportWidget)w)->viewport.allowvert && height > w->core.height)
847 geometry.height = w->core.height;
851 if (w->core.height != 0) return False;
854 if (w->core.height != 0) geometry.height = w->core.height;