X-Git-Url: https://git.pterodactylus.net/?p=jkeytool.git;a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjkeytool%2Fgui%2Fswing%2FSwingInterface.java;h=8a79747175c4ba65c44b80a079f12bd81bf52db7;hp=107dc8d1938ad15b39bff7eb3044cf9a6d29d228;hb=b078eec37fb174bd4c76d82d27b0406124d09447;hpb=7255bdf4430ded3abfbc342f15ccd9091b9617b7 diff --git a/src/net/pterodactylus/jkeytool/gui/swing/SwingInterface.java b/src/net/pterodactylus/jkeytool/gui/swing/SwingInterface.java index 107dc8d..8a79747 100644 --- a/src/net/pterodactylus/jkeytool/gui/swing/SwingInterface.java +++ b/src/net/pterodactylus/jkeytool/gui/swing/SwingInterface.java @@ -30,6 +30,8 @@ import javax.swing.Action; import javax.swing.BorderFactory; import javax.swing.JComponent; import javax.swing.JFrame; +import javax.swing.JMenu; +import javax.swing.JMenuBar; import javax.swing.JPanel; import javax.swing.JTabbedPane; @@ -37,6 +39,7 @@ import net.pterodactylus.jkeytool.core.Core; import net.pterodactylus.jkeytool.gui.Interface; import net.pterodactylus.jkeytool.main.Main; import net.pterodactylus.util.i18n.gui.I18nAction; +import net.pterodactylus.util.i18n.gui.I18nMenu; import net.pterodactylus.util.swing.StatusBar; /** @@ -108,6 +111,7 @@ public class SwingInterface implements Interface { } private void createFrame() { + mainFrame.setJMenuBar(createMenubar()); mainFrame.getContentPane().add(createCenterPanel(), BorderLayout.CENTER); mainFrame.getContentPane().add(statusBar, BorderLayout.PAGE_END); mainFrame.pack(); @@ -122,6 +126,18 @@ public class SwingInterface implements Interface { return centerPanel; } + private JMenuBar createMenubar() { + JMenuBar menubar = new JMenuBar(); + + JMenu fileMenu = new I18nMenu("jkeytool.menu.file"); + menubar.add(fileMenu); + fileMenu.add(createKeyStoreAction); + fileMenu.addSeparator(); + fileMenu.add(quitAction); + + return menubar; + } + // // INTERFACE Interface //