JAL-4199 Fix cancel button not appearing on progress bar
[jalview.git] / src / jalview / gui / AlignViewport.java
index dca9047..04618af 100644 (file)
@@ -29,6 +29,7 @@ import jalview.api.FeatureSettingsModelI;
 import jalview.api.FeaturesDisplayedI;
 import jalview.api.ViewStyleI;
 import jalview.bin.Cache;
+import jalview.bin.Console;
 import jalview.commands.CommandI;
 import jalview.datamodel.AlignedCodonFrame;
 import jalview.datamodel.Alignment;
@@ -71,17 +72,14 @@ import javax.swing.JInternalFrame;
  * @author $author$
  * @version $Revision: 1.141 $
  */
-public class AlignViewport extends AlignmentViewport
+public class AlignViewport extends AlignmentViewport<AlignmentPanel>
         implements SelectionSource
 {
-
   public final static int NO_SPLIT = 0;
 
   public final static int SPLIT_FRAME = 1;
 
   public final static int NEW_WINDOW = 2;
-
-
   Font font;
 
   boolean cursorMode = false;
@@ -133,14 +131,14 @@ public class AlignViewport extends AlignmentViewport
     sequenceSetID = seqsetid;
     viewId = viewid;
     // TODO remove these once 2.4.VAMSAS release finished
-    if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
+    if (seqsetid != null)
     {
-      Cache.log.debug(
+      Console.debug(
               "Setting viewport's sequence set id : " + sequenceSetID);
     }
-    if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
+    if (viewId != null)
     {
-      Cache.log.debug("Setting viewport's view id : " + viewId);
+      Console.debug("Setting viewport's view id : " + viewId);
     }
     init();
 
@@ -171,7 +169,7 @@ public class AlignViewport extends AlignmentViewport
    * @param hiddenColumns
    * @param seqsetid
    *          (may be null)
-f   */
+   */
   public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns,
           String seqsetid)
   {
@@ -195,14 +193,14 @@ f   */
     sequenceSetID = seqsetid;
     viewId = viewid;
     // TODO remove these once 2.4.VAMSAS release finished
-    if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
+    if (seqsetid != null)
     {
-      Cache.log.debug(
+      Console.debug(
               "Setting viewport's sequence set id : " + sequenceSetID);
     }
-    if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
+    if (viewId != null)
     {
-      Cache.log.debug("Setting viewport's view id : " + viewId);
+      Console.debug("Setting viewport's view id : " + viewId);
     }
 
     if (hiddenColumns != null)
@@ -305,8 +303,8 @@ f   */
       schemeName = Cache.getDefault(Preferences.DEFAULT_COLOUR,
               ResidueColourScheme.NONE);
     }
-    ColourSchemeI colourScheme = ColourSchemeProperty
-            .getColourScheme(this, alignment, schemeName);
+    ColourSchemeI colourScheme = ColourSchemeProperty.getColourScheme(this,
+            alignment, schemeName);
     residueShading = new ResidueShader(colourScheme);
 
     if (colourScheme instanceof UserColourScheme)
@@ -322,6 +320,7 @@ f   */
     }
     setColourAppliesToAllGroups(true);
   }
+
   
   boolean validCharWidth;
 
@@ -460,32 +459,6 @@ f   */
   }
 
   /**
-   * Returns an iterator over the visible column regions of the alignment
-   * 
-   * @param selectedRegionOnly
-   *          true to just return the contigs intersecting with the selected
-   *          area
-   * @return
-   */
-  public Iterator<int[]> getViewAsVisibleContigs(boolean selectedRegionOnly)
-  {
-    int start = 0;
-    int end = 0;
-    if (selectedRegionOnly && selectionGroup != null)
-    {
-      start = selectionGroup.getStartRes();
-      end = selectionGroup.getEndRes() + 1;
-    }
-    else
-    {
-      end = alignment.getWidth();
-    }
-
-    return (alignment.getHiddenColumns().getVisContigsIterator(start,
-            end, false));
-  }
-
-  /**
    * get hash of undo and redo list for the alignment
    * 
    * @return long[] { historyList.hashCode, redoList.hashCode };
@@ -532,7 +505,7 @@ f   */
   }
 
   public boolean followSelection = true;
