JAl-2811 Working for wrapped panels too
[jalview.git] / src / jalview / gui / SeqCanvas.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.gui;
22
23 import jalview.datamodel.AlignmentI;
24 import jalview.datamodel.HiddenColumns;
25 import jalview.datamodel.SearchResultsI;
26 import jalview.datamodel.SequenceGroup;
27 import jalview.datamodel.SequenceI;
28 import jalview.renderer.ScaleRenderer;
29 import jalview.renderer.ScaleRenderer.ScaleMark;
30 import jalview.util.Comparison;
31 import jalview.viewmodel.ViewportListenerI;
32 import jalview.viewmodel.ViewportRanges;
33
34 import java.awt.AlphaComposite;
35 import java.awt.BasicStroke;
36 import java.awt.BorderLayout;
37 import java.awt.Color;
38 import java.awt.FontMetrics;
39 import java.awt.Graphics;
40 import java.awt.Graphics2D;
41 import java.awt.RenderingHints;
42 import java.awt.Shape;
43 import java.awt.image.BufferedImage;
44 import java.beans.PropertyChangeEvent;
45 import java.util.List;
46
47 import javax.swing.JComponent;
48
49 /**
50  * The Swing component on which the alignment sequences, and annotations (if
51  * shown), are drawn. This includes scales above, left and right (if shown) in
52  * Wrapped mode, but not the scale above in Unwrapped mode.
53  * 
54  */
55 public class SeqCanvas extends JComponent implements ViewportListenerI
56 {
57   private static final String ZEROS = "0000000000";
58
59   final FeatureRenderer fr;
60
61   BufferedImage img;
62
63   AlignViewport av;
64
65   int cursorX = 0;
66
67   int cursorY = 0;
68
69   private final SequenceRenderer seqRdr;
70
71   private boolean fastPaint = false;
72
73   private boolean fastpainting = false;
74
75   private AnnotationPanel annotations;
76
77   /*
78    * measurements for drawing a wrapped alignment
79    */
80   private int labelWidthEast; // label right width in pixels if shown
81
82   private int labelWidthWest; // label left width in pixels if shown
83
84   private int wrappedSpaceAboveAlignment; // gap between widths
85
86   private int wrappedRepeatHeightPx; // height in pixels of wrapped width
87
88   private int wrappedVisibleWidths; // number of wrapped widths displayed
89
90   private Graphics2D gg;
91
92   /**
93    * Creates a new SeqCanvas object.
94    * 
95    * @param ap
96    */
97   public SeqCanvas(AlignmentPanel ap)
98   {
99     this.av = ap.av;
100     fr = new FeatureRenderer(ap);
101     seqRdr = new SequenceRenderer(av);
102     setLayout(new BorderLayout());
103     PaintRefresher.Register(this, av.getSequenceSetId());
104     setBackground(Color.white);
105
106     av.getRanges().addPropertyChangeListener(this);
107   }
108
109   public SequenceRenderer getSequenceRenderer()
110   {
111     return seqRdr;
112   }
113
114   public FeatureRenderer getFeatureRenderer()
115   {
116     return fr;
117   }
118
119   /**
120    * Draws the scale above a region of a wrapped alignment, consisting of a
121    * column number every major interval (10 columns).
122    * 
123    * @param g
124    *          the graphics context to draw on, positioned at the start (bottom
125    *          left) of the line on which to draw any scale marks
126    * @param startx
127    *          start alignment column (0..)
128    * @param endx
129    *          end alignment column (0..)
130    * @param ypos
131    *          y offset to draw at
132    */
133   private void drawNorthScale(Graphics g, int startx, int endx, int ypos)
134   {
135     int charHeight = av.getCharHeight();
136     int charWidth = av.getCharWidth();
137
138     /*
139      * white fill the scale space (for the fastPaint case)
140      */
141     g.setColor(Color.white);
142     g.fillRect(0, ypos - charHeight - charHeight / 2, getWidth(),
143             charHeight * 3 / 2 + 2);
144     g.setColor(Color.black);
145
146     List<ScaleMark> marks = new ScaleRenderer().calculateMarks(av, startx,
147             endx);
148     for (ScaleMark mark : marks)
149     {
150       int mpos = mark.column; // (i - startx - 1)
151       if (mpos < 0)
152       {
153         continue;
154       }
155       String mstring = mark.text;
156
157       if (mark.major)
158       {
159         if (mstring != null)
160         {
161           g.drawString(mstring, mpos * charWidth, ypos - (charHeight / 2));
162         }
163
164         /*
165          * draw a tick mark below the column number, centred on the column;
166          * height of tick mark is 4 pixels less than half a character
167          */
168         int xpos = (mpos * charWidth) + (charWidth / 2);
169         g.drawLine(xpos, (ypos + 2) - (charHeight / 2), xpos, ypos - 2);
170       }
171     }
172   }
173
174   /**
175    * Draw the scale to the left or right of a wrapped alignment
176    * 
177    * @param g
178    *          graphics context, positioned at the start of the scale to be drawn
179    * @param startx
180    *          first column of wrapped width (0.. excluding any hidden columns)
181    * @param endx
182    *          last column of wrapped width (0.. excluding any hidden columns)
183    * @param ypos
184    *          vertical offset at which to begin the scale
185    * @param left
186    *          if true, scale is left of residues, if false, scale is right
187    */
188   void drawVerticalScale(Graphics g, final int startx, final int endx,
189           final int ypos, final boolean left)
190   {
191     int charHeight = av.getCharHeight();
192     int charWidth = av.getCharWidth();
193
194     int yPos = ypos + charHeight;
195     int startX = startx;
196     int endX = endx;
197
198     if (av.hasHiddenColumns())
199     {
200       HiddenColumns hiddenColumns = av.getAlignment().getHiddenColumns();
201       startX = hiddenColumns.adjustForHiddenColumns(startx);
202       endX = hiddenColumns.adjustForHiddenColumns(endx);
203     }
204     FontMetrics fm = getFontMetrics(av.getFont());
205
206     for (int i = 0; i < av.getAlignment().getHeight(); i++)
207     {
208       SequenceI seq = av.getAlignment().getSequenceAt(i);
209
210       /*
211        * find sequence position of first non-gapped position -
212        * to the right if scale left, to the left if scale right
213        */
214       int index = left ? startX : endX;
215       int value = -1;
216       while (index >= startX && index <= endX)
217       {
218         if (!Comparison.isGap(seq.getCharAt(index)))
219         {
220           value = seq.findPosition(index);
221           break;
222         }
223         if (left)
224         {
225           index++;
226         }
227         else
228         {
229           index--;
230         }
231       }
232
233       /*
234        * white fill the space for the scale
235        */
236       g.setColor(Color.white);
237       int y = (yPos + (i * charHeight)) - (charHeight / 5);
238       // fillRect origin is top left of rectangle
239       g.fillRect(0, y - charHeight, left ? labelWidthWest : labelWidthEast,
240               charHeight + 1);
241
242       if (value != -1)
243       {
244         /*
245          * draw scale value, right justified within its width less half a
246          * character width padding on the right
247          */
248         int labelSpace = left ? labelWidthWest : labelWidthEast;
249         labelSpace -= charWidth / 2; // leave space to the right
250         String valueAsString = String.valueOf(value);
251         int labelLength = fm.stringWidth(valueAsString);
252         int xOffset = labelSpace - labelLength;
253         g.setColor(Color.black);
254         g.drawString(valueAsString, xOffset, y);
255       }
256     }
257   }
258
259   /**
260    * Does a fast paint of an alignment in response to a scroll. Most of the
261    * visible region is simply copied and shifted, and then any newly visible
262    * columns or rows are drawn. The scroll may be horizontal or vertical, but
263    * not both at once. Scrolling may be the result of
264    * <ul>
265    * <li>dragging a scroll bar</li>
266    * <li>clicking in the scroll bar</li>
267    * <li>scrolling by trackpad, middle mouse button, or other device</li>
268    * <li>by moving the box in the Overview window</li>
269    * <li>programmatically to make a highlighted position visible</li>
270    * </ul>
271    * 
272    * @param horizontal
273    *          columns to shift right (positive) or left (negative)
274    * @param vertical
275    *          rows to shift down (positive) or up (negative)
276    */
277   public void fastPaint(int horizontal, int vertical)
278   {
279     if (fastpainting || gg == null || img == null)
280     {
281       return;
282     }
283     fastpainting = true;
284     fastPaint = true;
285
286     try
287     {
288       int charHeight = av.getCharHeight();
289       int charWidth = av.getCharWidth();
290     
291       ViewportRanges ranges = av.getRanges();
292       int startRes = ranges.getStartRes();
293       int endRes = ranges.getEndRes();
294       int startSeq = ranges.getStartSeq();
295       int endSeq = ranges.getEndSeq();
296       int transX = 0;
297       int transY = 0;
298
299     gg.copyArea(horizontal * charWidth, vertical * charHeight,
300             img.getWidth(), img.getHeight(), -horizontal * charWidth,
301             -vertical * charHeight);
302
303     if (horizontal > 0) // scrollbar pulled right, image to the left
304     {
305       transX = (endRes - startRes - horizontal) * charWidth;
306       startRes = endRes - horizontal;
307     }
308     else if (horizontal < 0)
309     {
310       endRes = startRes - horizontal;
311     }
312     else if (vertical > 0) // scroll down
313     {
314       startSeq = endSeq - vertical;
315
316       if (startSeq < ranges.getStartSeq())
317       { // ie scrolling too fast, more than a page at a time
318         startSeq = ranges.getStartSeq();
319       }
320       else
321       {
322         transY = img.getHeight() - ((vertical + 1) * charHeight);
323       }
324     }
325     else if (vertical < 0)
326     {
327       endSeq = startSeq - vertical;
328
329       if (endSeq > ranges.getEndSeq())
330       {
331         endSeq = ranges.getEndSeq();
332       }
333     }
334
335     gg.translate(transX, transY);
336     drawPanel(gg, startRes, endRes, startSeq, endSeq, 0);
337     gg.translate(-transX, -transY);
338
339     repaint();
340     } finally
341     {
342       fastpainting = false;
343     }
344   }
345
346   @Override
347   public void paintComponent(Graphics g)
348   {
349     super.paintComponent(g);    
350     
351     int charHeight = av.getCharHeight();
352     int charWidth = av.getCharWidth();
353
354     ViewportRanges ranges = av.getRanges();
355
356     int width = getWidth();
357     int height = getHeight();
358
359     width -= (width % charWidth);
360     height -= (height % charHeight);
361
362     // selectImage is the selection group outline image
363     BufferedImage selectImage = drawSelectionGroup(
364             ranges.getStartRes(), ranges.getEndRes(),
365             ranges.getStartSeq(), ranges.getEndSeq());
366
367     BufferedImage cursorImage = drawCursor(ranges.getStartRes(),
368             ranges.getEndRes(), ranges.getStartSeq(), ranges.getEndSeq());
369
370     if ((img != null) && (fastPaint
371             || (getVisibleRect().width != g.getClipBounds().width)
372             || (getVisibleRect().height != g.getClipBounds().height)))
373     {
374       BufferedImage lcimg = buildLocalImage(selectImage, cursorImage);
375       g.drawImage(lcimg, 0, 0, this);
376       fastPaint = false;
377     }
378     else if ((width > 0) && (height > 0))
379     {
380       // img is a cached version of the last view we drew, if any
381       // if we have no img or the size has changed, make a new one
382       if (img == null || width != img.getWidth()
383               || height != img.getHeight())
384       {
385         img = setupImage();
386         if (img == null)
387         {
388           return;
389         }
390         gg = (Graphics2D) img.getGraphics();
391         gg.setFont(av.getFont());
392       }
393
394       if (av.antiAlias)
395       {
396         gg.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
397                 RenderingHints.VALUE_ANTIALIAS_ON);
398       }
399
400       gg.setColor(Color.white);
401       gg.fillRect(0, 0, img.getWidth(), img.getHeight());
402
403       if (av.getWrapAlignment())
404       {
405         drawWrappedPanel(gg, getWidth(), getHeight(), ranges.getStartRes());
406       }
407       else
408       {
409         drawPanel(gg, ranges.getStartRes(), ranges.getEndRes(),
410                 ranges.getStartSeq(), ranges.getEndSeq(), 0);
411       }
412
413       // lcimg is a local *copy* of img which we'll draw selectImage on top of
414       BufferedImage lcimg = buildLocalImage(selectImage, cursorImage);
415       g.drawImage(lcimg, 0, 0, this);
416     }
417   }
418   
419   /**
420    * Draw an alignment panel for printing
421    * 
422    * @param g1
423    *          Graphics object to draw with
424    * @param startRes
425    *          start residue of print area
426    * @param endRes
427    *          end residue of print area
428    * @param startSeq
429    *          start sequence of print area
430    * @param endSeq
431    *          end sequence of print area
432    */
433   public void drawPanelForPrinting(Graphics g1, int startRes, int endRes,
434           int startSeq, int endSeq)
435   {
436     drawPanel(g1, startRes, endRes, startSeq, endSeq, 0);
437
438     BufferedImage selectImage = drawSelectionGroup(startRes, endRes,
439             startSeq, endSeq);
440     if (selectImage != null)
441     {
442       ((Graphics2D) g1).setComposite(AlphaComposite
443               .getInstance(AlphaComposite.SRC_OVER));
444       g1.drawImage(selectImage, 0, 0, this);
445     }
446   }
447
448   /**
449    * Draw a wrapped alignment panel for printing
450    * 
451    * @param g
452    *          Graphics object to draw with
453    * @param canvasWidth
454    *          width of drawing area
455    * @param canvasHeight
456    *          height of drawing area
457    * @param startRes
458    *          start residue of print area
459    */
460   public void drawWrappedPanelForPrinting(Graphics g, int canvasWidth,
461           int canvasHeight, int startRes)
462   {
463     SequenceGroup group = av.getSelectionGroup();
464
465     drawWrappedPanel(g, canvasWidth, canvasHeight, startRes);
466
467     if (group != null)
468     {
469       BufferedImage selectImage = null;
470       try
471       {
472         selectImage = new BufferedImage(canvasWidth, canvasHeight,
473                 BufferedImage.TYPE_INT_ARGB); // ARGB so alpha compositing works
474       } catch (OutOfMemoryError er)
475       {
476         System.gc();
477         System.err.println("Print image OutOfMemory Error.\n" + er);
478         new OOMWarning("Creating wrapped alignment image for printing", er);
479       }
480       if (selectImage != null)
481       {
482         Graphics2D g2 = selectImage.createGraphics();
483         setupSelectionGroup(g2, selectImage);
484         drawWrappedSelection(g2, group, canvasWidth, canvasHeight,
485                 startRes);
486
487         g2.setComposite(
488                 AlphaComposite.getInstance(AlphaComposite.SRC_OVER));
489         g.drawImage(selectImage, 0, 0, this);
490         g2.dispose();
491       }
492     }
493   }
494
495   /*
496    * Make a local image by combining the cached image img
497    * with any selection
498    */
499   private BufferedImage buildLocalImage(BufferedImage selectImage,
500           BufferedImage cursorImage)
501   {
502     // clone the cached image
503     BufferedImage lcimg = new BufferedImage(img.getWidth(), img.getHeight(),
504             img.getType());
505     Graphics2D g2d = lcimg.createGraphics();
506     g2d.drawImage(img, 0, 0, null);
507
508     // overlay selection group on lcimg
509     if (selectImage != null)
510     {
511       g2d.setComposite(
512               AlphaComposite.getInstance(AlphaComposite.SRC_OVER));
513       g2d.drawImage(selectImage, 0, 0, this);
514     }
515     // overlay cursor on lcimg
516     if (cursorImage != null)
517     {
518       g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER));
519       g2d.drawImage(cursorImage, 0, 0, this);
520     }
521     g2d.dispose();
522
523     return lcimg;
524   }
525
526   /*
527    * Set up a buffered image of the correct height and size for the sequence canvas
528    */
529   private BufferedImage setupImage()
530   {
531     BufferedImage lcimg = null;
532
533     int charWidth = av.getCharWidth();
534     int charHeight = av.getCharHeight();
535     
536     int width = getWidth();
537     int height = getHeight();
538
539     width -= (width % charWidth);
540     height -= (height % charHeight);
541
542     if ((width < 1) || (height < 1))
543     {
544       return null;
545     }
546
547     try
548     {
549       lcimg = new BufferedImage(width, height,
550               BufferedImage.TYPE_INT_ARGB); // ARGB so alpha compositing works
551     } catch (OutOfMemoryError er)
552     {
553       System.gc();
554       System.err.println(
555               "Group image OutOfMemory Redraw Error.\n" + er);
556       new OOMWarning("Creating alignment image for display", er);
557
558       return null;
559     }
560
561     return lcimg;
562   }
563
564   /**
565    * Returns the visible width of the canvas in residues, after allowing for
566    * East or West scales (if shown)
567    * 
568    * @param canvasWidth
569    *          the width in pixels (possibly including scales)
570    * 
571    * @return
572    */
573   public int getWrappedCanvasWidth(int canvasWidth)
574   {
575     int charWidth = av.getCharWidth();
576
577     FontMetrics fm = getFontMetrics(av.getFont());
578
579     int labelWidth = 0;
580     
581     if (av.getScaleRightWrapped() || av.getScaleLeftWrapped())
582     {
583       labelWidth = getLabelWidth(fm);
584     }
585
586     labelWidthEast = av.getScaleRightWrapped() ? labelWidth : 0;
587
588     labelWidthWest = av.getScaleLeftWrapped() ? labelWidth : 0;
589
590     return (canvasWidth - labelWidthEast - labelWidthWest) / charWidth;
591   }
592
593   /**
594    * Returns a pixel width sufficient to show the largest sequence coordinate
595    * (end position) in the alignment, calculated as the FontMetrics width of
596    * zeroes "0000000" limited to the number of decimal digits to be shown (3 for
597    * 1-10, 4 for 11-99 etc). One character width is added to this, to allow for
598    * half a character width space on either side.
599    * 
600    * @param fm
601    * @return
602    */
603   protected int getLabelWidth(FontMetrics fm)
604   {
605     /*
606      * find the biggest sequence end position we need to show
607      * (note this is not necessarily the sequence length)
608      */
609     int maxWidth = 0;
610     AlignmentI alignment = av.getAlignment();
611     for (int i = 0; i < alignment.getHeight(); i++)
612     {
613       maxWidth = Math.max(maxWidth, alignment.getSequenceAt(i).getEnd());
614     }
615
616     int length = 0;
617     for (int i = maxWidth; i > 0; i /= 10)
618     {
619       length++;
620     }
621
622     return fm.stringWidth(ZEROS.substring(0, length)) + av.getCharWidth();
623   }
624
625   /**
626    * Draws as many widths of a wrapped alignment as can fit in the visible
627    * window
628    * 
629    * @param g
630    * @param canvasWidth
631    *          available width in pixels
632    * @param canvasHeight
633    *          available height in pixels
634    * @param startColumn
635    *          the first column (0...) of the alignment to draw
636    */
637   public void drawWrappedPanel(Graphics g, int canvasWidth,
638           int canvasHeight, final int startColumn)
639   {
640     int wrappedWidthInResidues = calculateWrappedGeometry(canvasWidth,
641             canvasHeight);
642
643     av.setWrappedWidth(wrappedWidthInResidues);
644
645     ViewportRanges ranges = av.getRanges();
646     ranges.setViewportStartAndWidth(startColumn, wrappedWidthInResidues);
647
648     /*
649      * draw one width at a time (including any scales or annotation shown),
650      * until we have run out of either alignment or vertical space available
651      */
652     int ypos = wrappedSpaceAboveAlignment;
653     int maxWidth = ranges.getVisibleAlignmentWidth();
654
655     int start = startColumn;
656     int currentWidth = 0;
657     while ((currentWidth < wrappedVisibleWidths) && (start < maxWidth))
658     {
659       int endColumn = Math
660               .min(maxWidth, start + wrappedWidthInResidues - 1);
661       drawWrappedWidth(g, ypos, start, endColumn, canvasHeight);
662       ypos += wrappedRepeatHeightPx;
663       start += wrappedWidthInResidues;
664       currentWidth++;
665     }
666
667     drawWrappedDecorators(g, startColumn);
668   }
669
670   /**
671    * Calculates and saves values needed when rendering a wrapped alignment.
672    * These depend on many factors, including
673    * <ul>
674    * <li>canvas width and height</li>
675    * <li>number of visible sequences, and height of annotations if shown</li>
676    * <li>font and character width</li>
677    * <li>whether scales are shown left, right or above the alignment</li>
678    * </ul>
679    * 
680    * @param canvasWidth
681    * @param canvasHeight
682    * @return the number of residue columns in each width
683    */
684   protected int calculateWrappedGeometry(int canvasWidth, int canvasHeight)
685   {
686     int charHeight = av.getCharHeight();
687
688     /*
689      * vertical space in pixels between wrapped widths of alignment
690      * - one character height, or two if scale above is drawn
691      */
692     wrappedSpaceAboveAlignment = charHeight
693             * (av.getScaleAboveWrapped() ? 2 : 1);
694
695     /*
696      * height in pixels of the wrapped widths
697      */
698     wrappedRepeatHeightPx = wrappedSpaceAboveAlignment;
699     // add sequences
700     wrappedRepeatHeightPx += av.getRanges().getViewportHeight()
701             * charHeight;
702     // add annotations panel height if shown
703     wrappedRepeatHeightPx += getAnnotationHeight();
704
705     /*
706      * number of visible widths (the last one may be part height),
707      * ensuring a part height includes at least one sequence
708      */
709     ViewportRanges ranges = av.getRanges();
710     wrappedVisibleWidths = canvasHeight / wrappedRepeatHeightPx;
711     int remainder = canvasHeight % wrappedRepeatHeightPx;
712     if (remainder >= (wrappedSpaceAboveAlignment + charHeight))
713     {
714       wrappedVisibleWidths++;
715     }
716
717     /*
718      * compute width in residues; this also sets East and West label widths
719      */
720     int wrappedWidthInResidues = getWrappedCanvasWidth(canvasWidth);
721
722     /*
723      *  limit visibleWidths to not exceed width of alignment
724      */
725     int xMax = ranges.getVisibleAlignmentWidth();
726     int startToEnd = xMax - ranges.getStartRes();
727     int maxWidths = startToEnd / wrappedWidthInResidues;
728     if (startToEnd % wrappedWidthInResidues > 0)
729     {
730       maxWidths++;
731     }
732     wrappedVisibleWidths = Math.min(wrappedVisibleWidths, maxWidths);
733
734     return wrappedWidthInResidues;
735   }
736
737   /**
738    * Draws one width of a wrapped alignment, including sequences and
739    * annnotations, if shown, but not scales or hidden column markers
740    * 
741    * @param g
742    * @param ypos
743    * @param startColumn
744    * @param endColumn
745    * @param canvasHeight
746    */
747   protected void drawWrappedWidth(Graphics g, int ypos, int startColumn,
748           int endColumn, int canvasHeight)
749   {
750     ViewportRanges ranges = av.getRanges();
751     int viewportWidth = ranges.getViewportWidth();
752
753     int endx = Math.min(startColumn + viewportWidth - 1, endColumn);
754
755     /*
756      * move right before drawing by the width of the scale left (if any)
757      * plus column offset from left margin (usually zero, but may be non-zero
758      * when fast painting is drawing just a few columns)
759      */
760     int charWidth = av.getCharWidth();
761     int xOffset = labelWidthWest
762             + ((startColumn - ranges.getStartRes()) % viewportWidth)
763             * charWidth;
764     g.translate(xOffset, 0);
765
766     // When printing we have an extra clipped region,
767     // the Printable page which we need to account for here
768     Shape clip = g.getClip();
769
770     if (clip == null)
771     {
772       g.setClip(0, 0, viewportWidth * charWidth, canvasHeight);
773     }
774     else
775     {
776       g.setClip(0, (int) clip.getBounds().getY(),
777               viewportWidth * charWidth, (int) clip.getBounds().getHeight());
778     }
779
780     /*
781      * white fill the region to be drawn (so incremental fast paint doesn't
782      * scribble over an existing image)
783      */
784     gg.setColor(Color.white);
785     gg.fillRect(0, ypos, (endx - startColumn + 1) * charWidth,
786             wrappedRepeatHeightPx);
787
788     drawPanel(g, startColumn, endx, 0, av.getAlignment().getHeight() - 1,
789             ypos);
790
791     int cHeight = av.getAlignment().getHeight() * av.getCharHeight();
792
793     if (av.isShowAnnotation())
794     {
795       g.translate(0, cHeight + ypos + 3);
796       if (annotations == null)
797       {
798         annotations = new AnnotationPanel(av);
799       }
800
801       annotations.renderer.drawComponent(annotations, av, g, -1,
802               startColumn, endx + 1);
803       g.translate(0, -cHeight - ypos - 3);
804     }
805     g.setClip(clip);
806     g.translate(-xOffset, 0);
807   }
808
809   /**
810    * Draws scales left, right and above (if shown), and any hidden column
811    * markers, on all widths of the wrapped alignment
812    * 
813    * @param g
814    * @param startColumn
815    */
816   protected void drawWrappedDecorators(Graphics g, final int startColumn)
817   {
818     int charWidth = av.getCharWidth();
819
820     g.setFont(av.getFont());
821     g.setColor(Color.black);
822
823     int ypos = wrappedSpaceAboveAlignment;
824     ViewportRanges ranges = av.getRanges();
825     int viewportWidth = ranges.getViewportWidth();
826     int maxWidth = ranges.getVisibleAlignmentWidth();
827     int widthsDrawn = 0;
828     int startCol = startColumn;
829
830     while (widthsDrawn < wrappedVisibleWidths)
831     {
832       int endColumn = Math.min(maxWidth, startCol + viewportWidth - 1);
833
834       if (av.getScaleLeftWrapped())
835       {
836         drawVerticalScale(g, startCol, endColumn - 1, ypos, true);
837       }
838
839       if (av.getScaleRightWrapped())
840       {
841         int x = labelWidthWest + viewportWidth * charWidth;
842         g.translate(x, 0);
843         drawVerticalScale(g, startCol, endColumn, ypos, false);
844         g.translate(-x, 0);
845       }
846
847       /*
848        * white fill region of scale above and hidden column markers
849        * (to support incremental fast paint of image)
850        */
851       g.translate(labelWidthWest, 0);
852       g.setColor(Color.white);
853       g.fillRect(0, ypos - wrappedSpaceAboveAlignment, viewportWidth
854               * charWidth + labelWidthWest, wrappedSpaceAboveAlignment);
855       g.setColor(Color.black);
856       g.translate(-labelWidthWest, 0);
857
858       g.translate(labelWidthWest, 0);
859
860       if (av.getScaleAboveWrapped())
861       {
862         drawNorthScale(g, startCol, endColumn, ypos);
863       }
864
865       if (av.hasHiddenColumns() && av.getShowHiddenMarkers())
866       {
867         drawHiddenColumnMarkers(g, ypos, startCol, endColumn);
868       }
869
870       g.translate(-labelWidthWest, 0);
871
872       ypos += wrappedRepeatHeightPx;
873       startCol += viewportWidth;
874       widthsDrawn++;
875     }
876   }
877
878   /**
879    * Draws markers (triangles) above hidden column positions between startColumn
880    * and endColumn.
881    * 
882    * @param g
883    * @param ypos
884    * @param startColumn
885    * @param endColumn
886    */
887   protected void drawHiddenColumnMarkers(Graphics g, int ypos,
888           int startColumn, int endColumn)
889   {
890     int charHeight = av.getCharHeight();
891     int charWidth = av.getCharWidth();
892
893     g.setColor(Color.blue);
894     HiddenColumns hidden = av.getAlignment().getHiddenColumns();
895     List<Integer> positions = hidden.findHiddenRegionPositions();
896     for (int pos : positions)
897     {
898       int res = pos - startColumn;
899
900       if (res < 0 || res > endColumn - startColumn + 1)
901       {
902         continue;
903       }
904
905       /*
906        * draw a downward-pointing triangle at the hidden columns location
907        * (before the following visible column)
908        */
909       int xMiddle = res * charWidth;
910       int[] xPoints = new int[] { xMiddle - charHeight / 4,
911           xMiddle + charHeight / 4, xMiddle };
912       int yTop = ypos - (charHeight / 2);
913       int[] yPoints = new int[] { yTop, yTop, yTop + 8 };
914       g.fillPolygon(xPoints, yPoints, 3);
915     }
916   }
917
918   /*
919    * Draw a selection group over a wrapped alignment
920    */
921   private void drawWrappedSelection(Graphics2D g, SequenceGroup group,
922           int canvasWidth,
923           int canvasHeight, int startRes)
924   {
925         int charHeight = av.getCharHeight();
926         int charWidth = av.getCharWidth();
927           
928     // height gap above each panel
929     int hgap = charHeight;
930     if (av.getScaleAboveWrapped())
931     {
932       hgap += charHeight;
933     }
934
935     int cWidth = (canvasWidth - labelWidthEast - labelWidthWest)
936             / charWidth;
937     int cHeight = av.getAlignment().getHeight() * charHeight;
938
939     int startx = startRes;
940     int endx;
941     int ypos = hgap; // vertical offset
942     int maxwidth = av.getAlignment().getWidth();
943
944     if (av.hasHiddenColumns())
945     {
946       maxwidth = av.getAlignment().getHiddenColumns()
947               .findColumnPosition(maxwidth);
948     }
949
950     // chop the wrapped alignment extent up into panel-sized blocks and treat
951     // each block as if it were a block from an unwrapped alignment
952     while ((ypos <= canvasHeight) && (startx < maxwidth))
953     {
954       // set end value to be start + width, or maxwidth, whichever is smaller
955       endx = startx + cWidth - 1;
956
957       if (endx > maxwidth)
958       {
959         endx = maxwidth;
960       }
961
962       g.translate(labelWidthWest, 0);
963
964       drawUnwrappedSelection(g, group, startx, endx, 0,
965               av.getAlignment().getHeight() - 1,
966               ypos);
967
968       g.translate(-labelWidthWest, 0);
969
970       // update vertical offset
971       ypos += cHeight + getAnnotationHeight() + hgap;
972
973       // update horizontal offset
974       startx += cWidth;
975     }
976   }
977
978   int getAnnotationHeight()
979   {
980     if (!av.isShowAnnotation())
981     {
982       return 0;
983     }
984
985     if (annotations == null)
986     {
987       annotations = new AnnotationPanel(av);
988     }
989
990     return annotations.adjustPanelHeight();
991   }
992
993   /**
994    * Draws the visible region of the alignment on the graphics context. If there
995    * are hidden column markers in the visible region, then each sub-region
996    * between the markers is drawn separately, followed by the hidden column
997    * marker.
998    * 
999    * @param g1
1000    *          the graphics context, positioned at the first residue to be drawn
1001    * @param startRes
1002    *          offset of the first column to draw (0..)
1003    * @param endRes
1004    *          offset of the last column to draw (0..)
1005    * @param startSeq
1006    *          offset of the first sequence to draw (0..)
1007    * @param endSeq
1008    *          offset of the last sequence to draw (0..)
1009    * @param yOffset
1010    *          vertical offset at which to draw (for wrapped alignments)
1011    */
1012   public void drawPanel(Graphics g1, final int startRes, final int endRes,
1013           final int startSeq, final int endSeq, final int yOffset)
1014   {
1015     int charHeight = av.getCharHeight();
1016     int charWidth = av.getCharWidth();
1017
1018     if (!av.hasHiddenColumns())
1019     {
1020       draw(g1, startRes, endRes, startSeq, endSeq, yOffset);
1021     }
1022     else
1023     {
1024       int screenY = 0;
1025       final int screenYMax = endRes - startRes;
1026       int blockStart = startRes;
1027       int blockEnd = endRes;
1028
1029       for (int[] region : av.getAlignment().getHiddenColumns()
1030               .getHiddenColumnsCopy())
1031       {
1032         int hideStart = region[0];
1033         int hideEnd = region[1];
1034
1035         if (hideStart <= blockStart)
1036         {
1037           blockStart += (hideEnd - hideStart) + 1;
1038           continue;
1039         }
1040
1041         /*
1042          * draw up to just before the next hidden region, or the end of
1043          * the visible region, whichever comes first
1044          */
1045         blockEnd = Math.min(hideStart - 1, blockStart + screenYMax
1046                 - screenY);
1047
1048         g1.translate(screenY * charWidth, 0);
1049
1050         draw(g1, blockStart, blockEnd, startSeq, endSeq, yOffset);
1051
1052         /*
1053          * draw the downline of the hidden column marker (ScalePanel draws the
1054          * triangle on top) if we reached it
1055          */
1056         if (av.getShowHiddenMarkers() && blockEnd == hideStart - 1)
1057         {
1058           g1.setColor(Color.blue);
1059
1060           g1.drawLine((blockEnd - blockStart + 1) * charWidth - 1,
1061                   0 + yOffset, (blockEnd - blockStart + 1) * charWidth - 1,
1062                   (endSeq - startSeq + 1) * charHeight + yOffset);
1063         }
1064
1065         g1.translate(-screenY * charWidth, 0);
1066         screenY += blockEnd - blockStart + 1;
1067         blockStart = hideEnd + 1;
1068
1069         if (screenY > screenYMax)
1070         {
1071           // already rendered last block
1072           return;
1073         }
1074       }
1075
1076       if (screenY <= screenYMax)
1077       {
1078         // remaining visible region to render
1079         blockEnd = blockStart + screenYMax - screenY;
1080         g1.translate(screenY * charWidth, 0);
1081         draw(g1, blockStart, blockEnd, startSeq, endSeq, yOffset);
1082
1083         g1.translate(-screenY * charWidth, 0);
1084       }
1085     }
1086
1087   }
1088
1089   /**
1090    * Draws a region of the visible alignment
1091    * 
1092    * @param g1
1093    * @param startRes
1094    *          offset of the first column in the visible region (0..)
1095    * @param endRes
1096    *          offset of the last column in the visible region (0..)
1097    * @param startSeq
1098    *          offset of the first sequence in the visible region (0..)
1099    * @param endSeq
1100    *          offset of the last sequence in the visible region (0..)
1101    * @param yOffset
1102    *          vertical offset at which to draw (for wrapped alignments)
1103    */
1104   private void draw(Graphics g, int startRes, int endRes, int startSeq,
1105           int endSeq, int offset)
1106   {
1107     int charHeight = av.getCharHeight();
1108     int charWidth = av.getCharWidth();
1109
1110     g.setFont(av.getFont());
1111     seqRdr.prepare(g, av.isRenderGaps());
1112
1113     SequenceI nextSeq;
1114
1115     // / First draw the sequences
1116     // ///////////////////////////
1117     for (int i = startSeq; i <= endSeq; i++)
1118     {
1119       nextSeq = av.getAlignment().getSequenceAt(i);
1120       if (nextSeq == null)
1121       {
1122         // occasionally, a race condition occurs such that the alignment row is
1123         // empty
1124         continue;
1125       }
1126       seqRdr.drawSequence(nextSeq, av.getAlignment().findAllGroups(nextSeq),
1127               startRes, endRes, offset + ((i - startSeq) * charHeight));
1128
1129       if (av.isShowSequenceFeatures())
1130       {
1131         fr.drawSequence(g, nextSeq, startRes, endRes,
1132                 offset + ((i - startSeq) * charHeight), false);
1133       }
1134
1135       /*
1136        * highlight search Results once sequence has been drawn
1137        */
1138       if (av.hasSearchResults())
1139       {
1140         SearchResultsI searchResults = av.getSearchResults();
1141         int[] visibleResults = searchResults.getResults(nextSeq,
1142                 startRes, endRes);
1143         if (visibleResults != null)
1144         {
1145           for (int r = 0; r < visibleResults.length; r += 2)
1146           {
1147             seqRdr.drawHighlightedText(nextSeq, visibleResults[r],
1148                     visibleResults[r + 1], (visibleResults[r] - startRes)
1149                             * charWidth, offset
1150                             + ((i - startSeq) * charHeight));
1151           }
1152         }
1153       }
1154
1155       /*      if (av.cursorMode && cursorY == i && cursorX >= startRes
1156               && cursorX <= endRes)
1157       {
1158         seqRdr.drawCursor(nextSeq, cursorX, (cursorX - startRes) * charWidth,
1159                 offset + ((i - startSeq) * charHeight));
1160       }*/
1161     }
1162
1163     if (av.getSelectionGroup() != null
1164             || av.getAlignment().getGroups().size() > 0)
1165     {
1166       drawGroupsBoundaries(g, startRes, endRes, startSeq, endSeq, offset);
1167     }
1168
1169   }
1170
1171   void drawGroupsBoundaries(Graphics g1, int startRes, int endRes,
1172           int startSeq, int endSeq, int offset)
1173   {
1174     Graphics2D g = (Graphics2D) g1;
1175     //
1176     // ///////////////////////////////////
1177     // Now outline any areas if necessary
1178     // ///////////////////////////////////
1179
1180     SequenceGroup group = null;
1181     int groupIndex = -1;
1182
1183     if (av.getAlignment().getGroups().size() > 0)
1184     {
1185       group = av.getAlignment().getGroups().get(0);
1186       groupIndex = 0;
1187     }
1188
1189     if (group != null)
1190     {
1191       g.setStroke(new BasicStroke());
1192       g.setColor(group.getOutlineColour());
1193       
1194       do
1195       {
1196         drawPartialGroupOutline(g, group, startRes, endRes, startSeq,
1197                 endSeq, offset);
1198
1199         groupIndex++;
1200
1201         g.setStroke(new BasicStroke());
1202
1203         if (groupIndex >= av.getAlignment().getGroups().size())
1204         {
1205           break;
1206         }
1207
1208         group = av.getAlignment().getGroups().get(groupIndex);
1209
1210       } while (groupIndex < av.getAlignment().getGroups().size());
1211
1212     }
1213
1214   }
1215
1216
1217   /*
1218    * Draw the selection group as a separate image and overlay
1219    */
1220   private BufferedImage drawSelectionGroup(int startRes, int endRes,
1221           int startSeq, int endSeq)
1222   {
1223     // get a new image of the correct size
1224     BufferedImage selectionImage = setupImage();
1225
1226     if (selectionImage == null)
1227     {
1228       return null;
1229     }
1230
1231     SequenceGroup group = av.getSelectionGroup();
1232     if (group == null)
1233     {
1234       // nothing to draw
1235       return null;
1236     }
1237
1238     // set up drawing colour
1239     Graphics2D g = (Graphics2D) selectionImage.getGraphics();
1240
1241     setupSelectionGroup(g, selectionImage);
1242
1243     if (!av.getWrapAlignment())
1244     {
1245       drawUnwrappedSelection(g, group, startRes, endRes, startSeq, endSeq,
1246               0);
1247     }
1248     else
1249     {
1250       drawWrappedSelection(g, group, getWidth(), getHeight(),
1251               av.getRanges().getStartRes());
1252     }
1253
1254     g.dispose();
1255     return selectionImage;
1256   }
1257
1258   /**
1259    * Draw the cursor as a separate image and overlay
1260    * 
1261    * @param startRes
1262    *          start residue of area to draw cursor in
1263    * @param endRes
1264    *          end residue of area to draw cursor in
1265    * @param startSeq
1266    *          start sequence of area to draw cursor in
1267    * @param endSeq
1268    *          end sequence of are to draw cursor in
1269    * @return a transparent image of the same size as the sequence canvas, with
1270    *         the cursor drawn on it, if any
1271    */
1272   private BufferedImage drawCursor(int startRes, int endRes, int startSeq,
1273           int endSeq)
1274   {
1275     // define our cursor image
1276     BufferedImage cursorImage = null;
1277
1278     int yoffset = 0;
1279     int xoffset = 0;
1280     int startx = startRes;
1281     int endx = endRes;
1282     if (av.getWrapAlignment())
1283     {
1284       // work out the correct offsets for the cursor
1285       int charHeight = av.getCharHeight();
1286       int charWidth = av.getCharWidth();
1287       int canvasWidth = getWidth();
1288       int canvasHeight = getHeight();
1289
1290       // height gap above each panel
1291       int hgap = charHeight;
1292       if (av.getScaleAboveWrapped())
1293       {
1294         hgap += charHeight;
1295       }
1296
1297       int cWidth = (canvasWidth - labelWidthEast - labelWidthWest)
1298               / charWidth;
1299       int cHeight = av.getAlignment().getHeight() * charHeight;
1300
1301       endx = startx + cWidth - 1;
1302       int ypos = hgap; // vertical offset
1303
1304       // iterate down the wrapped panels
1305       while ((ypos <= canvasHeight) && (endx < cursorX))
1306       {
1307         // update vertical offset
1308         ypos += cHeight + getAnnotationHeight() + hgap;
1309
1310         // update horizontal offset
1311         startx += cWidth;
1312         endx = startx + cWidth - 1;
1313       }
1314       yoffset = ypos;
1315       xoffset = labelWidthWest;
1316     }
1317
1318     if (av.cursorMode && cursorY >= startSeq && cursorY <= endSeq
1319             && cursorX >= startx && cursorX <= endx)
1320     {
1321       // get a new image of the correct size
1322       cursorImage = setupImage();
1323       Graphics2D g = (Graphics2D) cursorImage.getGraphics();
1324
1325       // get the character the cursor is drawn at
1326       SequenceI seq = av.getAlignment().getSequenceAt(cursorY);
1327       char s = seq.getCharAt(cursorX);
1328
1329       seqRdr.drawCursor(g, s,
1330               xoffset + (cursorX - startx) * av.getCharWidth(),
1331               yoffset + (cursorY - startSeq) * av.getCharHeight());
1332       g.dispose();
1333     }
1334
1335     return cursorImage;
1336   }
1337
1338
1339   /*
1340    * Set up graphics for selection group
1341    */
1342   private void setupSelectionGroup(Graphics2D g,
1343           BufferedImage selectionImage)
1344   {
1345     // set background to transparent
1346     g.setComposite(AlphaComposite.getInstance(AlphaComposite.CLEAR, 0.0f));
1347     g.fillRect(0, 0, selectionImage.getWidth(), selectionImage.getHeight());
1348
1349     // set up foreground to draw red dashed line
1350     g.setComposite(AlphaComposite.Src);
1351     g.setStroke(new BasicStroke(1, BasicStroke.CAP_BUTT,
1352             BasicStroke.JOIN_ROUND, 3f, new float[]
1353     { 5f, 3f }, 0f));
1354     g.setColor(Color.RED);
1355   }
1356
1357   /*
1358    * Draw a selection group over an unwrapped alignment
1359    * @param g graphics object to draw with
1360    * @param group selection group
1361    * @param startRes start residue of area to draw
1362    * @param endRes end residue of area to draw
1363    * @param startSeq start sequence of area to draw
1364    * @param endSeq end sequence of area to draw
1365    * @param offset vertical offset (used when called from wrapped alignment code)
1366    */
1367   private void drawUnwrappedSelection(Graphics2D g, SequenceGroup group,
1368           int startRes, int endRes, int startSeq, int endSeq, int offset)
1369   {
1370         int charWidth = av.getCharWidth();
1371           
1372     if (!av.hasHiddenColumns())
1373     {
1374       drawPartialGroupOutline(g, group, startRes, endRes, startSeq, endSeq,
1375               offset);
1376     }
1377     else
1378     {
1379       // package into blocks of visible columns
1380       int screenY = 0;
1381       int blockStart = startRes;
1382       int blockEnd = endRes;
1383
1384       for (int[] region : av.getAlignment().getHiddenColumns()
1385               .getHiddenColumnsCopy())
1386       {
1387         int hideStart = region[0];
1388         int hideEnd = region[1];
1389
1390         if (hideStart <= blockStart)
1391         {
1392           blockStart += (hideEnd - hideStart) + 1;
1393           continue;
1394         }
1395
1396         blockEnd = hideStart - 1;
1397
1398         g.translate(screenY * charWidth, 0);
1399         drawPartialGroupOutline(g, group,
1400                 blockStart, blockEnd, startSeq, endSeq, offset);
1401
1402         g.translate(-screenY * charWidth, 0);
1403         screenY += blockEnd - blockStart + 1;
1404         blockStart = hideEnd + 1;
1405
1406         if (screenY > (endRes - startRes))
1407         {
1408           // already rendered last block
1409           break;
1410         }
1411       }
1412
1413       if (screenY <= (endRes - startRes))
1414       {
1415         // remaining visible region to render
1416         blockEnd = blockStart + (endRes - startRes) - screenY;
1417         g.translate(screenY * charWidth, 0);
1418         drawPartialGroupOutline(g, group,
1419                 blockStart, blockEnd, startSeq, endSeq, offset);
1420         
1421         g.translate(-screenY * charWidth, 0);
1422       }
1423     }
1424   }
1425
1426   /*
1427    * Draw the selection group as a separate image and overlay
1428    */
1429   private void drawPartialGroupOutline(Graphics2D g, SequenceGroup group,
1430           int startRes, int endRes, int startSeq, int endSeq,
1431           int verticalOffset)
1432   {
1433         int charHeight = av.getCharHeight();
1434         int charWidth = av.getCharWidth();
1435           
1436     int visWidth = (endRes - startRes + 1) * charWidth;
1437
1438     int oldY = -1;
1439     int i = 0;
1440     boolean inGroup = false;
1441     int top = -1;
1442     int bottom = -1;
1443
1444     int sx = -1;
1445     int sy = -1;
1446     int xwidth = -1;
1447
1448     for (i = startSeq; i <= endSeq; i++)
1449     {
1450       // position of start residue of group relative to startRes, in pixels
1451       sx = (group.getStartRes() - startRes) * charWidth;
1452
1453       // width of group in pixels
1454       xwidth = (((group.getEndRes() + 1) - group.getStartRes()) * charWidth)
1455               - 1;
1456
1457       sy = verticalOffset + (i - startSeq) * charHeight;
1458
1459       if (sx + xwidth < 0 || sx > visWidth)
1460       {
1461         continue;
1462       }
1463
1464       if ((sx <= (endRes - startRes) * charWidth)
1465               && group.getSequences(null)
1466                       .contains(av.getAlignment().getSequenceAt(i)))
1467       {
1468         if ((bottom == -1) && !group.getSequences(null)
1469                 .contains(av.getAlignment().getSequenceAt(i + 1)))
1470         {
1471           bottom = sy + charHeight;
1472         }
1473
1474         if (!inGroup)
1475         {
1476           if (((top == -1) && (i == 0)) || !group.getSequences(null)
1477                   .contains(av.getAlignment().getSequenceAt(i - 1)))
1478           {
1479             top = sy;
1480           }
1481
1482           oldY = sy;
1483           inGroup = true;
1484         }
1485       }
1486       else
1487       {
1488         if (inGroup)
1489         {
1490           // if start position is visible, draw vertical line to left of
1491           // group
1492           if (sx >= 0 && sx < visWidth)
1493           {
1494             g.drawLine(sx, oldY, sx, sy);
1495           }
1496
1497           // if end position is visible, draw vertical line to right of
1498           // group
1499           if (sx + xwidth < visWidth)
1500           {
1501             g.drawLine(sx + xwidth, oldY, sx + xwidth, sy);
1502           }
1503
1504           if (sx < 0)
1505           {
1506             xwidth += sx;
1507             sx = 0;
1508           }
1509
1510           // don't let width extend beyond current block, or group extent
1511           // fixes JAL-2672
1512           if (sx + xwidth >= (endRes - startRes + 1) * charWidth)
1513           {
1514             xwidth = (endRes - startRes + 1) * charWidth - sx;
1515           }
1516           
1517           // draw horizontal line at top of group
1518           if (top != -1)
1519           {
1520             g.drawLine(sx, top, sx + xwidth, top);
1521             top = -1;
1522           }
1523
1524           // draw horizontal line at bottom of group
1525           if (bottom != -1)
1526           {
1527             g.drawLine(sx, bottom, sx + xwidth, bottom);
1528             bottom = -1;
1529           }
1530
1531           inGroup = false;
1532         }
1533       }
1534     }
1535
1536     if (inGroup)
1537     {
1538       sy = verticalOffset + ((i - startSeq) * charHeight);
1539       if (sx >= 0 && sx < visWidth)
1540       {
1541         g.drawLine(sx, oldY, sx, sy);
1542       }
1543
1544       if (sx + xwidth < visWidth)
1545       {
1546         g.drawLine(sx + xwidth, oldY, sx + xwidth, sy);
1547       }
1548
1549       if (sx < 0)
1550       {
1551         xwidth += sx;
1552         sx = 0;
1553       }
1554
1555       if (sx + xwidth > visWidth)
1556       {
1557         xwidth = visWidth;
1558       }
1559       else if (sx + xwidth >= (endRes - startRes + 1) * charWidth)
1560       {
1561         xwidth = (endRes - startRes + 1) * charWidth;
1562       }
1563
1564       if (top != -1)
1565       {
1566         g.drawLine(sx, top, sx + xwidth, top);
1567         top = -1;
1568       }
1569
1570       if (bottom != -1)
1571       {
1572         g.drawLine(sx, bottom - 1, sx + xwidth, bottom - 1);
1573         bottom = -1;
1574       }
1575
1576       inGroup = false;
1577     }
1578   }
1579   
1580   /**
1581    * Highlights search results in the visible region by rendering as white text
1582    * on a black background. Any previous highlighting is removed. Answers true
1583    * if any highlight was left on the visible alignment (so status bar should be
1584    * set to match), else false.
1585    * <p>
1586    * Currently fastPaint is not implemented for wrapped alignments. If a wrapped
1587    * alignment had to be scrolled to show the highlighted region, then it should
1588    * be fully redrawn, otherwise a fast paint can be performed. This argument
1589    * could be removed if fast paint of scrolled wrapped alignment is coded in
1590    * future (JAL-2609).
1591    * 
1592    * @param results
1593    * @param noFastPaint
1594    * @return
1595    */
1596   public boolean highlightSearchResults(SearchResultsI results,
1597           boolean noFastPaint)
1598   {
1599     if (fastpainting)
1600     {
1601       return false;
1602     }
1603     boolean wrapped = av.getWrapAlignment();
1604     try
1605     {
1606       fastPaint = !noFastPaint;
1607       fastpainting = fastPaint;
1608
1609       /*
1610        * to avoid redrawing the whole visible region, we instead
1611        * redraw just the minimal regions to remove previous highlights
1612        * and add new ones
1613        */
1614       SearchResultsI previous = av.getSearchResults();
1615       av.setSearchResults(results);
1616       boolean redrawn = false;
1617       boolean drawn = false;
1618       if (wrapped)
1619       {
1620         redrawn = drawMappedPositionsWrapped(previous);
1621         drawn = drawMappedPositionsWrapped(results);
1622         redrawn |= drawn;
1623       }
1624       else
1625       {
1626         redrawn = drawMappedPositions(previous);
1627         drawn = drawMappedPositions(results);
1628         redrawn |= drawn;
1629       }
1630
1631       /*
1632        * if highlights were either removed or added, repaint
1633        */
1634       if (redrawn)
1635       {
1636         repaint();
1637       }
1638
1639       /*
1640        * return true only if highlights were added
1641        */
1642       return drawn;
1643
1644     } finally
1645     {
1646       fastpainting = false;
1647     }
1648   }
1649
1650   /**
1651    * Redraws the minimal rectangle in the visible region (if any) that includes
1652    * mapped positions of the given search results. Whether or not positions are
1653    * highlighted depends on the SearchResults set on the Viewport. This allows
1654    * this method to be called to either clear or set highlighting. Answers true
1655    * if any positions were drawn (in which case a repaint is still required),
1656    * else false.
1657    * 
1658    * @param results
1659    * @return
1660    */
1661   protected boolean drawMappedPositions(SearchResultsI results)
1662   {
1663     if (results == null)
1664     {
1665       return false;
1666     }
1667
1668     /*
1669      * calculate the minimal rectangle to redraw that 
1670      * includes both new and existing search results
1671      */
1672     int firstSeq = Integer.MAX_VALUE;
1673     int lastSeq = -1;
1674     int firstCol = Integer.MAX_VALUE;
1675     int lastCol = -1;
1676     boolean matchFound = false;
1677
1678     ViewportRanges ranges = av.getRanges();
1679     int firstVisibleColumn = ranges.getStartRes();
1680     int lastVisibleColumn = ranges.getEndRes();
1681     AlignmentI alignment = av.getAlignment();
1682     if (av.hasHiddenColumns())
1683     {
1684       firstVisibleColumn = alignment.getHiddenColumns()
1685               .adjustForHiddenColumns(firstVisibleColumn);
1686       lastVisibleColumn = alignment.getHiddenColumns()
1687               .adjustForHiddenColumns(lastVisibleColumn);
1688     }
1689
1690     for (int seqNo = ranges.getStartSeq(); seqNo <= ranges
1691             .getEndSeq(); seqNo++)
1692     {
1693       SequenceI seq = alignment.getSequenceAt(seqNo);
1694
1695       int[] visibleResults = results.getResults(seq, firstVisibleColumn,
1696               lastVisibleColumn);
1697       if (visibleResults != null)
1698       {
1699         for (int i = 0; i < visibleResults.length - 1; i += 2)
1700         {
1701           int firstMatchedColumn = visibleResults[i];
1702           int lastMatchedColumn = visibleResults[i + 1];
1703           if (firstMatchedColumn <= lastVisibleColumn
1704                   && lastMatchedColumn >= firstVisibleColumn)
1705           {
1706             /*
1707              * found a search results match in the visible region - 
1708              * remember the first and last sequence matched, and the first
1709              * and last visible columns in the matched positions
1710              */
1711             matchFound = true;
1712             firstSeq = Math.min(firstSeq, seqNo);
1713             lastSeq = Math.max(lastSeq, seqNo);
1714             firstMatchedColumn = Math.max(firstMatchedColumn,
1715                     firstVisibleColumn);
1716             lastMatchedColumn = Math.min(lastMatchedColumn,
1717                     lastVisibleColumn);
1718             firstCol = Math.min(firstCol, firstMatchedColumn);
1719             lastCol = Math.max(lastCol, lastMatchedColumn);
1720           }
1721         }
1722       }
1723     }
1724
1725     if (matchFound)
1726     {
1727       if (av.hasHiddenColumns())
1728       {
1729         firstCol = alignment.getHiddenColumns()
1730                 .findColumnPosition(firstCol);
1731         lastCol = alignment.getHiddenColumns().findColumnPosition(lastCol);
1732       }
1733       int transX = (firstCol - ranges.getStartRes()) * av.getCharWidth();
1734       int transY = (firstSeq - ranges.getStartSeq()) * av.getCharHeight();
1735       gg.translate(transX, transY);
1736       drawPanel(gg, firstCol, lastCol, firstSeq, lastSeq, 0);
1737       gg.translate(-transX, -transY);
1738     }
1739
1740     return matchFound;
1741   }
1742
1743   @Override
1744   public void propertyChange(PropertyChangeEvent evt)
1745   {
1746     String eventName = evt.getPropertyName();
1747
1748     if (eventName.equals(SequenceGroup.SEQ_GROUP_CHANGED))
1749     {
1750       fastPaint = true;
1751       repaint();
1752       return;
1753     }
1754
1755     int scrollX = 0;
1756     if (eventName.equals(ViewportRanges.STARTRES))
1757     {
1758       // Make sure we're not trying to draw a panel
1759       // larger than the visible window
1760       ViewportRanges vpRanges = av.getRanges();
1761       scrollX = (int) evt.getNewValue() - (int) evt.getOldValue();
1762       int range = vpRanges.getViewportWidth();
1763       if (scrollX > range)
1764       {
1765         scrollX = range;
1766       }
1767       else if (scrollX < -range)
1768       {
1769         scrollX = -range;
1770       }
1771     }
1772
1773     // Both scrolling and resizing change viewport ranges: scrolling changes
1774     // both start and end points, but resize only changes end values.
1775     // Here we only want to fastpaint on a scroll, with resize using a normal
1776     // paint, so scroll events are identified as changes to the horizontal or
1777     // vertical start value.
1778
1779     // scroll - startres and endres both change
1780     if (eventName.equals(ViewportRanges.STARTRES))
1781     {
1782       if (av.getWrapAlignment())
1783       {
1784         fastPaintWrapped(scrollX);
1785       }
1786       else
1787       {
1788         fastPaint(scrollX, 0);
1789       }
1790     }
1791     else if (eventName.equals(ViewportRanges.STARTSEQ))
1792     {
1793       // scroll
1794       fastPaint(0, (int) evt.getNewValue() - (int) evt.getOldValue());
1795     }
1796   }
1797
1798   /**
1799    * Does a minimal update of the image for a scroll movement. This method
1800    * handles scroll movements of up to one width of the wrapped alignment (one
1801    * click in the vertical scrollbar). Larger movements (for example after a
1802    * scroll to highlight a mapped position) trigger a full redraw instead.
1803    * 
1804    * @param scrollX
1805    *          number of positions scrolled (right if positive, left if negative)
1806    */
1807   protected void fastPaintWrapped(int scrollX)
1808   {
1809     ViewportRanges ranges = av.getRanges();
1810
1811     if (Math.abs(scrollX) > ranges.getViewportWidth())
1812     {
1813       /*
1814        * shift of more than one view width is 
1815        * overcomplicated to handle in this method
1816        */
1817       fastPaint = false;
1818       repaint();
1819       return;
1820     }
1821
1822     if (fastpainting || gg == null)
1823     {
1824       return;
1825     }
1826
1827     fastPaint = true;
1828     fastpainting = true;
1829
1830     try
1831     {
1832       calculateWrappedGeometry(getWidth(), getHeight());
1833
1834       /*
1835        * relocate the regions of the alignment that are still visible
1836        */
1837       shiftWrappedAlignment(-scrollX);
1838
1839       /*
1840        * add new columns (sequence, annotation)
1841        * - at top left if scrollX < 0 
1842        * - at right of last two widths if scrollX > 0
1843        */
1844       if (scrollX < 0)
1845       {
1846         int startRes = ranges.getStartRes();
1847         drawWrappedWidth(gg, wrappedSpaceAboveAlignment, startRes, startRes
1848                 - scrollX - 1, getHeight());
1849       }
1850       else
1851       {
1852         fastPaintWrappedAddRight(scrollX);
1853       }
1854
1855       /*
1856        * draw all scales (if  shown) and hidden column markers
1857        */
1858       drawWrappedDecorators(gg, ranges.getStartRes());
1859
1860       repaint();
1861     } finally
1862     {
1863       fastpainting = false;
1864     }
1865   }
1866
1867   /**
1868    * Draws the specified number of columns at the 'end' (bottom right) of a
1869    * wrapped alignment view, including sequences and annotations if shown, but
1870    * not scales. Also draws the same number of columns at the right hand end of
1871    * the second last width shown, if the last width is not full height (so
1872    * cannot simply be copied from the graphics image).
1873    * 
1874    * @param columns
1875    */
1876   protected void fastPaintWrappedAddRight(int columns)
1877   {
1878     if (columns == 0)
1879     {
1880       return;
1881     }
1882
1883     ViewportRanges ranges = av.getRanges();
1884     int viewportWidth = ranges.getViewportWidth();
1885     int charWidth = av.getCharWidth();
1886
1887     /**
1888      * draw full height alignment in the second last row, last columns, if the
1889      * last row was not full height
1890      */
1891     int visibleWidths = wrappedVisibleWidths;
1892     int canvasHeight = getHeight();
1893     boolean lastWidthPartHeight = (wrappedVisibleWidths * wrappedRepeatHeightPx) > canvasHeight;
1894
1895     if (lastWidthPartHeight)
1896     {
1897       int widthsAbove = Math.max(0, visibleWidths - 2);
1898       int ypos = wrappedRepeatHeightPx * widthsAbove
1899               + wrappedSpaceAboveAlignment;
1900       int endRes = ranges.getEndRes();
1901       endRes += widthsAbove * viewportWidth;
1902       int startRes = endRes - columns;
1903       int xOffset = ((startRes - ranges.getStartRes()) % viewportWidth)
1904               * charWidth;
1905
1906       /*
1907        * white fill first to erase annotations
1908        */
1909       gg.translate(xOffset, 0);
1910       gg.setColor(Color.white);
1911       gg.fillRect(labelWidthWest, ypos,
1912               (endRes - startRes + 1) * charWidth, wrappedRepeatHeightPx);
1913       gg.translate(-xOffset, 0);
1914
1915       drawWrappedWidth(gg, ypos, startRes, endRes, canvasHeight);
1916     }
1917
1918     /*
1919      * draw newly visible columns in last wrapped width (none if we
1920      * have reached the end of the alignment)
1921      * y-offset for drawing last width is height of widths above,
1922      * plus one gap row
1923      */
1924     int widthsAbove = visibleWidths - 1;
1925     int ypos = wrappedRepeatHeightPx * widthsAbove
1926             + wrappedSpaceAboveAlignment;
1927     int endRes = ranges.getEndRes();
1928     endRes += widthsAbove * viewportWidth;
1929     int startRes = endRes - columns + 1;
1930
1931     /*
1932      * white fill first to erase annotations
1933      */
1934     int xOffset = ((startRes - ranges.getStartRes()) % viewportWidth)
1935             * charWidth;
1936     gg.translate(xOffset, 0);
1937     gg.setColor(Color.white);
1938     int width = viewportWidth * charWidth - xOffset;
1939     gg.fillRect(labelWidthWest, ypos, width, wrappedRepeatHeightPx);
1940     gg.translate(-xOffset, 0);
1941
1942     gg.setFont(av.getFont());
1943     gg.setColor(Color.black);
1944
1945     if (startRes < ranges.getVisibleAlignmentWidth())
1946     {
1947       drawWrappedWidth(gg, ypos, startRes, endRes, canvasHeight);
1948     }
1949
1950     /*
1951      * and finally, white fill any space below the visible alignment
1952      */
1953     int heightBelow = canvasHeight - visibleWidths * wrappedRepeatHeightPx;
1954     if (heightBelow > 0)
1955     {
1956       gg.setColor(Color.white);
1957       gg.fillRect(0, canvasHeight - heightBelow, getWidth(), heightBelow);
1958     }
1959   }
1960
1961   /**
1962    * Shifts the visible alignment by the specified number of columns - left if
1963    * negative, right if positive. Copies and moves sequences and annotations (if
1964    * shown). Scales, hidden column markers and any newly visible columns must be
1965    * drawn separately.
1966    * 
1967    * @param positions
1968    */
1969   protected void shiftWrappedAlignment(int positions)
1970   {
1971     if (positions == 0)
1972     {
1973       return;
1974     }
1975     int charWidth = av.getCharWidth();
1976
1977     int canvasHeight = getHeight();
1978     ViewportRanges ranges = av.getRanges();
1979     int viewportWidth = ranges.getViewportWidth();
1980     int widthToCopy = (ranges.getViewportWidth() - Math.abs(positions))
1981             * charWidth;
1982     int heightToCopy = wrappedRepeatHeightPx - wrappedSpaceAboveAlignment;
1983     int xMax = ranges.getVisibleAlignmentWidth();
1984
1985     if (positions > 0)
1986     {
1987       /*
1988        * shift right (after scroll left)
1989        * for each wrapped width (starting with the last), copy (width-positions) 
1990        * columns from the left margin to the right margin, and copy positions 
1991        * columns from the right margin of the row above (if any) to the 
1992        * left margin of the current row
1993        */
1994
1995       /*
1996        * get y-offset of last wrapped width, first row of sequences
1997        */
1998       int y = canvasHeight / wrappedRepeatHeightPx * wrappedRepeatHeightPx;
1999       y += wrappedSpaceAboveAlignment;
2000       int copyFromLeftStart = labelWidthWest;
2001       int copyFromRightStart = copyFromLeftStart + widthToCopy;
2002
2003       while (y >= 0)
2004       {
2005         gg.copyArea(copyFromLeftStart, y, widthToCopy, heightToCopy,
2006                 positions * charWidth, 0);
2007         if (y > 0)
2008         {
2009           gg.copyArea(copyFromRightStart, y - wrappedRepeatHeightPx,
2010                   positions * charWidth, heightToCopy, -widthToCopy,
2011                   wrappedRepeatHeightPx);
2012         }
2013
2014         y -= wrappedRepeatHeightPx;
2015       }
2016     }
2017     else
2018     {
2019       /*
2020        * shift left (after scroll right)
2021        * for each wrapped width (starting with the first), copy (width-positions) 
2022        * columns from the right margin to the left margin, and copy positions 
2023        * columns from the left margin of the row below (if any) to the 
2024        * right margin of the current row
2025        */
2026       int xpos = av.getRanges().getStartRes();
2027       int y = wrappedSpaceAboveAlignment;
2028       int copyFromRightStart = labelWidthWest - positions * charWidth;
2029
2030       while (y < canvasHeight)
2031       {
2032         gg.copyArea(copyFromRightStart, y, widthToCopy, heightToCopy,
2033                 positions * charWidth, 0);
2034         if (y + wrappedRepeatHeightPx < canvasHeight - wrappedRepeatHeightPx
2035                 && (xpos + viewportWidth <= xMax))
2036         {
2037           gg.copyArea(labelWidthWest, y + wrappedRepeatHeightPx, -positions
2038                   * charWidth, heightToCopy, widthToCopy,
2039                   -wrappedRepeatHeightPx);
2040         }
2041
2042         y += wrappedRepeatHeightPx;
2043         xpos += viewportWidth;
2044       }
2045     }
2046   }
2047
2048   
2049   /**
2050    * Redraws any positions in the search results in the visible region of a
2051    * wrapped alignment. Any highlights are drawn depending on the search results
2052    * set on the Viewport, not the <code>results</code> argument. This allows
2053    * this method to be called either to clear highlights (passing the previous
2054    * search results), or to draw new highlights.
2055    * 
2056    * @param results
2057    * @return
2058    */
2059   protected boolean drawMappedPositionsWrapped(SearchResultsI results)
2060   {
2061     if (results == null)
2062     {
2063       return false;
2064     }
2065     int charHeight = av.getCharHeight();
2066
2067     boolean matchFound = false;
2068
2069     calculateWrappedGeometry(getWidth(), getHeight());
2070     int wrappedWidth = av.getWrappedWidth();
2071     int wrappedHeight = wrappedRepeatHeightPx;
2072
2073     ViewportRanges ranges = av.getRanges();
2074     int canvasHeight = getHeight();
2075     int repeats = canvasHeight / wrappedHeight;
2076     if (canvasHeight / wrappedHeight > 0)
2077     {
2078       repeats++;
2079     }
2080
2081     int firstVisibleColumn = ranges.getStartRes();
2082     int lastVisibleColumn = ranges.getStartRes() + repeats
2083             * ranges.getViewportWidth() - 1;
2084
2085     AlignmentI alignment = av.getAlignment();
2086     if (av.hasHiddenColumns())
2087     {
2088       firstVisibleColumn = alignment.getHiddenColumns()
2089               .adjustForHiddenColumns(firstVisibleColumn);
2090       lastVisibleColumn = alignment.getHiddenColumns()
2091               .adjustForHiddenColumns(lastVisibleColumn);
2092     }
2093
2094     int gapHeight = charHeight * (av.getScaleAboveWrapped() ? 2 : 1);
2095
2096     for (int seqNo = ranges.getStartSeq(); seqNo <= ranges
2097             .getEndSeq(); seqNo++)
2098     {
2099       SequenceI seq = alignment.getSequenceAt(seqNo);
2100
2101       int[] visibleResults = results.getResults(seq, firstVisibleColumn,
2102               lastVisibleColumn);
2103       if (visibleResults != null)
2104       {
2105         for (int i = 0; i < visibleResults.length - 1; i += 2)
2106         {
2107           int firstMatchedColumn = visibleResults[i];
2108           int lastMatchedColumn = visibleResults[i + 1];
2109           if (firstMatchedColumn <= lastVisibleColumn
2110                   && lastMatchedColumn >= firstVisibleColumn)
2111           {
2112             /*
2113              * found a search results match in the visible region
2114              */
2115             firstMatchedColumn = Math.max(firstMatchedColumn,
2116                     firstVisibleColumn);
2117             lastMatchedColumn = Math.min(lastMatchedColumn,
2118                     lastVisibleColumn);
2119
2120             /*
2121              * draw each mapped position separately (as contiguous positions may
2122              * wrap across lines)
2123              */
2124             for (int mappedPos = firstMatchedColumn; mappedPos <= lastMatchedColumn; mappedPos++)
2125             {
2126               int displayColumn = mappedPos;
2127               if (av.hasHiddenColumns())
2128               {
2129                 displayColumn = alignment.getHiddenColumns()
2130                         .findColumnPosition(displayColumn);
2131               }
2132
2133               /*
2134                * transX: offset from left edge of canvas to residue position
2135                */
2136               int transX = labelWidthWest
2137                       + ((displayColumn - ranges.getStartRes()) % wrappedWidth)
2138                       * av.getCharWidth();
2139
2140               /*
2141                * transY: offset from top edge of canvas to residue position
2142                */
2143               int transY = gapHeight;
2144               transY += (displayColumn - ranges.getStartRes())
2145                       / wrappedWidth * wrappedHeight;
2146               transY += (seqNo - ranges.getStartSeq()) * av.getCharHeight();
2147
2148               /*
2149                * yOffset is from graphics origin to start of visible region
2150                */
2151               int yOffset = 0;// (displayColumn / wrappedWidth) * wrappedHeight;
2152               if (transY < getHeight())
2153               {
2154                 matchFound = true;
2155                 gg.translate(transX, transY);
2156                 drawPanel(gg, displayColumn, displayColumn, seqNo, seqNo,
2157                         yOffset);
2158                 gg.translate(-transX, -transY);
2159               }
2160             }
2161           }
2162         }
2163       }
2164     }
2165   
2166     return matchFound;
2167   }
2168
2169   /**
2170    * Answers the width in pixels of the left scale labels (0 if not shown)
2171    * 
2172    * @return
2173    */
2174   int getLabelWidthWest()
2175   {
2176     return labelWidthWest;
2177   }
2178 }