2d6743d5fbe8ec3d21f8777257944648daa34922
[jSite.git] / src / de / todesbaum / jsite / gui / ProjectFilesPage.java
1 /*
2  * jSite - a tool for uploading websites into Freenet
3  * Copyright (C) 2006 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package de.todesbaum.jsite.gui;
21
22 import java.awt.BorderLayout;
23 import java.awt.Dimension;
24 import java.awt.FlowLayout;
25 import java.awt.GridBagConstraints;
26 import java.awt.GridBagLayout;
27 import java.awt.Insets;
28 import java.awt.event.ActionEvent;
29 import java.awt.event.ActionListener;
30 import java.awt.event.KeyEvent;
31 import java.text.MessageFormat;
32 import java.util.ArrayList;
33 import java.util.Collections;
34 import java.util.HashSet;
35 import java.util.Iterator;
36 import java.util.List;
37 import java.util.Set;
38
39 import javax.swing.AbstractAction;
40 import javax.swing.Action;
41 import javax.swing.DefaultComboBoxModel;
42 import javax.swing.JButton;
43 import javax.swing.JCheckBox;
44 import javax.swing.JComboBox;
45 import javax.swing.JComponent;
46 import javax.swing.JLabel;
47 import javax.swing.JList;
48 import javax.swing.JOptionPane;
49 import javax.swing.JPanel;
50 import javax.swing.JScrollPane;
51 import javax.swing.JSpinner;
52 import javax.swing.JTextField;
53 import javax.swing.ListSelectionModel;
54 import javax.swing.SpinnerNumberModel;
55 import javax.swing.SwingUtilities;
56 import javax.swing.border.EmptyBorder;
57 import javax.swing.event.ChangeEvent;
58 import javax.swing.event.ChangeListener;
59 import javax.swing.event.DocumentEvent;
60 import javax.swing.event.DocumentListener;
61 import javax.swing.event.ListSelectionEvent;
62 import javax.swing.event.ListSelectionListener;
63 import javax.swing.text.BadLocationException;
64 import javax.swing.text.Document;
65
66 import de.todesbaum.jsite.application.FileOption;
67 import de.todesbaum.jsite.application.Project;
68 import de.todesbaum.jsite.i18n.I18n;
69 import de.todesbaum.jsite.i18n.I18nContainer;
70 import de.todesbaum.util.mime.DefaultMIMETypes;
71 import de.todesbaum.util.swing.TLabel;
72 import de.todesbaum.util.swing.TWizard;
73 import de.todesbaum.util.swing.TWizardPage;
74
75 /**
76  * Wizard page that lets the user manage the files of a project.
77  *
78  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
79  */
80 public class ProjectFilesPage extends TWizardPage implements ActionListener, ListSelectionListener, DocumentListener, FileScannerListener, ChangeListener {
81
82         /** The project. */
83         private Project project;
84
85         /** The “scan files” action. */
86         private Action scanAction;
87
88         /** The “edit container” action. */
89         private Action editContainerAction;
90
91         /** The “add container” action. */
92         private Action addContainerAction;
93
94         /** The “delete container” action. */
95         protected Action deleteContainerAction;
96
97         /** The list of project files. */
98         private JList projectFileList;
99
100         /** The “default file” checkbox. */
101         private JCheckBox defaultFileCheckBox;
102
103         /** The “insert” checkbox. */
104         private JCheckBox fileOptionsInsertCheckBox;
105
106         /** The “custom key” textfield. */
107         private JTextField fileOptionsCustomKeyTextField;
108
109         /** The “mime type” combo box. */
110         private JComboBox fileOptionsMIMETypeComboBox;
111
112         /** The “mime type” combo box model. */
113         private DefaultComboBoxModel containerComboBoxModel;
114
115         /** The “container” combo box. */
116         private JComboBox fileOptionsContainerComboBox;
117
118         /** The “edition replacement range” spinner. */
119         private JSpinner replaceEditionRangeSpinner;
120
121         /** The “replacement” check box. */
122         private JCheckBox replacementCheckBox;
123
124         /**
125          * Creates a new project file page.
126          *
127          * @param wizard
128          *            The wizard the page belongs to
129          */
130         public ProjectFilesPage(final TWizard wizard) {
131                 super(wizard);
132                 pageInit();
133         }
134
135         /**
136          * Initializes the page and all its actions and components.
137          */
138         private void pageInit() {
139                 createActions();
140                 setLayout(new BorderLayout(12, 12));
141                 add(createProjectFilesPanel(), BorderLayout.CENTER);
142         }
143
144         /**
145          * Creates all actions.
146          */
147         private void createActions() {
148                 scanAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.rescan")) {
149
150                         @SuppressWarnings("synthetic-access")
151                         public void actionPerformed(ActionEvent actionEvent) {
152                                 actionScan();
153                         }
154                 };
155                 scanAction.putValue(Action.MNEMONIC_KEY, KeyEvent.VK_S);
156                 scanAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.rescan.tooltip"));
157
158                 addContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.add-container")) {
159
160                         @SuppressWarnings("synthetic-access")
161                         public void actionPerformed(ActionEvent actionEvent) {
162                                 actionAddContainer();
163                         }
164                 };
165                 addContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.add-container.tooltip"));
166                 addContainerAction.setEnabled(false);
167
168                 editContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.edit-container")) {
169
170                         @SuppressWarnings("synthetic-access")
171                         public void actionPerformed(ActionEvent actionEvent) {
172                                 actionEditContainer();
173                         }
174                 };
175                 editContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.edit-container.tooltip"));
176                 editContainerAction.setEnabled(false);
177
178                 deleteContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.delete-container")) {
179
180                         @SuppressWarnings("synthetic-access")
181                         public void actionPerformed(ActionEvent actionEvent) {
182                                 actionDeleteContainer();
183                         }
184                 };
185                 deleteContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.delete-container.tooltip"));
186                 deleteContainerAction.setEnabled(false);
187
188                 I18nContainer.getInstance().registerRunnable(new Runnable() {
189
190                         @SuppressWarnings("synthetic-access")
191                         public void run() {
192                                 scanAction.putValue(Action.NAME, I18n.getMessage("jsite.project-files.action.rescan"));
193                                 scanAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.rescan.tooltip"));
194                                 addContainerAction.putValue(Action.NAME, I18n.getMessage("jsite.project-files.action.add-container"));
195                                 addContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.add-container.tooltip"));
196                                 editContainerAction.putValue(Action.NAME, I18n.getMessage("jsite.project-files.action.edit-container"));
197                                 editContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.edit-container.tooltip"));
198                                 deleteContainerAction.putValue(Action.NAME, I18n.getMessage("jsite.project-files.action.delete-container"));
199                                 deleteContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.delete-container.tooltip"));
200                         }
201                 });
202         }
203
204         /**
205          * {@inheritDoc}
206          */
207         @Override
208         public void pageAdded(TWizard wizard) {
209                 actionScan();
210                 this.wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous"));
211                 this.wizard.setNextName(I18n.getMessage("jsite.project-files.insert-now"));
212                 this.wizard.setQuitName(I18n.getMessage("jsite.wizard.quit"));
213         }
214
215         /**
216          * Creates the panel contains the project file list and options.
217          *
218          * @return The created panel
219          */
220         private JComponent createProjectFilesPanel() {
221                 JPanel projectFilesPanel = new JPanel(new BorderLayout(12, 12));
222
223                 projectFileList = new JList();
224                 projectFileList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
225                 projectFileList.setMinimumSize(new Dimension(250, projectFileList.getPreferredSize().height));
226                 projectFileList.addListSelectionListener(this);
227
228                 projectFilesPanel.add(new JScrollPane(projectFileList), BorderLayout.CENTER);
229
230                 JPanel fileOptionsAlignmentPanel = new JPanel(new BorderLayout(12, 12));
231                 projectFilesPanel.add(fileOptionsAlignmentPanel, BorderLayout.PAGE_END);
232                 JPanel fileOptionsPanel = new JPanel(new GridBagLayout());
233                 fileOptionsAlignmentPanel.add(fileOptionsPanel, BorderLayout.PAGE_START);
234
235                 fileOptionsPanel.add(new JButton(scanAction), new GridBagConstraints(0, 0, 5, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0));
236
237                 final JLabel fileOptionsLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.project-files.file-options") + "</b></html>");
238                 fileOptionsPanel.add(fileOptionsLabel, new GridBagConstraints(0, 1, 5, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 0, 0, 0), 0, 0));
239
240                 defaultFileCheckBox = new JCheckBox(I18n.getMessage("jsite.project-files.default"));
241                 defaultFileCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.default.tooltip"));
242                 defaultFileCheckBox.setName("default-file");
243                 defaultFileCheckBox.addActionListener(this);
244                 defaultFileCheckBox.setEnabled(false);
245
246                 fileOptionsPanel.add(defaultFileCheckBox, new GridBagConstraints(0, 2, 5, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 18, 0, 0), 0, 0));
247
248                 fileOptionsInsertCheckBox = new JCheckBox(I18n.getMessage("jsite.project-files.insert"), true);
249                 fileOptionsInsertCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.insert.tooltip"));
250                 fileOptionsInsertCheckBox.setName("insert");
251                 fileOptionsInsertCheckBox.setMnemonic(KeyEvent.VK_I);
252                 fileOptionsInsertCheckBox.addActionListener(this);
253                 fileOptionsInsertCheckBox.setEnabled(false);
254
255                 fileOptionsPanel.add(fileOptionsInsertCheckBox, new GridBagConstraints(0, 3, 5, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
256
257                 fileOptionsCustomKeyTextField = new JTextField(45);
258                 fileOptionsCustomKeyTextField.setToolTipText(I18n.getMessage("jsite.project-files.custom-key.tooltip"));
259                 fileOptionsCustomKeyTextField.setEnabled(false);
260                 fileOptionsCustomKeyTextField.getDocument().addDocumentListener(this);
261
262                 final TLabel customKeyLabel = new TLabel(I18n.getMessage("jsite.project-files.custom-key") + ":", KeyEvent.VK_K, fileOptionsCustomKeyTextField);
263                 fileOptionsPanel.add(customKeyLabel, new GridBagConstraints(0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
264                 fileOptionsPanel.add(fileOptionsCustomKeyTextField, new GridBagConstraints(1, 4, 4, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
265
266                 fileOptionsMIMETypeComboBox = new JComboBox(DefaultMIMETypes.getAllMIMETypes());
267                 fileOptionsMIMETypeComboBox.setToolTipText(I18n.getMessage("jsite.project-files.mime-type.tooltip"));
268                 fileOptionsMIMETypeComboBox.setName("project-files.mime-type");
269                 fileOptionsMIMETypeComboBox.addActionListener(this);
270                 fileOptionsMIMETypeComboBox.setEditable(true);
271                 fileOptionsMIMETypeComboBox.setEnabled(false);
272
273                 final TLabel mimeTypeLabel = new TLabel(I18n.getMessage("jsite.project-files.mime-type") + ":", KeyEvent.VK_M, fileOptionsMIMETypeComboBox);
274                 fileOptionsPanel.add(mimeTypeLabel, new GridBagConstraints(0, 5, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
275                 fileOptionsPanel.add(fileOptionsMIMETypeComboBox, new GridBagConstraints(1, 5, 4, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
276
277                 containerComboBoxModel = new DefaultComboBoxModel();
278                 fileOptionsContainerComboBox = new JComboBox(containerComboBoxModel);
279                 fileOptionsContainerComboBox.setToolTipText(I18n.getMessage("jsite.project-files.container.tooltip"));
280                 fileOptionsContainerComboBox.setName("project-files.container");
281                 fileOptionsContainerComboBox.addActionListener(this);
282                 fileOptionsContainerComboBox.setEnabled(false);
283
284                 final TLabel containerLabel = new TLabel(I18n.getMessage("jsite.project-files.container") + ":", KeyEvent.VK_C, fileOptionsContainerComboBox);
285                 fileOptionsPanel.add(containerLabel, new GridBagConstraints(0, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
286                 fileOptionsPanel.add(fileOptionsContainerComboBox, new GridBagConstraints(1, 6, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
287                 fileOptionsPanel.add(new JButton(addContainerAction), new GridBagConstraints(2, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
288                 fileOptionsPanel.add(new JButton(editContainerAction), new GridBagConstraints(3, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
289                 fileOptionsPanel.add(new JButton(deleteContainerAction), new GridBagConstraints(4, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
290
291                 JPanel fileOptionsReplacementPanel = new JPanel(new FlowLayout(FlowLayout.LEADING, 6, 6));
292                 fileOptionsReplacementPanel.setBorder(new EmptyBorder(-6, -6, -6, -6));
293
294                 replacementCheckBox = new JCheckBox(I18n.getMessage("jsite.project-files.replacement"));
295                 replacementCheckBox.setName("project-files.replace-edition");
296                 replacementCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.replacement.tooltip"));
297                 replacementCheckBox.addActionListener(this);
298                 replacementCheckBox.setEnabled(false);
299                 fileOptionsReplacementPanel.add(replacementCheckBox);
300
301                 replaceEditionRangeSpinner = new JSpinner(new SpinnerNumberModel(0, 0, 99, 1));
302                 replaceEditionRangeSpinner.setName("project-files.replace-edition-range");
303                 replaceEditionRangeSpinner.setToolTipText(I18n.getMessage("jsite.project-files.replacement.edition-range.tooltip"));
304                 replaceEditionRangeSpinner.addChangeListener(this);
305                 replaceEditionRangeSpinner.setEnabled(false);
306                 final JLabel editionRangeLabel = new JLabel(I18n.getMessage("jsite.project-files.replacement.edition-range"));
307                 fileOptionsReplacementPanel.add(editionRangeLabel);
308                 fileOptionsReplacementPanel.add(replaceEditionRangeSpinner);
309
310                 fileOptionsPanel.add(fileOptionsReplacementPanel, new GridBagConstraints(0, 7, 5, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 18, 0, 0), 0, 0));
311
312                 I18nContainer.getInstance().registerRunnable(new Runnable() {
313
314                         @SuppressWarnings("synthetic-access")
315                         public void run() {
316                                 fileOptionsLabel.setText("<html><b>" + I18n.getMessage("jsite.project-files.file-options") + "</b></html>");
317                                 defaultFileCheckBox.setText(I18n.getMessage("jsite.project-files.default"));
318                                 defaultFileCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.default.tooltip"));
319                                 fileOptionsInsertCheckBox.setText(I18n.getMessage("jsite.project-files.insert"));
320                                 fileOptionsInsertCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.insert.tooltip"));
321                                 fileOptionsCustomKeyTextField.setToolTipText(I18n.getMessage("jsite.project-files.custom-key.tooltip"));
322                                 customKeyLabel.setText(I18n.getMessage("jsite.project-files.custom-key") + ":");
323                                 fileOptionsMIMETypeComboBox.setToolTipText(I18n.getMessage("jsite.project-files.mime-type.tooltip"));
324                                 mimeTypeLabel.setText(I18n.getMessage("jsite.project-files.mime-type") + ":");
325                                 fileOptionsContainerComboBox.setToolTipText(I18n.getMessage("jsite.project-files.container.tooltip"));
326                                 containerLabel.setText(I18n.getMessage("jsite.project-files.container") + ":");
327                                 replacementCheckBox.setText(I18n.getMessage("jsite.project-files.replacement"));
328                                 replacementCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.replacement.tooltip"));
329                                 replaceEditionRangeSpinner.setToolTipText(I18n.getMessage("jsite.project-files.replacement.edition-range.tooltip"));
330                                 editionRangeLabel.setText(I18n.getMessage("jsite.project-files.replacement.edition-range"));
331                         }
332                 });
333
334                 return projectFilesPanel;
335         }
336
337         /**
338          * Sets the project whose files to manage.
339          *
340          * @param project
341          *            The project whose files to manage
342          */
343         public void setProject(final Project project) {
344                 this.project = project;
345                 setHeading(MessageFormat.format(I18n.getMessage("jsite.project-files.heading"), project.getName()));
346                 setDescription(I18n.getMessage("jsite.project-files.description"));
347                 I18nContainer.getInstance().registerRunnable(new Runnable() {
348
349                         public void run() {
350                                 setHeading(MessageFormat.format(I18n.getMessage("jsite.project-files.heading"), project.getName()));
351                                 setDescription(I18n.getMessage("jsite.project-files.description"));
352                         }
353                 });
354         }
355
356         /**
357          * Returns a list of all project files.
358          *
359          * @return All project files
360          */
361         private List<String> getProjectFiles() {
362                 List<String> files = new ArrayList<String>();
363                 for (int index = 0, size = projectFileList.getModel().getSize(); index < size; index++) {
364                         files.add((String) projectFileList.getModel().getElementAt(index));
365                 }
366                 return files;
367         }
368
369         /**
370          * Updates the container combo box model.
371          */
372         private void rebuildContainerComboBox() {
373                 /* scan files for containers */
374                 List<String> files = getProjectFiles();
375                 List<String> containers = new ArrayList<String>(); // ComboBoxModel
376                 // sucks. No
377                 // contains()!
378                 containers.add("");
379                 for (String filename : files) {
380                         String container = project.getFileOption(filename).getContainer();
381                         if (!containers.contains(container)) {
382                                 containers.add(container);
383                         }
384                 }
385                 Collections.sort(containers);
386                 containerComboBoxModel.removeAllElements();
387                 for (String container : containers) {
388                         containerComboBoxModel.addElement(container);
389                 }
390         }
391
392         //
393         // ACTIONS
394         //
395
396         /**
397          * Rescans the project’s files.
398          */
399         private void actionScan() {
400                 projectFileList.clearSelection();
401                 projectFileList.setListData(new Object[0]);
402
403                 wizard.setNextEnabled(false);
404                 wizard.setPreviousEnabled(false);
405                 wizard.setQuitEnabled(false);
406
407                 FileScanner fileScanner = new FileScanner(project);
408                 fileScanner.addFileScannerListener(this);
409                 new Thread(fileScanner).start();
410         }
411
412         /**
413          * Adds a container.
414          */
415         private void actionAddContainer() {
416                 String containerName = JOptionPane.showInputDialog(wizard, I18n.getMessage("jsite.project-files.action.add-container.message") + ":", null, JOptionPane.INFORMATION_MESSAGE);
417                 if (containerName == null) {
418                         return;
419                 }
420                 containerName = containerName.trim();
421                 String filename = (String) projectFileList.getSelectedValue();
422                 FileOption fileOption = project.getFileOption(filename);
423                 fileOption.setContainer(containerName);
424                 rebuildContainerComboBox();
425                 fileOptionsContainerComboBox.setSelectedItem(containerName);
426         }
427
428         /**
429          * Edits the container.
430          */
431         private void actionEditContainer() {
432                 String selectedFilename = (String) projectFileList.getSelectedValue();
433                 FileOption fileOption = project.getFileOption(selectedFilename);
434                 String oldContainerName = fileOption.getContainer();
435                 String containerName = JOptionPane.showInputDialog(wizard, I18n.getMessage("jsite.project-files.action.edit-container.message") + ":", oldContainerName);
436                 if (containerName == null) {
437                         return;
438                 }
439                 if (containerName.equals("")) {
440                         fileOption.setContainer("");
441                         fileOptionsContainerComboBox.setSelectedItem("");
442                         return;
443                 }
444                 List<String> files = getProjectFiles();
445                 for (String filename : files) {
446                         fileOption = project.getFileOption(filename);
447                         if (fileOption.getContainer().equals(oldContainerName)) {
448                                 fileOption.setContainer(containerName);
449                         }
450                 }
451                 rebuildContainerComboBox();
452                 fileOptionsContainerComboBox.setSelectedItem(containerName);
453         }
454
455         /**
456          * Deletes the container.
457          */
458         private void actionDeleteContainer() {
459                 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.action.delete-container.message"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) == JOptionPane.OK_OPTION) {
460                         String containerName = (String) fileOptionsContainerComboBox.getSelectedItem();
461                         List<String> files = getProjectFiles();
462                         for (String filename : files) {
463                                 FileOption fileOption = project.getFileOption(filename);
464                                 if (fileOption.getContainer().equals(containerName)) {
465                                         fileOption.setContainer("");
466                                 }
467                         }
468                         fileOptionsContainerComboBox.setSelectedItem("");
469                 }
470         }
471
472         /**
473          * {@inheritDoc}
474          * <p>
475          * Updates the file list.
476          */
477         public void fileScannerFinished(FileScanner fileScanner) {
478                 final boolean error = fileScanner.isError();
479                 if (!error) {
480                         final List<String> files = fileScanner.getFiles();
481                         SwingUtilities.invokeLater(new Runnable() {
482
483                                 @SuppressWarnings("synthetic-access")
484                                 public void run() {
485                                         projectFileList.setListData(files.toArray(new String[files.size()]));
486                                         projectFileList.clearSelection();
487                                         rebuildContainerComboBox();
488                                 }
489                         });
490                         Set<String> entriesToRemove = new HashSet<String>();
491                         Iterator<String> filenames = project.getFileOptions().keySet().iterator();
492                         while (filenames.hasNext()) {
493                                 String filename = filenames.next();
494                                 if (!files.contains(filename)) {
495                                         entriesToRemove.add(filename);
496                                 }
497                         }
498                         for (String filename : entriesToRemove) {
499                                 project.setFileOption(filename, null);
500                         }
501                 } else {
502                         JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.scan-error"), null, JOptionPane.ERROR_MESSAGE);
503                 }
504                 SwingUtilities.invokeLater(new Runnable() {
505
506                         @SuppressWarnings("synthetic-access")
507                         public void run() {
508                                 wizard.setPreviousEnabled(true);
509                                 wizard.setNextEnabled(!error);
510                                 wizard.setQuitEnabled(true);
511                         }
512                 });
513         }
514
515         //
516         // INTERFACE ActionListener
517         //
518
519         /**
520          * {@inheritDoc}
521          */
522         public void actionPerformed(ActionEvent actionEvent) {
523                 String filename = (String) projectFileList.getSelectedValue();
524                 if (filename == null) {
525                         return;
526                 }
527                 FileOption fileOption = project.getFileOption(filename);
528                 Object source = actionEvent.getSource();
529                 if (source instanceof JCheckBox) {
530                         JCheckBox checkBox = (JCheckBox) source;
531                         if ("default-file".equals(checkBox.getName())) {
532                                 if (checkBox.isSelected()) {
533                                         project.setIndexFile(filename);
534                                 } else {
535                                         project.setIndexFile(null);
536                                 }
537                         } else if ("insert".equals(checkBox.getName())) {
538                                 boolean isInsert = checkBox.isSelected();
539                                 fileOptionsCustomKeyTextField.setEnabled(!isInsert);
540                                 fileOption.setInsert(isInsert);
541                                 if (!isInsert) {
542                                         fileOptionsContainerComboBox.setSelectedItem("");
543                                 }
544                         } else if ("project-files.replace-edition".equals(checkBox.getName())) {
545                                 boolean replaceEdition = checkBox.isSelected();
546                                 fileOption.setReplaceEdition(replaceEdition);
547                                 replaceEditionRangeSpinner.setEnabled(replaceEdition);
548                         }
549                 } else if (source instanceof JComboBox) {
550                         JComboBox comboBox = (JComboBox) source;
551                         if ("project-files.mime-type".equals(comboBox.getName())) {
552                                 fileOption.setMimeType((String) comboBox.getSelectedItem());
553                         } else if ("project-files.container".equals(comboBox.getName())) {
554                                 String containerName = (String) comboBox.getSelectedItem();
555                                 fileOption.setContainer(containerName);
556                                 boolean enabled = !"".equals(containerName);
557                                 editContainerAction.setEnabled(enabled);
558                                 deleteContainerAction.setEnabled(enabled);
559                                 if (enabled) {
560                                         fileOptionsInsertCheckBox.setSelected(true);
561                                 }
562                         }
563                 }
564         }
565
566         //
567         // INTERFACE ListSelectionListener
568         //
569
570         /**
571          * {@inheritDoc}
572          */
573         public void valueChanged(ListSelectionEvent e) {
574                 String filename = (String) projectFileList.getSelectedValue();
575                 boolean enabled = filename != null;
576                 boolean insert = fileOptionsInsertCheckBox.isSelected();
577                 defaultFileCheckBox.setEnabled(enabled);
578                 fileOptionsInsertCheckBox.setEnabled(enabled);
579                 fileOptionsCustomKeyTextField.setEnabled(enabled && !insert);
580                 fileOptionsMIMETypeComboBox.setEnabled(enabled);
581                 fileOptionsContainerComboBox.setEnabled(enabled);
582                 addContainerAction.setEnabled(enabled);
583                 editContainerAction.setEnabled(enabled);
584                 deleteContainerAction.setEnabled(enabled);
585                 replacementCheckBox.setEnabled(enabled && insert);
586                 if (filename != null) {
587                         FileOption fileOption = project.getFileOption(filename);
588                         defaultFileCheckBox.setSelected(filename.equals(project.getIndexFile()));
589                         fileOptionsInsertCheckBox.setSelected(fileOption.isInsert());
590                         fileOptionsCustomKeyTextField.setText(fileOption.getCustomKey());
591                         fileOptionsMIMETypeComboBox.getModel().setSelectedItem(fileOption.getMimeType());
592                         fileOptionsContainerComboBox.setSelectedItem(fileOption.getContainer());
593                         replacementCheckBox.setSelected(fileOption.getReplaceEdition());
594                         replaceEditionRangeSpinner.setValue(fileOption.getEditionRange());
595                         replaceEditionRangeSpinner.setEnabled(fileOption.getReplaceEdition());
596                 } else {
597                         defaultFileCheckBox.setSelected(false);
598                         fileOptionsInsertCheckBox.setSelected(true);
599                         fileOptionsCustomKeyTextField.setText("CHK@");
600                         fileOptionsMIMETypeComboBox.getModel().setSelectedItem(DefaultMIMETypes.DEFAULT_MIME_TYPE);
601                         fileOptionsContainerComboBox.setSelectedItem("");
602                         replacementCheckBox.setSelected(false);
603                         replaceEditionRangeSpinner.setValue(0);
604                 }
605         }
606
607         //
608         // INTERFACE DocumentListener
609         //
610
611         /**
612          * Updates the options of the currently selected file with the changes made
613          * in the “custom key” textfield.
614          *
615          * @param documentEvent
616          *            The document event to process
617          */
618         private void processDocumentUpdate(DocumentEvent documentEvent) {
619                 String filename = (String) projectFileList.getSelectedValue();
620                 if (filename == null) {
621                         return;
622                 }
623                 FileOption fileOption = project.getFileOption(filename);
624                 Document document = documentEvent.getDocument();
625                 try {
626                         String text = document.getText(0, document.getLength());
627                         fileOption.setCustomKey(text);
628                 } catch (BadLocationException ble1) {
629                         /* ignore. */
630                 }
631         }
632
633         /**
634          * {@inheritDoc}
635          */
636         public void changedUpdate(DocumentEvent documentEvent) {
637                 processDocumentUpdate(documentEvent);
638         }
639
640         /**
641          * {@inheritDoc}
642          */
643         public void insertUpdate(DocumentEvent documentEvent) {
644                 processDocumentUpdate(documentEvent);
645         }
646
647         /**
648          * {@inheritDoc}
649          */
650         public void removeUpdate(DocumentEvent documentEvent) {
651                 processDocumentUpdate(documentEvent);
652         }
653
654         //
655         // INTERFACE ChangeListener
656         //
657
658         /**
659          * {@inheritDoc}
660          */
661         public void stateChanged(ChangeEvent changeEvent) {
662                 String filename = (String) projectFileList.getSelectedValue();
663                 if (filename == null) {
664                         return;
665                 }
666                 FileOption fileOption = project.getFileOption(filename);
667                 Object source = changeEvent.getSource();
668                 if (source instanceof JSpinner) {
669                         JSpinner spinner = (JSpinner) source;
670                         fileOption.setEditionRange((Integer) spinner.getValue());
671                 }
672         }
673
674 }