-  
+
   /**
    * @return true if view selection should always follow the selections
    *         broadcast by other selection sources
@@ -555,29 +528,7 @@ f   */
                     new HiddenColumns(getAlignment().getHiddenColumns()),
                     this);
   }
-
-  /**
-   * return the alignPanel containing the given viewport. Use this to get the
-   * components currently handling the given viewport.
-   * 
-   * @param av
-   * @return null or an alignPanel guaranteed to have non-null alignFrame
-   *         reference
-   */
-  public AlignmentPanel getAlignPanel()
-  {
-    AlignmentPanel[] aps = PaintRefresher
-            .getAssociatedPanels(this.getSequenceSetId());
-    for (int p = 0; aps != null && p < aps.length; p++)
-    {
-      if (aps[p].av == this)
-      {
-        return aps[p];
-      }
-    }
-    return null;
-  }
-
+  
   public boolean getSortByTree()
   {
     return sortByTree;
@@ -597,6 +548,7 @@ f   */
     return StructureSelectionManager
             .getStructureSelectionManager(Desktop.getInstance());
   }
+
   
   @Override
   public boolean isNormaliseSequenceLogo()
@@ -610,7 +562,6 @@ public void setNormaliseSequenceLogo(boolean state)
     normaliseSequenceLogo = state;
   }
 
-
   /**
    * 
    * @return true if alignment characters should be displayed
@@ -620,6 +571,7 @@ public void setNormaliseSequenceLogo(boolean state)
   {
     return validCharWidth;
   }
+
   
   private Hashtable<String, AutoCalcSetting> calcIdParams = new Hashtable<>();
 
@@ -637,7 +589,7 @@ public void setNormaliseSequenceLogo(boolean state)
     // calculator.getRegisteredWorkersOfClass(settings.getWorkerClass())
     if (needsUpdate)
     {
-      Cache.log.debug("trigger update for " + calcId);
+      Console.debug("trigger update for " + calcId);
     }
   }
 
@@ -764,7 +716,6 @@ public void setNormaliseSequenceLogo(boolean state)
 
     ranges.setEndSeq(getAlignment().getHeight() - 1); // BH 2019.04.18
     notifyAlignment();
-
   }
 
   /**
@@ -796,17 +747,17 @@ public void setNormaliseSequenceLogo(boolean state)
               @Override
               public void run()
               {
-                  addDataToAlignment(al);
+                addDataToAlignment(al);
               }
             }).setResponseHandler(SPLIT_FRAME, new Runnable()
             {
               @Override
               public void run()
               {
+                // Make a copy of this one to open it in a splitframe
                 openLinkedAlignmentAs(getAlignPanel().alignFrame,
                         new Alignment(getAlignment()), al, title,
                         SPLIT_FRAME);
-//                us.openLinkedAlignmentAs(al, title, true);
               }
             }).setResponseHandler(NEW_WINDOW, new Runnable()
             {
@@ -822,6 +773,7 @@ public void setNormaliseSequenceLogo(boolean state)
             JvOptionPane.DEFAULT_OPTION, JvOptionPane.PLAIN_MESSAGE, null,
             options, options[0]);
   }
+
   /**
    * Open a split frame or a new window
    * 
@@ -834,11 +786,11 @@ public void setNormaliseSequenceLogo(boolean state)
           AlignmentI thisAlignment, AlignmentI al, String title, int mode)
   {
     /*
-     * Identify protein and dna alignments. Make a copy of this one if opening
-     * in a new split pane.
+     * Identify protein and dna alignments. 
      */
     AlignmentI protein = al.isNucleotide() ? thisAlignment : al;
     AlignmentI cdna = al.isNucleotide() ? al : thisAlignment;
