preferredLayoutSize(Container parent)
すべての Java レイアウト マネージャーで必要ですが、このメソッドはいつ呼び出されますか?
次のコードは にありますGridLayout.java
。
public Dimension preferredLayoutSize(Container parent) {
synchronized (parent.getTreeLock()) {
System.out.println(parent.getWidth() + " " + parent.getHeight());
Insets insets = parent.getInsets();
int ncomponents = parent.getComponentCount();
int nrows = rows;
int ncols = cols;
if (nrows > 0) {
ncols = (ncomponents + nrows - 1) / nrows;
} else {
nrows = (ncomponents + ncols - 1) / ncols;
}
int w = 0;
int h = 0;
for (int i = 0 ; i < ncomponents ; i++) {
Component comp = parent.getComponent(i);
Dimension d = comp.getPreferredSize();
if (w < d.width) {
w = d.width;
}
if (h < d.height) {
h = d.height;
}
}
return new Dimension(insets.left + insets.right + ncols*w + (ncols-1)*hgap,
insets.top + insets.bottom + nrows*h + (nrows-1)*vgap);
}
}
しかし、上記のすべてのコードを次のように変更すると、何が違うのでしょうか?
public Dimension preferredLayoutSize(Container parent) {
return new Dimension(parent.getWidth(), parent.getHeight());
}
ありがとうございました。