X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FFeatureRenderer.java;h=55c4323e46597557dc6f5f8e4697a19e926f47cf;hb=8f11fde42942229be12283a3b82ac2405dbbdd8f;hp=7be3e518ad720bebfc644c9e62d3a395cc1ab05a;hpb=19e044a2ce25aa395f9cf22f15c7378221636d21;p=jalview.git diff --git a/src/jalview/gui/FeatureRenderer.java b/src/jalview/gui/FeatureRenderer.java index 7be3e51..55c4323 100644 --- a/src/jalview/gui/FeatureRenderer.java +++ b/src/jalview/gui/FeatureRenderer.java @@ -66,6 +66,14 @@ import javax.swing.event.DocumentListener; public class FeatureRenderer extends jalview.renderer.seqfeatures.FeatureRenderer { + /* + * defaults for creating a new feature are the last created + * feature type and group + */ + static String lastFeatureAdded = "feature_1"; + + static String lastFeatureGroupAdded = "Jalview"; + Color resBoxColour; AlignmentPanel ap; @@ -87,16 +95,6 @@ public class FeatureRenderer extends } } - // // ///////////// - // // Feature Editing Dialog - // // Will be refactored in next release. - - static String lastFeatureAdded; - - static String lastFeatureGroupAdded; - - static String lastDescriptionAdded; - FeatureColourI oldcol, fcol; int featureIndex = 0; @@ -109,27 +107,25 @@ public class FeatureRenderer extends *
  • Create sequence feature from pop-up menu on selected region
  • *
  • Create features for pattern matches from Find
  • * + * If the supplied feature type is null, show (and update on confirm) the type + * and group of the last new feature created (with initial defaults of + * "feature_1" and "Jalview"). * * @param sequences * the sequences features are to be created on (if creating * features), or a single sequence (if amending features) * @param features * the current features at the position (if amending), or template - * new features with start/end position set (if creating) + * new feature(s) with start/end position set (if creating) * @param create * true to create features, false to amend or delete - * @param featureType - * the feature type to set on new features; if null, defaults to the - * type of the last new feature created if any, failing that to - * "feature_1" * @param alignPanel * @return */ protected boolean amendFeatures(final List sequences, final List features, boolean create, - final AlignmentPanel alignPanel, String featureType) + final AlignmentPanel alignPanel) { - featureIndex = 0; final JPanel mainPanel = new JPanel(new BorderLayout()); @@ -203,7 +199,7 @@ public class FeatureRenderer extends if (col != null) { fcol = new FeatureColour(col); - updateColourButton(mainPanel, colour, new FeatureColour(col)); + updateColourButton(mainPanel, colour, fcol); } } else @@ -344,54 +340,24 @@ public class FeatureRenderer extends mainPanel.add(descriptionPanel, BorderLayout.CENTER); } + /* + * default feature type and group to that of the first feature supplied, + * or to the last feature created if not supplied (null value) + */ SequenceFeature firstFeature = features.get(0); - if (featureType != null) - { - lastFeatureAdded = featureType; - } - else - { - if (lastFeatureAdded == null) - { - if (firstFeature.type != null) - { - lastFeatureAdded = firstFeature.type; - } - else - { - lastFeatureAdded = "feature_1"; - } - } - } - - if (lastFeatureGroupAdded == null) - { - if (firstFeature.featureGroup != null) - { - lastFeatureGroupAdded = firstFeature.featureGroup; - } - else - { - lastFeatureGroupAdded = "Jalview"; - } - } - - if (create) - { - name.setText(lastFeatureAdded); - group.setText(lastFeatureGroupAdded); - } - else - { - name.setText(firstFeature.getType()); - group.setText(firstFeature.getFeatureGroup()); - } + boolean useLastDefaults = firstFeature.getType() == null; + final String featureType = useLastDefaults ? lastFeatureAdded + : firstFeature.getType(); + final String featureGroup = useLastDefaults ? lastFeatureGroupAdded + : firstFeature.getFeatureGroup(); + name.setText(featureType); + group.setText(featureGroup); start.setValue(new Integer(firstFeature.getBegin())); end.setValue(new Integer(firstFeature.getEnd())); description.setText(firstFeature.getDescription()); updateColourButton(mainPanel, colour, - (oldcol = fcol = getFeatureStyle(name.getText()))); + (oldcol = fcol = getFeatureStyle(featureType))); Object[] options; if (!create) { @@ -420,15 +386,21 @@ public class FeatureRenderer extends FeaturesFile ffile = new FeaturesFile(); - if (reply == JvOptionPane.OK_OPTION && name.getText().length() > 0) + String enteredType = name.getText().trim(); + if (reply == JvOptionPane.OK_OPTION && enteredType.length() > 0) { - lastFeatureAdded = name.getText().trim(); - lastFeatureGroupAdded = group.getText().trim(); - lastDescriptionAdded = description.getText().replaceAll("\n", " "); - // TODO: determine if the null feature group is valid - if (lastFeatureGroupAdded.length() < 1) + /* + * update default values only if creating using default values + */ + if (useLastDefaults) { - lastFeatureGroupAdded = null; + lastFeatureAdded = enteredType; + lastFeatureGroupAdded = group.getText().trim(); + // TODO: determine if the null feature group is valid + if (lastFeatureGroupAdded.length() < 1) + { + lastFeatureGroupAdded = null; + } } } @@ -449,12 +421,14 @@ public class FeatureRenderer extends { /* * YES_OPTION corresponds to the Amend button + * need to refresh Feature Settings if type, group or colour changed */ - boolean typeOrGroupChanged = (!lastFeatureAdded.equals(sf.type) || !lastFeatureGroupAdded + sf.type = enteredType; + sf.featureGroup = group.getText().trim(); + sf.description = description.getText().replaceAll("\n", " "); + boolean refreshSettings = (!featureType.equals(sf.type) || !featureGroup .equals(sf.featureGroup)); - sf.type = lastFeatureAdded; - sf.featureGroup = lastFeatureGroupAdded; - sf.description = lastDescriptionAdded; + refreshSettings |= (fcol != oldcol); setColour(sf.type, fcol); @@ -467,7 +441,7 @@ public class FeatureRenderer extends } ffile.parseDescriptionHTML(sf, false); - if (typeOrGroupChanged) + if (refreshSettings) { featuresAdded(); } @@ -476,20 +450,20 @@ public class FeatureRenderer extends else // NEW FEATURES ADDED { - if (reply == JvOptionPane.OK_OPTION && lastFeatureAdded.length() > 0) + if (reply == JvOptionPane.OK_OPTION && enteredType.length() > 0) { for (int i = 0; i < sequences.size(); i++) { SequenceFeature sf = features.get(i); - sf.type = lastFeatureAdded; + sf.type = enteredType; // fix for JAL-1538 - always set feature group here - sf.featureGroup = lastFeatureGroupAdded; - sf.description = lastDescriptionAdded; + sf.featureGroup = group.getText().trim(); + sf.description = description.getText().replaceAll("\n", " "); sequences.get(i).addSequenceFeature(sf); ffile.parseDescriptionHTML(sf, false); } - setColour(lastFeatureAdded, fcol); + setColour(enteredType, fcol); featuresAdded();