JAL-3719 Format->Colour Gaps option uses Overview gap colour logic pulled up to align...
[jalview.git] / src / jalview / api / ViewStyleI.java
index 2b554ea..458c8b8 100644 (file)
@@ -24,6 +24,13 @@ import java.awt.Color;
 
 public interface ViewStyleI
 {
+  void setShowComplementFeatures(boolean b);
+
+  boolean isShowComplementFeatures();
+
+  void setShowComplementFeaturesOnTop(boolean b);
+
+  boolean isShowComplementFeaturesOnTop();
 
   void setColourAppliesToAllGroups(boolean b);
 
@@ -271,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();
 }