2 * jSite2 - StatusBar.java -
3 * Copyright © 2008 David Roden
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.
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.
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.
20 package net.pterodactylus.util.swing;
22 import java.awt.BorderLayout;
23 import java.awt.GridBagConstraints;
24 import java.awt.GridBagLayout;
25 import java.awt.Insets;
27 import javax.swing.JFrame;
28 import javax.swing.JLabel;
29 import javax.swing.JPanel;
30 import javax.swing.border.EtchedBorder;
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}.
36 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
39 /* TODO - make it possible to add further components. */
40 public class StatusBar extends JPanel {
43 private GridBagLayout layout = new GridBagLayout();
46 private JLabel statusLabel = new JLabel();
49 * Creates a new status bar.
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));
58 * Sets the text of the label.
61 * The text of the label
63 public void setText(String text) {
64 statusLabel.setText(text);