2 * jSite - a tool for uploading websites into Freenet
3 * Copyright (C) 2006 David Roden
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.
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.
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.
20 package de.todesbaum.jsite.gui;
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;
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;
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;
76 * Wizard page that lets the user manage the files of a project.
78 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
80 public class ProjectFilesPage extends TWizardPage implements ActionListener, ListSelectionListener, DocumentListener, FileScannerListener, ChangeListener {
83 private Project project;
85 /** The “scan files” action. */
86 private Action scanAction;
88 /** The “edit container” action. */
89 private Action editContainerAction;
91 /** The “add container” action. */
92 private Action addContainerAction;
94 /** The “delete container” action. */
95 protected Action deleteContainerAction;
97 /** The list of project files. */
98 private JList projectFileList;
100 /** The “default file” checkbox. */
101 private JCheckBox defaultFileCheckBox;
103 /** The “insert” checkbox. */
104 private JCheckBox fileOptionsInsertCheckBox;
106 /** The “custom key” textfield. */
107 private JTextField fileOptionsCustomKeyTextField;
109 /** The “mime type” combo box. */
110 private JComboBox fileOptionsMIMETypeComboBox;
112 /** The “mime type” combo box model. */
113 private DefaultComboBoxModel containerComboBoxModel;
115 /** The “container” combo box. */
116 private JComboBox fileOptionsContainerComboBox;
118 /** The “edition replacement range” spinner. */
119 private JSpinner replaceEditionRangeSpinner;
121 /** The “replacement” check box. */
122 private JCheckBox replacementCheckBox;
125 * Creates a new project file page.
128 * The wizard the page belongs to
130 public ProjectFilesPage(final TWizard wizard) {
136 * Initializes the page and all its actions and components.
138 private void pageInit() {
140 setLayout(new BorderLayout(12, 12));
141 add(createProjectFilesPanel(), BorderLayout.CENTER);
145 * Creates all actions.
147 private void createActions() {
148 scanAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.rescan")) {
150 @SuppressWarnings("synthetic-access")
151 public void actionPerformed(ActionEvent actionEvent) {
155 scanAction.putValue(Action.MNEMONIC_KEY, KeyEvent.VK_S);
156 scanAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.rescan.tooltip"));
158 addContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.add-container")) {
160 @SuppressWarnings("synthetic-access")
161 public void actionPerformed(ActionEvent actionEvent) {
162 actionAddContainer();
165 addContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.add-container.tooltip"));
166 addContainerAction.setEnabled(false);
168 editContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.edit-container")) {
170 @SuppressWarnings("synthetic-access")
171 public void actionPerformed(ActionEvent actionEvent) {
172 actionEditContainer();
175 editContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.edit-container.tooltip"));
176 editContainerAction.setEnabled(false);
178 deleteContainerAction = new AbstractAction(I18n.getMessage("jsite.project-files.action.delete-container")) {
180 @SuppressWarnings("synthetic-access")
181 public void actionPerformed(ActionEvent actionEvent) {
182 actionDeleteContainer();
185 deleteContainerAction.putValue(Action.SHORT_DESCRIPTION, I18n.getMessage("jsite.project-files.action.delete-container.tooltip"));
186 deleteContainerAction.setEnabled(false);
188 I18nContainer.getInstance().registerRunnable(new Runnable() {
190 @SuppressWarnings("synthetic-access")
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"));
208 public void pageAdded(TWizard wizard) {
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"));
216 * Creates the panel contains the project file list and options.
218 * @return The created panel
220 private JComponent createProjectFilesPanel() {
221 JPanel projectFilesPanel = new JPanel(new BorderLayout(12, 12));
223 projectFileList = new JList();
224 projectFileList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
225 projectFileList.setMinimumSize(new Dimension(250, projectFileList.getPreferredSize().height));
226 projectFileList.addListSelectionListener(this);
228 projectFilesPanel.add(new JScrollPane(projectFileList), BorderLayout.CENTER);
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);
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));
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));
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);
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));
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);
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));
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);
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));
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);
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));
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 fileOptionsContainerComboBox.setVisible(false);
285 final TLabel containerLabel = new TLabel(I18n.getMessage("jsite.project-files.container") + ":", KeyEvent.VK_C, fileOptionsContainerComboBox);
286 containerLabel.setVisible(false);
287 JButton addContainerButton = new JButton(addContainerAction);
288 addContainerButton.setVisible(false);
289 JButton editContainerButton = new JButton(editContainerAction);
290 editContainerButton.setVisible(false);
291 JButton deleteContainerButton = new JButton(deleteContainerAction);
292 deleteContainerButton.setVisible(false);
293 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));
294 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));
295 fileOptionsPanel.add(addContainerButton, new GridBagConstraints(2, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
296 fileOptionsPanel.add(editContainerButton, new GridBagConstraints(3, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
297 fileOptionsPanel.add(deleteContainerButton, new GridBagConstraints(4, 6, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
299 JPanel fileOptionsReplacementPanel = new JPanel(new FlowLayout(FlowLayout.LEADING, 6, 6));
300 fileOptionsReplacementPanel.setBorder(new EmptyBorder(-6, -6, -6, -6));
302 replacementCheckBox = new JCheckBox(I18n.getMessage("jsite.project-files.replacement"));
303 replacementCheckBox.setName("project-files.replace-edition");
304 replacementCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.replacement.tooltip"));
305 replacementCheckBox.addActionListener(this);
306 replacementCheckBox.setEnabled(false);
307 replacementCheckBox.setVisible(false);
308 fileOptionsReplacementPanel.add(replacementCheckBox);
310 replaceEditionRangeSpinner = new JSpinner(new SpinnerNumberModel(0, 0, 99, 1));
311 replaceEditionRangeSpinner.setName("project-files.replace-edition-range");
312 replaceEditionRangeSpinner.setToolTipText(I18n.getMessage("jsite.project-files.replacement.edition-range.tooltip"));
313 replaceEditionRangeSpinner.addChangeListener(this);
314 replaceEditionRangeSpinner.setEnabled(false);
315 replaceEditionRangeSpinner.setVisible(false);
316 final JLabel editionRangeLabel = new JLabel(I18n.getMessage("jsite.project-files.replacement.edition-range"));
317 editionRangeLabel.setVisible(false);
318 fileOptionsReplacementPanel.add(editionRangeLabel);
319 fileOptionsReplacementPanel.add(replaceEditionRangeSpinner);
321 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));
323 I18nContainer.getInstance().registerRunnable(new Runnable() {
325 @SuppressWarnings("synthetic-access")
327 fileOptionsLabel.setText("<html><b>" + I18n.getMessage("jsite.project-files.file-options") + "</b></html>");
328 defaultFileCheckBox.setText(I18n.getMessage("jsite.project-files.default"));
329 defaultFileCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.default.tooltip"));
330 fileOptionsInsertCheckBox.setText(I18n.getMessage("jsite.project-files.insert"));
331 fileOptionsInsertCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.insert.tooltip"));
332 fileOptionsCustomKeyTextField.setToolTipText(I18n.getMessage("jsite.project-files.custom-key.tooltip"));
333 customKeyLabel.setText(I18n.getMessage("jsite.project-files.custom-key") + ":");
334 fileOptionsMIMETypeComboBox.setToolTipText(I18n.getMessage("jsite.project-files.mime-type.tooltip"));
335 mimeTypeLabel.setText(I18n.getMessage("jsite.project-files.mime-type") + ":");
336 fileOptionsContainerComboBox.setToolTipText(I18n.getMessage("jsite.project-files.container.tooltip"));
337 containerLabel.setText(I18n.getMessage("jsite.project-files.container") + ":");
338 replacementCheckBox.setText(I18n.getMessage("jsite.project-files.replacement"));
339 replacementCheckBox.setToolTipText(I18n.getMessage("jsite.project-files.replacement.tooltip"));
340 replaceEditionRangeSpinner.setToolTipText(I18n.getMessage("jsite.project-files.replacement.edition-range.tooltip"));
341 editionRangeLabel.setText(I18n.getMessage("jsite.project-files.replacement.edition-range"));
345 return projectFilesPanel;
349 * Sets the project whose files to manage.
352 * The project whose files to manage
354 public void setProject(final Project project) {
355 this.project = project;
356 setHeading(MessageFormat.format(I18n.getMessage("jsite.project-files.heading"), project.getName()));
357 setDescription(I18n.getMessage("jsite.project-files.description"));
358 I18nContainer.getInstance().registerRunnable(new Runnable() {
361 setHeading(MessageFormat.format(I18n.getMessage("jsite.project-files.heading"), project.getName()));
362 setDescription(I18n.getMessage("jsite.project-files.description"));
368 * Returns a list of all project files.
370 * @return All project files
372 private List<String> getProjectFiles() {
373 List<String> files = new ArrayList<String>();
374 for (int index = 0, size = projectFileList.getModel().getSize(); index < size; index++) {
375 files.add((String) projectFileList.getModel().getElementAt(index));
381 * Updates the container combo box model.
383 private void rebuildContainerComboBox() {
384 /* scan files for containers */
385 List<String> files = getProjectFiles();
386 List<String> containers = new ArrayList<String>(); // ComboBoxModel
390 for (String filename : files) {
391 String container = project.getFileOption(filename).getContainer();
392 if (!containers.contains(container)) {
393 containers.add(container);
396 Collections.sort(containers);
397 containerComboBoxModel.removeAllElements();
398 for (String container : containers) {
399 containerComboBoxModel.addElement(container);
408 * Rescans the project’s files.
410 private void actionScan() {
411 projectFileList.clearSelection();
412 projectFileList.setListData(new Object[0]);
414 wizard.setNextEnabled(false);
415 wizard.setPreviousEnabled(false);
416 wizard.setQuitEnabled(false);
418 FileScanner fileScanner = new FileScanner(project);
419 fileScanner.addFileScannerListener(this);
420 new Thread(fileScanner).start();
426 private void actionAddContainer() {
427 String containerName = JOptionPane.showInputDialog(wizard, I18n.getMessage("jsite.project-files.action.add-container.message") + ":", null, JOptionPane.INFORMATION_MESSAGE);
428 if (containerName == null) {
431 containerName = containerName.trim();
432 String filename = (String) projectFileList.getSelectedValue();
433 FileOption fileOption = project.getFileOption(filename);
434 fileOption.setContainer(containerName);
435 rebuildContainerComboBox();
436 fileOptionsContainerComboBox.setSelectedItem(containerName);
440 * Edits the container.
442 private void actionEditContainer() {
443 String selectedFilename = (String) projectFileList.getSelectedValue();
444 FileOption fileOption = project.getFileOption(selectedFilename);
445 String oldContainerName = fileOption.getContainer();
446 String containerName = JOptionPane.showInputDialog(wizard, I18n.getMessage("jsite.project-files.action.edit-container.message") + ":", oldContainerName);
447 if (containerName == null) {
450 if (containerName.equals("")) {
451 fileOption.setContainer("");
452 fileOptionsContainerComboBox.setSelectedItem("");
455 List<String> files = getProjectFiles();
456 for (String filename : files) {
457 fileOption = project.getFileOption(filename);
458 if (fileOption.getContainer().equals(oldContainerName)) {
459 fileOption.setContainer(containerName);
462 rebuildContainerComboBox();
463 fileOptionsContainerComboBox.setSelectedItem(containerName);
467 * Deletes the container.
469 private void actionDeleteContainer() {
470 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.project-files.action.delete-container.message"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) == JOptionPane.OK_OPTION) {
471 String containerName = (String) fileOptionsContainerComboBox.getSelectedItem();
472 List<String> files = getProjectFiles();
473 for (String filename : files) {
474 FileOption fileOption = project.getFileOption(filename);
475 if (fileOption.getContainer().equals(containerName)) {
476 fileOption.setContainer("");
479 fileOptionsContainerComboBox.setSelectedItem("");
486 * Updates the file list.
488 public void fileScannerFinished(FileScanner fileScanner) {
489 final boolean error = fileScanner.isError();
491 final List<String> files = fileScanner.getFiles();
492 SwingUtilities.invokeLater(new Runnable() {
494 @SuppressWarnings("synthetic-access")
496 projectFileList.setListData(files.toArray(new String[files.size()]));
497 projectFileList.clearSelection();
498 rebuildContainerComboBox();
501 Set<String> entriesToRemove = new HashSet<String>();
502 Iterator<String> filenames = project.getFileOptions().keySet().iterator();
503 while (filenames.hasNext()) {
504 String filename = filenames.next();
505 if (!files.contains(filename)) {
506 entriesToRemove.add(filename);
509 for (String filename : entriesToRemove) {
510 project.setFileOption(filename, null);
513 JOptionPane.showMessageDialog(wizard, I18n.getMessage("jsite.project-files.scan-error"), null, JOptionPane.ERROR_MESSAGE);
515 SwingUtilities.invokeLater(new Runnable() {
517 @SuppressWarnings("synthetic-access")
519 wizard.setPreviousEnabled(true);
520 wizard.setNextEnabled(!error);
521 wizard.setQuitEnabled(true);
527 // INTERFACE ActionListener
533 public void actionPerformed(ActionEvent actionEvent) {
534 String filename = (String) projectFileList.getSelectedValue();
535 if (filename == null) {
538 FileOption fileOption = project.getFileOption(filename);
539 Object source = actionEvent.getSource();
540 if (source instanceof JCheckBox) {
541 JCheckBox checkBox = (JCheckBox) source;
542 if ("default-file".equals(checkBox.getName())) {
543 if (checkBox.isSelected()) {
544 project.setIndexFile(filename);
546 project.setIndexFile(null);
548 } else if ("insert".equals(checkBox.getName())) {
549 boolean isInsert = checkBox.isSelected();
550 fileOptionsCustomKeyTextField.setEnabled(!isInsert);
551 fileOption.setInsert(isInsert);
553 fileOptionsContainerComboBox.setSelectedItem("");
555 } else if ("project-files.replace-edition".equals(checkBox.getName())) {
556 boolean replaceEdition = checkBox.isSelected();
557 fileOption.setReplaceEdition(replaceEdition);
558 replaceEditionRangeSpinner.setEnabled(replaceEdition);
560 } else if (source instanceof JComboBox) {
561 JComboBox comboBox = (JComboBox) source;
562 if ("project-files.mime-type".equals(comboBox.getName())) {
563 fileOption.setMimeType((String) comboBox.getSelectedItem());
564 } else if ("project-files.container".equals(comboBox.getName())) {
565 String containerName = (String) comboBox.getSelectedItem();
566 fileOption.setContainer(containerName);
567 boolean enabled = !"".equals(containerName);
568 editContainerAction.setEnabled(enabled);
569 deleteContainerAction.setEnabled(enabled);
571 fileOptionsInsertCheckBox.setSelected(true);
578 // INTERFACE ListSelectionListener
584 public void valueChanged(ListSelectionEvent e) {
585 String filename = (String) projectFileList.getSelectedValue();
586 boolean enabled = filename != null;
587 boolean insert = fileOptionsInsertCheckBox.isSelected();
588 defaultFileCheckBox.setEnabled(enabled);
589 fileOptionsInsertCheckBox.setEnabled(enabled);
590 fileOptionsCustomKeyTextField.setEnabled(enabled && !insert);
591 fileOptionsMIMETypeComboBox.setEnabled(enabled);
592 fileOptionsContainerComboBox.setEnabled(enabled);
593 addContainerAction.setEnabled(enabled);
594 editContainerAction.setEnabled(enabled);
595 deleteContainerAction.setEnabled(enabled);
596 replacementCheckBox.setEnabled(enabled && insert);
597 if (filename != null) {
598 FileOption fileOption = project.getFileOption(filename);
599 defaultFileCheckBox.setSelected(filename.equals(project.getIndexFile()));
600 fileOptionsInsertCheckBox.setSelected(fileOption.isInsert());
601 fileOptionsCustomKeyTextField.setText(fileOption.getCustomKey());
602 fileOptionsMIMETypeComboBox.getModel().setSelectedItem(fileOption.getMimeType());
603 fileOptionsContainerComboBox.setSelectedItem(fileOption.getContainer());
604 replacementCheckBox.setSelected(fileOption.getReplaceEdition());
605 replaceEditionRangeSpinner.setValue(fileOption.getEditionRange());
606 replaceEditionRangeSpinner.setEnabled(fileOption.getReplaceEdition());
608 defaultFileCheckBox.setSelected(false);
609 fileOptionsInsertCheckBox.setSelected(true);
610 fileOptionsCustomKeyTextField.setText("CHK@");
611 fileOptionsMIMETypeComboBox.getModel().setSelectedItem(DefaultMIMETypes.DEFAULT_MIME_TYPE);
612 fileOptionsContainerComboBox.setSelectedItem("");
613 replacementCheckBox.setSelected(false);
614 replaceEditionRangeSpinner.setValue(0);
619 // INTERFACE DocumentListener
623 * Updates the options of the currently selected file with the changes made
624 * in the “custom key” textfield.
626 * @param documentEvent
627 * The document event to process
629 private void processDocumentUpdate(DocumentEvent documentEvent) {
630 String filename = (String) projectFileList.getSelectedValue();
631 if (filename == null) {
634 FileOption fileOption = project.getFileOption(filename);
635 Document document = documentEvent.getDocument();
637 String text = document.getText(0, document.getLength());
638 fileOption.setCustomKey(text);
639 } catch (BadLocationException ble1) {
647 public void changedUpdate(DocumentEvent documentEvent) {
648 processDocumentUpdate(documentEvent);
654 public void insertUpdate(DocumentEvent documentEvent) {
655 processDocumentUpdate(documentEvent);
661 public void removeUpdate(DocumentEvent documentEvent) {
662 processDocumentUpdate(documentEvent);
666 // INTERFACE ChangeListener
672 public void stateChanged(ChangeEvent changeEvent) {
673 String filename = (String) projectFileList.getSelectedValue();
674 if (filename == null) {
677 FileOption fileOption = project.getFileOption(filename);
678 Object source = changeEvent.getSource();
679 if (source instanceof JSpinner) {
680 JSpinner spinner = (JSpinner) source;
681 fileOption.setEditionRange((Integer) spinner.getValue());