Lines Matching defs:height
55 int width, height; /* Absolute dimensions for tkwin. */
70 * CHILD_HEIGHT - 1 means -height was specified;
279 sprintf(buffer, " -height %d", slavePtr->height);
282 Tcl_AppendResult(interp, " -height {}", (char *) NULL);
361 slavePtr->width = slavePtr->height = 0;
537 } else if ((c == 'h') && (strncmp(argv[0], "-height", length) == 0)) {
542 &slavePtr->height) != TCL_OK) {
663 argv[0], "\": must be -anchor, -bordermode, -height, ",
715 int x, y, width, height, tmp;
776 height = 0;
778 height += slavePtr->height;
787 height += tmp - y;
790 height = Tk_ReqHeight(slavePtr->tkwin)
809 y -= height/2;
813 y -= height;
817 y -= height;
820 y -= height;
823 y -= height/2;
829 y -= height/2;
834 * Step 4: adjust width and height again to reflect inside dimensions
836 * height aren't zero.
840 height -= 2*Tk_Changes(slavePtr->tkwin)->border_width;
844 if (height <= 0) {
845 height = 1;
860 || (height != Tk_Height(slavePtr->tkwin))) {
861 Tk_MoveResizeWindow(slavePtr->tkwin, x, y, width, height);
873 if ((width <= 0) || (height <= 0)) {
878 x, y, width, height);