Lines Matching defs:info

730         GridBagLayoutInfo info = getLayoutInfo(parent, PREFERREDSIZE);
731 return getMinSize(parent, info);
744 GridBagLayoutInfo info = getLayoutInfo(parent, MINSIZE);
745 return getMinSize(parent, info);
1979 * @param info the layout info for this parent
1984 protected Dimension getMinSize(Container parent, GridBagLayoutInfo info) {
1985 return GetMinSize(parent, info);
1996 protected Dimension GetMinSize(Container parent, GridBagLayoutInfo info) {
2002 for(i = 0; i < info.width; i++)
2003 t += info.minWidth[i];
2007 for(i = 0; i < info.height; i++)
2008 t += info.minHeight[i];
2046 GridBagLayoutInfo info;
2065 info = getLayoutInfo(parent, PREFERREDSIZE);
2066 d = getMinSize(parent, info);
2069 info = getLayoutInfo(parent, MINSIZE);
2070 d = getMinSize(parent, info);
2073 layoutInfo = info;
2080 * DumpLayoutInfo(info);
2100 for (i = 0; i < info.width; i++)
2101 weight += info.weightX[i];
2103 for (i = 0; i < info.width; i++) {
2104 int dx = (int)(( ((double)diffw) * info.weightX[i]) / weight);
2105 info.minWidth[i] += dx;
2107 if (info.minWidth[i] < 0) {
2108 r.width -= info.minWidth[i];
2109 info.minWidth[i] = 0;
2123 for (i = 0; i < info.height; i++)
2124 weight += info.weightY[i];
2126 for (i = 0; i < info.height; i++) {
2127 int dy = (int)(( ((double)diffh) * info.weightY[i]) / weight);
2128 info.minHeight[i] += dy;
2130 if (info.minHeight[i] < 0) {
2131 r.height -= info.minHeight[i];
2132 info.minHeight[i] = 0;
2147 * DumpLayoutInfo(info);
2155 info.startx = diffw/2 + insets.left;
2156 info.starty = diffh/2 + insets.top;
2166 r.x = info.startx;
2168 r.x += info.minWidth[i];
2172 r.x -= info.minWidth[i];
2175 r.y = info.starty;
2177 r.y += info.minHeight[i];
2183 r.width += info.minWidth[i];
2190 r.height += info.minHeight[i];