JAL-3719 Format->Colour Gaps option uses Overview gap colour logic pulled up to align...
[jalview.git] / src / jalview / api / ViewStyleI.java
index 978ce61..458c8b8 100644 (file)
@@ -28,6 +28,10 @@ public interface ViewStyleI
 
   boolean isShowComplementFeatures();
 
+  void setShowComplementFeaturesOnTop(boolean b);
+
+  boolean isShowComplementFeaturesOnTop();
+
   void setColourAppliesToAllGroups(boolean b);
 
   boolean getColourAppliesToAllGroups();
@@ -274,4 +278,16 @@ public interface ViewStyleI
    * @return
    */
   void setProteinFontAsCdna(boolean b);
+
+  /**
+   * Set flag indicating that gaps should be coloured with the overview gap
+   * colour in the alignment view
+   */
+  void setColourGaps(boolean b);
+
+  /**
+   * @return true if gaps should be coloured according to the overview gap
+   *         colour
+   */
+  boolean getColourGaps();
 }