fix broken JMenuItem
[jSite2.git] / src / net / pterodactylus / jsite / gui / MainWindow.java
index 3e8e965..694cc98 100644 (file)
 
 package net.pterodactylus.jsite.gui;
 
+import java.awt.BorderLayout;
+import java.awt.Container;
+import java.awt.Dimension;
+
 import javax.swing.JFrame;
+import javax.swing.JMenuBar;
+import javax.swing.JPanel;
+import javax.swing.JToolBar;
+
+import net.pterodactylus.jsite.i18n.I18n;
+import net.pterodactylus.jsite.i18n.I18nable;
+import net.pterodactylus.jsite.main.Version;
+import net.pterodactylus.util.swing.StatusBar;
+import net.pterodactylus.util.swing.SwingUtils;
 
 /**
  * Defines the main window of the application.
@@ -27,6 +40,123 @@ import javax.swing.JFrame;
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  * @version $Id$
  */
-public class MainWindow extends JFrame {
+public class MainWindow extends JFrame implements I18nable {
+
+       /** The swing interface that receives all actions. */
+       private final SwingInterface swingInterface;
+
+       /** The status bar. */
+       private StatusBar statusBar = new StatusBar();
+
+       /** The content pane. */
+       private JPanel contentPane = new JPanel();
+
+       /** The node menu. */
+       private I18nMenu nodeMenu;
+
+       /** The language menu. */
+       private I18nMenu languageMenu;
+
+       /**
+        * Creates a new main window that redirects all actions to the given swing
+        * interface.
+        * 
+        * @param swingInterface
+        *            The swing interface to receive all actions
+        */
+       public MainWindow(SwingInterface swingInterface) {
+               super("jSite " + Version.getVersion());
+               this.swingInterface = swingInterface;
+               initWindow();
+               setPreferredSize(new Dimension(480, 280));
+               pack();
+               SwingUtils.center(this);
+               I18n.registerI18nable(this);
+               setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+       }
+
+       //
+       // ACCESSORS
+       //
+
+       /**
+        * Sets the text of the status bar.
+        * 
+        * @param text
+        *            The text of the status bar
+        */
+       public void setStatusBarText(String text) {
+               statusBar.setText(text);
+       }
+
+       //
+       // PRIVATE METHODS
+       //
+
+       /**
+        * Initializes the window by creating all its components.
+        */
+       private void initWindow() {
+               JMenuBar menuBar = new JMenuBar();
+
+               nodeMenu = new I18nMenu("mainWindow.menu.node");
+               menuBar.add(nodeMenu);
+
+               nodeMenu.add(new FixedJMenuItem(swingInterface.getManageNodesAction()));
+               nodeMenu.addSeparator();
+               nodeMenu.add(new FixedJMenuItem(swingInterface.getNodeConnectAction()));
+               nodeMenu.add(new FixedJMenuItem(swingInterface.getNodeDisconnectAction()));
+
+               languageMenu = new I18nMenu("mainWindow.menu.language");
+               menuBar.add(languageMenu);
+
+               for (I18nAction languageAction: swingInterface.getLanguageActions()) {
+                       languageMenu.add(languageAction);
+               }
+
+               setJMenuBar(menuBar);
+
+               JToolBar toolBar = new JToolBar(I18n.get("mainWindow.toolbar.name"));
+               toolBar.add(swingInterface.getManageNodesAction());
+               toolBar.addSeparator();
+               toolBar.add(swingInterface.getNodeConnectAction());
+               toolBar.add(swingInterface.getNodeDisconnectAction());
+               super.getContentPane().add(toolBar, BorderLayout.PAGE_START);
+
+               super.getContentPane().add(contentPane, BorderLayout.CENTER);
+               initComponents();
+       }
+
+       /**
+        * Initializes all components of this window.
+        */
+       private void initComponents() {
+               super.getContentPane().add(statusBar, BorderLayout.PAGE_END);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public Container getContentPane() {
+               return contentPane;
+       }
+
+       //
+       // INTERFACE I18nable
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       public void updateI18n() {
+               swingInterface.getManageNodesAction().updateI18n();
+               swingInterface.getNodeConnectAction().updateI18n();
+               swingInterface.getNodeDisconnectAction().updateI18n();
+               nodeMenu.updateI18n();
+               languageMenu.updateI18n();
+               getJMenuBar().revalidate();
+               SwingUtils.repackCentered(this);
+       }
 
 }