diff options
author | Bryce McKinlay <bryce@waitaki.otago.ac.nz> | 2002-08-09 04:26:17 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2002-08-09 05:26:17 +0100 |
commit | 7bde45b2eb84502b62e77e46d947e46dcbd333d6 (patch) | |
tree | cdf9958b411887bead2263ea8ef0bdfc8eae6319 /libjava/javax/swing/border | |
parent | 097684ce62b505168739fc98e952f92a8719a1fa (diff) | |
download | gcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.zip gcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.tar.gz gcc-7bde45b2eb84502b62e77e46d947e46dcbd333d6.tar.bz2 |
AWT/Swing merge from GNU Classpath.
From-SVN: r56147
Diffstat (limited to 'libjava/javax/swing/border')
-rw-r--r-- | libjava/javax/swing/border/AbstractBorder.java | 122 | ||||
-rw-r--r-- | libjava/javax/swing/border/BevelBorder.java | 75 | ||||
-rw-r--r-- | libjava/javax/swing/border/Border.java | 52 | ||||
-rw-r--r-- | libjava/javax/swing/border/CompoundBorder.java | 70 | ||||
-rw-r--r-- | libjava/javax/swing/border/EmptyBorder.java | 90 | ||||
-rw-r--r-- | libjava/javax/swing/border/EtchedBorder.java | 75 | ||||
-rw-r--r-- | libjava/javax/swing/border/LineBorder.java | 75 | ||||
-rw-r--r-- | libjava/javax/swing/border/MatteBorder.java | 75 | ||||
-rw-r--r-- | libjava/javax/swing/border/TitledBorder.java | 68 |
9 files changed, 702 insertions, 0 deletions
diff --git a/libjava/javax/swing/border/AbstractBorder.java b/libjava/javax/swing/border/AbstractBorder.java new file mode 100644 index 0000000..9716654 --- /dev/null +++ b/libjava/javax/swing/border/AbstractBorder.java @@ -0,0 +1,122 @@ +/* AbstractBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.io.*; +import java.awt.*; + +public abstract class AbstractBorder implements Border, Serializable +{ + AbstractBorder() + { + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + System.out.println("HMMMMM, abstract-border.paintBorder"); + } + + + public Insets getBorderInsets(Component c, Insets insets) + { + if (insets == null) + insets = new Insets(0,0,0,0); + + insets.left = insets.top = insets.right = insets.bottom = 5; + + return insets; + } + + public Insets getBorderInsets(Component c) + { + return getBorderInsets(c, new Insets(0,0,0,0)); + } + + + public boolean isBorderOpaque() + { return false; } + + public Rectangle getInteriorRectangle(Component c, + int x, + int y, + int width, + int height) + { + return getInteriorRectangle(c, + this, + x, + y, + width, + height); + } + + + public static Rectangle getInteriorRectangle(Component c, + Border b, + int x, + int y, + int width, + int height) + { + if(b != null) + { + Insets insets = b.getBorderInsets(c); + + int w = insets.right - insets.left; + int h = insets.top - insets.bottom; + + return new Rectangle(x + insets.left, + y + insets.top, + width - w, + height - h); + } + else + { + return new Rectangle(x, + y, + width, + height); + } + } +} + diff --git a/libjava/javax/swing/border/BevelBorder.java b/libjava/javax/swing/border/BevelBorder.java new file mode 100644 index 0000000..ef2c279 --- /dev/null +++ b/libjava/javax/swing/border/BevelBorder.java @@ -0,0 +1,75 @@ +/* BevelBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class BevelBorder extends EmptyBorder +{ + Color c; + + public BevelBorder() + { + } + + + public BevelBorder(int top, + int left, + int bottom, + int right, + Color color) + { + super(top, left, bottom, right); + this.c = color; + } + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + diff --git a/libjava/javax/swing/border/Border.java b/libjava/javax/swing/border/Border.java new file mode 100644 index 0000000..3566935 --- /dev/null +++ b/libjava/javax/swing/border/Border.java @@ -0,0 +1,52 @@ +/* Border.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public interface Border +{ + public Insets getBorderInsets(Component c); + public boolean isBorderOpaque(); + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height); +} diff --git a/libjava/javax/swing/border/CompoundBorder.java b/libjava/javax/swing/border/CompoundBorder.java new file mode 100644 index 0000000..a1e731e --- /dev/null +++ b/libjava/javax/swing/border/CompoundBorder.java @@ -0,0 +1,70 @@ +/* CompoundBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class CompoundBorder extends AbstractBorder +{ + + public Insets getBorderInsets(Component c, + Insets s) + { + if (s == null) + s = new Insets(0,0,0,0); + + s.left = s.right = s.top = s.bottom = 5; + + return s; + } + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + diff --git a/libjava/javax/swing/border/EmptyBorder.java b/libjava/javax/swing/border/EmptyBorder.java new file mode 100644 index 0000000..c09a0af --- /dev/null +++ b/libjava/javax/swing/border/EmptyBorder.java @@ -0,0 +1,90 @@ +/* EmptyBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + + +public class EmptyBorder extends AbstractBorder +{ + + protected int l,r,b,t; + + public EmptyBorder() + { + } + + public EmptyBorder(int left, + int right, + int top, + int bottom) + { + this.l = left; + this.r = r; + this.t = t; + this.b = b; + } + + + public Insets getBorderInsets(Component c, + Insets s) + { + if (s == null) + s = new Insets(0,0,0,0); + + s.left = l; + s.right = r; + s.top = t; + s.bottom = b; + + return s; + } + + public boolean isBorderOpaque() + { + return false; + } + + + public void paintBorder(Component c, + Graphics g, + int x, int y, int width, int height) + { + } +} + diff --git a/libjava/javax/swing/border/EtchedBorder.java b/libjava/javax/swing/border/EtchedBorder.java new file mode 100644 index 0000000..97e5099 --- /dev/null +++ b/libjava/javax/swing/border/EtchedBorder.java @@ -0,0 +1,75 @@ +/* EtchedBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class EtchedBorder extends EmptyBorder +{ + Color c; + + public EtchedBorder() + { + } + + + public EtchedBorder(int top, + int left, + int bottom, + int right, + Color color) + { + super(top, left, bottom, right); + this.c = color; + } + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + diff --git a/libjava/javax/swing/border/LineBorder.java b/libjava/javax/swing/border/LineBorder.java new file mode 100644 index 0000000..7f3c651 --- /dev/null +++ b/libjava/javax/swing/border/LineBorder.java @@ -0,0 +1,75 @@ +/* LineBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class LineBorder extends EmptyBorder +{ + Color c; + + public LineBorder() + { + } + + + public LineBorder(int top, + int left, + int bottom, + int right, + Color color) + { + super(top, left, bottom, right); + this.c = color; + } + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + diff --git a/libjava/javax/swing/border/MatteBorder.java b/libjava/javax/swing/border/MatteBorder.java new file mode 100644 index 0000000..30e5f59 --- /dev/null +++ b/libjava/javax/swing/border/MatteBorder.java @@ -0,0 +1,75 @@ +/* MatteBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class MatteBorder extends EmptyBorder +{ + Color c; + + public MatteBorder() + { + } + + + public MatteBorder(int top, + int left, + int bottom, + int right, + Color color) + { + super(top, left, bottom, right); + this.c = color; + } + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + diff --git a/libjava/javax/swing/border/TitledBorder.java b/libjava/javax/swing/border/TitledBorder.java new file mode 100644 index 0000000..5937aa4 --- /dev/null +++ b/libjava/javax/swing/border/TitledBorder.java @@ -0,0 +1,68 @@ +/* TitledBorder.java -- + Copyright (C) 2002 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + +package javax.swing.border; + +import java.awt.*; + +public class TitledBorder extends AbstractBorder +{ + + public Insets getBorderInsets(Component c, + Insets s) + { + s.left = s.right = s.top = s.bottom = 5; + return s; + } + + + + public boolean isBorderOpaque() + { + return false; + } + + public void paintBorder(Component c, + Graphics g, + int x, + int y, + int width, + int height) + { + } +} + |