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