KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > util > gui > resource > JToolbarSeparator


1 /*
2
3    Copyright 2000,2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.util.gui.resource;
19
20 import java.awt.Color JavaDoc;
21 import java.awt.Dimension JavaDoc;
22 import java.awt.Graphics JavaDoc;
23
24 import javax.swing.JComponent JavaDoc;
25
26 /**
27  * This class represents a separator for the toolbar buttons.
28  *
29  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
30  * @version $Id: JToolbarSeparator.java,v 1.4 2004/08/18 07:15:56 vhardy Exp $
31  */

32 public class JToolbarSeparator extends JComponent JavaDoc {
33     /**
34      * Creates a new JToolbarSeparator object.
35      */

36     public JToolbarSeparator() {
37         setMaximumSize(new Dimension JavaDoc(15, Integer.MAX_VALUE));
38     }
39
40     protected void paintComponent(Graphics JavaDoc g) {
41         super.paintComponent(g);
42
43         Dimension JavaDoc size = getSize();
44         int pos = size.width / 2;
45         g.setColor(Color.gray);
46         g.drawLine(pos, 3, pos, size.height - 5);
47         g.drawLine(pos, 2, pos + 1, 2);
48         g.setColor(Color.white);
49         g.drawLine(pos + 1, 3, pos + 1, size.height - 5);
50         g.drawLine(pos, size.height - 4, pos + 1, size.height - 4);
51     }
52 }
53
Popular Tags