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.appletgui;
23 import jalview.datamodel.AlignmentAnnotation;
24 import jalview.datamodel.HiddenColumns;
25 import jalview.schemes.AnnotationColourGradient;
26 import jalview.util.MessageManager;
27 import jalview.viewmodel.annotationfilter.AnnotationFilterParameter;
29 import java.awt.BorderLayout;
30 import java.awt.CardLayout;
31 import java.awt.Checkbox;
32 import java.awt.Choice;
33 import java.awt.Color;
34 import java.awt.Dimension;
35 import java.awt.Frame;
36 import java.awt.Panel;
37 import java.awt.TextField;
38 import java.awt.event.ActionEvent;
39 import java.awt.event.ActionListener;
40 import java.awt.event.AdjustmentEvent;
41 import java.awt.event.AdjustmentListener;
42 import java.awt.event.ItemEvent;
43 import java.awt.event.ItemListener;
44 import java.awt.event.MouseAdapter;
45 import java.awt.event.MouseEvent;
46 import java.awt.event.MouseListener;
47 import java.awt.event.TextEvent;
48 import java.awt.event.TextListener;
49 import java.util.Iterator;
50 import java.util.Vector;
52 //import javax.swing.JPanel;
54 //import net.miginfocom.swing.MigLayout;
56 public class AnnotationColumnChooser extends AnnotationRowFilter implements
57 ActionListener, AdjustmentListener, ItemListener, MouseListener
60 private Choice annotations = new Choice();
62 private Panel actionPanel = new Panel();
64 private TitledPanel thresholdPanel = new TitledPanel();
66 private Panel switchableViewsPanel = new Panel(new CardLayout());
68 private CardLayout switchableViewsLayout = (CardLayout) (switchableViewsPanel
71 private Panel noGraphFilterView = new Panel();
73 private Panel graphFilterView = new Panel();
75 private Panel annotationComboBoxPanel = new Panel();
77 private BorderLayout borderLayout1 = new BorderLayout();
79 private BorderLayout gBorderLayout = new BorderLayout();
81 private BorderLayout ngBorderLayout = new BorderLayout();
83 private Choice threshold = new Choice();
85 private StructureFilterPanel gStructureFilterPanel;
87 private StructureFilterPanel ngStructureFilterPanel;
89 private StructureFilterPanel currentStructureFilterPanel;
91 private SearchPanel currentSearchPanel;
93 private SearchPanel gSearchPanel;
95 private SearchPanel ngSearchPanel;
97 private FurtherActionPanel currentFurtherActionPanel;
99 private FurtherActionPanel gFurtherActionPanel;
101 private FurtherActionPanel ngFurtherActionPanel;
103 public static final int ACTION_OPTION_SELECT = 1;
105 public static int ACTION_OPTION_HIDE = 2;
107 public static String NO_GRAPH_VIEW = "0";
109 public static String GRAPH_VIEW = "1";
111 private int actionOption = ACTION_OPTION_SELECT;
113 private HiddenColumns oldHiddenColumns;
115 public AnnotationColumnChooser()
120 } catch (Exception ex)
122 ex.printStackTrace();
126 public AnnotationColumnChooser(AlignViewport av, final AlignmentPanel ap)
131 jalview.bin.JalviewLite.addFrame(frame,
132 MessageManager.getString("label.select_by_annotation"), 520,
135 slider.addAdjustmentListener(this);
136 slider.addMouseListener(this);
138 AlignmentAnnotation[] anns = av.getAlignment().getAlignmentAnnotation();
143 setOldHiddenColumns(av.getAlignment().getHiddenColumns());
145 Vector<String> list = new Vector<String>();
147 for (int i = 0; i < anns.length; i++)
149 String label = anns[i].label;
150 if (anns[i].sequenceRef != null)
152 label = label + "_" + anns[i].sequenceRef.getName();
154 if (!list.contains(label))
156 list.addElement(label);
160 list.addElement(label + "_" + (index++));
164 for (int i = 0; i < list.size(); i++)
166 annotations.addItem(list.elementAt(i).toString());
169 populateThresholdComboBox(threshold);
170 AnnotationColumnChooser lastChooser = av
171 .getAnnotationColumnSelectionState();
172 // restore Object state from the previous session if one exists
173 if (lastChooser != null)
175 currentSearchPanel = lastChooser
176 .getCurrentSearchPanel();
177 currentStructureFilterPanel = lastChooser
178 .getCurrentStructureFilterPanel();
179 annotations.select(lastChooser
180 .getAnnotations().getSelectedIndex());
181 threshold.select(lastChooser
182 .getThreshold().getSelectedIndex());
183 actionOption = lastChooser
185 percentThreshold.setState(lastChooser.percentThreshold.getState());
191 } catch (Exception ex)
201 private void jbInit() throws Exception
203 ok.setLabel(MessageManager.getString("action.ok"));
205 cancel.setLabel(MessageManager.getString("action.cancel"));
207 thresholdValue.setEnabled(false);
208 thresholdValue.setColumns(7);
209 thresholdValue.setCaretPosition(0);
211 ok.addActionListener(this);
212 cancel.addActionListener(this);
213 annotations.addItemListener(this);
214 thresholdValue.addActionListener(this);
215 threshold.addItemListener(this);
217 slider.setBackground(Color.white);
218 slider.setEnabled(false);
219 slider.setPreferredSize(new Dimension(100, 32));
221 thresholdPanel.setBackground(Color.white);
222 // thresholdPanel.setFont(JvSwingUtils.getLabelFont());
223 // thresholdPanel.setLayout(new MigLayout("", "[left][right]", "[][]"));
225 percentThreshold.setLabel("As percentage");
226 percentThreshold.addItemListener(this);
228 actionPanel.setBackground(Color.white);
229 // actionPanel.setFont(JvSwingUtils.getLabelFont());
231 graphFilterView.setLayout(gBorderLayout);
232 graphFilterView.setBackground(Color.white);
234 noGraphFilterView.setLayout(ngBorderLayout);
235 noGraphFilterView.setBackground(Color.white);
237 annotationComboBoxPanel.setBackground(Color.white);
238 // annotationComboBoxPanel.setFont(JvSwingUtils.getLabelFont());
240 gSearchPanel = new SearchPanel(this);
241 ngSearchPanel = new SearchPanel(this);
242 gFurtherActionPanel = new FurtherActionPanel(this);
243 ngFurtherActionPanel = new FurtherActionPanel(this);
244 gStructureFilterPanel = new StructureFilterPanel(this);
245 ngStructureFilterPanel = new StructureFilterPanel(this);
247 thresholdPanel.setTitle("Threshold Filter");
248 thresholdPanel.add(getThreshold());
249 thresholdPanel.add(slider);
250 thresholdPanel.add(thresholdValue);
251 thresholdPanel.add(percentThreshold);
254 actionPanel.add(cancel);
256 Panel staticPanel = new Panel();
257 staticPanel.setLayout(new BorderLayout());
258 staticPanel.setBackground(Color.white);
260 staticPanel.add(gSearchPanel, java.awt.BorderLayout.NORTH);
261 staticPanel.add(gStructureFilterPanel, java.awt.BorderLayout.SOUTH);
263 graphFilterView.add(staticPanel, java.awt.BorderLayout.NORTH);
264 graphFilterView.add(thresholdPanel, java.awt.BorderLayout.CENTER);
265 graphFilterView.add(gFurtherActionPanel, java.awt.BorderLayout.SOUTH);
267 noGraphFilterView.add(ngSearchPanel, java.awt.BorderLayout.PAGE_START);
268 noGraphFilterView.add(ngStructureFilterPanel,
269 java.awt.BorderLayout.CENTER);
270 noGraphFilterView.add(ngFurtherActionPanel,
271 java.awt.BorderLayout.CENTER);
273 annotationComboBoxPanel.add(getAnnotations());
274 switchableViewsPanel.add(noGraphFilterView,
275 AnnotationColumnChooser.NO_GRAPH_VIEW);
276 switchableViewsPanel.add(graphFilterView,
277 AnnotationColumnChooser.GRAPH_VIEW);
279 this.setLayout(borderLayout1);
280 this.add(annotationComboBoxPanel, java.awt.BorderLayout.PAGE_START);
281 this.add(switchableViewsPanel, java.awt.BorderLayout.CENTER);
282 this.add(actionPanel, java.awt.BorderLayout.SOUTH);
284 selectedAnnotationChanged();
289 @SuppressWarnings("unchecked")
292 if (this.getOldHiddenColumns() != null)
294 av.getColumnSelection().clear();
296 if (av.getAnnotationColumnSelectionState() != null)
298 HiddenColumns oldHidden = av
299 .getAnnotationColumnSelectionState()
300 .getOldHiddenColumns();
301 if (oldHidden != null && oldHidden.getHiddenRegions() != null
302 && !oldHidden.getHiddenRegions().isEmpty())
304 for (Iterator<int[]> itr = oldHidden.getHiddenRegions()
305 .iterator(); itr.hasNext();)
307 int positions[] = itr.next();
308 av.hideColumns(positions[0], positions[1]);
311 av.getAlignment().setHiddenColumns(oldHidden);
313 ap.paintAlignment(true);
319 public void adjustmentValueChanged(AdjustmentEvent evt)
323 setThresholdValueText();
324 valueChanged(!sliderDragging);
328 protected void addSliderMouseListeners()
331 slider.addMouseListener(new MouseAdapter()
334 public void mousePressed(MouseEvent e)
336 sliderDragging = true;
337 super.mousePressed(e);
341 public void mouseDragged(MouseEvent e)
343 sliderDragging = true;
344 super.mouseDragged(e);
348 public void mouseReleased(MouseEvent evt)
352 sliderDragging = false;
355 ap.paintAlignment(true);
361 public void valueChanged(boolean updateAllAnnotation)
363 if (slider.isEnabled())
365 getCurrentAnnotation().threshold.value = slider.getValue() / 1000f;
367 ap.paintAlignment(false);
371 public Choice getThreshold()
376 public void setThreshold(Choice threshold)
378 this.threshold = threshold;
381 public Choice getAnnotations()
386 public void setAnnotations(Choice annotations)
388 this.annotations = annotations;
392 public void updateView()
394 // Check if combobox is still adjusting
400 AnnotationFilterParameter filterParams = new AnnotationFilterParameter();
401 setCurrentAnnotation(av.getAlignment().getAlignmentAnnotation()[getAnnotations()
402 .getSelectedIndex()]);
404 int selectedThresholdItem = getSelectedThresholdItem(getThreshold()
405 .getSelectedIndex());
407 slider.setEnabled(true);
408 thresholdValue.setEnabled(true);
409 percentThreshold.setEnabled(true);
411 if (selectedThresholdItem == AnnotationColourGradient.NO_THRESHOLD)
413 slider.setEnabled(false);
414 thresholdValue.setEnabled(false);
415 thresholdValue.setText("");
416 percentThreshold.setEnabled(false);
417 // build filter params
419 else if (selectedThresholdItem != AnnotationColourGradient.NO_THRESHOLD)
421 if (getCurrentAnnotation().threshold == null)
423 getCurrentAnnotation()
425 new jalview.datamodel.GraphLine(
426 (getCurrentAnnotation().graphMax - getCurrentAnnotation().graphMin) / 2f,
427 "Threshold", Color.black));
431 float range = getCurrentAnnotation().graphMax * 1000
432 - getCurrentAnnotation().graphMin * 1000;
434 slider.setMinimum((int) (getCurrentAnnotation().graphMin * 1000));
435 slider.setMaximum((int) (getCurrentAnnotation().graphMax * 1000));
436 slider.setValue((int) (getCurrentAnnotation().threshold.value * 1000));
437 setThresholdValueText();
438 // slider.setMajorTickSpacing((int) (range / 10f));
439 slider.setEnabled(true);
440 thresholdValue.setEnabled(true);
441 percentThreshold.setEnabled(true);
444 // build filter params
446 .setThresholdType(AnnotationFilterParameter.ThresholdType.NO_THRESHOLD);
447 if (getCurrentAnnotation().isQuantitative())
450 .setThresholdValue(getCurrentAnnotation().threshold.value);
452 if (selectedThresholdItem == AnnotationColourGradient.ABOVE_THRESHOLD)
455 .setThresholdType(AnnotationFilterParameter.ThresholdType.ABOVE_THRESHOLD);
457 else if (selectedThresholdItem == AnnotationColourGradient.BELOW_THRESHOLD)
460 .setThresholdType(AnnotationFilterParameter.ThresholdType.BELOW_THRESHOLD);
465 if (currentStructureFilterPanel != null)
467 if (currentStructureFilterPanel.alphaHelix.getState())
469 filterParams.setFilterAlphaHelix(true);
471 if (currentStructureFilterPanel.betaStrand.getState())
473 filterParams.setFilterBetaSheet(true);
475 if (currentStructureFilterPanel.turn.getState())
477 filterParams.setFilterTurn(true);
481 if (currentSearchPanel != null)
484 if (!currentSearchPanel.searchBox.getText().isEmpty())
486 currentSearchPanel.description.setEnabled(true);
487 currentSearchPanel.displayName.setEnabled(true);
488 filterParams.setRegexString(currentSearchPanel.searchBox.getText());
489 if (currentSearchPanel.displayName.getState())
492 .addRegexSearchField(AnnotationFilterParameter.SearchableAnnotationField.DISPLAY_STRING);
494 if (currentSearchPanel.description.getState())
497 .addRegexSearchField(AnnotationFilterParameter.SearchableAnnotationField.DESCRIPTION);
502 currentSearchPanel.description.setEnabled(false);
503 currentSearchPanel.displayName.setEnabled(false);
507 av.getColumnSelection().filterAnnotations(
508 getCurrentAnnotation().annotations, filterParams);
510 av.showAllHiddenColumns();
511 if (getActionOption() == ACTION_OPTION_HIDE)
513 av.hideSelectedColumns();
517 av.setAnnotationColumnSelectionState(this);
518 ap.paintAlignment(true);
521 public HiddenColumns getOldHiddenColumns()
523 return oldHiddenColumns;
526 public void setOldHiddenColumns(HiddenColumns currentHiddenColumns)
528 if (currentHiddenColumns != null)
530 this.oldHiddenColumns = new HiddenColumns(currentHiddenColumns);
534 public FurtherActionPanel getCurrentFutherActionPanel()
536 return currentFurtherActionPanel;
539 public void setCurrentFutherActionPanel(
540 FurtherActionPanel currentFutherActionPanel)
542 this.currentFurtherActionPanel = currentFutherActionPanel;
545 public SearchPanel getCurrentSearchPanel()
547 return currentSearchPanel;
550 public void setCurrentSearchPanel(SearchPanel currentSearchPanel)
552 this.currentSearchPanel = currentSearchPanel;
555 public int getActionOption()
560 public void setActionOption(int actionOption)
562 this.actionOption = actionOption;
565 public StructureFilterPanel getCurrentStructureFilterPanel()
567 return currentStructureFilterPanel;
570 public void setCurrentStructureFilterPanel(
571 StructureFilterPanel currentStructureFilterPanel)
573 this.currentStructureFilterPanel = currentStructureFilterPanel;
577 public void itemStateChanged(ItemEvent e)
579 if (e.getSource() == annotations)
581 selectedAnnotationChanged();
583 else if (e.getSource() == threshold)
585 threshold_actionPerformed(null);
587 else if (e.getSource() == percentThreshold)
591 percentageValue_actionPerformed();
597 public void selectedAnnotationChanged()
599 String currentView = AnnotationColumnChooser.NO_GRAPH_VIEW;
600 if (av.getAlignment().getAlignmentAnnotation()[getAnnotations()
601 .getSelectedIndex()].isQuantitative())
603 currentView = AnnotationColumnChooser.GRAPH_VIEW;
606 gSearchPanel.syncState();
607 gFurtherActionPanel.syncState();
608 gStructureFilterPanel.syncState();
610 ngSearchPanel.syncState();
611 ngFurtherActionPanel.syncState();
612 ngStructureFilterPanel.syncState();
614 switchableViewsLayout.show(switchableViewsPanel, currentView);
618 public class FurtherActionPanel extends Panel implements ItemListener
620 private AnnotationColumnChooser aColChooser;
622 private Choice furtherAction = new Choice();
624 public FurtherActionPanel(AnnotationColumnChooser aColChooser)
626 this.aColChooser = aColChooser;
627 furtherAction.addItem("Select");
628 furtherAction.addItem("Hide");
629 furtherAction.addItemListener(this);
632 // this.setTitle("Filter Actions");
633 // this.setFont(JvSwingUtils.getLabelFont());
635 this.add(furtherAction);
638 public void syncState()
640 if (aColChooser.getActionOption() == AnnotationColumnChooser.ACTION_OPTION_HIDE)
642 furtherAction.select("Hide");
646 furtherAction.select("Select");
651 public void itemStateChanged(ItemEvent e)
653 aColChooser.setCurrentFutherActionPanel(this);
654 if (furtherAction.getSelectedItem().equalsIgnoreCase("Select"))
656 setActionOption(ACTION_OPTION_SELECT);
661 setActionOption(ACTION_OPTION_HIDE);
668 public class StructureFilterPanel extends TitledPanel implements
671 private AnnotationColumnChooser aColChooser;
673 private Checkbox alphaHelix = new Checkbox();
675 private Checkbox betaStrand = new Checkbox();
677 private Checkbox turn = new Checkbox();
679 private Checkbox all = new Checkbox();
681 public StructureFilterPanel(AnnotationColumnChooser aColChooser)
683 this.aColChooser = aColChooser;
685 alphaHelix.setLabel(MessageManager.getString("label.alpha_helix"));
686 alphaHelix.setBackground(Color.white);
688 alphaHelix.addItemListener(this);
690 betaStrand.setLabel(MessageManager.getString("label.beta_strand"));
691 betaStrand.setBackground(Color.white);
692 betaStrand.addItemListener(this);
694 turn.setLabel(MessageManager.getString("label.turn"));
695 turn.setBackground(Color.white);
696 turn.addItemListener(this);
698 all.setLabel(MessageManager.getString("label.select_all"));
699 all.setBackground(Color.white);
700 all.addItemListener(this);
702 this.setBackground(Color.white);
703 this.setTitle("Structure Filter");
704 // this.setFont(JvSwingUtils.getLabelFont());
707 this.add(alphaHelix);
708 this.add(betaStrand);
712 public void alphaHelix_actionPerformed()
714 updateSelectAllState();
715 aColChooser.setCurrentStructureFilterPanel(this);
716 aColChooser.updateView();
719 public void betaStrand_actionPerformed()
721 updateSelectAllState();
722 aColChooser.setCurrentStructureFilterPanel(this);
723 aColChooser.updateView();
726 public void turn_actionPerformed()
728 updateSelectAllState();
729 aColChooser.setCurrentStructureFilterPanel(this);
730 aColChooser.updateView();
733 public void all_actionPerformed()
737 alphaHelix.setState(true);
738 betaStrand.setState(true);
743 alphaHelix.setState(false);
744 betaStrand.setState(false);
745 turn.setState(false);
747 aColChooser.setCurrentStructureFilterPanel(this);
748 aColChooser.updateView();
751 public void updateSelectAllState()
753 if (alphaHelix.getState() && betaStrand.getState() && turn.getState())
763 public void syncState()
765 StructureFilterPanel sfp = aColChooser
766 .getCurrentStructureFilterPanel();
769 alphaHelix.setState(sfp.alphaHelix.getState());
770 betaStrand.setState(sfp.betaStrand.getState());
771 turn.setState(sfp.turn.getState());
772 if (sfp.all.getState())
775 alphaHelix.setState(true);
776 betaStrand.setState(true);
784 public void itemStateChanged(ItemEvent e)
786 if (e.getSource() == alphaHelix)
788 alphaHelix_actionPerformed();
790 else if (e.getSource() == betaStrand)
792 betaStrand_actionPerformed();
794 else if (e.getSource() == turn)
796 turn_actionPerformed();
798 else if (e.getSource() == all)
800 all_actionPerformed();
805 public class SearchPanel extends TitledPanel implements ItemListener
807 private AnnotationColumnChooser aColChooser;
809 private Checkbox displayName = new Checkbox();
811 private Checkbox description = new Checkbox();
813 private TextField searchBox = new TextField(10);
815 public SearchPanel(AnnotationColumnChooser aColChooser)
818 this.aColChooser = aColChooser;
819 searchBox.addTextListener(new TextListener()
823 public void textValueChanged(TextEvent e)
825 searchStringAction();
831 displayName.setLabel(MessageManager.getString("label.label"));
832 displayName.setEnabled(false);
833 displayName.addItemListener(this);
835 description.setLabel(MessageManager.getString("label.description"));
836 description.setEnabled(false);
837 description.addItemListener(this);
838 this.setTitle("Search Filter");
839 // this.setFont(JvSwingUtils.getLabelFont());
843 this.add(displayName);
844 this.add(description);
847 public void displayNameCheckboxAction()
849 aColChooser.setCurrentSearchPanel(this);
850 aColChooser.updateView();
853 public void discriptionCheckboxAction()
855 aColChooser.setCurrentSearchPanel(this);
856 aColChooser.updateView();
859 public void searchStringAction()
861 aColChooser.setCurrentSearchPanel(this);
862 aColChooser.updateView();
865 public void syncState()
867 SearchPanel sp = aColChooser.getCurrentSearchPanel();
870 description.setEnabled(sp.description.isEnabled());
871 description.setState(sp.description.getState());
873 displayName.setEnabled(sp.displayName.isEnabled());
874 displayName.setState(sp.displayName.getState());
876 searchBox.setText(sp.searchBox.getText());
881 public void itemStateChanged(ItemEvent e)
883 if (e.getSource() == displayName)
885 displayNameCheckboxAction();
887 else if (e.getSource() == description)
889 discriptionCheckboxAction();
896 public void actionPerformed(ActionEvent evt)
899 if (evt.getSource() == ok)
901 ok_actionPerformed(null);
903 else if (evt.getSource() == cancel)
905 cancel_actionPerformed(null);
907 else if (evt.getSource() == thresholdValue)
909 thresholdValue_actionPerformed(null);
918 public void mouseClicked(MouseEvent e)
920 // TODO Auto-generated method stub
925 public void mousePressed(MouseEvent e)
927 if (e.getSource() == slider)
935 public void mouseReleased(MouseEvent e)
937 if (e.getSource() == slider)
944 public void mouseEntered(MouseEvent e)
946 if (e.getSource() == slider)
953 public void mouseExited(MouseEvent e)
955 if (e.getSource() == slider)