JAL-3364 align split frame sequence panels with wrapped view scale left
[jalview.git] / src / jalview / gui / AlignmentPanel.java
index 15bcfc1..716c237 100644 (file)
@@ -565,9 +565,6 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
   /**
    * update alignment layout for viewport settings
-   * 
-   * @param wrap
-   *          DOCUMENT ME!
    */
   public void updateLayout()
   {
@@ -614,6 +611,13 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
     idSpaceFillerPanel1.setVisible(!wrap);
 
+    AlignViewportI complement = av.getCodingComplement();
+    if (complement != null)
+    {
+      SplitFrame splitFrame = (SplitFrame) alignFrame
+              .getSplitViewContainer();
+      splitFrame.adjustLayout();
+    }
     repaint();
   }
 
@@ -970,7 +974,8 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
     if (av.isShowAnnotation())
     {
-      pagesHigh += getAnnotationPanel().adjustPanelHeight() + 3;
+      pagesHigh += getAnnotationPanel().adjustPanelHeight()
+              + SeqCanvas.SEQS_ANNOTATION_GAP;
     }
 
     pagesHigh /= pageHeight;
@@ -979,7 +984,7 @@ public class AlignmentPanel extends GAlignmentPanel implements
     {
       return Printable.NO_SUCH_PAGE;
     }
-    final int alignmentDrawnHeight = (endSeq - startSeq) * charHeight + 3;
+    final int alignmentDrawnHeight = (endSeq - startSeq + 1) * charHeight;
 
     /*
      * draw the Scale at horizontal offset, then reset to top left (0, 0)
@@ -1020,24 +1025,33 @@ public class AlignmentPanel extends GAlignmentPanel implements
        * then reset to (0, scale height)
        */
       int offset = getAlabels().getScrollOffset();
+      int yShift = alignmentDrawnHeight + SeqCanvas.SEQS_ANNOTATION_GAP;
       idGraphics.translate(0, -offset);
-      idGraphics.translate(0, alignmentDrawnHeight);
+      idGraphics.translate(0, yShift);
       getAlabels().drawComponent(idGraphics, idWidth);
-      idGraphics.translate(0, -alignmentDrawnHeight);
+      idGraphics.translate(0, -yShift);
 
       /*
        * draw the annotations starting at 
        * (idOffset, alignmentHeight) from (0, scaleHeight)
        */
       alignmentGraphics.translate(alignmentGraphicsOffset,
-              alignmentDrawnHeight);
+              yShift);
       getAnnotationPanel().renderer.drawComponent(getAnnotationPanel(), av,
               alignmentGraphics, -1, startRes, endRes + 1);
 
       /*
-       * reset to left margin
+       * reset to left margin below annotation
+       */
+      int justDrawn = getAnnotationPanel().renderer.getLastDrawnHeight();
+      alignmentGraphics.translate(-alignmentGraphicsOffset, justDrawn);
+    }
+    else
+    {
+      /*
+       * shift graphics to position after drawn sequences
        */
-      alignmentGraphics.translate(-alignmentGraphicsOffset, 0);
+      alignmentGraphics.translate(0, alignmentDrawnHeight);
     }
 
     return Printable.PAGE_EXISTS;
@@ -1067,6 +1081,8 @@ public class AlignmentPanel extends GAlignmentPanel implements
   public int printWrappedAlignment(int pageWidth, int pageHeight, int pageNumber,
           Graphics g, boolean clipToPage)
   {
+    getSeqPanel().seqCanvas.calculateWrappedGeometry(getWidth(),
+            getHeight());
     int annotationHeight = 0;
     if (av.isShowAnnotation())
     {
@@ -1088,6 +1104,7 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
     int resWidth = getSeqPanel().seqCanvas
             .getWrappedCanvasWidth(pageWidth - idWidth);
+    av.getRanges().setViewportStartAndWidth(0, resWidth);
 
     int totalHeight = cHeight * (maxwidth / resWidth + 1);
 
@@ -1099,8 +1116,8 @@ public class AlignmentPanel extends GAlignmentPanel implements
     /*
      * method: print the whole wrapped alignment, but with a clip region that
      * is restricted to the requested page; this supports selective print of 
-     * single  pages or ranges, (at the cost of some repeated processing in 
-     * the 'normal' case, when all pages are printed)
+     * single pages or ranges, (at the cost of repeated processing in the 
+     * 'normal' case, when all pages are printed)
      */
     g.translate(0, -pageNumber * pageHeight);
 
@@ -1192,21 +1209,42 @@ public class AlignmentPanel extends GAlignmentPanel implements
                 { type.getLabel() }), pSessionId);
       }
     }
