no file overrides for directories
[jSite2.git] / src / net / pterodactylus / jsite / gui / FileManager.java
index af1637e..a971342 100644 (file)
@@ -47,7 +47,6 @@ import java.util.logging.Logger;
 import javax.swing.BorderFactory;
 import javax.swing.JButton;
 import javax.swing.JCheckBox;
-import javax.swing.JCheckBoxMenuItem;
 import javax.swing.JDialog;
 import javax.swing.JLabel;
 import javax.swing.JOptionPane;
@@ -68,6 +67,7 @@ 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.I18nLabel;
+import net.pterodactylus.jsite.i18n.gui.I18nMenu;
 import net.pterodactylus.jsite.project.FileOverride;
 import net.pterodactylus.jsite.project.Project;
 import net.pterodactylus.jsite.project.ProjectFile;
@@ -76,7 +76,7 @@ import net.pterodactylus.util.swing.SwingUtils;
 
 /**
  * Manages physical and virtual files in a project.
- *
+ * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public class FileManager extends JDialog implements I18nable, ActionListener, TreeSelectionListener, MouseListener {
@@ -150,12 +150,18 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
        /** The context menu for the tree. */
        private JPopupMenu treeContextMenu;
 
-       /** The “insert” checkbox. */
-       private JCheckBoxMenuItem insertCheckBoxMenuItem;
+       /** The “apply override” menu. */
+       private I18nMenu overrideMenu;
+
+       /** The “apply insert override” action. */
+       private I18nAction applyInsertOverrideAction;
+
+       /** The “apply mime type override” action. */
+       private I18nAction applyMimeTypeOverrideAction;
 
        /**
         * Creates a new file manager.
-        *
+        * 
         * @param swingInterface
         *            The Swing interface
         * @param project
@@ -203,7 +209,19 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                        /**
                         * {@inheritDoc}
                         */
+                       @SuppressWarnings("synthetic-access")
                        public void actionPerformed(ActionEvent e) {
+                               String defaultFile = project.getDefaultFile();
+                               if ((defaultFile == null) || (defaultFile.length() == 0)) {
+                                       /* TODO - i18n */
+                                       JOptionPane.showMessageDialog(FileManager.this, I18n.get(""), I18n.get(""), JOptionPane.ERROR_MESSAGE);
+                                       return;
+                               }
+                               ProjectFile projectFile = project.getFile(defaultFile);
+                               if (projectFile == null) {
+                                       JOptionPane.showMessageDialog(FileManager.this, I18n.get(""), I18n.get(""), JOptionPane.ERROR_MESSAGE);
+                                       return;
+                               }
                                setVisible(false);
                        }
                };
@@ -222,6 +240,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                        /**
                         * {@inheritDoc}
                         */
+                       @SuppressWarnings("synthetic-access")
                        public void actionPerformed(ActionEvent actionEvent) {
                                TreePath selectedPath = fileTree.getSelectionPath();
                                if (selectedPath == null) {
@@ -253,6 +272,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                        }
                };
                overrideAction = new I18nAction("fileManager.checkbox.overrideActive") {
+
                        /**
                         * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
                         */
@@ -260,6 +280,26 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                                /* TODO */
                        }
                };
