1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
| package util.applet;
import java.awt.*;
import java.io.Serializable;
public class VerticalFlowLayout extends FlowLayout
implements Serializable
{
public VerticalFlowLayout()
{
this(0, 5, 5, true, false);
}
public VerticalFlowLayout(boolean hfill, boolean vfill)
{
this(0, 5, 5, hfill, vfill);
}
public VerticalFlowLayout(int align)
{
this(align, 5, 5, true, false);
}
public VerticalFlowLayout(int align, boolean hfill, boolean vfill)
{
this(align, 5, 5, hfill, vfill);
}
public VerticalFlowLayout(int align, int hgap, int vgap, boolean hfill, boolean vfill)
{
setAlignment(align);
this.hgap = hgap;
this.vgap = vgap;
this.hfill = hfill;
this.vfill = vfill;
}
public Dimension preferredLayoutSize(Container target)
{
Dimension tarsiz = new Dimension(0, 0);
for(int i = 0; i < target.getComponentCount(); i++)
{
Component m = target.getComponent(i);
if(m.isVisible())
{
Dimension d = m.getPreferredSize();
tarsiz.width = Math.max(tarsiz.width, d.width);
if(i > 0)
tarsiz.height += hgap;
tarsiz.height += d.height;
}
}
Insets insets = target.getInsets();
tarsiz.width += insets.left + insets.right + hgap * 2;
tarsiz.height += insets.top + insets.bottom + vgap * 2;
return tarsiz;
}
public Dimension minimumLayoutSize(Container target)
{
Dimension tarsiz = new Dimension(0, 0);
for(int i = 0; i < target.getComponentCount(); i++)
{
Component m = target.getComponent(i);
if(m.isVisible())
{
Dimension d = m.getMinimumSize();
tarsiz.width = Math.max(tarsiz.width, d.width);
if(i > 0)
tarsiz.height += vgap;
tarsiz.height += d.height;
}
}
Insets insets = target.getInsets();
tarsiz.width += insets.left + insets.right + hgap * 2;
tarsiz.height += insets.top + insets.bottom + vgap * 2;
return tarsiz;
}
public void setVerticalFill(boolean vfill)
{
this.vfill = vfill;
}
public boolean getVerticalFill()
{
return vfill;
}
public void setHorizontalFill(boolean hfill)
{
this.hfill = hfill;
}
public boolean getHorizontalFill()
{
return hfill;
}
private void placethem(Container target, int x, int y, int width, int height, int first, int last)
{
int align = getAlignment();
if(align == 1)
y += height / 2;
if(align == 2)
y += height;
for(int i = first; i < last; i++)
{
Component m = target.getComponent(i);
Dimension md = m.getSize();
if(m.isVisible())
{
int px = x + (width - md.width) / 2;
m.setLocation(px, y);
y += vgap + md.height;
}
}
}
public void layoutContainer(Container target)
{
Insets insets = target.getInsets();
int maxheight = target.getSize().height - (insets.top + insets.bottom + vgap * 2);
int maxwidth = target.getSize().width - (insets.left + insets.right + hgap * 2);
int numcomp = target.getComponentCount();
int x = insets.left + hgap;
int y = 0;
int colw = 0;
int start = 0;
for(int i = 0; i < numcomp; i++)
{
Component m = target.getComponent(i);
if(m.isVisible())
{
Dimension d = m.getPreferredSize();
if(vfill && i == numcomp - 1)
d.height = Math.max(maxheight - y, m.getPreferredSize().height);
if(hfill)
{
m.setSize(maxwidth, d.height);
d.width = maxwidth;
} else
{
m.setSize(d.width, d.height);
}
if(y + d.height > maxheight)
{
placethem(target, x, insets.top + vgap, colw, maxheight - y, start, i);
y = d.height;
x += hgap + colw;
colw = d.width;
start = i;
} else
{
if(y > 0)
y += vgap;
y += d.height;
colw = Math.max(colw, d.width);
}
}
}
placethem(target, x, insets.top + vgap, colw, maxheight - y, start, numcomp);
}
public static final int TOP = 0;
public static final int MIDDLE = 1;
public static final int BOTTOM = 2;
int hgap;
int vgap;
boolean hfill;
boolean vfill;
} |
Partager