Merge from mainline
[official-gcc.git] / libjava / classpath / javax / swing / BoxLayout.java
blob408dea934f8f640e6786eec2565d3bd0543309aa
1 /* BoxLayout.java -- A layout for swing components.
2 Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package javax.swing;
40 import java.awt.AWTError;
41 import java.awt.Component;
42 import java.awt.ComponentOrientation;
43 import java.awt.Container;
44 import java.awt.Dimension;
45 import java.awt.Insets;
46 import java.awt.LayoutManager2;
47 import java.io.Serializable;
49 /**
50 * A layout that stacks the children of a container in a Box, either
51 * horizontally or vertically.
53 * @author Ronald Veldema (rveldema@cs.vu.nl)
54 * @author Roman Kennke (roman@kennke.org)
56 public class BoxLayout implements LayoutManager2, Serializable
59 /**
60 * Specifies that components are laid out left to right.
62 public static final int X_AXIS = 0;
64 /**
65 * Specifies that components are laid out top to bottom.
67 public static final int Y_AXIS = 1;
69 /**
70 * Specifies that components are laid out in the direction of a line of text.
72 public static final int LINE_AXIS = 2;
74 /**
75 * Sepcifies that components are laid out in the direction of the line flow.
77 public static final int PAGE_AXIS = 3;
80 * Needed for serialization.
82 private static final long serialVersionUID = -2474455742719112368L;
85 * The container given to the constructor.
87 private Container container;
89 /**
90 * Current type of component layouting. Defaults to X_AXIS.
92 private int way = X_AXIS;
94 /**
95 * The size requirements of the containers children for the X direction.
97 private SizeRequirements[] xChildren;
99 /**
100 * The size requirements of the containers children for the Y direction.
102 private SizeRequirements[] yChildren;
105 * The size requirements of the container to be laid out for the X direction.
107 private SizeRequirements xTotal;
110 * The size requirements of the container to be laid out for the Y direction.
112 private SizeRequirements yTotal;
115 * The offsets of the child components in the X direction.
117 private int[] offsetsX;
120 * The offsets of the child components in the Y direction.
122 private int[] offsetsY;
125 * The spans of the child components in the X direction.
127 private int[] spansX;
130 * The spans of the child components in the Y direction.
132 private int[] spansY;
135 * Constructs a <code>BoxLayout</code> object.
137 * @param container The container that needs to be laid out.
138 * @param way The orientation of the components.
140 * @exception AWTError If way has an invalid value.
142 public BoxLayout(Container container, int way)
144 if (way != X_AXIS && way != Y_AXIS && way != LINE_AXIS && way != PAGE_AXIS)
145 throw new AWTError("Invalid axis");
147 int width = 0;
148 int height = 0;
149 this.container = container;
150 this.way = way;
154 * Adds a component to the layout. Not used in BoxLayout.
156 * @param name The name of the component to add.
157 * @param component the component to add to the layout.
159 public void addLayoutComponent(String name, Component component)
161 // Nothing to do here.
165 * Removes a component from the layout. Not used in BoxLayout.
167 * @param component The component to remove from the layout.
169 public void removeLayoutComponent(Component component)
171 // Nothing to do here.
174 private boolean isHorizontalIn(Container parent)
176 ComponentOrientation orientation = parent.getComponentOrientation();
177 return this.way == X_AXIS
178 || (this.way == LINE_AXIS
179 && orientation.isHorizontal())
180 || (this.way == PAGE_AXIS
181 && (!orientation.isHorizontal()));
187 * Returns the preferred size of the layout.
189 * @param parent The container that needs to be laid out.
191 * @return The dimension of the layout.
193 public Dimension preferredLayoutSize(Container parent)
195 synchronized (container.getTreeLock())
197 if (container != parent)
198 throw new AWTError("BoxLayout can't be shared");
200 checkTotalRequirements();
201 Insets i = container.getInsets();
202 return new Dimension(xTotal.preferred + i.left + i.right,
203 yTotal.preferred + i.top + i.bottom);
208 * Returns the minimum size of the layout.
210 * @param parent The container that needs to be laid out.
212 * @return The dimension of the layout.
214 public Dimension minimumLayoutSize(Container parent)
216 synchronized (container.getTreeLock())
218 if (container != parent)
219 throw new AWTError("BoxLayout can't be shared");
221 checkTotalRequirements();
222 Insets i = container.getInsets();
223 return new Dimension(xTotal.minimum + i.left + i.right,
224 yTotal.minimum + i.top + i.bottom);
229 * Lays out the specified container using this layout.
231 * @param parent The container that needs to be laid out.
233 public void layoutContainer(Container parent)
235 synchronized (container.getTreeLock())
237 if (container != parent)
238 throw new AWTError("BoxLayout can't be shared");
240 checkLayout();
241 Component[] children = container.getComponents();
242 Insets in = container.getInsets();
243 for (int i = 0; i < children.length; i++)
244 children[i].setBounds(offsetsX[i] + in.left, offsetsY[i] + in.top,
245 spansX[i], spansY[i]);
250 * Adds a component to the layout. Not used in BoxLayout
252 * @param child The component to add to the layout.
253 * @param constraints The constraints for the component in the layout.
255 public void addLayoutComponent(Component child, Object constraints)
257 // Nothing to do here.
261 * Returns the alignment along the X axis for the container.
263 * @param parent The container that needs to be laid out.
265 * @return The alignment.
267 public float getLayoutAlignmentX(Container parent)
269 synchronized (container.getTreeLock())
271 if (container != parent)
272 throw new AWTError("BoxLayout can't be shared");
274 checkTotalRequirements();
275 return xTotal.alignment;
280 * Returns the alignment along the Y axis for the container.
282 * @param parent The container that needs to be laid out.
284 * @return The alignment.
286 public float getLayoutAlignmentY(Container parent)
288 synchronized (container.getTreeLock())
290 if (container != parent)
291 throw new AWTError("BoxLayout can't be shared");
293 checkTotalRequirements();
294 return yTotal.alignment;
299 * Invalidates the layout.
301 * @param parent The container that needs to be laid out.
303 public void invalidateLayout(Container parent)
305 if (container != parent)
306 throw new AWTError("BoxLayout can't be shared");
308 synchronized (container.getTreeLock())
310 xChildren = null;
311 yChildren = null;
312 xTotal = null;
313 yTotal = null;
314 offsetsX = null;
315 offsetsY = null;
316 spansX = null;
317 spansY = null;
322 * Returns the maximum size of the layout gived the components
323 * in the given container.
325 * @param parent The container that needs to be laid out.
327 * @return The dimension of the layout.
329 public Dimension maximumLayoutSize(Container parent)
331 synchronized (container.getTreeLock())
333 if (container != parent)
334 throw new AWTError("BoxLayout can't be shared");
336 checkTotalRequirements();
337 Insets i = container.getInsets();
338 int xDim = xTotal.maximum + i.left + i.right;
339 int yDim = yTotal.maximum + i.top + i.bottom;
341 // Check for overflow
342 if (xDim < xTotal.maximum)
343 xDim = Integer.MAX_VALUE;
344 if (yDim < yTotal.maximum)
345 yDim = Integer.MAX_VALUE;
346 return new Dimension(xDim, yDim);
351 * Makes sure that the xTotal and yTotal fields are set up correctly. A call
352 * to {@link #invalidateLayout} sets these fields to null and they have to be
353 * recomputed.
355 private void checkTotalRequirements()
357 if (xTotal == null || yTotal == null)
359 checkRequirements();
360 if (isHorizontalIn(container))
362 xTotal = SizeRequirements.getTiledSizeRequirements(xChildren);
363 yTotal = SizeRequirements.getAlignedSizeRequirements(yChildren);
365 else
367 xTotal = SizeRequirements.getAlignedSizeRequirements(xChildren);
368 yTotal = SizeRequirements.getTiledSizeRequirements(yChildren);
374 * Makes sure that the xChildren and yChildren fields are correctly set up.
375 * A call to {@link #invalidateLayout(Container)} sets these fields to null,
376 * so they have to be set up again.
378 private void checkRequirements()
380 if (xChildren == null || yChildren == null)
382 Component[] children = container.getComponents();
383 xChildren = new SizeRequirements[children.length];
384 yChildren = new SizeRequirements[children.length];
385 for (int i = 0; i < children.length; i++)
387 if (! children[i].isVisible())
389 xChildren[i] = new SizeRequirements();
390 yChildren[i] = new SizeRequirements();
392 else
394 xChildren[i] =
395 new SizeRequirements(children[i].getMinimumSize().width,
396 children[i].getPreferredSize().width,
397 children[i].getMaximumSize().width,
398 children[i].getAlignmentX());
399 yChildren[i] =
400 new SizeRequirements(children[i].getMinimumSize().height,
401 children[i].getPreferredSize().height,
402 children[i].getMaximumSize().height,
403 children[i].getAlignmentY());
410 * Makes sure that the offsetsX, offsetsY, spansX and spansY fields are set
411 * up correctly. A call to {@link #invalidateLayout} sets these fields
412 * to null and they have to be recomputed.
414 private void checkLayout()
416 if (offsetsX == null || offsetsY == null || spansX == null
417 || spansY == null)
419 checkRequirements();
420 checkTotalRequirements();
421 int len = container.getComponents().length;
422 offsetsX = new int[len];
423 offsetsY = new int[len];
424 spansX = new int[len];
425 spansY = new int[len];
427 Insets in = container.getInsets();
428 int width = container.getWidth() - in.left - in.right;
429 int height = container.getHeight() - in.top -in.bottom;
431 if (isHorizontalIn(container))
433 SizeRequirements.calculateTiledPositions(width,
434 xTotal, xChildren,
435 offsetsX, spansX);
436 SizeRequirements.calculateAlignedPositions(height,
437 yTotal, yChildren,
438 offsetsY, spansY);
440 else
442 SizeRequirements.calculateAlignedPositions(width,
443 xTotal, xChildren,
444 offsetsX, spansX);
445 SizeRequirements.calculateTiledPositions(height,
446 yTotal, yChildren,
447 offsetsY, spansY);