2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.jbgui;
23 import java.awt.BorderLayout;
24 import java.awt.Color;
25 import java.awt.Component;
26 import java.awt.Dimension;
27 import java.awt.FlowLayout;
29 import java.awt.GridBagConstraints;
30 import java.awt.GridBagLayout;
31 import java.awt.GridLayout;
32 import java.awt.Insets;
33 import java.awt.Rectangle;
34 import java.awt.event.ActionEvent;
35 import java.awt.event.ActionListener;
36 import java.awt.event.FocusEvent;
37 import java.awt.event.KeyEvent;
38 import java.awt.event.KeyListener;
39 import java.awt.event.MouseAdapter;
40 import java.awt.event.MouseEvent;
41 import java.util.Arrays;
42 import java.util.EnumSet;
43 import java.util.List;
45 import javax.swing.AbstractCellEditor;
46 import javax.swing.BorderFactory;
47 import javax.swing.BoxLayout;
48 import javax.swing.ButtonGroup;
49 import javax.swing.DefaultListCellRenderer;
50 import javax.swing.JButton;
51 import javax.swing.JCheckBox;
52 import javax.swing.JComboBox;
53 import javax.swing.JFileChooser;
54 import javax.swing.JLabel;
55 import javax.swing.JPanel;
56 import javax.swing.JPasswordField;
57 import javax.swing.JRadioButton;
58 import javax.swing.JScrollPane;
59 import javax.swing.JSlider;
60 import javax.swing.JSpinner;
61 import javax.swing.JTabbedPane;
62 import javax.swing.JTable;
63 import javax.swing.JTextArea;
64 import javax.swing.JTextField;
65 import javax.swing.ListSelectionModel;
66 import javax.swing.SpinnerModel;
67 import javax.swing.SpinnerNumberModel;
68 import javax.swing.SwingConstants;
69 import javax.swing.border.Border;
70 import javax.swing.border.EmptyBorder;
71 import javax.swing.border.EtchedBorder;
72 import javax.swing.border.TitledBorder;
73 import javax.swing.event.ChangeEvent;
74 import javax.swing.event.ChangeListener;
75 import javax.swing.event.DocumentEvent;
76 import javax.swing.event.DocumentListener;
77 import javax.swing.table.TableCellEditor;
78 import javax.swing.table.TableCellRenderer;
80 import jalview.bin.Cache;
81 import jalview.bin.Console;
82 import jalview.bin.MemorySetting;
83 import jalview.fts.core.FTSDataColumnPreferences;
84 import jalview.fts.core.FTSDataColumnPreferences.PreferenceSource;
85 import jalview.fts.service.pdb.PDBFTSRestClient;
86 import jalview.gui.Desktop;
87 import jalview.gui.JalviewBooleanRadioButtons;
88 import jalview.gui.JvOptionPane;
89 import jalview.gui.JvSwingUtils;
90 import jalview.gui.StructureViewer.ViewerType;
91 import jalview.io.BackupFilenameParts;
92 import jalview.io.BackupFiles;
93 import jalview.io.BackupFilesPresetEntry;
94 import jalview.io.IntKeyStringValueEntry;
95 import jalview.util.MessageManager;
96 import jalview.util.Platform;
97 import jalview.util.StringUtils;
100 * Base class for the Preferences panel.
103 * @version $Revision$
105 public class GPreferences extends JPanel
107 private static final Font LABEL_FONT = JvSwingUtils.getLabelFont();
109 private static final Font LABEL_FONT_ITALIC = JvSwingUtils
110 .getLabelFont(false, true);
112 private static final Font LABEL_FONT_BOLD = JvSwingUtils
113 .getLabelFont(true, false);
116 * Visual tab components
118 protected JCheckBox fullScreen = new JCheckBox();
120 protected JCheckBox openoverv = new JCheckBox();
122 protected JCheckBox seqLimit = new JCheckBox();
124 protected JCheckBox rightAlign = new JCheckBox();
126 protected JComboBox<String> fontSizeCB = new JComboBox<>();
128 protected JComboBox<String> fontStyleCB = new JComboBox<>();
130 protected JComboBox<String> fontNameCB = new JComboBox<>();
132 protected JCheckBox showOccupancy = new JCheckBox();
134 protected JCheckBox showUnconserved = new JCheckBox();
136 protected JCheckBox idItalics = new JCheckBox();
138 protected JCheckBox smoothFont = new JCheckBox();
140 protected JCheckBox scaleProteinToCdna = new JCheckBox();
142 protected JComboBox<String> gapSymbolCB = new JComboBox<>();
144 protected JCheckBox wrap = new JCheckBox();
146 protected JComboBox<String> sortby = new JComboBox<>();
148 protected JComboBox<String> sortAnnBy = new JComboBox<>();
150 protected JComboBox<String> sortAutocalc = new JComboBox<>();
152 protected JCheckBox startupCheckbox = new JCheckBox();
154 protected JTextField startupFileTextfield = new JTextField();
156 // below are in the 'second column'
157 protected JCheckBox annotations = new JCheckBox();
159 protected JCheckBox quality = new JCheckBox();
161 protected JCheckBox conservation = new JCheckBox();
163 protected JCheckBox identity = new JCheckBox();
165 protected JCheckBox showGroupConsensus = new JCheckBox();
167 protected JCheckBox showGroupConservation = new JCheckBox();
169 protected JCheckBox showConsensHistogram = new JCheckBox();
171 protected JCheckBox showConsensLogo = new JCheckBox();
173 protected JCheckBox showDbRefTooltip = new JCheckBox();
175 protected JCheckBox showNpTooltip = new JCheckBox();
178 * Structure tab and components
180 protected JPanel structureTab;
182 protected JCheckBox structFromPdb = new JCheckBox();
184 protected JCheckBox addSecondaryStructure = new JCheckBox();
186 protected JCheckBox addTempFactor = new JCheckBox();
188 protected JComboBox<String> structViewer = new JComboBox<>();
190 protected JLabel structureViewerPathLabel;
192 protected JTextField structureViewerPath = new JTextField();
194 protected ButtonGroup mappingMethod = new ButtonGroup();
196 protected JRadioButton siftsMapping = new JRadioButton();
198 protected JRadioButton nwMapping = new JRadioButton();
201 * Colours tab components
203 protected JPanel minColour = new JPanel();
205 protected JPanel maxColour = new JPanel();
207 protected JComboBox<String> protColour = new JComboBox<>();
209 protected JComboBox<String> nucColour = new JComboBox<>();
212 * Overview tab components
214 protected JPanel gapColour = new JPanel();
216 protected JPanel hiddenColour = new JPanel();
218 protected JCheckBox useLegacyGap;
220 protected JCheckBox showHiddenAtStart;
222 protected JLabel gapLabel;
225 * Connections tab components
227 protected JPanel connectTab;
229 protected JTable linkUrlTable = new JTable();
231 protected JButton editLink = new JButton();
233 protected JButton deleteLink = new JButton();
235 protected JTextField filterTB = new JTextField();
237 protected JButton doReset = new JButton();
239 protected JButton userOnly = new JButton();
241 protected JLabel httpLabel = new JLabel();
243 protected JLabel httpsLabel = new JLabel();
245 protected JLabel portLabel = new JLabel();
247 protected JLabel serverLabel = new JLabel();
249 protected JLabel portLabel2 = new JLabel();
251 protected JLabel serverLabel2 = new JLabel();
253 protected JLabel proxyAuthUsernameLabel = new JLabel();
255 protected JLabel proxyAuthPasswordLabel = new JLabel();
257 protected JLabel passwordNotStoredLabel = new JLabel();
259 protected JTextField proxyServerHttpTB = new JTextField();
261 protected JTextField proxyPortHttpTB = new JTextField();
263 protected JTextField proxyServerHttpsTB = new JTextField();
265 protected JTextField proxyPortHttpsTB = new JTextField();
267 protected JCheckBox proxyAuth = new JCheckBox();
269 protected JTextField proxyAuthUsernameTB = new JTextField();
271 protected JPasswordField proxyAuthPasswordPB = new JPasswordField();
273 protected ButtonGroup proxyType = new ButtonGroup();
275 protected JRadioButton noProxy = new JRadioButton();
277 protected JRadioButton systemProxy = new JRadioButton();
279 protected JRadioButton customProxy = new JRadioButton();
281 protected JButton applyProxyButton = new JButton();
283 protected JCheckBox usagestats = new JCheckBox();
285 protected JCheckBox questionnaire = new JCheckBox();
287 protected JCheckBox versioncheck = new JCheckBox();
290 * Output tab components
292 protected JComboBox<Object> epsRendering = new JComboBox<>();
294 protected JComboBox<Object> htmlRendering = new JComboBox<>();
296 protected JComboBox<Object> svgRendering = new JComboBox<>();
298 protected JLabel userIdWidthlabel = new JLabel();
300 protected JCheckBox autoIdWidth = new JCheckBox();
302 protected JTextField userIdWidth = new JTextField();
304 protected JCheckBox blcjv = new JCheckBox();
306 protected JCheckBox pileupjv = new JCheckBox();
308 protected JCheckBox clustaljv = new JCheckBox();
310 protected JCheckBox msfjv = new JCheckBox();
312 protected JCheckBox fastajv = new JCheckBox();
314 protected JCheckBox pfamjv = new JCheckBox();
316 protected JCheckBox pirjv = new JCheckBox();
318 protected JCheckBox modellerOutput = new JCheckBox();
320 protected JCheckBox embbedBioJSON = new JCheckBox();
323 * Editing tab components
325 protected JCheckBox autoCalculateConsCheck = new JCheckBox();
327 protected JCheckBox padGaps = new JCheckBox();
329 protected JCheckBox sortByTree = new JCheckBox();
334 protected JPanel wsTab = new JPanel();
337 * Backups tab components
338 * a lot of these are member variables instead of local variables only so that they
339 * can be enabled/disabled easily in one go
342 protected JCheckBox enableBackupFiles = new JCheckBox();
344 protected JPanel presetsPanel = new JPanel();
346 protected JLabel presetsComboLabel = new JLabel();
348 protected JCheckBox customiseCheckbox = new JCheckBox();
350 protected JButton revertButton = new JButton();
352 protected JComboBox<Object> backupfilesPresetsCombo = new JComboBox<>();
354 private int backupfilesPresetsComboLastSelected = 0;
356 protected JPanel suffixPanel = new JPanel();
358 protected JPanel keepfilesPanel = new JPanel();
360 protected JPanel exampleFilesPanel = new JPanel();
362 protected JTextField suffixTemplate = new JTextField(null, 8);
364 protected JLabel suffixTemplateLabel = new JLabel();
366 protected JLabel suffixDigitsLabel = new JLabel();
368 protected JSpinner suffixDigitsSpinner = new JSpinner();
370 protected JalviewBooleanRadioButtons suffixReverse = new JalviewBooleanRadioButtons();
372 protected JalviewBooleanRadioButtons backupfilesKeepAll = new JalviewBooleanRadioButtons();
374 public JSpinner backupfilesRollMaxSpinner = new JSpinner();
376 protected JLabel oldBackupFilesLabel = new JLabel();
378 protected JalviewBooleanRadioButtons backupfilesConfirmDelete = new JalviewBooleanRadioButtons();
380 protected JTextArea backupfilesExampleLabel = new JTextArea();
382 private final JTabbedPane tabbedPane = new JTabbedPane();
384 private JLabel messageLabel = new JLabel("", JLabel.CENTER);
387 * Startup tab components
390 protected JCheckBox customiseMemorySetting = new JCheckBox();
392 protected JLabel exampleMemoryLabel = new JLabel();
394 protected JTextArea exampleMemoryMessageTextArea = new JTextArea();
396 protected JLabel maxMemoryLabel = new JLabel();
398 protected JLabel jvmMemoryPercentLabel = new JLabel();
400 protected JSlider jvmMemoryPercentSlider = new JSlider();
402 protected JLabel jvmMemoryPercentDisplay = new JLabel();
404 protected JLabel jvmMemoryMaxLabel = new JLabel();
406 protected JTextField jvmMemoryMaxTextField = new JTextField(null, 8);
408 protected JComboBox<Object> lafCombo = new JComboBox<>();
411 * Creates a new GPreferences object.
413 public GPreferences()
418 } catch (Exception ex)
420 ex.printStackTrace();
425 * Construct the panel and its tabbed sub-panels.
429 private void jbInit() throws Exception
431 // final JTabbedPane tabbedPane = new JTabbedPane();
432 this.setLayout(new BorderLayout());
434 // message label at top
435 this.add(messageLabel, BorderLayout.NORTH);
437 JPanel okCancelPanel = initOkCancelPanel();
438 this.add(tabbedPane, BorderLayout.CENTER);
439 this.add(okCancelPanel, BorderLayout.SOUTH);
441 tabbedPane.add(initVisualTab(),
442 MessageManager.getString("label.visual"));
444 tabbedPane.add(initColoursTab(),
445 MessageManager.getString("label.colours"));
447 tabbedPane.add(initOverviewTab(),
448 MessageManager.getString("label.overview"));
450 tabbedPane.add(initStructureTab(),
451 MessageManager.getString("label.structure"));
453 tabbedPane.add(initConnectionsTab(),
454 MessageManager.getString("label.connections"));
456 if (!Platform.isJS())
458 tabbedPane.add(initBackupsTab(),
459 MessageManager.getString("label.backups"));
462 tabbedPane.add(initLinksTab(),
463 MessageManager.getString("label.urllinks"));
465 tabbedPane.add(initOutputTab(),
466 MessageManager.getString("label.output"));
468 tabbedPane.add(initEditingTab(),
469 MessageManager.getString("label.editing"));
471 tabbedPane.add(initStartupTab(),
472 MessageManager.getString("label.startup"));
475 * See WsPreferences for the real work of configuring this tab.
477 if (!Platform.isJS())
479 wsTab.setLayout(new BorderLayout());
480 tabbedPane.add(wsTab, MessageManager.getString("label.web_services"));
484 * Handler to validate a tab before leaving it - currently only for
486 * Adding a clearMessage() so messages are cleared when changing tabs.
488 tabbedPane.addChangeListener(new ChangeListener()
490 private Component lastTab;
493 public void stateChanged(ChangeEvent e)
495 if (lastTab == structureTab
496 && tabbedPane.getSelectedComponent() != structureTab)
498 if (!validateStructure())
500 tabbedPane.setSelectedComponent(structureTab);
504 lastTab = tabbedPane.getSelectedComponent();
512 public void setMessage(String message)
516 messageLabel.setText(message);
517 messageLabel.setFont(LABEL_FONT_BOLD);
518 messageLabel.setForeground(Color.RED.darker());
519 messageLabel.revalidate();
520 messageLabel.repaint();
522 // note message not cleared if message is null. call clearMessage()
528 public void clearMessage()
530 // only repaint if message exists
531 if (messageLabel.getText() != null
532 && messageLabel.getText().length() > 0)
534 messageLabel.setText("");
535 messageLabel.revalidate();
536 messageLabel.repaint();
542 public static enum TabRef
544 CONNECTIONS_TAB, STRUCTURE_TAB
547 public void selectTab(TabRef selectTab)
549 // select a given tab - currently only for Connections
552 case CONNECTIONS_TAB:
553 tabbedPane.setSelectedComponent(connectTab);
556 tabbedPane.setSelectedComponent(structureTab);
563 * Initialises the Editing tabbed panel.
567 private JPanel initEditingTab()
569 JPanel editingTab = new JPanel();
570 editingTab.setLayout(null);
571 autoCalculateConsCheck.setFont(LABEL_FONT);
572 autoCalculateConsCheck.setText(
573 MessageManager.getString("label.autocalculate_consensus"));
574 autoCalculateConsCheck.setBounds(new Rectangle(21, 52, 209, 23));
575 padGaps.setFont(LABEL_FONT);
577 MessageManager.getString("label.pad_gaps_when_editing"));
578 padGaps.setBounds(new Rectangle(22, 94, 168, 23));
579 sortByTree.setFont(LABEL_FONT);
581 .setText(MessageManager.getString("label.sort_with_new_tree"));
582 sortByTree.setToolTipText(MessageManager.getString(
583 "label.any_trees_calculated_or_loaded_alignment_automatically_sort"));
584 sortByTree.setBounds(new Rectangle(22, 136, 168, 23));
585 editingTab.add(autoCalculateConsCheck);
586 editingTab.add(padGaps);
587 editingTab.add(sortByTree);
592 * Initialises the Output tab
596 private JPanel initOutputTab()
598 JPanel outputTab = new JPanel();
599 outputTab.setLayout(null);
601 JLabel epsLabel = new JLabel(
602 MessageManager.formatMessage("label.rendering_style", "EPS"));
603 epsLabel.setFont(LABEL_FONT);
604 epsLabel.setHorizontalAlignment(SwingConstants.RIGHT);
605 epsLabel.setBounds(new Rectangle(9, 31, 160, 24));
606 epsRendering.setFont(LABEL_FONT);
607 epsRendering.setBounds(new Rectangle(174, 34, 187, 21));
608 JLabel htmlLabel = new JLabel(
609 MessageManager.formatMessage("label.rendering_style", "HTML"));
610 htmlLabel.setFont(LABEL_FONT);
611 htmlLabel.setHorizontalAlignment(SwingConstants.RIGHT);
612 htmlLabel.setBounds(new Rectangle(9, 55, 160, 24));
613 htmlRendering.setFont(LABEL_FONT);
614 htmlRendering.setBounds(new Rectangle(174, 58, 187, 21));
615 JLabel svgLabel = new JLabel(
616 MessageManager.formatMessage("label.rendering_style", "SVG"));
617 svgLabel.setFont(LABEL_FONT);
618 svgLabel.setHorizontalAlignment(SwingConstants.RIGHT);
619 svgLabel.setBounds(new Rectangle(9, 79, 160, 24));
620 svgRendering.setFont(LABEL_FONT);
621 svgRendering.setBounds(new Rectangle(174, 82, 187, 21));
623 JLabel jLabel1 = new JLabel();
624 jLabel1.setFont(LABEL_FONT);
625 jLabel1.setHorizontalAlignment(SwingConstants.CENTER);
626 jLabel1.setText(MessageManager.getString("label.append_start_end"));
627 jLabel1.setFont(LABEL_FONT);
629 fastajv.setFont(LABEL_FONT);
630 fastajv.setHorizontalAlignment(SwingConstants.LEFT);
631 clustaljv.setText(MessageManager.getString("label.clustal") + " ");
632 blcjv.setText(MessageManager.getString("label.blc") + " ");
633 fastajv.setText(MessageManager.getString("label.fasta") + " ");
634 msfjv.setText(MessageManager.getString("label.msf") + " ");
635 pfamjv.setText(MessageManager.getString("label.pfam") + " ");
636 pileupjv.setText(MessageManager.getString("label.pileup") + " ");
637 msfjv.setFont(LABEL_FONT);
638 msfjv.setHorizontalAlignment(SwingConstants.LEFT);
639 pirjv.setText(MessageManager.getString("label.pir") + " ");
640 JPanel jPanel11 = new JPanel();
641 jPanel11.setFont(LABEL_FONT);
642 TitledBorder titledBorder2 = new TitledBorder(
643 MessageManager.getString("label.file_output"));
644 jPanel11.setBorder(titledBorder2);
645 jPanel11.setBounds(new Rectangle(30, 120, 196, 182));
646 GridLayout gridLayout3 = new GridLayout();
647 jPanel11.setLayout(gridLayout3);
648 gridLayout3.setRows(8);
649 blcjv.setFont(LABEL_FONT);
650 blcjv.setHorizontalAlignment(SwingConstants.LEFT);
651 clustaljv.setFont(LABEL_FONT);
652 clustaljv.setHorizontalAlignment(SwingConstants.LEFT);
653 pfamjv.setFont(LABEL_FONT);
654 pfamjv.setHorizontalAlignment(SwingConstants.LEFT);
655 pileupjv.setFont(LABEL_FONT);
656 pileupjv.setHorizontalAlignment(SwingConstants.LEFT);
657 pirjv.setFont(LABEL_FONT);
658 pirjv.setHorizontalAlignment(SwingConstants.LEFT);
659 autoIdWidth.setFont(LABEL_FONT);
661 MessageManager.getString("label.automatically_set_id_width"));
662 autoIdWidth.setToolTipText(JvSwingUtils.wrapTooltip(true, MessageManager
663 .getString("label.adjusts_width_generated_eps_png")));
664 autoIdWidth.setBounds(new Rectangle(228, 144, 320, 23));
665 autoIdWidth.addActionListener(new ActionListener()
669 public void actionPerformed(ActionEvent e)
671 autoIdWidth_actionPerformed();
674 userIdWidthlabel.setFont(LABEL_FONT);
675 userIdWidthlabel.setText(
676 MessageManager.getString("label.figure_id_column_width"));
677 userIdWidth.setToolTipText(JvSwingUtils.wrapTooltip(true, MessageManager
678 .getString("label.manually_specify_width_left_column")));
679 userIdWidthlabel.setToolTipText(
680 JvSwingUtils.wrapTooltip(true, MessageManager.getString(
681 "label.manually_specify_width_left_column")));
682 userIdWidthlabel.setBounds(new Rectangle(236, 168, 320, 23));
683 userIdWidth.setFont(JvSwingUtils.getTextAreaFont());
684 userIdWidth.setText("");
685 userIdWidth.setBounds(new Rectangle(232, 192, 84, 23));
686 userIdWidth.addActionListener(new ActionListener()
690 public void actionPerformed(ActionEvent e)
692 userIdWidth_actionPerformed();
695 modellerOutput.setFont(LABEL_FONT);
697 .setText(MessageManager.getString("label.use_modeller_output"));
698 modellerOutput.setBounds(new Rectangle(228, 274, 320, 23));
699 embbedBioJSON.setFont(LABEL_FONT);
700 embbedBioJSON.setText(MessageManager.getString("label.embbed_biojson"));
701 embbedBioJSON.setBounds(new Rectangle(228, 248, 250, 23));
703 jPanel11.add(jLabel1);
705 jPanel11.add(clustaljv);
706 jPanel11.add(fastajv);
708 jPanel11.add(pfamjv);
709 jPanel11.add(pileupjv);
711 outputTab.add(autoIdWidth);
712 outputTab.add(userIdWidth);
713 outputTab.add(userIdWidthlabel);
714 outputTab.add(modellerOutput);
715 if (!Platform.isJS())
718 * JalviewJS doesn't support Lineart option or SVG output
720 outputTab.add(embbedBioJSON);
721 outputTab.add(epsLabel);
722 outputTab.add(epsRendering);
723 outputTab.add(htmlLabel);
724 outputTab.add(htmlRendering);
725 outputTab.add(svgLabel);
726 outputTab.add(svgRendering);
728 outputTab.add(jPanel11);
733 * Initialises the Connections tabbed panel.
737 private JPanel initConnectionsTab()
739 connectTab = new JPanel();
740 connectTab.setLayout(new GridBagLayout());
742 JPanel proxyPanel = initConnTabProxyPanel();
743 initConnTabCheckboxes();
745 // Add proxy server panel
746 connectTab.add(proxyPanel, new GridBagConstraints(0, 1, 2, 1, 1.0, 0.0,
747 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
748 new Insets(10, 0, 5, 12), 4, 10));
750 // Add usage stats, version check and questionnaire checkboxes
751 connectTab.add(usagestats,
752 new GridBagConstraints(0, 2, 1, 1, 1.0, 0.0,
753 GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
754 new Insets(0, 2, 5, 5), 70, 1));
755 connectTab.add(questionnaire,
756 new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0,
757 GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
758 new Insets(0, 2, 5, 10), 70, 1));
759 connectTab.add(versioncheck,
760 new GridBagConstraints(0, 3, 1, 1, 1.0, 0.0,
761 GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
762 new Insets(0, 2, 5, 5), 70, 1));
764 versioncheck.setVisible(false);
766 // Add padding so the panel doesn't look ridiculous
767 JPanel spacePanel = new JPanel();
768 connectTab.add(spacePanel,
769 new GridBagConstraints(0, 4, 1, 1, 1.0, 1.0,
770 GridBagConstraints.WEST, GridBagConstraints.BOTH,
771 new Insets(0, 0, 0, 5), 70, 1));
777 * Initialises the Links tabbed panel.
781 private JPanel initLinksTab()
783 JPanel linkTab = new JPanel();
784 linkTab.setLayout(new GridBagLayout());
786 // Set up table for Url links
787 linkUrlTable.getTableHeader().setReorderingAllowed(false);
788 linkUrlTable.setFillsViewportHeight(true);
789 linkUrlTable.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
790 linkUrlTable.setAutoCreateRowSorter(true);
791 linkUrlTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
793 // adjust row height so radio buttons actually fit
794 // don't do this in the renderer, it causes the awt thread to activate
796 JRadioButton temp = new JRadioButton();
797 linkUrlTable.setRowHeight(temp.getMinimumSize().height);
799 // Table in scrollpane so that the table is given a scrollbar
800 JScrollPane linkScrollPane = new JScrollPane(linkUrlTable);
801 linkScrollPane.setBorder(null);
803 // Panel for links functionality
804 JPanel linkPanel = new JPanel(new GridBagLayout());
805 linkPanel.setBorder(new TitledBorder(
806 MessageManager.getString("label.url_linkfrom_sequence_id")));
808 // Put the Url links panel together
810 // Buttons go at top right, resizing only resizes the blank space vertically
811 JPanel buttonPanel = initLinkTabUrlButtons();
812 GridBagConstraints linkConstraints1 = new GridBagConstraints();
813 linkConstraints1.insets = new Insets(0, 0, 5, 0);
814 linkConstraints1.gridx = 0;
815 linkConstraints1.gridy = 0;
816 linkConstraints1.weightx = 1.0;
817 linkConstraints1.fill = GridBagConstraints.HORIZONTAL;
818 linkTab.add(buttonPanel, linkConstraints1);
820 // Links table goes at top left, resizing resizes the table
821 GridBagConstraints linkConstraints2 = new GridBagConstraints();
822 linkConstraints2.insets = new Insets(0, 0, 5, 5);
823 linkConstraints2.gridx = 0;
824 linkConstraints2.gridy = 1;
825 linkConstraints2.weightx = 1.0;
826 linkConstraints2.weighty = 1.0;
827 linkConstraints2.fill = GridBagConstraints.BOTH;
828 linkTab.add(linkScrollPane, linkConstraints2);
830 // Filter box and buttons goes at bottom left, resizing resizes the text box
831 JPanel filterPanel = initLinkTabFilterPanel();
832 GridBagConstraints linkConstraints3 = new GridBagConstraints();
833 linkConstraints3.insets = new Insets(0, 0, 0, 5);
834 linkConstraints3.gridx = 0;
835 linkConstraints3.gridy = 2;
836 linkConstraints3.weightx = 1.0;
837 linkConstraints3.fill = GridBagConstraints.HORIZONTAL;
838 linkTab.add(filterPanel, linkConstraints3);
843 private JPanel initLinkTabFilterPanel()
845 // Filter textbox and reset button
846 JLabel filterLabel = new JLabel(
847 MessageManager.getString("label.filter"));
848 filterLabel.setFont(LABEL_FONT);
849 filterLabel.setHorizontalAlignment(SwingConstants.RIGHT);
850 filterLabel.setHorizontalTextPosition(SwingConstants.LEADING);
852 filterTB.setFont(LABEL_FONT);
853 filterTB.setText("");
855 doReset.setText(MessageManager.getString("action.showall"));
856 userOnly.setText(MessageManager.getString("action.customfilter"));
858 // Panel for filter functionality
859 JPanel filterPanel = new JPanel(new GridBagLayout());
860 filterPanel.setBorder(new TitledBorder("Filter"));
861 GridBagConstraints gbc = new GridBagConstraints();
864 gbc.fill = GridBagConstraints.NONE;
865 gbc.anchor = GridBagConstraints.WEST;
867 filterPanel.add(filterLabel, gbc);
869 GridBagConstraints gbc1 = new GridBagConstraints();
872 gbc1.fill = GridBagConstraints.HORIZONTAL;
873 gbc1.anchor = GridBagConstraints.WEST;
875 filterPanel.add(filterTB, gbc1);
877 GridBagConstraints gbc2 = new GridBagConstraints();
879 gbc2.fill = GridBagConstraints.NONE;
880 gbc2.anchor = GridBagConstraints.WEST;
881 filterPanel.add(doReset, gbc2);
883 GridBagConstraints gbc3 = new GridBagConstraints();
885 gbc3.fill = GridBagConstraints.NONE;
886 gbc3.anchor = GridBagConstraints.WEST;
887 filterPanel.add(userOnly, gbc3);
892 private JPanel initLinkTabUrlButtons()
894 // Buttons for new / edit / delete Url links
895 JButton newLink = new JButton();
896 newLink.setText(MessageManager.getString("action.new"));
898 editLink.setText(MessageManager.getString("action.edit"));
900 deleteLink.setText(MessageManager.getString("action.delete"));
902 // no current selection, so initially disable delete/edit buttons
903 editLink.setEnabled(false);
904 deleteLink.setEnabled(false);
906 newLink.addActionListener(new java.awt.event.ActionListener()
909 public void actionPerformed(ActionEvent e)
911 newLink_actionPerformed(e);
915 editLink.setText(MessageManager.getString("action.edit"));
916 editLink.addActionListener(new java.awt.event.ActionListener()
919 public void actionPerformed(ActionEvent e)
921 editLink_actionPerformed(e);
925 deleteLink.setText(MessageManager.getString("action.delete"));
926 deleteLink.addActionListener(new java.awt.event.ActionListener()
929 public void actionPerformed(ActionEvent e)
931 deleteLink_actionPerformed(e);
935 JPanel buttonPanel = new JPanel(new GridBagLayout());
936 buttonPanel.setBorder(new TitledBorder("Edit links"));
937 GridBagConstraints gbc = new GridBagConstraints();
940 gbc.fill = GridBagConstraints.NONE;
941 buttonPanel.add(newLink, gbc);
943 GridBagConstraints gbc1 = new GridBagConstraints();
946 gbc1.fill = GridBagConstraints.NONE;
947 buttonPanel.add(editLink, gbc1);
949 GridBagConstraints gbc2 = new GridBagConstraints();
952 gbc2.fill = GridBagConstraints.NONE;
953 buttonPanel.add(deleteLink, gbc2);
955 GridBagConstraints gbc3 = new GridBagConstraints();
958 gbc3.fill = GridBagConstraints.HORIZONTAL;
960 JPanel spacePanel = new JPanel();
961 spacePanel.setBorder(null);
962 buttonPanel.add(spacePanel, gbc3);
968 * Initialises the proxy server panel in the Connections tab
970 * @return the proxy server panel
972 private JPanel initConnTabProxyPanel()
974 // Label for server text box
975 serverLabel.setText(MessageManager.getString("label.host") + ": ");
976 serverLabel.setHorizontalAlignment(SwingConstants.RIGHT);
977 serverLabel.setFont(LABEL_FONT);
978 serverLabel2.setText(MessageManager.getString("label.host") + ": ");
979 serverLabel2.setHorizontalAlignment(SwingConstants.RIGHT);
980 serverLabel2.setFont(LABEL_FONT);
982 // Proxy server and port text boxes
983 proxyServerHttpTB.setFont(LABEL_FONT);
984 proxyServerHttpTB.setColumns(40);
985 proxyPortHttpTB.setFont(LABEL_FONT);
986 proxyPortHttpTB.setColumns(4);
987 proxyServerHttpsTB.setFont(LABEL_FONT);
988 proxyServerHttpsTB.setColumns(40);
989 proxyPortHttpsTB.setFont(LABEL_FONT);
990 proxyPortHttpsTB.setColumns(4);
991 proxyAuthUsernameTB.setFont(LABEL_FONT);
992 proxyAuthUsernameTB.setColumns(30);
994 // check for any change to enable applyProxyButton
995 DocumentListener d = new DocumentListener()
998 public void changedUpdate(DocumentEvent e)
1000 applyProxyButtonEnabled(true);
1004 public void insertUpdate(DocumentEvent e)
1006 applyProxyButtonEnabled(true);
1010 public void removeUpdate(DocumentEvent e)
1012 applyProxyButtonEnabled(true);
1015 proxyServerHttpTB.getDocument().addDocumentListener(d);
1016 proxyPortHttpTB.getDocument().addDocumentListener(d);
1017 proxyServerHttpsTB.getDocument().addDocumentListener(d);
1018 proxyPortHttpsTB.getDocument().addDocumentListener(d);
1019 proxyAuthUsernameTB.getDocument().addDocumentListener(d);
1020 proxyAuthPasswordPB.setFont(LABEL_FONT);
1021 proxyAuthPasswordPB.setColumns(30);
1022 proxyAuthPasswordPB.getDocument()
1023 .addDocumentListener(new DocumentListener()
1026 public void changedUpdate(DocumentEvent e)
1028 proxyAuthPasswordCheckHighlight(true);
1029 applyProxyButtonEnabled(true);
1033 public void insertUpdate(DocumentEvent e)
1035 proxyAuthPasswordCheckHighlight(true);
1036 applyProxyButtonEnabled(true);
1040 public void removeUpdate(DocumentEvent e)
1042 proxyAuthPasswordCheckHighlight(true);
1043 applyProxyButtonEnabled(true);
1048 // Label for Port text box
1049 portLabel.setFont(LABEL_FONT);
1050 portLabel.setHorizontalAlignment(SwingConstants.RIGHT);
1051 portLabel.setText(MessageManager.getString("label.port") + ": ");
1052 portLabel2.setFont(LABEL_FONT);
1053 portLabel2.setHorizontalAlignment(SwingConstants.RIGHT);
1054 portLabel2.setText(MessageManager.getString("label.port") + ": ");
1056 httpLabel.setText("HTTP");
1057 httpLabel.setFont(LABEL_FONT_BOLD);
1058 httpLabel.setHorizontalAlignment(SwingConstants.LEFT);
1059 httpsLabel.setText("HTTPS");
1060 httpsLabel.setFont(LABEL_FONT_BOLD);
1061 httpsLabel.setHorizontalAlignment(SwingConstants.LEFT);
1063 proxyAuthUsernameLabel
1064 .setText(MessageManager.getString("label.username") + ": ");
1065 proxyAuthUsernameLabel.setFont(LABEL_FONT);
1066 proxyAuthUsernameLabel.setHorizontalAlignment(SwingConstants.RIGHT);
1067 proxyAuthPasswordLabel
1068 .setText(MessageManager.getString("label.password") + ": ");
1069 proxyAuthPasswordLabel.setFont(LABEL_FONT);
1070 proxyAuthPasswordLabel.setHorizontalAlignment(SwingConstants.RIGHT);
1071 passwordNotStoredLabel.setText(
1072 "(" + MessageManager.getString("label.not_stored") + ")");
1073 passwordNotStoredLabel.setFont(LABEL_FONT_ITALIC);
1074 passwordNotStoredLabel.setHorizontalAlignment(SwingConstants.LEFT);
1076 // Proxy type radio buttons
1077 noProxy.setFont(LABEL_FONT);
1078 noProxy.setHorizontalAlignment(SwingConstants.LEFT);
1079 noProxy.setText(MessageManager.getString("label.no_proxy"));
1080 systemProxy.setFont(LABEL_FONT);
1081 systemProxy.setHorizontalAlignment(SwingConstants.LEFT);
1082 systemProxy.setText(MessageManager.formatMessage("label.system_proxy",
1083 displayUserHostPort(Cache.startupProxyProperties[4],
1084 Cache.startupProxyProperties[0],
1085 Cache.startupProxyProperties[1]),
1086 displayUserHostPort(Cache.startupProxyProperties[6],
1087 Cache.startupProxyProperties[2],
1088 Cache.startupProxyProperties[3])));
1089 customProxy.setFont(LABEL_FONT);
1090 customProxy.setHorizontalAlignment(SwingConstants.LEFT);
1091 customProxy.setText(
1092 MessageManager.getString("label.use_proxy_server") + ":");
1093 ActionListener al = new ActionListener()
1096 public void actionPerformed(ActionEvent e)
1098 proxyType_actionPerformed();
1101 noProxy.addActionListener(al);
1102 systemProxy.addActionListener(al);
1103 customProxy.addActionListener(al);
1104 proxyType.add(noProxy);
1105 proxyType.add(systemProxy);
1106 proxyType.add(customProxy);
1108 proxyAuth.setFont(LABEL_FONT);
1109 proxyAuth.setHorizontalAlignment(SwingConstants.LEFT);
1110 proxyAuth.setText(MessageManager.getString("label.auth_required"));
1111 proxyAuth.addActionListener(new ActionListener()
1114 public void actionPerformed(ActionEvent e)
1116 proxyAuth_actionPerformed();
1120 setCustomProxyEnabled();
1122 // Make proxy server panel
1123 JPanel proxyPanel = new JPanel();
1124 TitledBorder titledBorder1 = new TitledBorder(
1125 MessageManager.getString("label.proxy_servers"));
1126 proxyPanel.setBorder(titledBorder1);
1127 proxyPanel.setLayout(new GridBagLayout());
1128 GridBagConstraints gbc = new GridBagConstraints();
1129 gbc.fill = GridBagConstraints.HORIZONTAL;
1132 GridBagConstraints c = new GridBagConstraints();
1133 // Proxy type radio buttons (3)
1134 JPanel ptPanel = new JPanel();
1135 ptPanel.setLayout(new GridBagLayout());
1140 c.fill = GridBagConstraints.HORIZONTAL;
1141 ptPanel.add(noProxy, c);
1143 ptPanel.add(systemProxy, c);
1145 ptPanel.add(customProxy, c);
1148 proxyPanel.add(ptPanel, gbc);
1150 // host and port text boxes
1151 JPanel hpPanel = new JPanel();
1152 hpPanel.setLayout(new GridBagLayout());
1153 // HTTP host port row
1158 c.anchor = GridBagConstraints.LINE_START;
1159 hpPanel.add(httpLabel, c);
1163 c.anchor = GridBagConstraints.LINE_END;
1164 hpPanel.add(serverLabel, c);
1168 c.anchor = GridBagConstraints.LINE_START;
1169 hpPanel.add(proxyServerHttpTB, c);
1173 c.anchor = GridBagConstraints.LINE_END;
1174 hpPanel.add(portLabel, c);
1178 c.anchor = GridBagConstraints.LINE_START;
1179 hpPanel.add(proxyPortHttpTB, c);
1181 // HTTPS host port row
1186 c.anchor = GridBagConstraints.LINE_START;
1187 hpPanel.add(httpsLabel, c);
1190 c.anchor = GridBagConstraints.LINE_END;
1191 hpPanel.add(serverLabel2, c);
1194 c.anchor = GridBagConstraints.LINE_START;
1195 hpPanel.add(proxyServerHttpsTB, c);
1198 c.anchor = GridBagConstraints.LINE_END;
1199 hpPanel.add(portLabel2, c);
1202 c.anchor = GridBagConstraints.LINE_START;
1203 hpPanel.add(proxyPortHttpsTB, c);
1206 proxyPanel.add(hpPanel, gbc);
1208 if (!Platform.isJS())
1210 * java.net.Authenticator is not implemented in SwingJS. Not displaying the
1211 * Authentication options in Preferences.
1217 // Require authentication checkbox
1219 proxyPanel.add(proxyAuth, gbc);
1221 // username and password
1222 JPanel upPanel = new JPanel();
1223 upPanel.setLayout(new GridBagLayout());
1229 c.anchor = GridBagConstraints.LINE_END;
1230 upPanel.add(proxyAuthUsernameLabel, c);
1234 c.anchor = GridBagConstraints.LINE_START;
1235 upPanel.add(proxyAuthUsernameTB, c);
1241 c.anchor = GridBagConstraints.LINE_END;
1242 upPanel.add(proxyAuthPasswordLabel, c);
1246 c.anchor = GridBagConstraints.LINE_START;
1247 upPanel.add(proxyAuthPasswordPB, c);
1251 c.anchor = GridBagConstraints.LINE_START;
1252 upPanel.add(passwordNotStoredLabel, c);
1255 proxyPanel.add(upPanel, gbc);
1259 applyProxyButton.setText(MessageManager.getString("action.apply"));
1260 applyProxyButton.addActionListener(new ActionListener()
1263 public void actionPerformed(ActionEvent e)
1265 saveProxySettings();
1266 applyProxyButton.setEnabled(false);
1270 gbc.fill = GridBagConstraints.NONE;
1271 gbc.anchor = GridBagConstraints.LINE_END;
1272 proxyPanel.add(applyProxyButton, gbc);
1277 public void proxyAuthPasswordCheckHighlight(boolean enabled)
1279 proxyAuthPasswordCheckHighlight(enabled, false);
1282 public void proxyAuthPasswordCheckHighlight(boolean enabled,
1285 if (enabled && proxyType.isSelected(customProxy.getModel())
1286 && proxyAuth.isSelected()
1287 && !proxyAuthUsernameTB.getText().isEmpty()
1288 && proxyAuthPasswordPB.getDocument().getLength() == 0)
1291 proxyAuthPasswordPB.grabFocus();
1292 proxyAuthPasswordPB.setBackground(Color.PINK);
1296 proxyAuthPasswordPB.setBackground(Color.WHITE);
1300 public void applyProxyButtonEnabled(boolean enabled)
1302 applyProxyButton.setEnabled(enabled);
1305 public void saveProxySettings()
1307 // overridden in Preferences
1310 private String displayUserHostPort(String user, String host, String port)
1312 boolean hostBlank = (host == null || host.isEmpty());
1313 boolean portBlank = (port == null || port.isEmpty());
1314 if (hostBlank && portBlank)
1316 return MessageManager.getString("label.none");
1319 StringBuilder sb = new StringBuilder();
1322 sb.append(user.isEmpty() || user.indexOf(" ") > -1 ? '"' + user + '"'
1326 sb.append(hostBlank ? "" : host);
1332 return sb.toString();
1336 * Initialises the checkboxes in the Connections tab
1338 private void initConnTabCheckboxes()
1340 // Usage stats checkbox label
1342 MessageManager.getString("label.send_usage_statistics"));
1343 usagestats.setFont(LABEL_FONT);
1344 usagestats.setHorizontalAlignment(SwingConstants.RIGHT);
1345 usagestats.setHorizontalTextPosition(SwingConstants.LEADING);
1347 // Questionnaire checkbox label
1348 questionnaire.setText(
1349 MessageManager.getString("label.check_for_questionnaires"));
1350 questionnaire.setFont(LABEL_FONT);
1351 questionnaire.setHorizontalAlignment(SwingConstants.RIGHT);
1352 questionnaire.setHorizontalTextPosition(SwingConstants.LEADING);
1354 // Check for latest version checkbox label
1355 versioncheck.setText(
1356 MessageManager.getString("label.check_for_latest_version"));
1357 versioncheck.setFont(LABEL_FONT);
1358 versioncheck.setHorizontalAlignment(SwingConstants.RIGHT);
1359 versioncheck.setHorizontalTextPosition(SwingConstants.LEADING);
1363 * Initialises the parent panel which contains the tabbed sections.
1367 private JPanel initOkCancelPanel()
1369 JButton ok = new JButton();
1370 ok.setText(MessageManager.getString("action.ok"));
1371 ok.addActionListener(new ActionListener()
1374 public void actionPerformed(ActionEvent e)
1376 ok_actionPerformed(e);
1379 JButton cancel = new JButton();
1380 cancel.setText(MessageManager.getString("action.cancel"));
1381 cancel.addActionListener(new ActionListener()
1384 public void actionPerformed(ActionEvent e)
1386 cancel_actionPerformed(e);
1389 JPanel okCancelPanel = new JPanel();
1390 okCancelPanel.add(ok);
1391 okCancelPanel.add(cancel);
1392 return okCancelPanel;
1396 * Initialises the Colours tabbed panel.
1400 private JPanel initColoursTab()
1402 JPanel coloursTab = new JPanel();
1403 coloursTab.setBorder(new TitledBorder(
1404 MessageManager.getString("action.open_new_alignment")));
1405 coloursTab.setLayout(new FlowLayout());
1406 JLabel mincolourLabel = new JLabel();
1407 mincolourLabel.setFont(LABEL_FONT);
1408 mincolourLabel.setHorizontalAlignment(SwingConstants.RIGHT);
1409 mincolourLabel.setText(MessageManager.getString("label.min_colour"));
1410 minColour.setFont(LABEL_FONT);
1411 minColour.setBorder(BorderFactory.createEtchedBorder());
1412 minColour.setPreferredSize(new Dimension(40, 20));
1413 minColour.addMouseListener(new MouseAdapter()
1416 public void mousePressed(MouseEvent e)
1418 minColour_actionPerformed(minColour);
1421 JLabel maxcolourLabel = new JLabel();
1422 maxcolourLabel.setFont(LABEL_FONT);
1423 maxcolourLabel.setHorizontalAlignment(SwingConstants.RIGHT);
1424 maxcolourLabel.setText(MessageManager.getString("label.max_colour"));
1425 maxColour.setFont(LABEL_FONT);
1426 maxColour.setBorder(BorderFactory.createEtchedBorder());
1427 maxColour.setPreferredSize(new Dimension(40, 20));
1428 maxColour.addMouseListener(new MouseAdapter()
1431 public void mousePressed(MouseEvent e)
1433 maxColour_actionPerformed(maxColour);
1437 protColour.setFont(LABEL_FONT);
1438 protColour.setBounds(new Rectangle(172, 225, 155, 21));
1439 JLabel protColourLabel = new JLabel();
1440 protColourLabel.setFont(LABEL_FONT);
1441 protColourLabel.setHorizontalAlignment(SwingConstants.LEFT);
1442 protColourLabel.setText(
1443 MessageManager.getString("label.prot_alignment_colour") + " ");
1444 JvSwingUtils.addtoLayout(coloursTab,
1446 .getString("label.default_colour_scheme_for_alignment"),
1447 protColourLabel, protColour);
1449 nucColour.setFont(LABEL_FONT);
1450 nucColour.setBounds(new Rectangle(172, 240, 155, 21));
1451 JLabel nucColourLabel = new JLabel();
1452 nucColourLabel.setFont(LABEL_FONT);
1453 nucColourLabel.setHorizontalAlignment(SwingConstants.LEFT);
1454 nucColourLabel.setText(
1455 MessageManager.getString("label.nuc_alignment_colour") + " ");
1456 JvSwingUtils.addtoLayout(coloursTab,
1458 .getString("label.default_colour_scheme_for_alignment"),
1459 nucColourLabel, nucColour);
1461 JPanel annotationShding = new JPanel();
1462 annotationShding.setBorder(new TitledBorder(
1463 MessageManager.getString("label.annotation_shading_default")));
1464 annotationShding.setLayout(new GridLayout(1, 2));
1465 JvSwingUtils.addtoLayout(annotationShding,
1466 MessageManager.getString(
1467 "label.default_minimum_colour_annotation_shading"),
1468 mincolourLabel, minColour);
1469 JvSwingUtils.addtoLayout(annotationShding,
1470 MessageManager.getString(
1471 "label.default_maximum_colour_annotation_shading"),
1472 maxcolourLabel, maxColour);
1473 coloursTab.add(annotationShding); // , FlowLayout.LEFT);
1478 * Initialises the Overview tabbed panel.
1482 private JPanel initOverviewTab()
1484 JPanel overviewPanel = new JPanel();
1485 overviewPanel.setBorder(new TitledBorder(
1486 MessageManager.getString("label.overview_settings")));
1488 gapColour.setFont(LABEL_FONT);
1489 // fixing the border colours stops apparent colour bleed from the panel
1490 gapColour.setBorder(
1491 BorderFactory.createEtchedBorder(Color.white, Color.lightGray));
1492 gapColour.setPreferredSize(new Dimension(40, 20));
1493 gapColour.addMouseListener(new MouseAdapter()
1496 public void mousePressed(MouseEvent e)
1498 gapColour_actionPerformed(gapColour);
1502 hiddenColour.setFont(LABEL_FONT);
1503 // fixing the border colours stops apparent colour bleed from the panel
1504 hiddenColour.setBorder(
1505 BorderFactory.createEtchedBorder(Color.white, Color.lightGray));
1506 hiddenColour.setPreferredSize(new Dimension(40, 20));
1507 hiddenColour.addMouseListener(new MouseAdapter()
1510 public void mousePressed(MouseEvent e)
1512 hiddenColour_actionPerformed(hiddenColour);
1516 useLegacyGap = new JCheckBox(
1517 MessageManager.getString("label.ov_legacy_gap"));
1518 useLegacyGap.setFont(LABEL_FONT);
1519 useLegacyGap.setHorizontalAlignment(SwingConstants.LEFT);
1520 useLegacyGap.setVerticalTextPosition(SwingConstants.TOP);
1521 gapLabel = new JLabel(MessageManager.getString("label.gap_colour"));
1522 gapLabel.setFont(LABEL_FONT);
1523 gapLabel.setHorizontalAlignment(SwingConstants.LEFT);
1524 gapLabel.setVerticalTextPosition(SwingConstants.TOP);
1525 showHiddenAtStart = new JCheckBox(
1526 MessageManager.getString("label.ov_show_hide_default"));
1527 showHiddenAtStart.setFont(LABEL_FONT);
1528 showHiddenAtStart.setHorizontalAlignment(SwingConstants.LEFT);
1529 showHiddenAtStart.setVerticalTextPosition(SwingConstants.TOP);
1530 JLabel hiddenLabel = new JLabel(
1531 MessageManager.getString("label.hidden_colour"));
1532 hiddenLabel.setFont(LABEL_FONT);
1533 hiddenLabel.setHorizontalAlignment(SwingConstants.LEFT);
1534 hiddenLabel.setVerticalTextPosition(SwingConstants.TOP);
1536 useLegacyGap.addActionListener(new ActionListener()
1539 public void actionPerformed(ActionEvent e)
1541 useLegacyGaps_actionPerformed(e);
1545 overviewPanel.setLayout(new GridBagLayout());
1546 GridBagConstraints c1 = new GridBagConstraints();
1548 c1.fill = GridBagConstraints.HORIZONTAL;
1553 c1.anchor = GridBagConstraints.FIRST_LINE_START;
1554 overviewPanel.add(useLegacyGap, c1);
1556 GridBagConstraints c2 = new GridBagConstraints();
1557 c2.fill = GridBagConstraints.HORIZONTAL;
1560 c2.insets = new Insets(0, 15, 0, 10);
1561 overviewPanel.add(gapLabel, c2);
1563 GridBagConstraints c3 = new GridBagConstraints();
1564 c3.fill = GridBagConstraints.HORIZONTAL;
1567 c3.insets = new Insets(0, 0, 0, 15);
1568 overviewPanel.add(gapColour, c3);
1570 GridBagConstraints c4 = new GridBagConstraints();
1571 c4.fill = GridBagConstraints.HORIZONTAL;
1575 overviewPanel.add(showHiddenAtStart, c4);
1577 GridBagConstraints c5 = new GridBagConstraints();
1578 c5.fill = GridBagConstraints.HORIZONTAL;
1581 c5.insets = new Insets(0, 15, 0, 10);
1582 overviewPanel.add(hiddenLabel, c5);
1584 GridBagConstraints c6 = new GridBagConstraints();
1585 c6.fill = GridBagConstraints.HORIZONTAL;
1588 c6.insets = new Insets(0, 0, 0, 15);
1589 overviewPanel.add(hiddenColour, c6);
1591 JButton resetButton = new JButton(
1592 MessageManager.getString("label.reset_to_defaults"));
1594 resetButton.addActionListener(new ActionListener()
1597 public void actionPerformed(ActionEvent e)
1599 resetOvDefaults_actionPerformed(e);
1603 GridBagConstraints c7 = new GridBagConstraints();
1604 c7.fill = GridBagConstraints.NONE;
1607 c7.insets = new Insets(10, 0, 0, 0);
1608 c7.anchor = GridBagConstraints.WEST;
1609 overviewPanel.add(resetButton, c7);
1611 // Add padding so the panel doesn't look ridiculous
1612 JPanel spacePanel = new JPanel();
1613 overviewPanel.add(spacePanel,
1614 new GridBagConstraints(0, 3, 1, 1, 1.0, 1.0,
1615 GridBagConstraints.WEST, GridBagConstraints.BOTH,
1616 new Insets(0, 0, 0, 5), 0, 0));
1618 return overviewPanel;
1622 * Initialises the Structure tabbed panel.
1626 private JPanel initStructureTab()
1628 structureTab = new JPanel();
1630 structureTab.setBorder(new TitledBorder(
1631 MessageManager.getString("label.structure_options")));
1632 structureTab.setLayout(null);
1633 final int width = 420;
1634 final int height = 22;
1635 final int lineSpacing = 25;
1638 structFromPdb.setFont(LABEL_FONT);
1640 .setText(MessageManager.getString("label.struct_from_pdb"));
1641 structFromPdb.setBounds(new Rectangle(5, ypos, width, height));
1642 structFromPdb.addActionListener(new ActionListener()
1645 public void actionPerformed(ActionEvent e)
1647 boolean selected = structFromPdb.isSelected();
1648 // enable other options only when the first is checked
1649 addSecondaryStructure.setEnabled(selected);
1650 addTempFactor.setEnabled(selected);
1653 structureTab.add(structFromPdb);
1655 // indent checkboxes that are conditional on the first one
1656 ypos += lineSpacing;
1657 addSecondaryStructure.setFont(LABEL_FONT);
1658 addSecondaryStructure
1659 .setText(MessageManager.getString("label.autoadd_secstr"));
1660 addSecondaryStructure.setBounds(new Rectangle(25, ypos, width, height));
1661 structureTab.add(addSecondaryStructure);
1663 ypos += lineSpacing;
1664 addTempFactor.setFont(LABEL_FONT);
1665 addTempFactor.setText(MessageManager.getString("label.autoadd_temp"));
1666 addTempFactor.setBounds(new Rectangle(25, ypos, width, height));
1667 structureTab.add(addTempFactor);
1669 ypos += lineSpacing;
1670 JLabel viewerLabel = new JLabel();
1671 viewerLabel.setFont(LABEL_FONT);
1672 viewerLabel.setHorizontalAlignment(SwingConstants.LEFT);
1673 viewerLabel.setText(MessageManager.getString("label.structure_viewer"));
1674 viewerLabel.setBounds(new Rectangle(10, ypos, 220, height));
1675 structureTab.add(viewerLabel);
1678 * add all external viewers as options here - check
1679 * when selected whether the program is installed
1681 structViewer.setFont(LABEL_FONT);
1682 structViewer.setBounds(new Rectangle(190, ypos, 120, height));
1683 for (ViewerType v : EnumSet.allOf(ViewerType.class))
1685 structViewer.addItem(v.name());
1688 structViewer.addItem(ViewerType.JMOL.name());
1689 structViewer.addItem(ViewerType.CHIMERA.name());
1690 structViewer.addItem(ViewerType.CHIMERAX.name());
1691 structViewer.addItem(ViewerType.PYMOL.name());
1693 structViewer.addActionListener(new ActionListener()
1696 public void actionPerformed(ActionEvent e)
1698 structureViewer_actionPerformed(
1699 (String) structViewer.getSelectedItem());
1702 structureTab.add(structViewer);
1704 ypos += lineSpacing;
1705 structureViewerPathLabel = new JLabel();
1706 structureViewerPathLabel.setFont(LABEL_FONT);// new Font("SansSerif", 0,
1708 structureViewerPathLabel.setHorizontalAlignment(SwingConstants.LEFT);
1709 structureViewerPathLabel.setText(MessageManager
1710 .formatMessage("label.viewer_path", "Chimera(X)"));
1711 structureViewerPathLabel
1712 .setBounds(new Rectangle(10, ypos, 170, height));
1713 structureViewerPathLabel.setEnabled(false);
1714 structureTab.add(structureViewerPathLabel);
1716 structureViewerPath.setFont(LABEL_FONT);
1717 structureViewerPath.setText("");
1718 structureViewerPath.setEnabled(false);
1719 final String tooltip = JvSwingUtils.wrapTooltip(true,
1720 MessageManager.getString("label.viewer_path_tip"));
1721 structureViewerPath.setToolTipText(tooltip);
1722 structureViewerPath.setBounds(new Rectangle(190, ypos, 290, height));
1723 structureViewerPath.addMouseListener(new MouseAdapter()
1726 public void mouseClicked(MouseEvent e)
1728 if (structureViewerPath.isEnabled() && e.getClickCount() == 2)
1730 String chosen = openFileChooser();
1733 structureViewerPath.setText(chosen);
1738 structureTab.add(structureViewerPath);
1740 ypos += lineSpacing;
1741 nwMapping.setFont(LABEL_FONT);
1742 nwMapping.setText(MessageManager.getString("label.nw_mapping"));
1743 siftsMapping.setFont(LABEL_FONT);
1744 siftsMapping.setText(MessageManager.getString("label.sifts_mapping"));
1745 mappingMethod.add(nwMapping);
1746 mappingMethod.add(siftsMapping);
1747 JPanel mappingPanel = new JPanel();
1748 mappingPanel.setFont(LABEL_FONT);
1749 TitledBorder mmTitledBorder = new TitledBorder(
1750 MessageManager.getString("label.mapping_method"));
1751 mmTitledBorder.setTitleFont(LABEL_FONT);
1752 mappingPanel.setBorder(mmTitledBorder);
1753 mappingPanel.setBounds(new Rectangle(10, ypos, 472, 45));
1754 // GridLayout mappingLayout = new GridLayout();
1755 mappingPanel.setLayout(new GridLayout());
1756 mappingPanel.add(nwMapping);
1757 mappingPanel.add(siftsMapping);
1758 structureTab.add(mappingPanel);
1760 ypos += lineSpacing;
1761 ypos += lineSpacing;
1762 FTSDataColumnPreferences docFieldPref = new FTSDataColumnPreferences(
1763 PreferenceSource.PREFERENCES, PDBFTSRestClient.getInstance());
1764 docFieldPref.setBounds(new Rectangle(10, ypos, 470, 120));
1765 structureTab.add(docFieldPref);
1768 * hide Chimera options in JalviewJS
1770 if (Platform.isJS())
1772 structureViewerPathLabel.setVisible(false);
1773 structureViewerPath.setVisible(false);
1774 viewerLabel.setVisible(false);
1775 structViewer.setVisible(false);
1778 return structureTab;
1782 * Action on choosing a structure viewer from combobox options.
1784 * @param selectedItem
1786 protected void structureViewer_actionPerformed(String selectedItem)
1791 * Show a dialog for the user to choose a file. Returns the chosen path, or
1796 protected String openFileChooser()
1798 String choice = null;
1799 JFileChooser chooser = new JFileChooser();
1801 // Enable appBundleIsTraversable in macOS FileChooser to allow selecting
1802 // hidden executables within .app dirs
1803 if (Platform.isMac())
1805 chooser.putClientProperty("JFileChooser.appBundleIsTraversable",
1809 // chooser.setFileView(new JalviewFileView());
1810 chooser.setDialogTitle(
1811 MessageManager.getString("label.open_local_file"));
1812 chooser.setToolTipText(MessageManager.getString("action.open"));
1814 int value = chooser.showOpenDialog(this);
1816 if (value == JFileChooser.APPROVE_OPTION)
1818 choice = chooser.getSelectedFile().getPath();
1824 * Validate the structure tab preferences; if invalid, set focus on this tab.
1828 protected boolean validateStructure(FocusEvent e)
1830 if (!validateStructure())
1832 e.getComponent().requestFocusInWindow();
1838 protected boolean validateStructure()
1844 * Initialises the Visual tabbed panel.
1848 private JPanel initVisualTab()
1850 JPanel visualTab = new JPanel();
1851 visualTab.setBorder(new TitledBorder(
1852 MessageManager.getString("action.open_new_alignment")));
1853 visualTab.setLayout(null);
1854 fullScreen.setFont(LABEL_FONT);
1855 fullScreen.setHorizontalAlignment(SwingConstants.RIGHT);
1856 fullScreen.setHorizontalTextPosition(SwingConstants.LEFT);
1857 fullScreen.setText(MessageManager.getString("label.maximize_window"));
1858 quality.setEnabled(false);
1859 quality.setFont(LABEL_FONT);
1860 quality.setHorizontalAlignment(SwingConstants.RIGHT);
1861 quality.setHorizontalTextPosition(SwingConstants.LEFT);
1862 quality.setSelected(true);
1863 quality.setText(MessageManager.getString("label.quality"));
1864 conservation.setEnabled(false);
1865 conservation.setFont(LABEL_FONT);
1866 conservation.setHorizontalAlignment(SwingConstants.RIGHT);
1867 conservation.setHorizontalTextPosition(SwingConstants.LEFT);
1868 conservation.setSelected(true);
1869 conservation.setText(MessageManager.getString("label.conservation"));
1870 identity.setEnabled(false);
1871 identity.setFont(LABEL_FONT);
1872 identity.setHorizontalAlignment(SwingConstants.RIGHT);
1873 identity.setHorizontalTextPosition(SwingConstants.LEFT);
1874 identity.setSelected(true);
1875 identity.setText(MessageManager.getString("label.consensus"));
1876 showOccupancy.setFont(LABEL_FONT);
1877 showOccupancy.setEnabled(false);
1878 showOccupancy.setHorizontalAlignment(SwingConstants.RIGHT);
1879 showOccupancy.setHorizontalTextPosition(SwingConstants.LEFT);
1880 showOccupancy.setSelected(true);
1881 showOccupancy.setText(MessageManager.getString("label.occupancy"));
1883 JLabel showGroupbits = new JLabel();
1884 showGroupbits.setFont(LABEL_FONT);
1885 showGroupbits.setHorizontalAlignment(SwingConstants.RIGHT);
1886 showGroupbits.setHorizontalTextPosition(SwingConstants.LEFT);
1888 .setText(MessageManager.getString("action.show_group") + ":");
1889 JLabel showConsensbits = new JLabel();
1890 showConsensbits.setFont(LABEL_FONT);
1891 showConsensbits.setHorizontalAlignment(SwingConstants.RIGHT);
1892 showConsensbits.setHorizontalTextPosition(SwingConstants.LEFT);
1894 .setText(MessageManager.getString("label.consensus") + ":");
1895 showConsensHistogram.setEnabled(false);
1896 showConsensHistogram.setFont(LABEL_FONT);
1897 showConsensHistogram.setHorizontalAlignment(SwingConstants.RIGHT);
1898 showConsensHistogram.setHorizontalTextPosition(SwingConstants.LEFT);
1899 showConsensHistogram.setSelected(true);
1900 showConsensHistogram
1901 .setText(MessageManager.getString("label.histogram"));
1902 showConsensLogo.setEnabled(false);
1903 showConsensLogo.setFont(LABEL_FONT);
1904 showConsensLogo.setHorizontalAlignment(SwingConstants.RIGHT);
1905 showConsensLogo.setHorizontalTextPosition(SwingConstants.LEFT);
1906 showConsensLogo.setSelected(true);
1907 showConsensLogo.setText(MessageManager.getString("label.logo"));
1908 showGroupConsensus.setEnabled(false);
1909 showGroupConsensus.setFont(LABEL_FONT);
1910 showGroupConsensus.setHorizontalAlignment(SwingConstants.RIGHT);
1911 showGroupConsensus.setHorizontalTextPosition(SwingConstants.LEFT);
1912 showGroupConsensus.setSelected(true);
1913 showGroupConsensus.setText(MessageManager.getString("label.consensus"));
1914 showGroupConservation.setEnabled(false);
1915 showGroupConservation.setFont(LABEL_FONT);
1916 showGroupConservation.setHorizontalAlignment(SwingConstants.RIGHT);
1917 showGroupConservation.setHorizontalTextPosition(SwingConstants.LEFT);
1918 showGroupConservation.setSelected(true);
1919 showGroupConservation
1920 .setText(MessageManager.getString("label.conservation"));
1921 showNpTooltip.setEnabled(true);
1922 showNpTooltip.setFont(LABEL_FONT);
1923 showNpTooltip.setHorizontalAlignment(SwingConstants.RIGHT);
1924 showNpTooltip.setHorizontalTextPosition(SwingConstants.LEFT);
1925 showNpTooltip.setSelected(true);
1926 showNpTooltip.setText(
1927 MessageManager.getString("label.non_positional_features"));
1928 showDbRefTooltip.setEnabled(true);
1929 showDbRefTooltip.setFont(LABEL_FONT);
1930 showDbRefTooltip.setHorizontalAlignment(SwingConstants.RIGHT);
1931 showDbRefTooltip.setHorizontalTextPosition(SwingConstants.LEFT);
1932 showDbRefTooltip.setSelected(true);
1934 .setText(MessageManager.getString("label.database_references"));
1935 annotations.setFont(LABEL_FONT);
1936 annotations.setHorizontalAlignment(SwingConstants.RIGHT);
1937 annotations.setHorizontalTextPosition(SwingConstants.LEFT);
1938 annotations.setSelected(true);
1939 annotations.setText(MessageManager.getString("label.show_annotations"));
1940 // annotations.setBounds(new Rectangle(169, 12, 200, 23));
1941 annotations.addActionListener(new ActionListener()
1944 public void actionPerformed(ActionEvent e)
1946 annotations_actionPerformed(e);
1949 identity.addActionListener(new ActionListener()
1952 public void actionPerformed(ActionEvent e)
1954 annotations_actionPerformed(e);
1957 showGroupConsensus.addActionListener(new ActionListener()
1960 public void actionPerformed(ActionEvent e)
1962 annotations_actionPerformed(e);
1965 showUnconserved.setFont(LABEL_FONT);
1966 showUnconserved.setHorizontalAlignment(SwingConstants.RIGHT);
1967 showUnconserved.setHorizontalTextPosition(SwingConstants.LEFT);
1968 showUnconserved.setSelected(true);
1970 .setText(MessageManager.getString("action.show_unconserved"));
1971 showUnconserved.addActionListener(new ActionListener()
1974 public void actionPerformed(ActionEvent e)
1976 showunconserved_actionPerformed(e);
1980 // TODO these are not yet added to / action from Preferences
1981 // JCheckBox shareSelections = new JCheckBox();
1982 // shareSelections.setFont(verdana11);
1983 // shareSelections.setHorizontalAlignment(SwingConstants.RIGHT);
1984 // shareSelections.setHorizontalTextPosition(SwingConstants.LEFT);
1985 // shareSelections.setSelected(true);
1986 // shareSelections.setText(MessageManager
1987 // .getString("label.share_selection_across_views"));
1988 // JCheckBox followHighlight = new JCheckBox();
1989 // followHighlight.setFont(verdana11);
1990 // followHighlight.setHorizontalAlignment(SwingConstants.RIGHT);
1991 // followHighlight.setHorizontalTextPosition(SwingConstants.LEFT);
1992 // // showUnconserved.setBounds(new Rectangle(169, 40, 200, 23));
1993 // followHighlight.setSelected(true);
1994 // followHighlight.setText(MessageManager
1995 // .getString("label.scroll_highlighted_regions"));
1997 seqLimit.setFont(LABEL_FONT);
1998 seqLimit.setHorizontalAlignment(SwingConstants.RIGHT);
1999 seqLimit.setHorizontalTextPosition(SwingConstants.LEFT);
2000 seqLimit.setText(MessageManager.getString("label.full_sequence_id"));
2001 smoothFont.setFont(LABEL_FONT);
2002 smoothFont.setHorizontalAlignment(SwingConstants.RIGHT);
2003 smoothFont.setHorizontalTextPosition(SwingConstants.LEADING);
2004 smoothFont.setText(MessageManager.getString("label.smooth_font"));
2005 scaleProteinToCdna.setFont(LABEL_FONT);
2006 scaleProteinToCdna.setHorizontalAlignment(SwingConstants.RIGHT);
2007 scaleProteinToCdna.setHorizontalTextPosition(SwingConstants.LEADING);
2008 scaleProteinToCdna.setText(
2009 MessageManager.getString("label.scale_protein_to_cdna"));
2010 scaleProteinToCdna.setToolTipText(
2011 MessageManager.getString("label.scale_protein_to_cdna_tip"));
2012 JLabel gapLabel = new JLabel();
2013 gapLabel.setFont(LABEL_FONT);
2014 gapLabel.setHorizontalAlignment(SwingConstants.RIGHT);
2015 gapLabel.setText(MessageManager.getString("label.gap_symbol") + " ");
2016 JLabel fontLabel = new JLabel();
2017 fontLabel.setFont(LABEL_FONT);
2018 fontLabel.setHorizontalAlignment(SwingConstants.RIGHT);
2019 fontLabel.setText(MessageManager.getString("label.font"));
2020 fontSizeCB.setFont(LABEL_FONT);
2021 fontSizeCB.setBounds(new Rectangle(320, 112, 65, 23));
2022 fontStyleCB.setFont(LABEL_FONT);
2023 fontStyleCB.setBounds(new Rectangle(382, 112, 80, 23));
2024 fontNameCB.setFont(LABEL_FONT);
2025 fontNameCB.setBounds(new Rectangle(172, 112, 147, 23));
2026 gapSymbolCB.setFont(LABEL_FONT);
2027 gapSymbolCB.setBounds(new Rectangle(172, 215, 69, 23));
2028 DefaultListCellRenderer dlcr = new DefaultListCellRenderer();
2029 dlcr.setHorizontalAlignment(DefaultListCellRenderer.CENTER);
2030 gapSymbolCB.setRenderer(dlcr);
2032 startupCheckbox.setText(MessageManager.getString("action.open_file"));
2033 startupCheckbox.setFont(LABEL_FONT);
2034 startupCheckbox.setHorizontalAlignment(SwingConstants.RIGHT);
2035 startupCheckbox.setHorizontalTextPosition(SwingConstants.LEFT);
2036 startupCheckbox.setSelected(true);
2037 startupFileTextfield.setFont(LABEL_FONT);
2038 startupFileTextfield.setBounds(new Rectangle(172, 310, 330, 20));
2039 final String tooltip = JvSwingUtils.wrapTooltip(true,
2040 MessageManager.getString("label.double_click_to_browse"));
2041 startupFileTextfield.setToolTipText(tooltip);
2042 startupFileTextfield.addMouseListener(new MouseAdapter()
2045 public void mouseClicked(MouseEvent e)
2047 if (e.getClickCount() > 1)
2049 startupFileTextfield_mouseClicked();
2054 sortby.setFont(LABEL_FONT);
2055 sortby.setBounds(new Rectangle(172, 260, 155, 21));
2056 JLabel sortLabel = new JLabel();
2057 sortLabel.setFont(LABEL_FONT);
2058 sortLabel.setHorizontalAlignment(SwingConstants.RIGHT);
2059 sortLabel.setText(MessageManager.getString("label.sort_by"));
2060 sortAnnBy.setFont(LABEL_FONT);
2061 sortAnnBy.setBounds(new Rectangle(172, 285, 110, 21));
2062 JLabel sortAnnLabel = new JLabel();
2063 sortAnnLabel.setFont(LABEL_FONT);
2064 sortAnnLabel.setHorizontalAlignment(SwingConstants.RIGHT);
2065 sortAnnLabel.setText(MessageManager.getString("label.sort_ann_by"));
2066 sortAutocalc.setFont(LABEL_FONT);
2067 sortAutocalc.setBounds(new Rectangle(290, 285, 165, 21));
2069 JPanel annsettingsPanel = new JPanel();
2070 annsettingsPanel.setBounds(new Rectangle(173, 13, 320, 96));
2071 annsettingsPanel.setLayout(new FlowLayout(FlowLayout.LEFT, 0, 0));
2072 annsettingsPanel.setBorder(new EtchedBorder());
2073 visualTab.add(annsettingsPanel);
2074 Border jb = new EmptyBorder(1, 1, 4, 5);
2075 annotations.setBorder(jb);
2076 showOccupancy.setBorder(jb);
2077 quality.setBorder(jb);
2078 conservation.setBorder(jb);
2079 identity.setBorder(jb);
2080 showConsensbits.setBorder(jb);
2081 showGroupbits.setBorder(jb);
2082 showGroupConsensus.setBorder(jb);
2083 showGroupConservation.setBorder(jb);
2084 showConsensHistogram.setBorder(jb);
2085 showConsensLogo.setBorder(jb);
2087 JPanel autoAnnotSettings = new JPanel();
2088 annsettingsPanel.add(autoAnnotSettings);
2089 autoAnnotSettings.setLayout(new GridLayout(0, 2));
2090 autoAnnotSettings.add(annotations);
2091 autoAnnotSettings.add(quality);
2092 // second row of autoannotation box
2093 autoAnnotSettings = new JPanel();
2094 annsettingsPanel.add(autoAnnotSettings);
2096 autoAnnotSettings.setLayout(new GridLayout(0, 3));
2097 autoAnnotSettings.add(conservation);
2098 autoAnnotSettings.add(identity);
2099 autoAnnotSettings.add(showOccupancy);
2100 autoAnnotSettings.add(showGroupbits);
2101 autoAnnotSettings.add(showGroupConservation);
2102 autoAnnotSettings.add(showGroupConsensus);
2103 autoAnnotSettings.add(showConsensbits);
2104 autoAnnotSettings.add(showConsensHistogram);
2105 autoAnnotSettings.add(showConsensLogo);
2107 JPanel tooltipSettings = new JPanel();
2108 tooltipSettings.setBorder(new TitledBorder(
2109 MessageManager.getString("label.sequence_id_tooltip")));
2110 tooltipSettings.setBounds(173, 140, 220, 62);
2111 tooltipSettings.setLayout(new GridLayout(2, 1));
2112 tooltipSettings.add(showDbRefTooltip);
2113 tooltipSettings.add(showNpTooltip);
2114 visualTab.add(tooltipSettings);
2116 wrap.setFont(LABEL_FONT);
2117 wrap.setHorizontalAlignment(SwingConstants.TRAILING);
2118 wrap.setHorizontalTextPosition(SwingConstants.LEADING);
2119 wrap.setText(MessageManager.getString("label.wrap_alignment"));
2120 rightAlign.setFont(LABEL_FONT);
2121 rightAlign.setForeground(Color.black);
2122 rightAlign.setHorizontalAlignment(SwingConstants.RIGHT);
2123 rightAlign.setHorizontalTextPosition(SwingConstants.LEFT);
2124 rightAlign.setText(MessageManager.getString("label.right_align_ids"));
2125 idItalics.setFont(LABEL_FONT_ITALIC);
2126 idItalics.setHorizontalAlignment(SwingConstants.RIGHT);
2127 idItalics.setHorizontalTextPosition(SwingConstants.LEADING);
2129 MessageManager.getString("label.sequence_name_italics"));
2130 openoverv.setFont(LABEL_FONT);
2131 openoverv.setActionCommand(
2132 MessageManager.getString("label.open_overview"));
2133 openoverv.setHorizontalAlignment(SwingConstants.RIGHT);
2134 openoverv.setHorizontalTextPosition(SwingConstants.LEFT);
2135 openoverv.setText(MessageManager.getString("label.open_overview"));
2136 JPanel jPanel2 = new JPanel();
2137 jPanel2.setBounds(new Rectangle(7, 17, 158, 310));
2138 jPanel2.setLayout(new GridLayout(14, 1));
2139 jPanel2.add(fullScreen);
2140 jPanel2.add(openoverv);
2141 jPanel2.add(seqLimit);
2142 jPanel2.add(rightAlign);
2143 jPanel2.add(fontLabel);
2144 jPanel2.add(showUnconserved);
2145 jPanel2.add(idItalics);
2146 jPanel2.add(smoothFont);
2147 jPanel2.add(scaleProteinToCdna);
2148 jPanel2.add(gapLabel);
2150 jPanel2.add(sortLabel);
2151 jPanel2.add(sortAnnLabel);
2152 jPanel2.add(startupCheckbox);
2153 visualTab.add(jPanel2);
2154 visualTab.add(startupFileTextfield);
2155 visualTab.add(sortby);
2156 visualTab.add(sortAnnBy);
2157 visualTab.add(sortAutocalc);
2158 visualTab.add(gapSymbolCB);
2159 visualTab.add(fontNameCB);
2160 visualTab.add(fontSizeCB);
2161 visualTab.add(fontStyleCB);
2163 if (Platform.isJS())
2165 startupCheckbox.setVisible(false);
2166 startupFileTextfield.setVisible(false);
2173 * Load the saved Backups options EXCEPT "Enabled" and "Scheme"
2176 protected void loadLastSavedBackupsOptions()
2178 BackupFilesPresetEntry savedPreset = BackupFilesPresetEntry
2179 .getSavedBackupEntry();
2180 enableBackupFiles.setSelected(
2181 Cache.getDefault(BackupFiles.ENABLED, !Platform.isJS()));
2183 BackupFilesPresetEntry backupfilesCustomEntry = BackupFilesPresetEntry
2184 .createBackupFilesPresetEntry(Cache
2185 .getDefault(BackupFilesPresetEntry.CUSTOMCONFIG, null));
2186 if (backupfilesCustomEntry == null)
2188 backupfilesCustomEntry = BackupFilesPresetEntry.backupfilesPresetEntriesValues
2189 .get(BackupFilesPresetEntry.BACKUPFILESSCHEMEDEFAULT);
2191 BackupFilesPresetEntry.backupfilesPresetEntriesValues.put(
2192 BackupFilesPresetEntry.BACKUPFILESSCHEMECUSTOM,
2193 backupfilesCustomEntry);
2195 setComboIntStringKey(backupfilesPresetsCombo,
2196 Cache.getDefault(BackupFiles.NS + "_PRESET",
2197 BackupFilesPresetEntry.BACKUPFILESSCHEMEDEFAULT));
2199 backupsSetOptions(savedPreset);
2201 backupsOptionsSetEnabled();
2202 updateBackupFilesExampleLabel();
2206 * Load the saved Memory settings
2208 protected void loadLastSavedMemorySettings()
2210 customiseMemorySetting.setSelected(
2211 Cache.getDefault(MemorySetting.CUSTOMISED_SETTINGS, false));
2212 jvmMemoryPercentSlider
2213 .setValue(Cache.getDefault(MemorySetting.MEMORY_JVMMEMPC, 90));
2214 jvmMemoryMaxTextField.setText(
2215 Cache.getDefault(MemorySetting.MEMORY_JVMMEMMAX, "32g"));
2218 private boolean warnAboutSuffixReverseChange()
2220 BackupFilesPresetEntry bfpe = BackupFilesPresetEntry
2221 .getSavedBackupEntry();
2222 boolean savedSuffixReverse = bfpe.reverse;
2223 int savedSuffixDigits = bfpe.digits;
2224 String savedSuffixTemplate = bfpe.suffix;
2226 boolean nowSuffixReverse = suffixReverse.isSelected();
2227 int nowSuffixDigits = getSpinnerInt(suffixDigitsSpinner, 3);
2228 String nowSuffixTemplate = suffixTemplate.getText();
2229 return nowSuffixReverse != savedSuffixReverse
2230 && nowSuffixDigits == savedSuffixDigits
2231 && nowSuffixTemplate != null
2232 && nowSuffixTemplate.equals(savedSuffixTemplate);
2235 /* Initialises the Startup tabbed panel.
2240 private JPanel initStartupTab()
2242 JPanel startupTab = new JPanel();
2243 startupTab.setBorder(
2244 new TitledBorder(MessageManager.getString("label.memory")));
2245 startupTab.setLayout(new GridBagLayout());
2247 GridBagConstraints gbc = new GridBagConstraints();
2250 gbc.anchor = GridBagConstraints.FIRST_LINE_START;
2251 gbc.fill = GridBagConstraints.NONE;
2258 gbc.gridy = 0; // row 1
2260 JLabel memoryText = new JLabel();
2261 memoryText.setFont(LABEL_FONT_ITALIC);
2263 .setText(MessageManager.getString("label.memory_setting_text"));
2264 startupTab.add(memoryText, gbc);
2266 gbc.gridy++; // row 2
2268 JPanel exampleMemoryPanel = new JPanel();
2270 .setLayout(new BoxLayout(exampleMemoryPanel, BoxLayout.Y_AXIS));
2271 exampleMemoryPanel.setToolTipText(JvSwingUtils.wrapTooltip(true,
2272 MessageManager.getString("label.memory_example_tooltip")));
2273 JLabel exampleTextLabel = new JLabel();
2275 .setText(MessageManager.getString("label.memory_example_text"));
2276 exampleTextLabel.setForeground(Color.GRAY);
2277 exampleTextLabel.setFont(LABEL_FONT);
2278 exampleMemoryPanel.add(exampleTextLabel);
2279 exampleMemoryPanel.add(exampleMemoryLabel);
2280 exampleMemoryPanel.setBackground(Color.WHITE);
2281 exampleMemoryPanel.setBorder(BorderFactory.createEtchedBorder());
2282 startupTab.add(exampleMemoryPanel, gbc);
2284 gbc.gridy++; // row 3
2286 startupTab.add(customiseMemorySetting, gbc);
2288 gbc.gridy += 2; // row 4 with a gap
2290 startupTab.add(maxMemoryLabel, gbc);
2292 gbc.gridy += 2; // row 5
2295 startupTab.add(jvmMemoryPercentLabel, gbc);
2297 startupTab.add(jvmMemoryPercentSlider, gbc);
2299 // gbc.weightx = 0.1;
2300 startupTab.add(jvmMemoryPercentDisplay, gbc);
2301 // gbc.weightx = 1.0;
2304 gbc.gridy++; // row 6
2306 startupTab.add(jvmMemoryMaxLabel, gbc);
2308 startupTab.add(jvmMemoryMaxTextField, gbc);
2310 gbc.gridy++; // row 7
2313 exampleMemoryMessageTextArea.setBackground(startupTab.getBackground());
2314 JScrollPane sp = new JScrollPane(exampleMemoryMessageTextArea);
2315 sp.setBorder(BorderFactory.createEmptyBorder());
2316 sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
2317 sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER);
2318 startupTab.add(sp, gbc);
2320 // fill empty space to push widget to top left
2326 startupTab.add(new JPanel(), gbc);
2328 setMemoryPercentDisplay();
2329 memoryOptionsSetEnabled();
2333 private void initMemoryPanel()
2335 // Enable memory settings checkbox
2336 customiseMemorySetting.setFont(LABEL_FONT_BOLD);
2337 customiseMemorySetting.setText(
2338 MessageManager.getString("label.customise_memory_settings"));
2339 customiseMemorySetting.addActionListener(new ActionListener()
2342 public void actionPerformed(ActionEvent e)
2344 memoryOptionsSetEnabled();
2348 loadLastSavedMemorySettings();
2350 exampleMemoryLabel.setFont(LABEL_FONT_BOLD);
2351 exampleMemoryLabel.setBackground(Color.WHITE);
2353 maxMemoryLabel = new JLabel(
2354 MessageManager.getString("label.maximum_memory_used"));
2355 maxMemoryLabel.setFont(LABEL_FONT_BOLD);
2357 // Maximum memory percentage slider
2358 jvmMemoryPercentLabel.setFont(LABEL_FONT);
2359 jvmMemoryPercentLabel.setText(
2360 MessageManager.getString("label.percent_of_physical_memory"));
2361 jvmMemoryPercentSlider.setPaintLabels(true);
2362 jvmMemoryPercentSlider.setPaintTicks(true);
2363 jvmMemoryPercentSlider.setPaintTrack(true);
2364 jvmMemoryPercentSlider.setMajorTickSpacing(50);
2365 jvmMemoryPercentSlider.setMinorTickSpacing(10);
2366 jvmMemoryPercentSlider.addChangeListener(new ChangeListener()
2369 public void stateChanged(ChangeEvent e)
2371 setMemoryPercentDisplay();
2374 jvmMemoryPercentDisplay.setFont(LABEL_FONT);
2375 setMemoryPercentDisplay();
2377 // Maximum memory cap textbox
2378 jvmMemoryMaxLabel.setFont(LABEL_FONT);
2380 .setText(MessageManager.getString("label.maximum_memory"));
2381 initMemoryMaxTextField();
2383 exampleMemoryMessageTextArea.setFont(LABEL_FONT_ITALIC);
2384 exampleMemoryMessageTextArea.setForeground(Color.GRAY);
2385 exampleMemoryMessageTextArea.setEditable(false);
2386 exampleMemoryMessageTextArea.setLineWrap(true);
2387 exampleMemoryMessageTextArea.setWrapStyleWord(true);
2388 exampleMemoryMessageTextArea.setText(" ");
2389 exampleMemoryMessageTextArea.setRows(2);
2390 exampleMemoryMessageTextArea.setColumns(40);
2392 setExampleMemoryLabel();
2395 private void initMemoryMaxTextField()
2397 jvmMemoryMaxTextField.setToolTipText(
2398 MessageManager.getString("label.maximum_memory_tooltip"));
2399 jvmMemoryMaxTextField.addActionListener(new ActionListener()
2402 public void actionPerformed(ActionEvent arg0)
2404 validateMemoryMaxTextField();
2405 setExampleMemoryLabel();
2409 jvmMemoryMaxTextField.addKeyListener(new KeyListener()
2412 public void keyReleased(KeyEvent e)
2414 validateMemoryMaxTextField();
2415 setExampleMemoryLabel();
2419 public void keyPressed(KeyEvent e)
2423 // try and stop invalid typing
2425 public void keyTyped(KeyEvent e)
2427 char c = Character.toLowerCase(e.getKeyChar());
2428 String text = jvmMemoryMaxTextField.getText();
2429 String suffixes = "tgmkb";
2430 int pos = jvmMemoryMaxTextField.getCaretPosition();
2431 int suffixPos = StringUtils.firstCharPosIgnoreCase(text, suffixes);
2432 if (!((('0' <= c && c <= '9')
2433 && (suffixPos == -1 || pos <= suffixPos)) // digits only allowed
2435 || (suffixes.indexOf(Character.toLowerCase(c)) >= 0 // valid
2437 && pos == text.length() // at end of text and
2438 && suffixPos == -1) // there isn't already one
2448 private boolean isMemoryMaxTextFieldValid()
2450 return MemorySetting
2451 .isValidMemoryString(jvmMemoryMaxTextField.getText());
2454 private void validateMemoryMaxTextField()
2456 if (isMemoryMaxTextFieldValid())
2458 jvmMemoryMaxTextField.setBackground(Color.WHITE);
2462 jvmMemoryMaxTextField.setBackground(Color.PINK);
2466 private void setMemoryPercentDisplay()
2468 jvmMemoryPercentDisplay
2469 .setText(jvmMemoryPercentSlider.getValue() + "%");
2470 setExampleMemoryLabel();
2473 private void setExampleMemoryLabel()
2475 boolean selected = customiseMemorySetting.isSelected();
2476 int jvmmempc = jvmMemoryPercentSlider.getValue();
2477 String jvmmemmax = jvmMemoryMaxTextField.getText();
2480 if (selected && (0 <= jvmmempc && jvmmempc <= 100)
2481 && MemorySetting.isValidMemoryString(jvmmemmax))
2483 mem = MemorySetting.getMemorySetting(jvmmemmax,
2484 String.valueOf(jvmmempc), false, true);
2488 mem = MemorySetting.getMemorySetting(null, null, false, true);
2490 exampleMemoryLabel.setText(MemorySetting.memoryLongToString(mem));
2491 String message = MemorySetting.getAdjustmentMessage();
2492 exampleMemoryMessageTextArea.setText(
2493 MessageManager.getString("label.adjustments_for_this_computer")
2496 ? MessageManager.getString("label.none")
2500 private void memoryOptionsSetEnabled()
2502 boolean enabled = customiseMemorySetting.isSelected();
2503 // leave exampleMemoryLabel enabled always
2504 maxMemoryLabel.setEnabled(enabled);
2505 jvmMemoryPercentLabel.setEnabled(enabled);
2506 jvmMemoryPercentSlider.setEnabled(enabled);
2507 jvmMemoryPercentDisplay.setEnabled(enabled);
2508 jvmMemoryMaxLabel.setEnabled(enabled);
2509 jvmMemoryMaxTextField.setEnabled(enabled);
2510 exampleMemoryMessageTextArea.setEnabled(enabled);
2511 setExampleMemoryLabel();
2515 * Initialises the Backups tabbed panel.
2519 private JPanel initBackupsTab()
2521 JPanel backupsTab = new JPanel();
2522 backupsTab.setBorder(new TitledBorder(
2523 MessageManager.getString("label.backup_files")));
2524 backupsTab.setLayout(new GridBagLayout());
2526 GridBagConstraints gbc = new GridBagConstraints();
2529 gbc.anchor = GridBagConstraints.FIRST_LINE_START;
2530 gbc.fill = GridBagConstraints.NONE;
2532 initBackupsTabPresetsPanel();
2533 initBackupsTabSuffixPanel();
2534 initBackupsTabKeepFilesPanel();
2535 initBackupsTabFilenameExamplesPanel();
2537 enableBackupFiles.setFont(LABEL_FONT_BOLD);
2539 .setText(MessageManager.getString("label.enable_backupfiles"));
2540 enableBackupFiles.addActionListener(new ActionListener()
2543 public void actionPerformed(ActionEvent e)
2545 // enable other options only when the first is checked
2546 backupsOptionsSetEnabled();
2550 // enable checkbox 1 col
2554 gbc.gridy = 0; // row 0
2555 backupsTab.add(enableBackupFiles, gbc);
2557 // summary of scheme box (over two rows)
2561 gbc.anchor = GridBagConstraints.FIRST_LINE_END;
2562 gbc.fill = GridBagConstraints.BOTH;
2563 backupsTab.add(exampleFilesPanel, gbc);
2565 gbc.anchor = GridBagConstraints.FIRST_LINE_START;
2566 gbc.fill = GridBagConstraints.NONE;
2568 // fill empty space on right
2571 backupsTab.add(new JPanel(), gbc);
2576 gbc.gridy++; // row 1
2577 backupsTab.add(presetsPanel, gbc);
2579 // now using whole row
2584 gbc.gridy++; // row 2
2585 backupsTab.add(keepfilesPanel, gbc);
2587 // filename strategy box
2588 gbc.gridy++; // row 3
2589 backupsTab.add(suffixPanel, gbc);
2592 gbc.gridy++; // row 4
2594 backupsTab.add(new JPanel(), gbc);
2596 backupsOptionsSetEnabled();
2600 private JPanel initBackupsTabPresetsPanel()
2603 String title = MessageManager.getString("label.schemes");
2605 presetsPanel.setLayout(new GridBagLayout());
2607 GridBagConstraints gbc = new GridBagConstraints();
2610 gbc.anchor = GridBagConstraints.BASELINE_LEADING;
2611 gbc.fill = GridBagConstraints.NONE;
2619 presetsComboLabel = new JLabel(title + ":");
2620 presetsPanel.add(presetsComboLabel, gbc);
2622 List<Object> entries = Arrays.asList(
2623 (Object[]) BackupFilesPresetEntry.backupfilesPresetEntries);
2624 List<String> tooltips = Arrays.asList(
2625 BackupFilesPresetEntry.backupfilesPresetEntryDescriptions);
2626 backupfilesPresetsCombo = JvSwingUtils.buildComboWithTooltips(entries,
2629 for (int i = 0; i < BackupFilesPresetEntry.backupfilesPresetEntries.length; i++)
2631 backupfilesPresetsCombo
2632 .addItem(BackupFilesPresetEntry.backupfilesPresetEntries[i]);
2636 backupfilesPresetsCombo.addActionListener(new ActionListener()
2639 public void actionPerformed(ActionEvent e)
2641 int key = getComboIntStringKey(backupfilesPresetsCombo);
2642 if (!customiseCheckbox.isSelected())
2644 backupfilesPresetsComboLastSelected = key;
2646 if (key == BackupFilesPresetEntry.BACKUPFILESSCHEMECUSTOM)
2648 if (customiseCheckbox.isSelected())
2650 // got here by clicking on customiseCheckbox so don't change the
2652 backupfilesCustomOptionsSetEnabled();
2656 backupsTabUpdatePresets();
2657 backupfilesCustomOptionsSetEnabled();
2662 customiseCheckbox.setSelected(false);
2663 backupsTabUpdatePresets();
2664 backupfilesCustomOptionsSetEnabled();
2669 // dropdown list of preset schemes
2671 presetsPanel.add(backupfilesPresetsCombo, gbc);
2673 revertButton.setText(MessageManager.getString("label.cancel_changes"));
2674 revertButton.setToolTipText(
2675 MessageManager.getString("label.cancel_changes_description"));
2676 revertButton.addActionListener(new ActionListener()
2679 public void actionPerformed(ActionEvent e)
2682 BackupFilesPresetEntry.backupfilesPresetEntriesValues.get(
2683 BackupFilesPresetEntry.BACKUPFILESSCHEMECUSTOM));
2684 backupfilesCustomOptionsSetEnabled();
2688 revertButton.setFont(LABEL_FONT);
2690 customiseCheckbox.setFont(LABEL_FONT);
2691 customiseCheckbox.setText(MessageManager.getString("label.customise"));
2692 customiseCheckbox.addActionListener(new ActionListener()
2695 public void actionPerformed(ActionEvent e)
2697 int currently = getComboIntStringKey(backupfilesPresetsCombo);
2698 if (customiseCheckbox.isSelected())
2700 backupfilesPresetsComboLastSelected = currently;
2701 setComboIntStringKey(backupfilesPresetsCombo,
2702 BackupFilesPresetEntry.BACKUPFILESSCHEMECUSTOM);
2706 setComboIntStringKey(backupfilesPresetsCombo,
2707 backupfilesPresetsComboLastSelected);
2710 backupfilesCustomOptionsSetEnabled();
2713 customiseCheckbox.setToolTipText(
2714 MessageManager.getString("label.customise_description"));
2716 // customise checkbox
2719 presetsPanel.add(customiseCheckbox, gbc);
2721 // "Cancel changes" button (aligned with combo box above)
2723 presetsPanel.add(revertButton, gbc);
2725 return presetsPanel;
2728 private JPanel initBackupsTabFilenameExamplesPanel()
2730 String title = MessageManager.getString("label.scheme_examples");
2731 TitledBorder tb = new TitledBorder(title);
2732 exampleFilesPanel.setBorder(tb);
2733 exampleFilesPanel.setLayout(new GridBagLayout());
2735 backupfilesExampleLabel.setEditable(false);
2736 backupfilesExampleLabel
2737 .setBackground(exampleFilesPanel.getBackground());
2739 updateBackupFilesExampleLabel();
2741 GridBagConstraints gbc = new GridBagConstraints();
2744 gbc.fill = GridBagConstraints.NONE;
2745 gbc.anchor = GridBagConstraints.FIRST_LINE_START;
2747 exampleFilesPanel.add(backupfilesExampleLabel, gbc);
2748 return exampleFilesPanel;
2751 private void backupsTabUpdatePresets()
2753 IntKeyStringValueEntry entry = (IntKeyStringValueEntry) backupfilesPresetsCombo
2756 String value = entry.v;
2758 if (BackupFilesPresetEntry.backupfilesPresetEntriesValues
2762 BackupFilesPresetEntry.backupfilesPresetEntriesValues
2768 "Preset '" + value + "' [key:" + key + "] not implemented");
2771 // Custom options will now be enabled when the customiseCheckbox is checked
2772 // (performed above)
2773 // backupfilesCustomOptionsSetEnabled();
2774 updateBackupFilesExampleLabel();
2777 protected int getComboIntStringKey(
2778 JComboBox<Object> backupfilesPresetsCombo2)
2780 IntKeyStringValueEntry e;
2783 e = (IntKeyStringValueEntry) backupfilesPresetsCombo2
2785 } catch (Exception ex)
2788 "Problem casting Combo entry to IntKeyStringValueEntry.");
2791 return e != null ? e.k : 0;
2794 protected void setComboIntStringKey(
2795 JComboBox<Object> backupfilesPresetsCombo2, int key)
2797 for (int i = 0; i < backupfilesPresetsCombo2.getItemCount(); i++)
2799 IntKeyStringValueEntry e;
2802 e = (IntKeyStringValueEntry) backupfilesPresetsCombo2.getItemAt(i);
2803 } catch (Exception ex)
2806 "Problem casting Combo entry to IntKeyStringValueEntry. Skipping item. ");
2811 backupfilesPresetsCombo2.setSelectedIndex(i);
2815 // backupsTabUpdatePresets();
2818 private JPanel initBackupsTabSuffixPanel()
2820 suffixPanel.setBorder(new TitledBorder(
2821 MessageManager.getString("label.backup_filename_strategy")));
2822 suffixPanel.setLayout(new GridBagLayout());
2825 .setText(MessageManager.getString("label.append_to_filename"));
2826 suffixTemplateLabel.setHorizontalAlignment(SwingConstants.LEFT);
2827 suffixTemplateLabel.setFont(LABEL_FONT);
2829 final String tooltip = JvSwingUtils.wrapTooltip(true,
2830 MessageManager.getString("label.append_to_filename_tooltip"));
2831 suffixTemplate.setToolTipText(tooltip);
2832 suffixTemplate.addActionListener(new ActionListener()
2835 public void actionPerformed(ActionEvent e)
2837 updateBackupFilesExampleLabel();
2838 backupfilesCustomOptionsSetEnabled();
2839 backupfilesRevertButtonSetEnabled(true);
2843 suffixTemplate.addKeyListener(new KeyListener()
2846 public void keyReleased(KeyEvent e)
2848 updateBackupFilesExampleLabel();
2849 backupfilesCustomOptionsSetEnabled();
2850 backupfilesRevertButtonSetEnabled(true);
2854 public void keyPressed(KeyEvent e)
2858 // disable use of ':' or '/' or '\'
2860 public void keyTyped(KeyEvent e)
2862 char c = e.getKeyChar();
2863 if (c == ':' || c == '/' || c == '\\')
2865 // don't process ':' or '/' or '\'
2874 .setText(MessageManager.getString("label.index_digits"));
2875 suffixDigitsLabel.setHorizontalAlignment(SwingConstants.LEFT);
2876 suffixDigitsLabel.setFont(LABEL_FONT);
2877 ChangeListener c = new ChangeListener()
2880 public void stateChanged(ChangeEvent e)
2882 backupfilesRevertButtonSetEnabled(true);
2883 updateBackupFilesExampleLabel();
2887 setIntegerSpinner(suffixDigitsSpinner, BackupFilesPresetEntry.DIGITSMIN,
2888 BackupFilesPresetEntry.DIGITSMAX, 3, c);
2890 suffixReverse.setLabels(MessageManager.getString("label.reverse_roll"),
2891 MessageManager.getString("label.increment_index"));
2892 suffixReverse.addActionListener(new ActionListener()
2895 public void actionPerformed(ActionEvent e)
2897 boolean okay = true;
2898 if (warnAboutSuffixReverseChange())
2901 okay = confirmSuffixReverseChange();
2905 backupfilesRevertButtonSetEnabled(true);
2906 updateBackupFilesExampleLabel();
2910 boolean savedSuffixReverse = BackupFilesPresetEntry
2911 .getSavedBackupEntry().reverse;
2912 suffixReverse.setSelected(savedSuffixReverse);
2917 GridBagConstraints sgbc = new GridBagConstraints();
2919 // first row (template text box)
2920 sgbc.anchor = GridBagConstraints.WEST;
2924 sgbc.gridheight = 1;
2927 sgbc.fill = GridBagConstraints.NONE;
2928 suffixPanel.add(suffixTemplateLabel, sgbc);
2931 sgbc.fill = GridBagConstraints.HORIZONTAL;
2932 suffixPanel.add(suffixTemplate, sgbc);
2934 // second row (number of digits spinner)
2938 sgbc.fill = GridBagConstraints.NONE;
2939 suffixPanel.add(suffixDigitsLabel, sgbc);
2942 sgbc.fill = GridBagConstraints.HORIZONTAL;
2943 suffixPanel.add(suffixDigitsSpinner, sgbc);
2945 // third row (forward order radio selection)
2948 sgbc.gridwidth = GridBagConstraints.REMAINDER;
2949 sgbc.fill = GridBagConstraints.HORIZONTAL;
2950 suffixPanel.add(suffixReverse.getFalseButton(), sgbc);
2952 // fourth row (reverse order radio selection)
2954 suffixPanel.add(suffixReverse.getTrueButton(), sgbc);
2958 private boolean confirmSuffixReverseChange()
2960 boolean ret = false;
2961 String warningMessage = MessageManager
2962 .getString("label.warning_confirm_change_reverse");
2963 int confirm = JvOptionPane.showConfirmDialog(Desktop.desktop,
2965 MessageManager.getString("label.change_increment_decrement"),
2966 JvOptionPane.YES_NO_OPTION, JvOptionPane.WARNING_MESSAGE);
2968 ret = (confirm == JvOptionPane.YES_OPTION);
2972 private JPanel initBackupsTabKeepFilesPanel()
2974 keepfilesPanel.setBorder(
2975 new TitledBorder(MessageManager.getString("label.keep_files")));
2976 keepfilesPanel.setLayout(new GridBagLayout());
2978 backupfilesKeepAll.setLabels(
2979 MessageManager.getString("label.keep_all_backup_files"),
2980 MessageManager.getString(
2981 "label.keep_only_this_number_of_backup_files"));
2982 backupfilesKeepAll.addTrueActionListener(new ActionListener()
2985 public void actionPerformed(ActionEvent e)
2987 backupfilesRevertButtonSetEnabled(true);
2988 updateBackupFilesExampleLabel();
2991 backupfilesKeepAll.addActionListener(new ActionListener()
2994 public void actionPerformed(ActionEvent e)
2996 backupfilesRevertButtonSetEnabled(true);
2997 keepRollMaxOptionsEnabled();
2998 updateBackupFilesExampleLabel();
3002 ChangeListener c = new ChangeListener()
3005 public void stateChanged(ChangeEvent e)
3007 backupfilesRevertButtonSetEnabled(true);
3008 updateBackupFilesExampleLabel();
3012 setIntegerSpinner(backupfilesRollMaxSpinner,
3013 BackupFilesPresetEntry.ROLLMAXMIN,
3014 BackupFilesPresetEntry.ROLLMAXMAX, 4, true, c);
3016 backupfilesConfirmDelete.setLabels(
3017 MessageManager.getString("label.always_ask"),
3018 MessageManager.getString("label.auto_delete"));
3019 backupfilesConfirmDelete.addActionListener(new ActionListener()
3022 public void actionPerformed(ActionEvent e)
3024 backupfilesRevertButtonSetEnabled(true);
3027 // update the enabled section
3028 keepRollMaxOptionsEnabled();
3030 GridBagConstraints kgbc = new GridBagConstraints();
3032 // first row (template text box)
3033 kgbc.anchor = GridBagConstraints.WEST;
3036 kgbc.gridwidth = GridBagConstraints.REMAINDER;
3037 kgbc.gridheight = 1;
3040 kgbc.fill = GridBagConstraints.HORIZONTAL;
3041 keepfilesPanel.add(backupfilesKeepAll.getTrueButton(), kgbc);
3047 kgbc.gridwidth = GridBagConstraints.RELATIVE;
3048 keepfilesPanel.add(backupfilesKeepAll.getFalseButton(), kgbc);
3051 kgbc.gridwidth = GridBagConstraints.REMAINDER;
3052 keepfilesPanel.add(backupfilesRollMaxSpinner, kgbc);
3054 // third row (indented)
3056 kgbc.insets = new Insets(0, 20, 0, 0);
3059 kgbc.gridwidth = GridBagConstraints.REMAINDER;
3060 kgbc.fill = GridBagConstraints.HORIZONTAL;
3063 JPanel jp = new JPanel();
3064 jp.setLayout(new FlowLayout());
3065 oldBackupFilesLabel.setText(
3066 MessageManager.getString("label.autodelete_old_backup_files"));
3067 oldBackupFilesLabel.setFont(LABEL_FONT);
3068 oldBackupFilesLabel.setHorizontalAlignment(SwingConstants.LEFT);
3069 jp.add(oldBackupFilesLabel);
3070 jp.add(backupfilesConfirmDelete.getTrueButton());
3071 jp.add(backupfilesConfirmDelete.getFalseButton());
3072 keepfilesPanel.add(jp, kgbc);
3074 return keepfilesPanel;
3077 protected void updateBackupFilesExampleLabel()
3079 int exampleindex = 12;
3080 String base = MessageManager.getString("label.filename") + ".fa";
3081 if (base == null || base.length() == 0)
3083 base = "file_name.fa";
3086 boolean reverse = suffixReverse.isSelected();
3087 boolean keepAll = backupfilesKeepAll.isSelected();
3089 String suffix = suffixTemplate.getText();
3092 backupfilesExampleLabel.setFont(LABEL_FONT_ITALIC);
3093 if (suffix == null || suffix.length() == 0)
3095 backupfilesExampleLabel
3096 .setText(MessageManager.getString("label.no_backup_files"));
3097 backupfilesExampleLabel.setFont(LABEL_FONT_BOLD);
3101 rollMax = getSpinnerInt(backupfilesRollMaxSpinner, 4);
3102 rollMax = rollMax < 1 ? 1 : rollMax;
3104 if (suffix.indexOf(BackupFiles.NUM_PLACEHOLDER) == -1)
3109 digits = getSpinnerInt(suffixDigitsSpinner, 3);
3110 digits = digits < 1 ? 1 : digits;
3112 int lowersurround = 2;
3113 int uppersurround = 0;
3114 StringBuilder exampleSB = new StringBuilder();
3115 boolean firstLine = true;
3121 int max = keepAll ? exampleindex : rollMax;
3122 for (int index = min; index <= max; index++)
3124 if (index == min + lowersurround && index < max - uppersurround - 1)
3126 exampleSB.append("\n...");
3129 else if (index > min + lowersurround && index < max - uppersurround)
3141 exampleSB.append("\n");
3144 exampleSB.append(BackupFilenameParts.getBackupFilename(index,
3145 base, suffix, digits));
3148 // no extra text needed
3150 else if (index == min)
3152 String newest = MessageManager.getString("label.braced_newest");
3153 if (newest != null && newest.length() > 0)
3155 exampleSB.append(" " + newest);
3158 else if (index == max)
3160 String oldest = MessageManager.getString("label.braced_oldest");
3161 if (oldest != null && oldest.length() > 0)
3163 exampleSB.append(" " + oldest);
3172 int min = (keepAll || exampleindex - rollMax < 0) ? 1
3173 : exampleindex - rollMax + 1;
3174 int max = exampleindex;
3176 for (int index = min; index <= max; index++)
3179 if (index == min + lowersurround && index < max - uppersurround - 1)
3181 exampleSB.append("\n...");
3184 else if (index > min + lowersurround && index < max - uppersurround)
3196 exampleSB.append("\n");
3199 exampleSB.append(BackupFilenameParts.getBackupFilename(index,
3200 base, suffix, digits));
3203 // no extra text needed
3205 else if (index == min)
3207 String oldest = MessageManager.getString("label.braced_oldest");
3208 if (oldest != null && oldest.length() > 0)
3210 exampleSB.append(" " + oldest);
3213 else if (index == max)
3215 String newest = MessageManager.getString("label.braced_newest");
3216 if (newest != null && newest.length() > 0)
3218 exampleSB.append(" " + newest);
3226 // add some extra empty lines to pad out the example files box. ugh, please
3228 // me how to do this better
3229 int remainingLines = lowersurround + uppersurround + 1 - lineNumber;
3230 if (remainingLines > 0)
3232 for (int i = 0; i < remainingLines; i++)
3234 exampleSB.append("\n ");
3239 backupfilesExampleLabel.setText(exampleSB.toString());
3242 protected void setIntegerSpinner(JSpinner s, int min, int max, int def,
3243 boolean useExistingVal, ChangeListener c)
3250 i = ((Integer) s.getValue()).intValue();
3251 } catch (Exception e)
3254 "Exception casting the initial value of s.getValue()");
3258 setIntegerSpinner(s, min, max, i, c);
3261 protected void setIntegerSpinner(JSpinner s, int min, int max, int def,
3264 // integer spinner for number of digits
3273 SpinnerModel sModel = new SpinnerNumberModel(def, min, max, 1);
3276 s.addChangeListener(c);
3280 protected static int getSpinnerInt(JSpinner s, int def)
3286 i = (Integer) s.getValue();
3287 } catch (Exception e)
3289 Console.error("Failed casting (Integer) JSpinner s.getValue()");
3294 private void keepRollMaxOptionsEnabled()
3296 boolean enabled = backupfilesKeepAll.isEnabled()
3297 && !backupfilesKeepAll.isSelected();
3298 oldBackupFilesLabel.setEnabled(enabled);
3299 backupfilesRollMaxSpinner.setEnabled(enabled);
3300 backupfilesConfirmDelete.setEnabled(enabled);
3303 private void backupfilesKeepAllSetEnabled(boolean tryEnabled)
3305 boolean enabled = tryEnabled && enableBackupFiles.isSelected()
3306 && customiseCheckbox.isSelected() && suffixTemplate.getText()
3307 .indexOf(BackupFiles.NUM_PLACEHOLDER) > -1;
3308 keepfilesPanel.setEnabled(enabled);
3309 backupfilesKeepAll.setEnabled(enabled);
3310 oldBackupFilesLabel.setEnabled(enabled);
3311 keepRollMaxOptionsEnabled();
3314 private void backupfilesSuffixTemplateDigitsSetEnabled()
3316 boolean enabled = suffixTemplate.isEnabled() && suffixTemplate.getText()
3317 .indexOf(BackupFiles.NUM_PLACEHOLDER) > -1;
3318 suffixDigitsLabel.setEnabled(enabled);
3319 suffixDigitsSpinner.setEnabled(enabled);
3320 suffixReverse.setEnabled(enabled);
3323 private void backupfilesSuffixTemplateSetEnabled(boolean tryEnabled)
3325 boolean enabled = tryEnabled && enableBackupFiles.isSelected()
3326 && customiseCheckbox.isSelected();
3327 suffixPanel.setEnabled(enabled);
3328 suffixTemplateLabel.setEnabled(enabled);
3329 suffixTemplate.setEnabled(enabled);
3330 backupfilesSuffixTemplateDigitsSetEnabled();
3333 private void backupfilesRevertButtonSetEnabled(boolean tryEnabled)
3335 boolean enabled = tryEnabled && enableBackupFiles.isSelected()
3336 && customiseCheckbox.isSelected() && backupfilesCustomChanged();
3337 revertButton.setEnabled(enabled);
3340 private boolean backupfilesCustomChanged()
3342 BackupFilesPresetEntry custom = BackupFilesPresetEntry.backupfilesPresetEntriesValues
3343 .get(BackupFilesPresetEntry.BACKUPFILESSCHEMECUSTOM);
3344 BackupFilesPresetEntry current = getBackupfilesCurrentEntry();
3345 return !custom.equals(current);
3348 protected BackupFilesPresetEntry getBackupfilesCurrentEntry()
3350 String suffix = suffixTemplate.getText();
3351 int digits = getSpinnerInt(suffixDigitsSpinner, 3);
3352 boolean reverse = suffixReverse.isSelected();
3353 boolean keepAll = backupfilesKeepAll.isSelected();
3354 int rollMax = getSpinnerInt(backupfilesRollMaxSpinner, 3);
3355 boolean confirmDelete = backupfilesConfirmDelete.isSelected();
3357 BackupFilesPresetEntry bfpe = new BackupFilesPresetEntry(suffix, digits,
3358 reverse, keepAll, rollMax, confirmDelete);
3363 protected void backupfilesCustomOptionsSetEnabled()
3365 boolean enabled = customiseCheckbox.isSelected();
3367 backupfilesRevertButtonSetEnabled(enabled);
3368 backupfilesSuffixTemplateSetEnabled(enabled);
3369 backupfilesKeepAllSetEnabled(enabled);
3372 private void backupfilesSummarySetEnabled()
3374 boolean enabled = enableBackupFiles.isSelected();
3375 backupfilesExampleLabel.setEnabled(enabled);
3376 exampleFilesPanel.setEnabled(enabled);
3379 private void backupfilesPresetsSetEnabled()
3381 boolean enabled = enableBackupFiles.isSelected();
3382 presetsPanel.setEnabled(enabled);
3383 presetsComboLabel.setEnabled(enabled);
3384 backupfilesPresetsCombo.setEnabled(enabled);
3385 customiseCheckbox.setEnabled(enabled);
3386 revertButton.setEnabled(enabled);
3389 protected void backupsOptionsSetEnabled()
3391 backupfilesPresetsSetEnabled();
3392 backupfilesSummarySetEnabled();
3393 backupfilesCustomOptionsSetEnabled();
3396 protected void backupsSetOptions(String suffix, int digits,
3397 boolean reverse, boolean keepAll, int rollMax,
3398 boolean confirmDelete)
3400 suffixTemplate.setText(suffix);
3401 suffixDigitsSpinner.setValue(digits);
3402 suffixReverse.setSelected(reverse);
3403 backupfilesKeepAll.setSelected(keepAll);
3404 backupfilesRollMaxSpinner.setValue(rollMax);
3405 backupfilesConfirmDelete.setSelected(confirmDelete);
3408 protected void backupsSetOptions(BackupFilesPresetEntry p)
3410 backupsSetOptions(p.suffix, p.digits, p.reverse, p.keepAll, p.rollMax,
3414 protected void autoIdWidth_actionPerformed()
3416 // TODO Auto-generated method stub
3420 protected void userIdWidth_actionPerformed()
3422 // TODO Auto-generated method stub
3426 protected void maxColour_actionPerformed(JPanel panel)
3430 protected void minColour_actionPerformed(JPanel panel)
3434 protected void gapColour_actionPerformed(JPanel panel)
3438 protected void hiddenColour_actionPerformed(JPanel panel)
3442 protected void showunconserved_actionPerformed(ActionEvent e)
3444 // TODO Auto-generated method stub
3448 protected void useLegacyGaps_actionPerformed(ActionEvent e)
3452 protected void resetOvDefaults_actionPerformed(ActionEvent e)
3462 public void ok_actionPerformed(ActionEvent e)
3472 public void cancel_actionPerformed(ActionEvent e)
3482 public void annotations_actionPerformed(ActionEvent e)
3489 public void startupFileTextfield_mouseClicked()
3493 public void newLink_actionPerformed(ActionEvent e)
3498 public void editLink_actionPerformed(ActionEvent e)
3503 public void deleteLink_actionPerformed(ActionEvent e)
3508 public void linkURLList_keyTyped(KeyEvent e)
3513 public void setProxyAuthEnabled()
3515 boolean enabled = proxyAuth.isSelected() && proxyAuth.isEnabled();
3516 proxyAuthUsernameLabel.setEnabled(enabled);
3517 proxyAuthPasswordLabel.setEnabled(enabled);
3518 passwordNotStoredLabel.setEnabled(enabled);
3519 proxyAuthUsernameTB.setEnabled(enabled);
3520 proxyAuthPasswordPB.setEnabled(enabled);
3523 public void setCustomProxyEnabled()
3525 boolean enabled = customProxy.isSelected();
3526 portLabel.setEnabled(enabled);
3527 serverLabel.setEnabled(enabled);
3528 portLabel2.setEnabled(enabled);
3529 serverLabel2.setEnabled(enabled);
3530 httpLabel.setEnabled(enabled);
3531 httpsLabel.setEnabled(enabled);
3532 proxyServerHttpTB.setEnabled(enabled);
3533 proxyPortHttpTB.setEnabled(enabled);
3534 proxyServerHttpsTB.setEnabled(enabled);
3535 proxyPortHttpsTB.setEnabled(enabled);
3536 proxyAuth.setEnabled(enabled);
3537 setProxyAuthEnabled();
3540 public void proxyType_actionPerformed()
3542 setCustomProxyEnabled();
3543 proxyAuthPasswordCheckHighlight(true);
3544 applyProxyButtonEnabled(true);
3547 public void proxyAuth_actionPerformed()
3549 setProxyAuthEnabled();
3550 proxyAuthPasswordCheckHighlight(true);
3551 applyProxyButtonEnabled(true);
3555 * Customer renderer for JTable: supports column of radio buttons
3557 public class RadioButtonRenderer extends JRadioButton
3558 implements TableCellRenderer
3560 public RadioButtonRenderer()
3562 setHorizontalAlignment(CENTER);
3563 setToolTipText(MessageManager.getString("label.urltooltip"));
3567 public Component getTableCellRendererComponent(JTable table,
3568 Object value, boolean isSelected, boolean hasFocus, int row,
3571 setSelected((boolean) value);
3573 // set colours to match rest of table
3576 setBackground(table.getSelectionBackground());
3577 setForeground(table.getSelectionForeground());
3581 setBackground(table.getBackground());
3582 setForeground(table.getForeground());
3589 * Customer cell editor for JTable: supports column of radio buttons in
3590 * conjunction with renderer
3592 public class RadioButtonEditor extends AbstractCellEditor
3593 implements TableCellEditor
3595 private JRadioButton button = new JRadioButton();
3597 public RadioButtonEditor()
3599 button.setHorizontalAlignment(SwingConstants.CENTER);
3600 this.button.addActionListener(new ActionListener()
3603 public void actionPerformed(ActionEvent e)
3605 fireEditingStopped();
3611 public Component getTableCellEditorComponent(JTable table, Object value,
3612 boolean isSelected, int row, int column)
3614 button.setSelected((boolean) value);
3619 public Object getCellEditorValue()
3621 return button.isSelected();