some swing stuff
[jSite2.git] / src / net / pterodactylus / util / swing / StatusBar.java
1 /*
2  * jSite2 - StatusBar.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.util.swing;
21
22 import java.awt.BorderLayout;
23 import java.awt.GridBagConstraints;
24 import java.awt.GridBagLayout;
25 import java.awt.Insets;
26
27 import javax.swing.JFrame;
28 import javax.swing.JLabel;
29 import javax.swing.JPanel;
30 import javax.swing.border.EtchedBorder;
31
32 /**
33  * Status bar component that can be added to the {@link BorderLayout#SOUTH} area
34  * of a {@link JFrame}’s {@link JFrame#getContentPane() content pane}.
35  * 
36  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
37  * @version $Id$
38  */
39 /* TODO - make it possible to add further components. */
40 public class StatusBar extends JPanel {
41
42         /** The layout. */
43         private GridBagLayout layout = new GridBagLayout();
44
45         /** The label. */
46         private JLabel statusLabel = new JLabel();
47
48         /**
49          * Creates a new status bar.
50          */
51         public StatusBar() {
52                 setLayout(layout);
53                 statusLabel.setBorder(new EtchedBorder(EtchedBorder.LOWERED));
54                 add(statusLabel, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
55         }
56
57         /**
58          * Sets the text of the label.
59          * 
60          * @param text
61          *            The text of the label
62          */
63         public void setText(String text) {
64                 statusLabel.setText(text);
65         }
66
67 }