+               applyInsertOverrideAction = new I18nAction("fileManager.menu.item.applyInsertOverride") {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @SuppressWarnings("synthetic-access")
+                       public void actionPerformed(ActionEvent actionEvent) {
+                               applyInsertOverride();
+                       }
+               };
+               applyMimeTypeOverrideAction = new I18nAction("fileManager.menu.item.applyMimeTypeOverride") {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @SuppressWarnings("synthetic-access")
+                       public void actionPerformed(ActionEvent actionEvent) {
+                               applyMimeTypeOverride();
+                       }
+               };
        }
 
        /**
@@ -268,8 +308,12 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
        private void initComponents() {
                treeContextMenu = new JPopupMenu();
                treeContextMenu.add(setDefaultFileAction);
-               insertCheckBoxMenuItem = new JCheckBoxMenuItem(insertAction);
-               treeContextMenu.add(insertCheckBoxMenuItem);
+
+               overrideMenu = new I18nMenu("fileManager.menu.override");
+               treeContextMenu.add(overrideMenu);
+
+               overrideMenu.add(applyInsertOverrideAction);
+               overrideMenu.add(applyMimeTypeOverrideAction);
 
                JPanel contentPanel = new JPanel(new BorderLayout(12, 12));
                contentPanel.setBorder(BorderFactory.createEmptyBorder(12, 12, 12, 12));
@@ -282,7 +326,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
        /**
         * Creates the main panel with the file tree and the file properties.
-        *
+        * 
         * @return The mail panel
         */
        private Component createFileManagerPanel() {
@@ -361,7 +405,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
        /**
         * Creates the button panel.
-        *
+        * 
         * @return The button panel
         */
        private Component createButtonPanel() {
@@ -403,7 +447,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
        /**
         * Checks whether the given mouse event is a popup trigger and occured over
         * a file. If so, the context menu is shown.
-        *
+        * 
         * @param mouseEvent
         *            The mouse event to check
         */
@@ -412,20 +456,32 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                        return;
                }
                Point eventLocation = mouseEvent.getPoint();
-               TreePath clickedPath = fileTree.getPathForLocation(eventLocation.x, eventLocation.y);
-               if (clickedPath == null) {
-                       return;
+               TreePath[] selectedPaths = fileTree.getSelectionPaths();
+               if ((selectedPaths == null) || (selectedPaths.length == 0)) {
+                       /* try to find item under click. */
+                       TreePath clickedPath = fileTree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
+                       if (clickedPath != null) {
+                               fileTree.setSelectionPath(clickedPath);
+                               selectedPaths = new TreePath[] { clickedPath };
+                       } else {
+                               logger.log(Level.FINER, "nothing selected for context menu");
+                               return;
+                       }
+               }
+               if (selectedPaths.length == 1) {
+                       ProjectFileWrapper projectFileWrapper = (ProjectFileWrapper) selectedPaths[0].getLastPathComponent();
+                       ProjectFile projectFile = projectFileWrapper.getProjectFile();
+                       setDefaultFileAction.setEnabled(!isHidden(projectFileWrapper) && projectFile.isFile() && !projectFile.getCompletePath().equals(project.getDefaultFile()));
+               } else {
+                       setDefaultFileAction.setEnabled(false);
                }
-               fileTree.setSelectionPath(clickedPath);
-               ProjectFileWrapper projectFileWrapper = (ProjectFileWrapper) clickedPath.getLastPathComponent();
-               insertCheckBoxMenuItem.setSelected(!isHidden(projectFileWrapper));
                treeContextMenu.show(fileTree, eventLocation.x, eventLocation.y);
        }
 
        /**
         * Finds whether the {@link ProjectFile} given by
         * <code>projectFileWrapper</code> is hidden.
-        *
+        * 
         * @param projectFileWrapper
         *            The wrapped project file
         * @return <code>true</code> if the file is hidden and should not be
@@ -437,6 +493,44 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                return ((fileOverride == null) && projectFile.isHidden()) || ((fileOverride != null) && (fileOverride.isInsert()));
        }
 
+       /**
+        * Opens the “apply insert override” dialog and lets the user apply an
+        * override for the “insert” setting for multiple files.
+        */
+       private void applyInsertOverride() {
+               JCheckBox insertCheckBox = new JCheckBox(I18n.get("fileManager.checkbox.insertFile.name"));
+               String okString = I18n.get("general.button.okay.name");
+               String cancelString = I18n.get("general.button.cancel.name");
+               int choice = JOptionPane.showOptionDialog(this, new Object[] { I18n.get("fileManager.dialog.insertOverride.message"), insertCheckBox }, I18n.get("fileManager.dialog.insertOverride.title"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, new Object[] { okString, cancelString }, okString);
+               logger.log(Level.FINEST, "choice: " + choice);
+               if ((choice == JOptionPane.CLOSED_OPTION) || (choice == 1)) {
+                       return;
+               }
+               logger.log(Level.INFO, "selected insert override: " + insertCheckBox.isSelected());
+               TreePath[] selectedPaths = fileTree.getSelectionPaths();
+               for (TreePath selectedPath: selectedPaths) {
+                       ProjectFileWrapper projectFileWrapper = (ProjectFileWrapper) selectedPath.getLastPathComponent();
+                       ProjectFile projectFile = projectFileWrapper.getProjectFile();
+                       if (!projectFile.isFile()) {
+                               continue;
+                       }
+                       FileOverride fileOverride = project.getFileOverride(projectFile);
+                       if (fileOverride == null) {
+                               fileOverride = new FileOverride();
+                               project.addFileOverride(projectFile, fileOverride);
+                       }
+                       fileOverride.setInsert(insertCheckBox.isSelected());
+               }
+       }
+
+       /**
+        * Opens the “apply mime type override” dialog and lets the user apply an
+        * override for the “mime type” setting for multiple files.
+        */
+       private void applyMimeTypeOverride() {
+               /* TODO */
+       }
+
        //
        // INTERFACE I18nable
        //
@@ -482,6 +576,8 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                                fileNameTextField.setText(projectFile.getName());
                                fileSizeTextField.setText(String.valueOf(projectFile.getSize()));
                        }
+               } else if ((selectedPaths != null) && (selectedPaths.length > 1)) {
+                       /* TODO */
                }
        }
 
@@ -538,7 +634,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
        /**
         * Tree cell renderer that takes care of certain display properties for
         * project-specific stuff.
-        *
+        * 
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        private class FileCellRenderer extends DefaultTreeCellRenderer {
@@ -600,7 +696,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
        /**
         * TreeModel that is based on {@link Project#getBaseFile()}.
-        *
+        * 
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        private class ProjectFileTreeModel implements TreeModel, PropertyChangeListener {
@@ -644,7 +740,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
                /**
                 * Notifies all listeners that a node has changed.
-                *
+                * 
                 * @param changedProjectFileWrapper
                 *            The wrapper around the changed project file
                 */
