Lines Matching refs:width

102  * vertically, but don't change its width), and
109 * The width of the component will be at least its minimum width
423 * width. If this field is non-<code>null</code> the values are
584 dim[0] = new int[layoutInfo.width];
587 System.arraycopy(layoutInfo.minWidth, 0, dim[0], 0, layoutInfo.width);
610 weights[0] = new double[layoutInfo.width];
613 System.arraycopy(layoutInfo.weightX, 0, weights[0], 0, layoutInfo.width);
655 for (i=0; i<layoutInfo.width; i++) {
661 for (i=layoutInfo.width-1; i>=0; i--) {
827 * for (x=0; x<s.width; x++) {
1086 /* Adjust the grid width and height
1112 constraints.minWidth = d.width;
1118 /* Zero width and height must mean that this is the last item (or
1123 /* Zero width starts a new row */
1207 curWidth += r.width - curX;
1223 curWidth += r.width - curX;
1368 * is less than the total weight spanned by the width of the cell,
1551 int w = size.width + constraints.ipadx;
1593 * Adjusts the x, y, width, and height fields to the correct
1625 r.x -= r.width - constraints.insets.right;
1627 r.width -= (constraints.insets.left + constraints.insets.right);
1634 && (r.width > (constraints.minWidth + constraints.ipadx))) {
1635 diffx = r.width - (constraints.minWidth + constraints.ipadx);
1636 r.width = constraints.minWidth + constraints.ipadx;
1823 ascent = componentAdjusting.getBaseline(r.width, r.height);
1842 r.width, cellHeight - cons.insets.bottom -
1859 r.width = cons.minWidth;
2002 for(i = 0; i < info.width; i++)
2004 d.width = t + insets.left + insets.right;
2068 if (parent.width < d.width || parent.height < d.height) {
2074 r.width = d.width;
2088 * System.out.println("minSize " + r.width + " " + r.height);
2097 diffw = parent.width - r.width;
2100 for (i = 0; i < info.width; i++)
2103 for (i = 0; i < info.width; i++) {
2106 r.width += dx;
2108 r.width -= info.minWidth[i];
2113 diffw = parent.width - r.width;
2170 r.x = parent.width - (diffw/2 + insets.right);
2179 r.width = 0;
2183 r.width += info.minWidth[i];
2199 r.width += r.x;
2214 if ((r.width <= 0) || (r.height <= 0)) {
2219 comp.width != r.width || comp.height != r.height) {
2220 comp.setBounds(r.x, r.y, r.width, r.height);