From: David Jee Date: Tue, 10 Feb 2004 18:57:22 +0000 (+0000) Subject: 2004-02-10 David Jee X-Git-Tag: releases/gcc-4.0.0~10205 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b38bcac645a40e200bcb270f8857ac7cf73a717;p=thirdparty%2Fgcc.git 2004-02-10 David Jee * java/awt/BorderLayout.java (calcCompSize): Invisible components get zero dimensions. * java/awt/Button.java (setLabel): Set actionCommand. * java/awt/Component.java (show): Invalidate component and parent container. (hide): Likewise. From-SVN: r77613 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 9140b3d9fd78..ba68afef486b 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,13 @@ +2004-02-10 David Jee + + * java/awt/BorderLayout.java + (calcCompSize): Invisible components get zero dimensions. + * java/awt/Button.java + (setLabel): Set actionCommand. + * java/awt/Component.java + (show): Invalidate component and parent container. + (hide): Likewise. + 2004-02-10 David Jee * java/awt/GridBagLayout.java diff --git a/libjava/java/awt/BorderLayout.java b/libjava/java/awt/BorderLayout.java index 5033bcf7ab29..7f2b1a00802d 100644 --- a/libjava/java/awt/BorderLayout.java +++ b/libjava/java/awt/BorderLayout.java @@ -637,7 +637,7 @@ private static final int PREF = 2; private Dimension calcCompSize(Component comp, int what) { - if (comp == null) + if (comp == null || !comp.isVisible()) return new Dimension(0, 0); if (what == MIN) return comp.getMinimumSize(); diff --git a/libjava/java/awt/Button.java b/libjava/java/awt/Button.java index e4085e5f61e1..a521c8e4f3d6 100644 --- a/libjava/java/awt/Button.java +++ b/libjava/java/awt/Button.java @@ -148,6 +148,7 @@ public synchronized void setLabel(String label) { this.label = label; + actionCommand = label; if (peer != null) { ButtonPeer bp = (ButtonPeer) peer; diff --git a/libjava/java/awt/Component.java b/libjava/java/awt/Component.java index 0b1e9612b047..3d2afc9c78bb 100644 --- a/libjava/java/awt/Component.java +++ b/libjava/java/awt/Component.java @@ -879,6 +879,7 @@ public abstract class Component this.visible = true; if (peer != null) peer.setVisible(true); + invalidate(); } /** @@ -905,6 +906,7 @@ public abstract class Component if (peer != null) peer.setVisible(false); this.visible = false; + invalidate(); } /**