+
+    /*
+    * cache preferences in case we need to fudge them for export of
+    * split frame with 'protein scaled to codons' and 'auto id width'
+    */
+
+    final String autoIdWidth = Cache.getProperty("FIGURE_AUTOIDWIDTH");
+    final Integer fixedIdWidth = Cache
+            .getIntegerProperty("FIGURE_FIXEDIDWIDTH");
+
     try
     {
       /*
        * if exporting a split frame image, the graphics object has 
        * width: maximum of the top and bottom image widths
        * height: sum of the top and bottom image heights
+       * if 'protein scaled to codons' and 'auto id width', fudge
+       * to a fixed width (and restore preferences afterwards)
        */
-      AlignmentPanel comp = null;
+      AlignmentPanel complement = null;
       AlignmentDimension dim1 = getAlignmentDimension();
       AlignmentDimension dim2 = new AlignmentDimension(0, 0);
+
       if (forSplitFrame)
       {
-        comp = ((AlignViewport) av.getCodingComplement())
+        complement = ((AlignViewport) av.getCodingComplement())
                 .getAlignPanel();
-        dim2 = comp.getAlignmentDimension();
+        dim2 = complement.getAlignmentDimension();
+        if (Boolean.valueOf(autoIdWidth) && av.isScaleProteinAsCdna())
+        {
+          int w1 = this.getVisibleIdWidth(false);
+          int w2 = complement.getVisibleIdWidth(false);
+          Cache.setProperty("FIGURE_AUTOIDWIDTH", Boolean.FALSE.toString());
+          Cache.setProperty("FIGURE_FIXEDIDWIDTH",
+                  String.valueOf(Math.max(w1, w2)));
+        }
       }
       final int graphicsHeight = dim1.height + dim2.height
               + borderBottomOffset;
@@ -1241,24 +1279,16 @@ public class AlignmentPanel extends GAlignmentPanel implements
         /*
          * append coding complement image
          */
-        boolean test = true;
-        if (test)
-        {
-          /*
-           * debug location of next write to Graphics
-           */
-          graphics.setColor(Color.red);
-          graphics.drawString("Hello world", 0, 0);
-          graphics.setColor(Color.black);
-        }
+        // to debug location of next write to Graphics:
+        // graphics.drawString("Hello world", 0, 0);
         if (av.getCodingComplement().getWrapAlignment())
         {
-          comp.printWrappedAlignment(dim2.width,
+          complement.printWrappedAlignment(dim2.width,
                   dim2.height + borderBottomOffset, 0, graphics, false);
         }
         else
         {
-          comp.printUnwrapped(dim2.width, dim2.height, 0, graphics,
+          complement.printUnwrapped(dim2.width, dim2.height, 0, graphics,
                   graphics);
         }
       }
@@ -1274,6 +1304,28 @@ public class AlignmentPanel extends GAlignmentPanel implements
     } catch (Exception ex)
     {
       ex.printStackTrace();
+    } finally
+    {
+      /*
+       * restore preference settings in case they were fudged
+       */
+      if (autoIdWidth == null)
+      {
+        Cache.removeProperty("FIGURE_AUTOIDWIDTH");
+      }
+      else
+      {
+        Cache.setProperty("FIGURE_AUTOIDWIDTH", autoIdWidth);
+      }
+      if (fixedIdWidth == null)
+      {
+        Cache.removeProperty("FIGURE_FIXEDIDWIDTH");
+      }
+      else
+      {
+        Cache.setProperty("FIGURE_FIXEDIDWIDTH",
+                String.valueOf(fixedIdWidth));
+      }
     }
   }
 
@@ -1283,7 +1335,7 @@ public class AlignmentPanel extends GAlignmentPanel implements
    * <ul>
    * <li>sequence ids</li>
    * <li>scale above, left or right if shown</li>
-   * <li>sequences</li>
+   * <li>sequence rows, plus one spacer line</li>
    * <li>annotations, if shown</li>
    * </ul>
    * The alignment may be in wrapped or unwrapped mode.
@@ -1491,6 +1543,12 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
   }
 
+  /**
+   * Answers the height of the entire alignment in pixels, assuming it is in
+   * wrapped mode
+   * 
+   * @return
+   */
   int getWrappedHeight()
   {
     int seqPanelWidth = getSeqPanel().seqCanvas.getWidth();
@@ -1515,6 +1573,7 @@ public class AlignmentPanel extends GAlignmentPanel implements
     int annotationHeight = 0;
     if (av.isShowAnnotation())
     {
+      hgap += SeqCanvas.SEQS_ANNOTATION_GAP;
       annotationHeight = getAnnotationPanel().adjustPanelHeight();
     }