JAL-3485 constants for CDNA_CONSENSUS, STRUCTURE_CONSENSUS added
[jalview.git] / src / jalview / viewmodel / AlignmentViewport.java
index 850c68e..268633f 100644 (file)
@@ -81,6 +81,29 @@ import java.util.Map;
 public abstract class AlignmentViewport
         implements AlignViewportI, CommandListener, VamsasSource
 {
+  /**
+   * An enum for auto-calculated annotations, with constants for the
+   * annotation's label, and the key for the property to show it or not
+   */
+  public enum AutoAnnotation
+  {
+    CONSERVATION("Conservation", "SHOW_CONSERVATION"),
+    QUALITY("Quality", "SHOW_QUALITY"),
+    CONSENSUS("Consensus", "SHOW_IDENTITY"),
+    CDNA_CONSENSUS("cDNA Consensus", null),
+    STRUCTURE_CONSENSUS("StrucConsensus", null),
+    OCCUPANCY("Occupancy", "SHOW_OCCUPANCY");
+    
+    public final String label;
+    public final String preferenceKey;
+    
+    private AutoAnnotation(String lbl, String prefKey)
+    {
+      this.label = lbl;
+      this.preferenceKey = prefKey;
+    }
+  }
+
   protected ViewportRanges ranges;
 
   protected ViewStyleI viewStyle = new ViewStyle();
@@ -662,7 +685,8 @@ public abstract class AlignmentViewport
          * retain any colour thresholds per group while
          * changing choice of colour scheme (JAL-2386)
          */
-        sg.setColourScheme(cs.getInstance(this, sg));
+        sg.setColourScheme(
+                cs == null ? null : cs.getInstance(this, sg));
         if (cs != null)
         {
           sg.getGroupColourScheme().alignmentChanged(sg,
@@ -1937,7 +1961,7 @@ public abstract class AlignmentViewport
       {
         initRNAStructure();
       }
-      consensus = new AlignmentAnnotation("Consensus",
+      consensus = new AlignmentAnnotation(AutoAnnotation.CONSENSUS.label,
               MessageManager.getString("label.consensus_descr"),
               new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH);
       initConsensus(consensus);
@@ -1974,7 +1998,8 @@ public abstract class AlignmentViewport
         }
         if (doConsensus)
         {
-          complementConsensus = new AlignmentAnnotation("cDNA Consensus",
+          complementConsensus = new AlignmentAnnotation(
+                  AutoAnnotation.CDNA_CONSENSUS.label,
                   MessageManager
                           .getString("label.complement_consensus_descr"),
                   new Annotation[1], 0f, 100f,
@@ -1998,13 +2023,11 @@ public abstract class AlignmentViewport
     }
   }
 
-  // these should be extracted from the view model - style and settings for
-  // derived annotation
   private void initGapCounts()
   {
     if (showOccupancy)
     {
-      gapcounts = new AlignmentAnnotation("Occupancy",
+      gapcounts = new AlignmentAnnotation(AutoAnnotation.OCCUPANCY.label,
               MessageManager.getString("label.occupancy_descr"),
               new Annotation[1], 0f, alignment.getHeight(),
               AlignmentAnnotation.BAR_GRAPH);
@@ -2023,7 +2046,8 @@ public abstract class AlignmentViewport
     {
       if (conservation == null)
       {
-        conservation = new AlignmentAnnotation("Conservation",
+        conservation = new AlignmentAnnotation(
+                AutoAnnotation.CONSERVATION.label,
                 MessageManager.formatMessage("label.conservation_descr",
                         getConsPercGaps()),
                 new Annotation[1], 0f, 11f, AlignmentAnnotation.BAR_GRAPH);
@@ -2040,7 +2064,7 @@ public abstract class AlignmentViewport
     {
       if (quality == null)
       {
-        quality = new AlignmentAnnotation("Quality",
+        quality = new AlignmentAnnotation(AutoAnnotation.QUALITY.label,
                 MessageManager.getString("label.quality_descr"),
                 new Annotation[1], 0f, 11f, AlignmentAnnotation.BAR_GRAPH);
         quality.hasText = true;
@@ -2054,7 +2078,8 @@ public abstract class AlignmentViewport
   {
     if (alignment.hasRNAStructure() && strucConsensus == null)
     {
-      strucConsensus = new AlignmentAnnotation("StrucConsensus",
+      strucConsensus = new AlignmentAnnotation(
+              AutoAnnotation.STRUCTURE_CONSENSUS.label,
               MessageManager.getString("label.strucconsensus_descr"),
               new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH);
       strucConsensus.hasText = true;
@@ -2675,17 +2700,20 @@ public abstract class AlignmentViewport
     return sortAnnotationsBy;
   }
 
+  @Override
   public void setSortAnnotationsBy(
           SequenceAnnotationOrder sortAnnotationsBy)
   {
     this.sortAnnotationsBy = sortAnnotationsBy;
   }
 
+  @Override
   public boolean isShowAutocalculatedAbove()
   {
     return showAutocalculatedAbove;
   }
 
+  @Override
   public void setShowAutocalculatedAbove(boolean showAutocalculatedAbove)
   {
     this.showAutocalculatedAbove = showAutocalculatedAbove;