right-align the help menu
[jSite2.git] / src / net / pterodactylus / jsite / gui / MainWindow.java
1 /*
2  * jSite2 - MainWindow.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.jsite.gui;
21
22 import java.awt.BorderLayout;
23 import java.awt.Container;
24 import java.awt.Dimension;
25 import java.awt.event.WindowAdapter;
26 import java.awt.event.WindowEvent;
27
28 import javax.swing.Box;
29 import javax.swing.BoxLayout;
30 import javax.swing.JButton;
31 import javax.swing.JFrame;
32 import javax.swing.JMenuBar;
33 import javax.swing.JPanel;
34 import javax.swing.JTabbedPane;
35 import javax.swing.JToolBar;
36 import javax.swing.SwingConstants;
37 import javax.swing.border.EmptyBorder;
38
39 import net.pterodactylus.jsite.core.Project;
40 import net.pterodactylus.jsite.i18n.I18n;
41 import net.pterodactylus.jsite.i18n.I18nable;
42 import net.pterodactylus.jsite.i18n.gui.I18nAction;
43 import net.pterodactylus.jsite.i18n.gui.I18nMenu;
44 import net.pterodactylus.jsite.main.Version;
45 import net.pterodactylus.util.swing.StatusBar;
46 import net.pterodactylus.util.swing.SwingUtils;
47
48 /**
49  * Defines the main window of the application.
50  *
51  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
52  * @version $Id$
53  */
54 public class MainWindow extends JFrame implements I18nable {
55
56         /** The swing interface that receives all actions. */
57         private final SwingInterface swingInterface;
58
59         /** The status bar. */
60         private StatusBar statusBar = new StatusBar();
61
62         /** The content pane. */
63         private JPanel contentPane = new JPanel(new BorderLayout(12, 12));
64
65         /** The jSite menu. */
66         private I18nMenu jSiteMenu;
67
68         /** The node menu. */
69         private I18nMenu nodeMenu;
70
71         /** The language menu. */
72         private I18nMenu languageMenu;
73
74         /** The about menu. */
75         private I18nMenu aboutMenu;
76
77         /** The tabbed project pane. */
78         private JTabbedPane projectPane;
79
80         /**
81          * Creates a new main window that redirects all actions to the given swing
82          * interface.
83          *
84          * @param swingInterface
85          *            The swing interface to receive all actions
86          */
87         public MainWindow(SwingInterface swingInterface) {
88                 super("jSite " + Version.getVersion());
89                 this.swingInterface = swingInterface;
90                 initWindow();
91                 setPreferredSize(new Dimension(480, 280));
92                 pack();
93                 SwingUtils.center(this);
94                 I18n.registerI18nable(this);
95                 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
96         }
97
98         //
99         // ACCESSORS
100         //
101
102         /**
103          * Sets the text of the status bar.
104          *
105          * @param text
106          *            The text of the status bar
107          */
108         public void setStatusBarText(String text) {
109                 statusBar.setText(text);
110         }
111
112         /**
113          * {@inheritDoc}
114          */
115         @Override
116         public Container getContentPane() {
117                 return contentPane;
118         }
119
120         /**
121          * Returns the currently selected project.
122          *
123          * @return The currently selected project
124          */
125         public Project getSelectedProject() {
126                 return null;
127         }
128
129         //
130         // PRIVATE METHODS
131         //
132
133         /**
134          * Initializes the window by creating all its components.
135          */
136         private void initWindow() {
137                 JMenuBar menuBar = new JMenuBar();
138
139                 jSiteMenu = new I18nMenu("mainWindow.menu.jSite");
140                 menuBar.add(jSiteMenu);
141
142                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getConfigureAction()));
143                 jSiteMenu.addSeparator();
144                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getImportConfigAction()));
145                 jSiteMenu.addSeparator();
146                 jSiteMenu.add(new FixedJMenuItem(swingInterface.getQuitAction()));
147
148                 nodeMenu = new I18nMenu("mainWindow.menu.node");
149                 menuBar.add(nodeMenu);
150
151                 nodeMenu.add(new FixedJMenuItem(swingInterface.getManageNodesAction()));
152                 nodeMenu.addSeparator();
153                 nodeMenu.add(new FixedJMenuItem(swingInterface.getNodeConnectAction()));
154                 nodeMenu.add(new FixedJMenuItem(swingInterface.getNodeDisconnectAction()));
155
156                 languageMenu = new I18nMenu("mainWindow.menu.language");
157                 menuBar.add(languageMenu);
158
159                 for (I18nAction languageAction: swingInterface.getLanguageActions()) {
160                         languageMenu.add(languageAction);
161                 }
162
163                 JPanel spacerPanel = new JPanel();
164                 spacerPanel.setOpaque(false);
165                 menuBar.add(spacerPanel);
166
167                 aboutMenu = new I18nMenu("mainWindow.menu.help");
168                 menuBar.add(aboutMenu);
169
170                 aboutMenu.add(new FixedJMenuItem(swingInterface.getHelpAboutAction()));
171
172                 setJMenuBar(menuBar);
173
174                 JToolBar toolBar = new JToolBar(I18n.get("mainWindow.toolbar.name"));
175                 toolBar.add(swingInterface.getManageNodesAction());
176                 toolBar.addSeparator();
177                 toolBar.add(swingInterface.getNodeConnectAction());
178                 toolBar.add(swingInterface.getNodeDisconnectAction());
179                 super.getContentPane().add(toolBar, BorderLayout.PAGE_START);
180
181                 super.getContentPane().add(contentPane, BorderLayout.CENTER);
182
183                 addWindowListener(new WindowAdapter() {
184
185                         /**
186                          * {@inheritDoc}
187                          */
188                         @SuppressWarnings("synthetic-access")
189                         @Override
190                         public void windowClosing(WindowEvent windowEvent) {
191                                 swingInterface.getQuitAction().actionPerformed(null);
192                         }
193                 });
194
195                 initComponents();
196         }
197
198         /**
199          * Initializes all components of this window.
200          */
201         private void initComponents() {
202                 super.getContentPane().add(statusBar, BorderLayout.PAGE_END);
203
204                 /*
205                  * the main window consists of two panels which are vertically oriented.
206                  * the upper panel contains of a tabbed pane, the lower panel consists
207                  * of a table that lists the running requests.
208                  */
209
210                 JPanel upperPanel = new JPanel(new BorderLayout(12, 12));
211                 getContentPane().add(upperPanel, BorderLayout.PAGE_START);
212                 contentPane.setBorder(new EmptyBorder(12, 12, 12, 12));
213
214                 projectPane = new JTabbedPane(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
215                 upperPanel.add(projectPane, BorderLayout.CENTER);
216
217                 Box projectOverviewPanel = new Box(BoxLayout.PAGE_AXIS);
218                 projectPane.add(I18n.get("mainWindow.pane.overview.title"), projectOverviewPanel);
219                 projectOverviewPanel.setBorder(new EmptyBorder(12, 12, 12, 12));
220                 projectOverviewPanel.add(Box.createVerticalGlue());
221                 JButton addProjectButton = new JButton(swingInterface.getAddProjectAction());
222                 addProjectButton.setAlignmentX(0.5f);
223                 projectOverviewPanel.add(addProjectButton);
224                 projectOverviewPanel.add(Box.createVerticalGlue());
225
226 // JPanel lowerPanel = new JPanel(new BorderLayout(12, 12));
227 // getContentPane().add(lowerPanel, BorderLayout.CENTER);
228         }
229
230         //
231         // INTERFACE I18nable
232         //
233
234         /**
235          * {@inheritDoc}
236          */
237         public void updateI18n() {
238                 swingInterface.getManageNodesAction().updateI18n();
239                 swingInterface.getNodeConnectAction().updateI18n();
240                 swingInterface.getNodeDisconnectAction().updateI18n();
241                 nodeMenu.updateI18n();
242                 languageMenu.updateI18n();
243                 getJMenuBar().revalidate();
244                 SwingUtils.repackCentered(this);
245         }
246
247 }