+
     /*
      * Map sequences. At least one should get mapped as we have already passed
      * the test for 'mappability'. Any mappings made will be added to the
@@ -874,8 +826,7 @@ public void setNormaliseSequenceLogo(boolean state)
 
     try
     {
-      newAlignFrame.setMaximum(
-              jalview.bin.Cache.getDefault("SHOW_FULLSCREEN", false));
+      newAlignFrame.setMaximum(Cache.getDefault("SHOW_FULLSCREEN", false));
     } catch (java.beans.PropertyVetoException ex)
     {
     }
@@ -909,7 +860,6 @@ public void setNormaliseSequenceLogo(boolean state)
             AlignFrame.DEFAULT_HEIGHT);
     copyMe.setTitle(thisFrame.getTitle());
 
-
     AlignmentI al = newAlignFrame.viewport.getAlignment();
     final AlignFrame proteinFrame = al.isNucleotide() ? copyMe
             : newAlignFrame;
@@ -1042,10 +992,10 @@ public void setNormaliseSequenceLogo(boolean state)
   }
 
   /**
-   * Applies the supplied feature settings descriptor to currently known features.
-   * This supports an 'initial configuration' of feature colouring based on a
-   * preset or user favourite. This may then be modified in the usual way using
-   * the Feature Settings dialogue.
+   * Applies the supplied feature settings descriptor to currently known
+   * features. This supports an 'initial configuration' of feature colouring
+   * based on a preset or user favourite. This may then be modified in the usual
+   * way using the Feature Settings dialogue.
    * 
    * @param featureSettings
    */
@@ -1058,8 +1008,8 @@ public void setNormaliseSequenceLogo(boolean state)
   /**
    * when mergeOnly is set, then group and feature visibility or feature colours
    * are not modified for features and groups already known to the feature
-   * renderer. Feature ordering is always adjusted, and transparency is always set
-   * regardless.
+   * renderer. Feature ordering is always adjusted, and transparency is always
+   * set regardless.
    * 
    * @param featureSettings
    * @param mergeOnly
@@ -1071,12 +1021,12 @@ public void setNormaliseSequenceLogo(boolean state)
     {
       return;
     }
-    
     FeatureRenderer fr = getAlignPanel().getSeqPanel().seqCanvas
             .getFeatureRenderer();
     List<String> origRenderOrder = new ArrayList(),
             origGroups = new ArrayList();
-    // preserve original render order - allows differentiation between user configured colours and autogenerated ones
+    // preserve original render order - allows differentiation between user
+    // configured colours and autogenerated ones
     origRenderOrder.addAll(fr.getRenderOrder());
     origGroups.addAll(fr.getFeatureGroups());
 
@@ -1102,7 +1052,6 @@ public void setNormaliseSequenceLogo(boolean state)
               .getFeatureColour(type);
       FeatureMatcherSetI preferredFilters = featureSettings
               .getFeatureFilters(type);
-
       FeatureColourI origColour = fr.getFeatureStyle(type);
       if (!mergeOnly || (!origRenderOrder.contains(type)
               || origColour == null
@@ -1111,7 +1060,8 @@ public void setNormaliseSequenceLogo(boolean state)
                       && origColour.getColour().equals(
                               ColorUtils.createColourFromName(type)))))
       {
-        // if we are merging, only update if there wasn't already a colour defined for
+        // if we are merging, only update if there wasn't already a colour
+        // defined for
         // this type
         if (preferredColour != null)
         {
@@ -1126,6 +1076,10 @@ public void setNormaliseSequenceLogo(boolean state)
         {
           displayed.setVisible(type);
         }
+        else if (featureSettings.isFeatureHidden(type))
+        {
+          displayed.setHidden(type);
+        }
       }
     }
 
@@ -1136,7 +1090,8 @@ public void setNormaliseSequenceLogo(boolean state)
     {
       if (!mergeOnly || !origGroups.contains(group))
       {
-        // when merging, display groups only if the aren't already marked as not visible
+        // when merging, display groups only if the aren't already marked as not
+        // visible
         fr.setGroupVisibility(group,
                 featureSettings.isGroupDisplayed(group));
       }
@@ -1154,6 +1109,8 @@ public void setNormaliseSequenceLogo(boolean state)
       fr.orderFeatures(featureSettings);
     }
     fr.setTransparency(featureSettings.getTransparency());
+
+    fr.notifyFeaturesChanged();
   }
 
   public String getViewName()
@@ -1165,5 +1122,4 @@ public void setNormaliseSequenceLogo(boolean state)
   {
     this.viewName = viewName;
   }
-
 }