X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Fjsite%2Fmain%2FMain.java;h=5229a42da98e257893f57629c1d15506457786a7;hb=41861047f00f573b53e8928938e649dcdb7ea8e5;hp=3a62d9a5381499e78e883ac9b7d4c0f7005ea79f;hpb=978a833ff2f68927ea0c376f9ad538069898f1e7;p=jSite.git diff --git a/src/de/todesbaum/jsite/main/Main.java b/src/de/todesbaum/jsite/main/Main.java index 3a62d9a..5229a42 100644 --- a/src/de/todesbaum/jsite/main/Main.java +++ b/src/de/todesbaum/jsite/main/Main.java @@ -21,6 +21,7 @@ package de.todesbaum.jsite.main; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; +import java.io.File; import java.io.IOException; import java.text.MessageFormat; import java.util.HashMap; @@ -52,39 +53,39 @@ import de.todesbaum.jsite.gui.ProjectFilesPage; import de.todesbaum.jsite.gui.ProjectInsertPage; import de.todesbaum.jsite.gui.ProjectPage; import de.todesbaum.jsite.i18n.I18n; +import de.todesbaum.jsite.i18n.I18nContainer; import de.todesbaum.util.image.IconLoader; import de.todesbaum.util.swing.TWizard; import de.todesbaum.util.swing.TWizardPage; import de.todesbaum.util.swing.WizardListener; /** - * @author David Roden - * @version $Id$ + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class Main implements ActionListener, ListSelectionListener, WizardListener, NodeManagerListener { private static boolean debug = false; private Configuration configuration; private Freenet7Interface freenetInterface = new Freenet7Interface(); - protected Icon jSiteIcon; + private Icon jSiteIcon; private static enum PageType { PAGE_NODE_MANAGER, PAGE_PROJECTS, PAGE_PROJECT_FILES, PAGE_INSERT_PROJECT } - private static final Locale[] SUPPORTED_LOCALES = new Locale[] { Locale.ENGLISH, Locale.GERMAN, Locale.FRENCH }; + private static final Locale[] SUPPORTED_LOCALES = new Locale[] { Locale.ENGLISH, Locale.GERMAN, Locale.FRENCH, Locale.ITALIAN, new Locale("pl") }; private Map languageActions = new HashMap(); private Action manageNodeAction; private Action aboutAction; - protected TWizard wizard; - protected JMenu nodeMenu; + private TWizard wizard; + private JMenu nodeMenu; private Node selectedNode; private final Map pages = new HashMap(); private Main() { this(null); } - + private Main(String configFilename) { if (configFilename != null) { configuration = new Configuration(configFilename); @@ -100,8 +101,6 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen wizard = new TWizard(); createActions(); wizard.setJMenuBar(createMenuBar()); - wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous")); - wizard.setNextName(I18n.getMessage("jsite.wizard.next")); wizard.setQuitName(I18n.getMessage("jsite.wizard.quit")); wizard.setPreviousEnabled(false); wizard.setNextEnabled(true); @@ -111,37 +110,51 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen initPages(); showPage(PageType.PAGE_PROJECTS); - wizard.setPreviousName((String) manageNodeAction.getValue(Action.NAME)); } private void createActions() { - for (final Locale locale: SUPPORTED_LOCALES) { - languageActions.put(locale, new AbstractAction(I18n.getMessage("jsite.menu.language." + locale.getLanguage())) { + for (final Locale locale : SUPPORTED_LOCALES) { + languageActions.put(locale, new AbstractAction(I18n.getMessage("jsite.menu.language." + locale.getLanguage()), IconLoader.loadIcon("/flag-" + locale.getLanguage() + ".png")) { + @SuppressWarnings("synthetic-access") public void actionPerformed(ActionEvent actionEvent) { switchLanguage(locale); } }); } manageNodeAction = new AbstractAction(I18n.getMessage("jsite.menu.nodes.manage-nodes")) { + + @SuppressWarnings("synthetic-access") public void actionPerformed(ActionEvent actionEvent) { showPage(PageType.PAGE_NODE_MANAGER); + wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous")); + wizard.setNextName(I18n.getMessage("jsite.wizard.next")); } }; aboutAction = new AbstractAction(I18n.getMessage("jsite.menu.help.about")) { + @SuppressWarnings("synthetic-access") public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.about.message"), Version.getVersion()), null, JOptionPane.INFORMATION_MESSAGE, jSiteIcon); } }; + + I18nContainer.getInstance().registerRunnable(new Runnable() { + + @SuppressWarnings("synthetic-access") + public void run() { + manageNodeAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.nodes.manage-nodes")); + aboutAction.putValue(Action.NAME, I18n.getMessage("jsite.menu.help.about")); + } + }); } private JMenuBar createMenuBar() { JMenuBar menuBar = new JMenuBar(); - JMenu languageMenu = new JMenu(I18n.getMessage("jsite.menu.languages")); + final JMenu languageMenu = new JMenu(I18n.getMessage("jsite.menu.languages")); menuBar.add(languageMenu); ButtonGroup languageButtonGroup = new ButtonGroup(); - for (Locale locale: SUPPORTED_LOCALES) { + for (Locale locale : SUPPORTED_LOCALES) { Action languageAction = languageActions.get(locale); JRadioButtonMenuItem menuItem = new JRadioButtonMenuItem(languageActions.get(locale)); if (locale.equals(Locale.getDefault())) { @@ -161,38 +174,52 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen panel.setOpaque(false); menuBar.add(panel); - JMenu helpMenu = new JMenu(I18n.getMessage("jsite.menu.help")); + final JMenu helpMenu = new JMenu(I18n.getMessage("jsite.menu.help")); menuBar.add(helpMenu); helpMenu.add(aboutAction); + + I18nContainer.getInstance().registerRunnable(new Runnable() { + + @SuppressWarnings("synthetic-access") + public void run() { + languageMenu.setText(I18n.getMessage("jsite.menu.languages")); + nodeMenu.setText(I18n.getMessage("jsite.menu.nodes")); + helpMenu.setText(I18n.getMessage("jsite.menu.help")); + for (Map.Entry languageActionEntry : languageActions.entrySet()) { + languageActionEntry.getValue().putValue(Action.NAME, I18n.getMessage("jsite.menu.language." + languageActionEntry.getKey().getLanguage())); + } + } + }); + return menuBar; } private void initPages() { - NodeManagerPage nodeManagerPage = new NodeManagerPage(); + NodeManagerPage nodeManagerPage = new NodeManagerPage(wizard); nodeManagerPage.setName("page.node-manager"); nodeManagerPage.addNodeManagerListener(this); nodeManagerPage.setNodes(configuration.getNodes()); pages.put(PageType.PAGE_NODE_MANAGER, nodeManagerPage); - ProjectPage projectPage = new ProjectPage(); + ProjectPage projectPage = new ProjectPage(wizard); projectPage.setName("page.project"); projectPage.setProjects(configuration.getProjects()); projectPage.setFreenetInterface(freenetInterface); projectPage.addListSelectionListener(this); pages.put(PageType.PAGE_PROJECTS, projectPage); - ProjectFilesPage projectFilesPage = new ProjectFilesPage(); + ProjectFilesPage projectFilesPage = new ProjectFilesPage(wizard); projectFilesPage.setName("page.project.files"); pages.put(PageType.PAGE_PROJECT_FILES, projectFilesPage); - ProjectInsertPage projectInsertPage = new ProjectInsertPage(); + ProjectInsertPage projectInsertPage = new ProjectInsertPage(wizard); projectInsertPage.setDebug(debug); projectInsertPage.setName("page.project.insert"); projectInsertPage.setFreenetInterface(freenetInterface); pages.put(PageType.PAGE_INSERT_PROJECT, projectInsertPage); } - protected void showPage(PageType pageType) { + private void showPage(PageType pageType) { wizard.setPreviousEnabled(pageType.ordinal() > 0); wizard.setNextEnabled(pageType.ordinal() < (pages.size() - 1)); wizard.setPage(pages.get(pageType)); @@ -213,17 +240,17 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen } private Locale findSupportedLocale(Locale forLocale) { - for (Locale locale: SUPPORTED_LOCALES) { + for (Locale locale : SUPPORTED_LOCALES) { if (locale.equals(forLocale)) { return locale; } } - for (Locale locale: SUPPORTED_LOCALES) { + for (Locale locale : SUPPORTED_LOCALES) { if (locale.getCountry().equals(forLocale.getCountry()) && locale.getLanguage().equals(forLocale.getLanguage())) { return locale; } } - for (Locale locale: SUPPORTED_LOCALES) { + for (Locale locale : SUPPORTED_LOCALES) { if (locale.getLanguage().equals(forLocale.getLanguage())) { return locale; } @@ -235,16 +262,20 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen // ACTIONS // - protected void switchLanguage(Locale locale) { + private void switchLanguage(Locale locale) { Locale supportedLocale = findSupportedLocale(locale); Action languageAction = languageActions.get(supportedLocale); JRadioButtonMenuItem menuItem = (JRadioButtonMenuItem) languageAction.getValue("menuItem"); menuItem.setSelected(true); - /* show the restart message in the other language! */ - Locale currentLocale = I18n.getLocale(); I18n.setLocale(supportedLocale); - JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.menu.language.change.restart-message"), null, JOptionPane.INFORMATION_MESSAGE); - I18n.setLocale(currentLocale); + for (Runnable i18nRunnable : I18nContainer.getInstance()) { + try { + i18nRunnable.run(); + } catch (Throwable t) { + /* we probably shouldn't swallow this. */ + } + } + wizard.setPage(wizard.getPage()); configuration.setLocale(supportedLocale); } @@ -272,7 +303,6 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen String pageName = wizard.getPage().getName(); if ("page.node-manager".equals(pageName)) { showPage(PageType.PAGE_PROJECTS); - wizard.setPreviousName((String) manageNodeAction.getValue(Action.NAME)); } else if ("page.project".equals(pageName)) { ProjectPage projectPage = (ProjectPage) wizard.getPage(); Project project = projectPage.getSelectedProject(); @@ -287,8 +317,6 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen ((ProjectFilesPage) pages.get(PageType.PAGE_PROJECT_FILES)).setProject(project); ((ProjectInsertPage) pages.get(PageType.PAGE_INSERT_PROJECT)).setProject(project); showPage(PageType.PAGE_PROJECT_FILES); - wizard.setNextName(I18n.getMessage("jsite.project-files.insert-now")); - wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous")); } else if ("page.project.files".equals(pageName)) { ProjectPage projectPage = (ProjectPage) pages.get(PageType.PAGE_PROJECTS); Project project = projectPage.getSelectedProject(); @@ -300,20 +328,28 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.empty-index"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) { return; } + } else { + File indexFile = new File(project.getLocalPath(), project.getIndexFile()); + if (!indexFile.exists()) { + JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.index-missing"), null, JOptionPane.ERROR_MESSAGE); + return; + } } - if (!project.getFileOption(project.getIndexFile()).getContainer().equals("")) { + String indexFile = project.getIndexFile(); + boolean hasIndexFile = (indexFile != null); + if (hasIndexFile && !project.getFileOption(indexFile).getContainer().equals("")) { if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.container-index"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) { return; } } - if (!project.getFileOption(project.getIndexFile()).getMimeType().equals("text/html")) { + if (hasIndexFile && !project.getFileOption(indexFile).getMimeType().equals("text/html")) { if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.index-not-html"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) { return; } } Map fileOptions = project.getFileOptions(); Set> fileOptionEntries = fileOptions.entrySet(); - for (Entry fileOptionEntry: fileOptionEntries) { + for (Entry fileOptionEntry : fileOptionEntries) { FileOption fileOption = fileOptionEntry.getValue(); if (!fileOption.isInsert() && ((fileOption.getCustomKey().length() == 0) || "CHK@".equals(fileOption.getCustomKey()))) { JOptionPane.showMessageDialog(wizard, MessageFormat.format(I18n.getMessage("jsite.project-files.no-custom-key"), fileOptionEntry.getKey()), null, JOptionPane.ERROR_MESSAGE); @@ -330,8 +366,8 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen return; } configuration.save(); - wizard.setNextName(I18n.getMessage("jsite.wizard.next")); showPage(PageType.PAGE_INSERT_PROJECT); + ((ProjectInsertPage) pages.get(PageType.PAGE_INSERT_PROJECT)).startInsert(); nodeMenu.setEnabled(false); } else if ("page.project.insert".equals(pageName)) { showPage(PageType.PAGE_PROJECTS); @@ -346,11 +382,8 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen String pageName = wizard.getPage().getName(); if ("page.project".equals(pageName)) { showPage(PageType.PAGE_NODE_MANAGER); - wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous")); } else if ("page.project.files".equals(pageName)) { showPage(PageType.PAGE_PROJECTS); - wizard.setNextName(I18n.getMessage("jsite.wizard.next")); - wizard.setPreviousName((String) manageNodeAction.getValue(Action.NAME)); } else if ("page.project.insert".equals(pageName)) { showPage(PageType.PAGE_PROJECT_FILES); } @@ -381,7 +414,7 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen nodeMenu.removeAll(); ButtonGroup nodeButtonGroup = new ButtonGroup(); Node newSelectedNode = null; - for (Node node: nodes) { + for (Node node : nodes) { JRadioButtonMenuItem nodeMenuItem = new JRadioButtonMenuItem(node.getName()); nodeMenuItem.putClientProperty("Node", node); nodeMenuItem.addActionListener(this); @@ -415,12 +448,9 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen // MAIN METHOD // public static void main(String[] args) { - System.setProperty("swing.plaf.metal.userFont", "Tahoma"); - System.setProperty("swing.plaf.metal.controlFont", "Tahoma"); - System.setProperty("swing.aatext", "true"); String configFilename = null; boolean nextIsConfigFilename = false; - for (String argument: args) { + for (String argument : args) { if (nextIsConfigFilename) { configFilename = argument; nextIsConfigFilename = false; @@ -446,5 +476,5 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen System.out.println("--debug\tenables some debug output"); System.out.println("--config-file \tuse specified configuration file"); } - + }