MenuContainer.java: Fixed typo.

* java/awt/MenuContainer.java: Fixed typo.

	* Makefile.in: Rebuilt.
	* Makefile.am (awt_java_source_files): Added SystemColor.java.
	* java/awt/SystemColor.java: New file.

	* java/awt/Color.java (rgba): Now package-private.

	* java/awt/event/InputEvent.java (isAltGraphDown): New method.

	* java/awt/event/ContainerEvent.java (getContainer): Renamed from
	getComponent.

	* java/awt/MenuItem.java (addNotify): New method.
	(MenuItem(String,MenuShortcut)): New constructor.
	(setLabel): Notify peer of change.
	(setEnabled): Likewise.

	* java/awt/GridLayout.java (toString): New method.

	* java/awt/FlowLayout.java (LEADING, TRAILING): New constants.
	(FlowLayout): Check for LEADING and TRAILING.
	(setAlignment): Likewise.
	(layoutContainer): Handle component orientation.

	* java/awt/Component.java (orientatin): New field.
	(setComponentOrientation): Wrote.
	(getComponentOrientation): Wrote.

	* java/awt/Event.java (Event): Implements Serializable.
	(consumed): New field for serialization.
	* java/awt/Dimension.java (Dimension): Implements Serializable.
	* java/awt/Cursor.java (Cursor): Implements Serializable.
	* java/awt/Container.java (Container): No longer abstract.

	* java/awt/Choice.java: Wrote.
	* java/awt/Checkbox.java: Wrote.
	* java/awt/ItemSelectable.java: Documented.
	* java/awt/CheckboxGroup.java: Wrote.

	* java/awt/CardLayout.java (layoutContainer): Directly use fields
	in other classes.
	(getSize): Likewise.

From-SVN: r38486
This commit is contained in:
Tom Tromey 2000-12-26 00:25:13 +00:00 committed by Tom Tromey
parent 83050e0d93
commit 5472d1951a
21 changed files with 851 additions and 74 deletions

View file

@ -19,7 +19,7 @@ import java.io.Serializable;
* time. This class includes methods for changing which card is
* shown.
*
* @verson 0.0
* @version 0.0
* @author Tom Tromey <tromey@redhat.com>
* @date December 2, 2000
*/
@ -127,24 +127,22 @@ public class CardLayout implements LayoutManager2, Serializable
*/
public void layoutContainer (Container parent)
{
// FIXME: can we just use the width and height fields of parent?
// Or will that break with subclassing?
Dimension d = parent.getSize ();
int width = parent.width;
int height = parent.height;
Insets ins = parent.getInsets ();
int num = parent.getComponentCount ();
// This is more efficient than calling getComponents().
int num = parent.ncomponents;
Component[] comps = parent.component;
for (int i = 0; i < num; ++i)
{
if (comps[i].isVisible ())
{
// Only resize the one we care about.
comps[i].setBounds (hgap + ins.left, vgap + ins.top,
d.width - 2 * hgap - ins.left - ins.right,
d.height - 2 * vgap - ins.top - ins.bottom);
width - 2 * hgap - ins.left - ins.right,
height - 2 * vgap - ins.top - ins.bottom);
break;
}
}
@ -302,14 +300,11 @@ public class CardLayout implements LayoutManager2, Serializable
// Compute the size according to WHAT.
private Dimension getSize (Container parent, int what)
{
int w = 0, h = 0, num = parent.getComponentCount ();
// This is more efficient than calling getComponents().
int w = 0, h = 0, num = parent.ncomponents;
Component[] comps = parent.component;
for (int i = 0; i < num; ++i)
{
// FIXME: can we just directly read the fields in Component?
// Or will that not work with subclassing?
Dimension d;
if (what == MIN)