X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fgui%2FAnnotationRowFilter.java;h=7705bc346637241b46af8a3598d004c296640e76;hb=dfa39e09cf3ffa44cc1e764bfa72900bab96136d;hp=0a5e96c291e3f2a0060cb937845ef53dcc61e360;hpb=ee45bdff826bb8c24270730d2de27b475b304472;p=jalview.git diff --git a/src/jalview/gui/AnnotationRowFilter.java b/src/jalview/gui/AnnotationRowFilter.java index 0a5e96c..7705bc3 100644 --- a/src/jalview/gui/AnnotationRowFilter.java +++ b/src/jalview/gui/AnnotationRowFilter.java @@ -26,7 +26,8 @@ import jalview.datamodel.SequenceGroup; import jalview.schemes.AnnotationColourGradient; import jalview.util.MessageManager; -import java.awt.event.ActionEvent; +import java.awt.event.FocusAdapter; +import java.awt.event.FocusEvent; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.util.Vector; @@ -52,7 +53,7 @@ public abstract class AnnotationRowFilter extends JPanel protected boolean enableSeqAss = false; - private jalview.datamodel.AlignmentAnnotation currentAnnotation; + private AlignmentAnnotation currentAnnotation; protected boolean adjusting = false; @@ -135,6 +136,14 @@ public abstract class AnnotationRowFilter extends JPanel { this.av = av; this.ap = ap; + thresholdValue.addFocusListener(new FocusAdapter() + { + @Override + public void focusLost(FocusEvent e) + { + thresholdValue_actionPerformed(); + } + }); } public AnnotationRowFilter() @@ -175,7 +184,6 @@ public abstract class AnnotationRowFilter extends JPanel { anmap[list.size()] = i; list.add(label); - } else { @@ -210,7 +218,7 @@ public abstract class AnnotationRowFilter extends JPanel seqAssociated.setEnabled(enableSeqAss); } - public void ok_actionPerformed(ActionEvent e) + public void ok_actionPerformed() { try { @@ -220,7 +228,7 @@ public abstract class AnnotationRowFilter extends JPanel } } - public void cancel_actionPerformed(ActionEvent e) + public void cancel_actionPerformed() { reset(); ap.paintAlignment(true); @@ -232,22 +240,22 @@ public abstract class AnnotationRowFilter extends JPanel } } - public void thresholdCheck_actionPerformed(ActionEvent e) + public void thresholdCheck_actionPerformed() { updateView(); } - public void annotations_actionPerformed(ActionEvent e) + public void annotations_actionPerformed() { updateView(); } - public void threshold_actionPerformed(ActionEvent e) + public void threshold_actionPerformed() { updateView(); } - public void thresholdValue_actionPerformed(ActionEvent e) + public void thresholdValue_actionPerformed() { try { @@ -259,7 +267,7 @@ public abstract class AnnotationRowFilter extends JPanel } } - public void thresholdIsMin_actionPerformed(ActionEvent actionEvent) + public void thresholdIsMin_actionPerformed() { updateView(); } @@ -274,8 +282,7 @@ public abstract class AnnotationRowFilter extends JPanel .getString("label.threshold_feature_below_threshold")); } - protected void seqAssociated_actionPerformed(ActionEvent arg0, - JComboBox annotations, JCheckBox seqAssociated) + protected void seqAssociated_actionPerformed(JComboBox annotations) { adjusting = true; String cursel = (String) annotations.getSelectedItem(); @@ -332,26 +339,25 @@ public abstract class AnnotationRowFilter extends JPanel } } - protected boolean colorAlignmContaining( - AlignmentAnnotation currentAnnotation, int selectedThresholdItem) + protected boolean colorAlignmContaining(AlignmentAnnotation currentAnn, + int selectedThresholdOption) { AnnotationColourGradient acg = null; if (currentColours.isSelected()) { - acg = new AnnotationColourGradient(currentAnnotation, - av.getGlobalColourScheme(), selectedThresholdItem); + acg = new AnnotationColourGradient(currentAnn, + av.getGlobalColourScheme(), selectedThresholdOption); } else { - acg = new AnnotationColourGradient(currentAnnotation, + acg = new AnnotationColourGradient(currentAnn, minColour.getBackground(), maxColour.getBackground(), - selectedThresholdItem); + selectedThresholdOption); } acg.setSeqAssociated(seqAssociated.isSelected()); - if (currentAnnotation.graphMin == 0f - && currentAnnotation.graphMax == 0f) + if (currentAnn.graphMin == 0f && currentAnn.graphMax == 0f) { acg.setPredefinedColours(true); } @@ -370,23 +376,20 @@ public abstract class AnnotationRowFilter extends JPanel continue; } + AnnotationColourGradient scheme = null; if (currentColours.isSelected()) { - sg.cs = new AnnotationColourGradient(currentAnnotation, sg.cs, - selectedThresholdItem); - ((AnnotationColourGradient) sg.cs).setSeqAssociated(seqAssociated - .isSelected()); - + scheme = new AnnotationColourGradient(currentAnn, + sg.getColourScheme(), selectedThresholdOption); } else { - sg.cs = new AnnotationColourGradient(currentAnnotation, + scheme = new AnnotationColourGradient(currentAnn, minColour.getBackground(), maxColour.getBackground(), - selectedThresholdItem); - ((AnnotationColourGradient) sg.cs).setSeqAssociated(seqAssociated - .isSelected()); + selectedThresholdOption); } - + scheme.setSeqAssociated(seqAssociated.isSelected()); + sg.setColourScheme(scheme); } } return false;