OSDN Git Service

8a16c1a0b7910596b7e6014de90b1b2532adcba0
[pf3gnuchains/gcc-fork.git] / libjava / javax / swing / border / TitledBorder.java
1 /* TitledBorder.java -- 
2    Copyright (C) 2002 Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
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.
10
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.
15
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., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
20
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.
25
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. */
37
38
39 package javax.swing.border;
40
41 import java.awt.Color;
42 import java.awt.Component;
43 import java.awt.Dimension;
44 import java.awt.Font;
45 import java.awt.Graphics;
46 import java.awt.Insets;
47
48 public class TitledBorder extends AbstractBorder
49 {
50   public static final int ABOVE_BOTTOM = 4;
51   public static final int ABOVE_TOP = 1;
52   public static final int BELOW_BOTTOM = 6;
53   public static final int BELOW_TOP = 3;
54   public static final int BOTTOM = 5;
55   public static final int CENTER = 2;
56   public static final int DEFAULT_JUSTIFICATION = 0;
57   public static final int DEFAULT_POSITION = 0;
58   public static final int LEADING = 4;
59   public static final int LEFT = 1;
60   public static final int RIGHT = 3;
61   public static final int TOP = 2;
62   public static final int TRAILING = 5;
63
64   protected static final int EDGE_SPACING = 2;
65   protected static final int TEXT_INSET_H = 5;
66   protected static final int TEXT_SPACING = 2;
67
68   protected Border border;
69   protected String title;
70   protected Color titleColor;
71   protected Font titleFont;
72   protected int titleJustification;
73   protected int titlePosition;
74
75   private static Border defaultBorder = new BorderUIRessource ();
76   private static Font defaultFont = new FontUIRessource ("Dialog", BOLD, 12);
77   private static Color defaultColor = new ColorUIRessource (Color.black);
78   
79   public TitledBorder (String title)
80   {
81     this (defaultBorder, title, DEFAULT_JUSTIFICATION, DEFAULT_POSITION,
82           defaultFont, defaultColor);
83   }
84
85   public TitledBorder (Border border)
86   {
87     this (border, "", DEFAULT_JUSTIFICATION, DEFAULT_POSITION, defaultFont,
88           defaultColor);
89   }
90   
91   public TitledBorder (Border border, String title)
92   {
93     this (border, title, DEFAULT_JUSTIFICATION, DEFAULT_POSITION, defaultFont,
94           defaultColor);
95   }
96   
97   public TitledBorder (Border border, String title, int titleJustification,
98                        int titlePosition)
99   {
100     this (border, title, titleJustification, titlePosition, defaultFont,
101           defaultColor);
102   }
103   
104   public TitledBorder (Border border, String title, int titleJustification,
105                        int titlePosition, Font titleFont)
106   {
107     this (border, title, titleJustification, titlePosition, titleFont,
108           defaultColor);
109   }
110   
111   public TitledBorder (Border border, String title, int titleJustification,
112                        int titlePosition, Font titleFont, Color titleColor)
113   {
114     this.border = border;
115     this.title = title;
116     this.titleJustification = titleJustification;
117     this.titlePosition = titlePosition;
118     this.titleFont = titleFont;
119     this.titleColor = titleColor;
120   }
121     
122     public Insets getBorderInsets(Component  c,
123                                   Insets s)
124     {
125         s.left = s.right = s.top = s.bottom = 5;
126         return s;
127     }
128     
129     
130     
131     public boolean isBorderOpaque()
132     {
133         return false;
134     }
135     
136     public void paintBorder(Component c,
137                             Graphics  g, 
138                             int  x,
139                             int  y, 
140                             int  width, 
141                             int  height)
142     {
143     }
144 }
145