Lines Matching defs:layoutInfo

411      * If <code>layoutInfo</code> is <code>null</code>
419 protected GridBagLayoutInfo layoutInfo;
563 if (layoutInfo != null) {
564 origin.x = layoutInfo.startx;
565 origin.y = layoutInfo.starty;
580 if (layoutInfo == null)
584 dim[0] = new int[layoutInfo.width];
585 dim[1] = new int[layoutInfo.height];
587 System.arraycopy(layoutInfo.minWidth, 0, dim[0], 0, layoutInfo.width);
588 System.arraycopy(layoutInfo.minHeight, 0, dim[1], 0, layoutInfo.height);
606 if (layoutInfo == null)
610 weights[0] = new double[layoutInfo.width];
611 weights[1] = new double[layoutInfo.height];
613 System.arraycopy(layoutInfo.weightX, 0, weights[0], 0, layoutInfo.width);
614 System.arraycopy(layoutInfo.weightY, 0, weights[1], 0, layoutInfo.height);
650 if (layoutInfo == null)
653 d = layoutInfo.startx;
655 for (i=0; i<layoutInfo.width; i++) {
656 d += layoutInfo.minWidth[i];
661 for (i=layoutInfo.width-1; i>=0; i--) {
664 d += layoutInfo.minWidth[i];
670 d = layoutInfo.starty;
671 for (i=0; i<layoutInfo.height; i++) {
672 d += layoutInfo.minHeight[i];
1788 layoutInfo.maxDescent[cons.tempY + cons.tempHeight - 1] +
1808 if (layoutInfo.hasConstantDescent(cons.tempY)) {
1811 baseline = cellHeight - layoutInfo.maxDescent[cons.tempY];
1815 baseline = layoutInfo.maxAscent[cons.tempY];
1913 if (layoutInfo.hasBaseline(cons.tempY)) {
1915 if (layoutInfo.hasConstantDescent(cons.tempY)) {
1917 maxY = cellY + cellHeight - layoutInfo.maxDescent[cons.tempY];
1921 maxY = cellY + layoutInfo.maxAscent[cons.tempY];
1945 if (layoutInfo.hasBaseline(cons.tempY)) {
1946 if (layoutInfo.hasConstantDescent(cons.tempY)) {
1948 r.y = cellY + cellHeight - layoutInfo.maxDescent[cons.tempY];
1952 r.y = cellY + layoutInfo.maxAscent[cons.tempY];
2073 layoutInfo = info;