@@ -658,7 +754,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                                currentProjectFileParent = currentProjectFileParent.getParent();
                        } while (currentProjectFileParent != null);
                        TreeModelEvent treeModelEvent = new TreeModelEvent(this, parentProjectFileWrappers.toArray(), new int[] { getIndexOfChild(projectFileWrappers.get(changedProjectFileParent), changedProjectFileWrapper) }, new Object[] { changedProjectFileWrapper });
-                       for (TreeModelListener treeModelListener : treeModelListeners) {
+                       for (TreeModelListener treeModelListener: treeModelListeners) {
                                treeModelListener.treeNodesChanged(treeModelEvent);
                        }
                }
@@ -666,12 +762,12 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                /**
                 * Notifies all listeners that the tree structure has changed
                 * significantly.
-                *
+                * 
                 * @see TreeModelListener#treeStructureChanged(TreeModelEvent)
                 * @param newRootNode
                 */
                protected void fireTreeStructureChanged(ProjectFileWrapper newRootNode) {
-                       for (TreeModelListener treeModelListener : treeModelListeners) {
+                       for (TreeModelListener treeModelListener: treeModelListeners) {
                                treeModelListener.treeStructureChanged(new TreeModelEvent(this, new Object[] { newRootNode }));
                        }
                }
@@ -682,7 +778,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
                /**
                 * Sets the new base project file. This causes the model to reload.
-                *
+                * 
                 * @param baseProjectFile
                 *            The new base project file
                 */
@@ -703,7 +799,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                /**
                 * Creates {@link ProjectFileWrapper}s for all files below the given
                 * project file.
-                *
+                * 
                 * @param projectFile
                 *            The base project file for all project files to create
                 *            wrappers for
@@ -711,7 +807,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                private void createWrappers(ProjectFile projectFile) {
                        projectFileWrappers.put(projectFile, new ProjectFileWrapper(projectFile));
                        pathProjectFiles.put(projectFile.getCompletePath(), projectFile);
-                       for (ProjectFile projectFileChild : projectFile.getFiles()) {
+                       for (ProjectFile projectFileChild: projectFile.getFiles()) {
                                if (projectFileChild.isDirectory()) {
                                        createWrappers(projectFileChild);
                                }
@@ -804,17 +900,20 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                /**
                 * @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent)
                 */
+               @SuppressWarnings("synthetic-access")
                public void propertyChange(PropertyChangeEvent propertyChangeEvent) {
                        if (Project.PROPERTY_DEFAULT_FILE.equals(propertyChangeEvent.getPropertyName())) {
-                               String oldCompletePath = (String) propertyChangeEvent.getOldValue();
+                               if (propertyChangeEvent.getOldValue() != null) {
+                                       String oldCompletePath = (String) propertyChangeEvent.getOldValue();
+                                       ProjectFile oldProjectFile = pathProjectFiles.get(oldCompletePath);
+                                       ProjectFileWrapper oldProjectFileWrapper = projectFileWrappers.get(oldProjectFile);
+                                       System.out.println("oldProjectFileWrapper: " + oldProjectFileWrapper);
+                                       fireTreeNodesChanged(oldProjectFileWrapper);
+                               }
                                String newCompletePath = (String) propertyChangeEvent.getNewValue();
-                               ProjectFile oldProjectFile = pathProjectFiles.get(oldCompletePath);
                                ProjectFile newProjectFile = pathProjectFiles.get(newCompletePath);
-                               ProjectFileWrapper oldProjectFileWrapper = projectFileWrappers.get(oldProjectFile);
                                ProjectFileWrapper newProjectFileWrapper = projectFileWrappers.get(newProjectFile);
-                               System.out.println("oldProjectFileWrapper: " + oldProjectFileWrapper);
                                System.out.println("newProjectFileWrapper: " + newProjectFileWrapper);
-                               fireTreeNodesChanged(oldProjectFileWrapper);
                                fireTreeNodesChanged(newProjectFileWrapper);
                                /* HACK - swing sucks a bit. */
                                fileTree.setShowsRootHandles(false);
@@ -826,7 +925,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
        /**
         * Wrapper around a {@link ProjectFile} that overwrites
         * {@link Object#toString()} to return the project file’s name.
-        *
+        * 
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        private static class ProjectFileWrapper {
@@ -839,7 +938,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
                /**
                 * Creates a new wrapper around a project file.
-                *
+                * 
                 * @param projectFile
                 *            The project file to wrap
                 */
@@ -849,7 +948,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
 
                /**
                 * Returns the wrapped project file.
-                *
+                * 
                 * @return The wrapped project file
                 */
                public ProjectFile getProjectFile() {
@@ -859,7 +958,7 @@ public class FileManager extends JDialog implements I18nable, ActionListener, Tr
                /**
                 * Sets the name override. If the name override is not <code>null</code>
                 * it will be shown insted of the project file’s name.
-                *
+                * 
                 * @param nameOverride
                 *            The name override
                 */