01: /*
02: * StatusBarComponentBorder.java
03: *
04: * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis
05: *
06: * This program is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU General Public License
08: * as published by the Free Software Foundation; either version 2
09: * of the License, or any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19: *
20: */
21:
22: package org.underworldlabs.swing;
23:
24: import java.awt.Color;
25: import java.awt.Component;
26: import java.awt.Graphics;
27: import java.awt.Insets;
28: import javax.swing.border.Border;
29:
30: /* ----------------------------------------------------------
31: * CVS NOTE: Changes to the CVS repository prior to the
32: * release of version 3.0.0beta1 has meant a
33: * resetting of CVS revision numbers.
34: * ----------------------------------------------------------
35: */
36:
37: /**
38: * Simple border for status bar panels.
39: *
40: * @author Takis Diakoumis
41: * @version $Revision: 1.4 $
42: * @date $Date: 2006/05/14 06:56:07 $
43: */
44: public class StatusBarComponentBorder implements Border {
45:
46: /** the border colour */
47: private Color borderColour;
48:
49: /** the border insets */
50: private static final Insets insets = new Insets(1, 1, 1, 0);
51:
52: public Insets getBorderInsets(Component c) {
53: return insets;
54: }
55:
56: public void paintBorder(Component c, Graphics g, int x, int y,
57: int width, int height) {
58: if (borderColour == null) {
59: borderColour = GUIUtils.getDefaultBorderColour();
60: }
61: g.setColor(borderColour);
62: // top edge
63: g.drawLine(x, y, width, y);
64: // bottom edge
65: g.drawLine(x, height - 1, width, height - 1);
66: // left edge
67: g.drawLine(x, 0, x, height - 1);
68: }
69:
70: public boolean isBorderOpaque() {
71: return false;
72: }
73:
74: }
|