JAL-4290 Set structureSelectionManager settings more generically and when no desktop...
authorBen Soares <b.soares@dundee.ac.uk>
Fri, 15 Dec 2023 15:18:23 +0000 (15:18 +0000)
committerBen Soares <b.soares@dundee.ac.uk>
Fri, 15 Dec 2023 15:18:23 +0000 (15:18 +0000)
src/jalview/bin/Commands.java
src/jalview/gui/Desktop.java
src/jalview/gui/StructureChooser.java
src/jalview/structure/StructureSelectionManager.java

index dbc5e23..ece573d 100644 (file)
@@ -908,13 +908,7 @@ public class Commands
           boolean showSSAnnotations, boolean showAnnotations,
           boolean hideTFrows)
   {
-    Console.debug(
-            "##### Setting showSSAnnotations to " + showSSAnnotations);
-    Console.debug("##### Setting showAnnotations to " + showAnnotations);
-    Console.debug("##### Setting hideTFrows to " + hideTFrows);
-    af.setAnnotationsVisibility(showSSAnnotations, true, false);
-
-    af.setAnnotationsVisibility(showAnnotations, false, true);
+    af.setAnnotationsVisibility(true, showSSAnnotations, showAnnotations);
 
     // show temperature factor annotations?
     if (hideTFrows)
index 35c7818..bbd4dae 100644 (file)
@@ -680,22 +680,7 @@ public class Desktop extends jalview.jbgui.GDesktop
     // configure services
     StructureSelectionManager ssm = StructureSelectionManager
             .getStructureSelectionManager(this);
-    if (Cache.getDefault(Preferences.ADD_SS_ANN, true))
-    {
-      ssm.setAddTempFacAnnot(
-              Cache.getDefault(Preferences.ADD_TEMPFACT_ANN, true));
-      ssm.setProcessSecondaryStructure(
-              Cache.getDefault(Preferences.STRUCT_FROM_PDB, true));
-      // JAL-3915 - RNAView is no longer an option so this has no effect
-      ssm.setSecStructServices(
-              Cache.getDefault(Preferences.USE_RNAVIEW, false));
-    }
-    else
-    {
-      ssm.setAddTempFacAnnot(false);
-      ssm.setProcessSecondaryStructure(false);
-      ssm.setSecStructServices(false);
-    }
+    StructureSelectionManager.doConfigureStructurePrefs(ssm);
   }
 
   public void checkForNews()
index 666ff74..6132908 100644 (file)
@@ -1826,6 +1826,7 @@ public class StructureChooser extends GStructureChooser
     if (ssm == null)
     {
       ssm = ap.getStructureSelectionManager();
+      StructureSelectionManager.doConfigureStructurePrefs(ssm);
     }
 
     PDBEntry fileEntry = new AssociatePdbFileWithSeq().associatePdbWithSeq(
index ec3e0a0..5865b7f 100644 (file)
@@ -34,6 +34,7 @@ import java.util.Vector;
 
 import jalview.analysis.AlignSeq;
 import jalview.api.StructureSelectionManagerProvider;
+import jalview.bin.Cache;
 import jalview.bin.Console;
 import jalview.commands.CommandI;
 import jalview.commands.EditCommand;
@@ -50,6 +51,7 @@ import jalview.datamodel.SearchResultsI;
 import jalview.datamodel.SequenceI;
 import jalview.ext.jmol.JmolParser;
 import jalview.gui.IProgressIndicator;
+import jalview.gui.Preferences;
 import jalview.io.AppletFormatAdapter;
 import jalview.io.DataSourceType;
 import jalview.io.StructureFile;
@@ -1665,4 +1667,25 @@ public class StructureSelectionManager
     return pdbIdFileName;
   }
 
+  public static void doConfigureStructurePrefs(
+          StructureSelectionManager ssm)
+  {
+    if (Cache.getDefault(Preferences.ADD_SS_ANN, true))
+    {
+      ssm.setAddTempFacAnnot(
+              Cache.getDefault(Preferences.ADD_TEMPFACT_ANN, true));
+      ssm.setProcessSecondaryStructure(
+              Cache.getDefault(Preferences.STRUCT_FROM_PDB, true));
+      // JAL-3915 - RNAView is no longer an option so this has no effect
+      ssm.setSecStructServices(
+              Cache.getDefault(Preferences.USE_RNAVIEW, false));
+    }
+    else
+    {
+      ssm.setAddTempFacAnnot(false);
+      ssm.setProcessSecondaryStructure(false);
+      ssm.setSecStructServices(false);
+    }
+  }
+
 }