2 * jSite2 - MainWindow.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.jsite.gui;
22 import java.awt.BorderLayout;
23 import java.awt.Container;
24 import java.awt.Dimension;
26 import javax.swing.JFrame;
27 import javax.swing.JMenu;
28 import javax.swing.JMenuBar;
29 import javax.swing.JPanel;
30 import javax.swing.JToolBar;
32 import net.pterodactylus.jsite.i18n.I18n;
33 import net.pterodactylus.jsite.main.Version;
34 import net.pterodactylus.util.swing.StatusBar;
35 import net.pterodactylus.util.swing.SwingUtils;
38 * Defines the main window of the application.
40 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
43 public class MainWindow extends JFrame {
45 /** The swing interface that receives all actions. */
46 private final SwingInterface swingInterface;
48 /** The status bar. */
49 private StatusBar statusBar = new StatusBar();
51 /** The content pane. */
52 private JPanel contentPane = new JPanel();
55 * Creates a new main window that redirects all actions to the given swing
58 * @param swingInterface
59 * The swing interface to receive all actions
61 public MainWindow(SwingInterface swingInterface) {
62 super("jSite " + Version.getVersion());
63 this.swingInterface = swingInterface;
65 setPreferredSize(new Dimension(480, 280));
67 SwingUtils.center(this);
68 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
76 * Sets the text of the status bar.
79 * The text of the status bar
81 public void setStatusBarText(String text) {
82 statusBar.setText(text);
90 * Initializes the window by creating all its components.
92 private void initWindow() {
93 JMenuBar menuBar = new JMenuBar();
95 final JMenu nodeMenu = new JMenu(I18n.get("mainWindow.menu.node.name"));
96 menuBar.add(nodeMenu);
97 nodeMenu.setMnemonic(I18n.get("mainWindow.menu.node.mnemonic").charAt(0));
99 nodeMenu.add(swingInterface.getManageNodesAction());
100 nodeMenu.addSeparator();
101 nodeMenu.add(swingInterface.getNodeConnectAction());
102 nodeMenu.add(swingInterface.getNodeDisconnectAction());
104 setJMenuBar(menuBar);
106 JToolBar toolBar = new JToolBar(I18n.get("mainWindow.toolbar.name"));
107 toolBar.add(swingInterface.getManageNodesAction());
108 toolBar.addSeparator();
109 toolBar.add(swingInterface.getNodeConnectAction());
110 toolBar.add(swingInterface.getNodeDisconnectAction());
111 super.getContentPane().add(toolBar, BorderLayout.PAGE_START);
113 super.getContentPane().add(contentPane, BorderLayout.CENTER);
118 * Initializes all components of this window.
120 private void initComponents() {
121 super.getContentPane().add(statusBar, BorderLayout.PAGE_END);
128 public Container getContentPane() {