X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fgui%2FMainWindow.java;h=b5bc5fb7278da5ad0b7c631673da771c47dd14d9;hb=4be8c6526b4e80d5b8f8df8598da128be766ced7;hp=97b9fe5f809941d895ebf50cdf3ed4ad1f95c391;hpb=2a6a72b633401f2a8391b604c064e1fb6b561308;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/gui/MainWindow.java b/src/net/pterodactylus/jsite/gui/MainWindow.java index 97b9fe5..b5bc5fb 100644 --- a/src/net/pterodactylus/jsite/gui/MainWindow.java +++ b/src/net/pterodactylus/jsite/gui/MainWindow.java @@ -22,21 +22,32 @@ package net.pterodactylus.jsite.gui; import java.awt.BorderLayout; import java.awt.Container; import java.awt.Dimension; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; +import javax.swing.Box; +import javax.swing.BoxLayout; +import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JMenuBar; import javax.swing.JPanel; +import javax.swing.JTabbedPane; import javax.swing.JToolBar; +import javax.swing.SwingConstants; +import javax.swing.border.EmptyBorder; +import net.pterodactylus.jsite.core.Project; import net.pterodactylus.jsite.i18n.I18n; import net.pterodactylus.jsite.i18n.I18nable; +import net.pterodactylus.jsite.i18n.gui.I18nAction; +import net.pterodactylus.jsite.i18n.gui.I18nMenu; 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. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> * @version $Id$ */ @@ -49,7 +60,10 @@ public class MainWindow extends JFrame implements I18nable { private StatusBar statusBar = new StatusBar(); /** The content pane. */ - private JPanel contentPane = new JPanel(); + private JPanel contentPane = new JPanel(new BorderLayout(12, 12)); + + /** The jSite menu. */ + private I18nMenu jSiteMenu; /** The node menu. */ private I18nMenu nodeMenu; @@ -57,10 +71,19 @@ public class MainWindow extends JFrame implements I18nable { /** The language menu. */ private I18nMenu languageMenu; + /** The about menu. */ + private I18nMenu helpMenu; + + /** The tabbed project pane. */ + private JTabbedPane projectPane; + + /** The project overview panel. */ + private Box projectOverviewPanel; + /** * Creates a new main window that redirects all actions to the given swing * interface. - * + * * @param swingInterface * The swing interface to receive all actions */ @@ -81,7 +104,7 @@ public class MainWindow extends JFrame implements I18nable { /** * Sets the text of the status bar. - * + * * @param text * The text of the status bar */ @@ -89,6 +112,23 @@ public class MainWindow extends JFrame implements I18nable { statusBar.setText(text); } + /** + * {@inheritDoc} + */ + @Override + public Container getContentPane() { + return contentPane; + } + + /** + * Returns the currently selected project. + * + * @return The currently selected project + */ + public Project getSelectedProject() { + return null; + } + // // PRIVATE METHODS // @@ -99,21 +139,39 @@ public class MainWindow extends JFrame implements I18nable { private void initWindow() { JMenuBar menuBar = new JMenuBar(); + jSiteMenu = new I18nMenu("mainWindow.menu.jSite"); + menuBar.add(jSiteMenu); + + jSiteMenu.add(new FixedJMenuItem(swingInterface.getConfigureAction())); + jSiteMenu.addSeparator(); + jSiteMenu.add(new FixedJMenuItem(swingInterface.getImportConfigAction())); + jSiteMenu.addSeparator(); + jSiteMenu.add(new FixedJMenuItem(swingInterface.getQuitAction())); + nodeMenu = new I18nMenu("mainWindow.menu.node"); menuBar.add(nodeMenu); - nodeMenu.add(swingInterface.getManageNodesAction()); + nodeMenu.add(new FixedJMenuItem(swingInterface.getManageNodesAction())); nodeMenu.addSeparator(); - nodeMenu.add(swingInterface.getNodeConnectAction()); - nodeMenu.add(swingInterface.getNodeDisconnectAction()); + 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); + languageMenu.add(new FixedJMenuItem(languageAction)); } + JPanel spacerPanel = new JPanel(); + spacerPanel.setOpaque(false); + menuBar.add(spacerPanel); + + helpMenu = new I18nMenu("mainWindow.menu.help"); + menuBar.add(helpMenu); + + helpMenu.add(new FixedJMenuItem(swingInterface.getHelpAboutAction())); + setJMenuBar(menuBar); JToolBar toolBar = new JToolBar(I18n.get("mainWindow.toolbar.name")); @@ -124,6 +182,19 @@ public class MainWindow extends JFrame implements I18nable { super.getContentPane().add(toolBar, BorderLayout.PAGE_START); super.getContentPane().add(contentPane, BorderLayout.CENTER); + + addWindowListener(new WindowAdapter() { + + /** + * {@inheritDoc} + */ + @SuppressWarnings("synthetic-access") + @Override + public void windowClosing(WindowEvent windowEvent) { + swingInterface.getQuitAction().actionPerformed(null); + } + }); + initComponents(); } @@ -132,14 +203,32 @@ public class MainWindow extends JFrame implements I18nable { */ private void initComponents() { super.getContentPane().add(statusBar, BorderLayout.PAGE_END); - } - /** - * {@inheritDoc} - */ - @Override - public Container getContentPane() { - return contentPane; + /* + * the main window consists of two panels which are vertically oriented. + * the upper panel contains of a tabbed pane, the lower panel consists + * of a table that lists the running requests. + */ + + JPanel upperPanel = new JPanel(new BorderLayout(12, 12)); + getContentPane().add(upperPanel, BorderLayout.PAGE_START); + contentPane.setBorder(new EmptyBorder(12, 12, 12, 12)); + + projectPane = new JTabbedPane(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT); + upperPanel.add(projectPane, BorderLayout.CENTER); + + projectOverviewPanel = new Box(BoxLayout.PAGE_AXIS); + projectOverviewPanel.setName(I18n.get("mainWindow.pane.overview.title")); + projectPane.add(projectOverviewPanel); + projectOverviewPanel.setBorder(new EmptyBorder(12, 12, 12, 12)); + projectOverviewPanel.add(Box.createVerticalGlue()); + JButton addProjectButton = new JButton(swingInterface.getAddProjectAction()); + addProjectButton.setAlignmentX(0.5f); + projectOverviewPanel.add(addProjectButton); + projectOverviewPanel.add(Box.createVerticalGlue()); + +// JPanel lowerPanel = new JPanel(new BorderLayout(12, 12)); +// getContentPane().add(lowerPanel, BorderLayout.CENTER); } // @@ -150,12 +239,28 @@ public class MainWindow extends JFrame implements I18nable { * {@inheritDoc} */ public void updateI18n() { + swingInterface.getConfigureAction().updateI18n(); + swingInterface.getImportConfigAction().updateI18n(); + swingInterface.getQuitAction().updateI18n(); swingInterface.getManageNodesAction().updateI18n(); swingInterface.getNodeConnectAction().updateI18n(); swingInterface.getNodeDisconnectAction().updateI18n(); + swingInterface.getAddProjectAction().updateI18n(); + swingInterface.getCloneProjectAction().updateI18n(); + swingInterface.getDeleteProjectAction().updateI18n(); + swingInterface.getHelpAboutAction().updateI18n(); + jSiteMenu.updateI18n(); nodeMenu.updateI18n(); languageMenu.updateI18n(); + for (I18nAction languageAction: swingInterface.getLanguageActions()) { + languageAction.updateI18n(); + } + helpMenu.updateI18n(); getJMenuBar().revalidate(); + projectOverviewPanel.setName(I18n.get("mainWindow.pane.overview.title")); + for (int componentIndex = 0; componentIndex < projectPane.getTabCount(); componentIndex++) { + projectPane.setTitleAt(componentIndex, projectPane.getComponentAt(componentIndex).getName()); + } SwingUtils.repackCentered(this); }