JAL-3116 parse EMBL XML with JAXB (todo: update unit tests)
[jalview.git] / src / jalview / gui / AlignmentPanel.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.analysis.AnnotationSorter;
24 import jalview.api.AlignViewportI;
25 import jalview.api.AlignmentViewPanel;
26 import jalview.bin.Cache;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.HiddenColumns;
29 import jalview.datamodel.SearchResultsI;
30 import jalview.datamodel.SequenceFeature;
31 import jalview.datamodel.SequenceGroup;
32 import jalview.datamodel.SequenceI;
33 import jalview.io.HTMLOutput;
34 import jalview.jbgui.GAlignmentPanel;
35 import jalview.math.AlignmentDimension;
36 import jalview.schemes.ResidueProperties;
37 import jalview.structure.StructureSelectionManager;
38 import jalview.util.Comparison;
39 import jalview.util.MessageManager;
40 import jalview.viewmodel.ViewportListenerI;
41 import jalview.viewmodel.ViewportRanges;
42
43 import java.awt.BorderLayout;
44 import java.awt.Color;
45 import java.awt.Container;
46 import java.awt.Dimension;
47 import java.awt.Font;
48 import java.awt.FontMetrics;
49 import java.awt.Graphics;
50 import java.awt.Graphics2D;
51 import java.awt.event.AdjustmentEvent;
52 import java.awt.event.AdjustmentListener;
53 import java.awt.event.ComponentAdapter;
54 import java.awt.event.ComponentEvent;
55 import java.awt.print.PageFormat;
56 import java.awt.print.Printable;
57 import java.awt.print.PrinterException;
58 import java.beans.PropertyChangeEvent;
59 import java.beans.PropertyChangeListener;
60 import java.io.File;
61 import java.io.FileWriter;
62 import java.io.PrintWriter;
63 import java.util.List;
64
65 import javax.swing.SwingUtilities;
66
67 /**
68  * DOCUMENT ME!
69  * 
70  * @author $author$
71  * @version $Revision: 1.161 $
72  */
73 public class AlignmentPanel extends GAlignmentPanel implements
74         AdjustmentListener, Printable, AlignmentViewPanel, ViewportListenerI
75 {
76   public AlignViewport av;
77
78   OverviewPanel overviewPanel;
79
80   private SeqPanel seqPanel;
81
82   private IdPanel idPanel;
83
84   private boolean headless;
85
86   IdwidthAdjuster idwidthAdjuster;
87
88   /** DOCUMENT ME!! */
89   public AlignFrame alignFrame;
90
91   private ScalePanel scalePanel;
92
93   private AnnotationPanel annotationPanel;
94
95   private AnnotationLabels alabels;
96
97   private int hextent = 0;
98
99   private int vextent = 0;
100
101   /*
102    * Flag set while scrolling to follow complementary cDNA/protein scroll. When
103    * false, suppresses invoking the same method recursively.
104    */
105   private boolean scrollComplementaryPanel = true;
106
107   private PropertyChangeListener propertyChangeListener;
108
109   private CalculationChooser calculationDialog;
110
111   /**
112    * Creates a new AlignmentPanel object.
113    * 
114    * @param af
115    * @param av
116    */
117   public AlignmentPanel(AlignFrame af, final AlignViewport av)
118   {
119     alignFrame = af;
120     this.av = av;
121     setSeqPanel(new SeqPanel(av, this));
122     setIdPanel(new IdPanel(av, this));
123
124     setScalePanel(new ScalePanel(av, this));
125
126     idPanelHolder.add(getIdPanel(), BorderLayout.CENTER);
127     idwidthAdjuster = new IdwidthAdjuster(this);
128     idSpaceFillerPanel1.add(idwidthAdjuster, BorderLayout.CENTER);
129
130     setAnnotationPanel(new AnnotationPanel(this));
131     setAlabels(new AnnotationLabels(this));
132
133     annotationScroller.setViewportView(getAnnotationPanel());
134     annotationSpaceFillerHolder.add(getAlabels(), BorderLayout.CENTER);
135
136     scalePanelHolder.add(getScalePanel(), BorderLayout.CENTER);
137     seqPanelHolder.add(getSeqPanel(), BorderLayout.CENTER);
138
139     setScrollValues(0, 0);
140
141     hscroll.addAdjustmentListener(this);
142     vscroll.addAdjustmentListener(this);
143
144     addComponentListener(new ComponentAdapter()
145     {
146       @Override
147       public void componentResized(ComponentEvent evt)
148       {
149         // reset the viewport ranges when the alignment panel is resized
150         // in particular, this initialises the end residue value when Jalview
151         // is initialised
152         ViewportRanges ranges = av.getRanges();
153         if (av.getWrapAlignment())
154         {
155           int widthInRes = getSeqPanel().seqCanvas.getWrappedCanvasWidth(
156                   getSeqPanel().seqCanvas.getWidth());
157           ranges.setViewportWidth(widthInRes);
158         }
159         else
160         {
161           int widthInRes = getSeqPanel().seqCanvas.getWidth()
162                   / av.getCharWidth();
163           int heightInSeq = getSeqPanel().seqCanvas.getHeight()
164                   / av.getCharHeight();
165
166           ranges.setViewportWidth(widthInRes);
167           ranges.setViewportHeight(heightInSeq);
168         }
169       }
170
171     });
172
173     final AlignmentPanel ap = this;
174     propertyChangeListener = new PropertyChangeListener()
175     {
176       @Override
177       public void propertyChange(PropertyChangeEvent evt)
178       {
179         if (evt.getPropertyName().equals("alignment"))
180         {
181           PaintRefresher.Refresh(ap, av.getSequenceSetId(), true, true);
182           alignmentChanged();
183         }
184       }
185     };
186     av.addPropertyChangeListener(propertyChangeListener);
187
188     av.getRanges().addPropertyChangeListener(this);
189     fontChanged();
190     adjustAnnotationHeight();
191     updateLayout();
192   }
193
194   @Override
195   public AlignViewportI getAlignViewport()
196   {
197     return av;
198   }
199
200   public void alignmentChanged()
201   {
202     av.alignmentChanged(this);
203
204     if (getCalculationDialog() != null)
205     {
206       getCalculationDialog().validateCalcTypes();
207     }
208
209     alignFrame.updateEditMenuBar();
210
211     // no idea if we need to update structure
212     paintAlignment(true, true);
213
214   }
215
216   /**
217    * DOCUMENT ME!
218    */
219   public void fontChanged()
220   {
221     // set idCanvas bufferedImage to null
222     // to prevent drawing old image
223     FontMetrics fm = getFontMetrics(av.getFont());
224
225     scalePanelHolder.setPreferredSize(
226             new Dimension(10, av.getCharHeight() + fm.getDescent()));
227     idSpaceFillerPanel1.setPreferredSize(
228             new Dimension(10, av.getCharHeight() + fm.getDescent()));
229     idwidthAdjuster.invalidate();
230     scalePanelHolder.invalidate();
231     getIdPanel().getIdCanvas().gg = null;
232     getSeqPanel().seqCanvas.img = null;
233     getAnnotationPanel().adjustPanelHeight();
234
235     Dimension d = calculateIdWidth();
236
237     d.setSize(d.width + 4, d.height);
238     getIdPanel().getIdCanvas().setPreferredSize(d);
239     hscrollFillerPanel.setPreferredSize(d);
240
241     repaint();
242   }
243
244   /**
245    * Calculate the width of the alignment labels based on the displayed names
246    * and any bounds on label width set in preferences.
247    * 
248    * @return Dimension giving the maximum width of the alignment label panel
249    *         that should be used.
250    */
251   public Dimension calculateIdWidth()
252   {
253     // calculate sensible default width when no preference is available
254     Dimension r = null;
255     if (av.getIdWidth() < 0)
256     {
257       int afwidth = (alignFrame != null ? alignFrame.getWidth() : 300);
258       int maxwidth = Math.max(20, Math.min(afwidth - 200, 2 * afwidth / 3));
259       r = calculateIdWidth(maxwidth);
260       av.setIdWidth(r.width);
261     }
262     else
263     {
264       r = new Dimension();
265       r.width = av.getIdWidth();
266       r.height = 0;
267     }
268     return r;
269   }
270
271   /**
272    * Calculate the width of the alignment labels based on the displayed names
273    * and any bounds on label width set in preferences.
274    * 
275    * @param maxwidth
276    *          -1 or maximum width allowed for IdWidth
277    * @return Dimension giving the maximum width of the alignment label panel
278    *         that should be used.
279    */
280   public Dimension calculateIdWidth(int maxwidth)
281   {
282     Container c = new Container();
283
284     FontMetrics fm = c.getFontMetrics(
285             new Font(av.font.getName(), Font.ITALIC, av.font.getSize()));
286
287     AlignmentI al = av.getAlignment();
288     int i = 0;
289     int idWidth = 0;
290     String id;
291
292     while ((i < al.getHeight()) && (al.getSequenceAt(i) != null))
293     {
294       SequenceI s = al.getSequenceAt(i);
295
296       id = s.getDisplayId(av.getShowJVSuffix());
297
298       if (fm.stringWidth(id) > idWidth)
299       {
300         idWidth = fm.stringWidth(id);
301       }
302
303       i++;
304     }
305
306     // Also check annotation label widths
307     i = 0;
308
309     if (al.getAlignmentAnnotation() != null)
310     {
311       fm = c.getFontMetrics(getAlabels().getFont());
312
313       while (i < al.getAlignmentAnnotation().length)
314       {
315         String label = al.getAlignmentAnnotation()[i].label;
316
317         if (fm.stringWidth(label) > idWidth)
318         {
319           idWidth = fm.stringWidth(label);
320         }
321
322         i++;
323       }
324     }
325
326     return new Dimension(
327             maxwidth < 0 ? idWidth : Math.min(maxwidth, idWidth), 12);
328   }
329
330   /**
331    * Highlight the given results on the alignment.
332    * 
333    */
334   public void highlightSearchResults(SearchResultsI results)
335   {
336     boolean scrolled = scrollToPosition(results, 0, true, false);
337
338     boolean noFastPaint = scrolled && av.getWrapAlignment();
339
340     getSeqPanel().seqCanvas.highlightSearchResults(results, noFastPaint);
341   }
342
343   /**
344    * Scroll the view to show the position of the highlighted region in results
345    * (if any)
346    * 
347    * @param searchResults
348    * @param redrawOverview
349    * @return
350    */
351   public boolean scrollToPosition(SearchResultsI searchResults,
352           boolean redrawOverview)
353   {
354     return scrollToPosition(searchResults, 0, redrawOverview, false);
355   }
356
357   /**
358    * Scrolls the view (if necessary) to show the position of the first
359    * highlighted region in results (if any). Answers true if the view was
360    * scrolled, or false if no matched region was found, or it is already
361    * visible.
362    * 
363    * @param results
364    * @param verticalOffset
365    *          if greater than zero, allows scrolling to a position below the
366    *          first displayed sequence
367    * @param redrawOverview
368    *          - when set, the overview will be recalculated (takes longer)
369    * @param centre
370    *          if true, try to centre the search results horizontally in the view
371    * @return
372    */
373   protected boolean scrollToPosition(SearchResultsI results,
374           int verticalOffset, boolean redrawOverview, boolean centre)
375   {
376     int startv, endv, starts, ends;
377     ViewportRanges ranges = av.getRanges();
378
379     if (results == null || results.isEmpty() || av == null
380             || av.getAlignment() == null)
381     {
382       return false;
383     }
384     int seqIndex = av.getAlignment().findIndex(results);
385     if (seqIndex == -1)
386     {
387       return false;
388     }
389     SequenceI seq = av.getAlignment().getSequenceAt(seqIndex);
390
391     int[] r = results.getResults(seq, 0, av.getAlignment().getWidth());
392     if (r == null)
393     {
394       return false;
395     }
396     int start = r[0];
397     int end = r[1];
398
399     /*
400      * To centre results, scroll to positions half the visible width
401      * left/right of the start/end positions
402      */
403     if (centre)
404     {
405       int offset = (ranges.getEndRes() - ranges.getStartRes() + 1) / 2 - 1;
406       start = Math.max(start - offset, 0);
407       end = end + offset - 1;
408     }
409     if (start < 0)
410     {
411       return false;
412     }
413     if (end == seq.getEnd())
414     {
415       return false;
416     }
417
418     if (av.hasHiddenColumns())
419     {
420       HiddenColumns hidden = av.getAlignment().getHiddenColumns();
421       start = hidden.absoluteToVisibleColumn(start);
422       end = hidden.absoluteToVisibleColumn(end);
423       if (start == end)
424       {
425         if (!hidden.isVisible(r[0]))
426         {
427           // don't scroll - position isn't visible
428           return false;
429         }
430       }
431     }
432
433     /*
434      * allow for offset of target sequence (actually scroll to one above it)
435      */
436     seqIndex = Math.max(0, seqIndex - verticalOffset);
437     boolean scrollNeeded = true;
438
439     if (!av.getWrapAlignment())
440     {
441       if ((startv = ranges.getStartRes()) >= start)
442       {
443         /*
444          * Scroll left to make start of search results visible
445          */
446         setScrollValues(start, seqIndex);
447       }
448       else if ((endv = ranges.getEndRes()) <= end)
449       {
450         /*
451          * Scroll right to make end of search results visible
452          */
453         setScrollValues(startv + end - endv, seqIndex);
454       }
455       else if ((starts = ranges.getStartSeq()) > seqIndex)
456       {
457         /*
458          * Scroll up to make start of search results visible
459          */
460         setScrollValues(ranges.getStartRes(), seqIndex);
461       }
462       else if ((ends = ranges.getEndSeq()) <= seqIndex)
463       {
464         /*
465          * Scroll down to make end of search results visible
466          */
467         setScrollValues(ranges.getStartRes(), starts + seqIndex - ends
468                 + 1);
469       }
470       /*
471        * Else results are already visible - no need to scroll
472        */
473       scrollNeeded = false;
474     }
475     else
476     {
477       scrollNeeded = ranges.scrollToWrappedVisible(start);
478     }
479
480     paintAlignment(redrawOverview, false);
481
482     return scrollNeeded;
483   }
484
485   /**
486    * DOCUMENT ME!
487    * 
488    * @return DOCUMENT ME!
489    */
490   public OverviewPanel getOverviewPanel()
491   {
492     return overviewPanel;
493   }
494
495   /**
496    * DOCUMENT ME!
497    * 
498    * @param op
499    *          DOCUMENT ME!
500    */
501   public void setOverviewPanel(OverviewPanel op)
502   {
503     overviewPanel = op;
504   }
505
506   /**
507    * 
508    * @param b
509    *          Hide or show annotation panel
510    * 
511    */
512   public void setAnnotationVisible(boolean b)
513   {
514     if (!av.getWrapAlignment())
515     {
516       annotationSpaceFillerHolder.setVisible(b);
517       annotationScroller.setVisible(b);
518     }
519     repaint();
520   }
521
522   /**
523    * automatically adjust annotation panel height for new annotation whilst
524    * ensuring the alignment is still visible.
525    */
526   @Override
527   public void adjustAnnotationHeight()
528   {
529     // TODO: display vertical annotation scrollbar if necessary
530     // this is called after loading new annotation onto alignment
531     if (alignFrame.getHeight() == 0)
532     {
533       System.out.println("NEEDS FIXING");
534     }
535     validateAnnotationDimensions(true);
536     addNotify();
537     // TODO: many places call this method and also paintAlignment with various
538     // different settings. this means multiple redraws are triggered...
539     paintAlignment(true, false);
540   }
541
542   /**
543    * calculate the annotation dimensions and refresh slider values accordingly.
544    * need to do repaints/notifys afterwards.
545    */
546   protected void validateAnnotationDimensions(boolean adjustPanelHeight)
547   {
548     int annotationHeight = getAnnotationPanel().adjustPanelHeight();
549     annotationHeight = getAnnotationPanel()
550             .adjustForAlignFrame(adjustPanelHeight, annotationHeight);
551
552     hscroll.addNotify();
553     annotationScroller.setPreferredSize(
554             new Dimension(annotationScroller.getWidth(), annotationHeight));
555
556     Dimension e = idPanel.getSize();
557     alabels.setSize(new Dimension(e.width, annotationHeight));
558
559     annotationSpaceFillerHolder.setPreferredSize(new Dimension(
560             annotationSpaceFillerHolder.getWidth(), annotationHeight));
561     annotationScroller.validate();
562     annotationScroller.addNotify();
563   }
564
565   /**
566    * update alignment layout for viewport settings
567    * 
568    * @param wrap
569    *          DOCUMENT ME!
570    */
571   public void updateLayout()
572   {
573     fontChanged();
574     setAnnotationVisible(av.isShowAnnotation());
575     boolean wrap = av.getWrapAlignment();
576     ViewportRanges ranges = av.getRanges();
577     ranges.setStartSeq(0);
578     scalePanelHolder.setVisible(!wrap);
579     hscroll.setVisible(!wrap);
580     idwidthAdjuster.setVisible(!wrap);
581
582     if (wrap)
583     {
584       annotationScroller.setVisible(false);
585       annotationSpaceFillerHolder.setVisible(false);
586     }
587     else if (av.isShowAnnotation())
588     {
589       annotationScroller.setVisible(true);
590       annotationSpaceFillerHolder.setVisible(true);
591       validateAnnotationDimensions(false);
592     }
593
594     int canvasWidth = getSeqPanel().seqCanvas.getWidth();
595     if (canvasWidth > 0)
596     { // may not yet be laid out
597       if (wrap)
598       {
599         int widthInRes = getSeqPanel().seqCanvas
600                 .getWrappedCanvasWidth(canvasWidth);
601         ranges.setViewportWidth(widthInRes);
602       }
603       else
604       {
605         int widthInRes = (canvasWidth / av.getCharWidth());
606         int heightInSeq = (getSeqPanel().seqCanvas.getHeight()
607                 / av.getCharHeight());
608
609         ranges.setViewportWidth(widthInRes);
610         ranges.setViewportHeight(heightInSeq);
611       }
612     }
613
614     idSpaceFillerPanel1.setVisible(!wrap);
615
616     repaint();
617   }
618
619   /**
620    * Adjust row/column scrollers to show a visible position in the alignment.
621    * 
622    * @param x
623    *          visible column to scroll to
624    * @param y
625    *          visible row to scroll to
626    * 
627    */
628   public void setScrollValues(int xpos, int ypos)
629   {
630     int x = xpos;
631     int y = ypos;
632
633     if (av == null || av.getAlignment() == null)
634     {
635       return;
636     }
637
638     if (av.getWrapAlignment())
639     {
640       setScrollingForWrappedPanel(x);
641     }
642     else
643     {
644       int width = av.getAlignment().getWidth();
645       int height = av.getAlignment().getHeight();
646
647       if (av.hasHiddenColumns())
648       {
649         // reset the width to exclude hidden columns
650         width = av.getAlignment().getHiddenColumns()
651                 .absoluteToVisibleColumn(width);
652       }
653
654       hextent = getSeqPanel().seqCanvas.getWidth() / av.getCharWidth();
655       vextent = getSeqPanel().seqCanvas.getHeight() / av.getCharHeight();
656
657       if (hextent > width)
658       {
659         hextent = width;
660       }
661
662       if (vextent > height)
663       {
664         vextent = height;
665       }
666
667       if ((hextent + x) > width)
668       {
669         x = width - hextent;
670       }
671
672       if ((vextent + y) > height)
673       {
674         y = height - vextent;
675       }
676
677       if (y < 0)
678       {
679         y = 0;
680       }
681
682       if (x < 0)
683       {
684         x = 0;
685       }
686
687       // update the scroll values
688       hscroll.setValues(x, hextent, 0, width);
689       vscroll.setValues(y, vextent, 0, height);
690     }
691   }
692
693   /**
694    * Respond to adjustment event when horizontal or vertical scrollbar is
695    * changed
696    * 
697    * @param evt
698    *          adjustment event encoding whether hscroll or vscroll changed
699    */
700   @Override
701   public void adjustmentValueChanged(AdjustmentEvent evt)
702   {
703     if (av.getWrapAlignment())
704     {
705       adjustScrollingWrapped(evt);
706       return;
707     }
708
709     ViewportRanges ranges = av.getRanges();
710
711     if (evt.getSource() == hscroll)
712     {
713       int oldX = ranges.getStartRes();
714       int oldwidth = ranges.getViewportWidth();
715       int x = hscroll.getValue();
716       int width = getSeqPanel().seqCanvas.getWidth() / av.getCharWidth();
717
718       // if we're scrolling to the position we're already at, stop
719       // this prevents infinite recursion of events when the scroll/viewport
720       // ranges values are the same
721       if ((x == oldX) && (width == oldwidth))
722       {
723         return;
724       }
725       ranges.setViewportStartAndWidth(x, width);
726     }
727     else if (evt.getSource() == vscroll)
728     {
729       int oldY = ranges.getStartSeq();
730       int oldheight = ranges.getViewportHeight();
731       int y = vscroll.getValue();
732       int height = getSeqPanel().seqCanvas.getHeight() / av.getCharHeight();
733
734       // if we're scrolling to the position we're already at, stop
735       // this prevents infinite recursion of events when the scroll/viewport
736       // ranges values are the same
737       if ((y == oldY) && (height == oldheight))
738       {
739         return;
740       }
741       ranges.setViewportStartAndHeight(y, height);
742     }
743     repaint();
744   }
745
746   /**
747    * Responds to a scroll change by setting the start position of the viewport.
748    * Does
749    * 
750    * @param evt
751    */
752   protected void adjustScrollingWrapped(AdjustmentEvent evt)
753   {
754     if (evt.getSource() == hscroll)
755     {
756       return; // no horizontal scroll when wrapped
757     }
758     final ViewportRanges ranges = av.getRanges();
759
760     if (evt.getSource() == vscroll)
761     {
762       int newY = vscroll.getValue();
763
764       /*
765        * if we're scrolling to the position we're already at, stop
766        * this prevents infinite recursion of events when the scroll/viewport
767        * ranges values are the same
768        */
769       int oldX = ranges.getStartRes();
770       int oldY = ranges.getWrappedScrollPosition(oldX);
771       if (oldY == newY)
772       {
773         return;
774       }
775       if (newY > -1)
776       {
777         /*
778          * limit page up/down to one width's worth of positions
779          */
780         int rowSize = ranges.getViewportWidth();
781         int newX = newY > oldY ? oldX + rowSize : oldX - rowSize;
782         ranges.setViewportStartAndWidth(Math.max(0, newX), rowSize);
783       }
784     }
785     else
786     {
787       // This is only called if file loaded is a jar file that
788       // was wrapped when saved and user has wrap alignment true
789       // as preference setting
790       SwingUtilities.invokeLater(new Runnable()
791       {
792         @Override
793         public void run()
794         {
795           // When updating scrolling to use ViewportChange events, this code
796           // could not be validated and it is not clear if it is now being
797           // called. Log warning here in case it is called and unforeseen
798           // problems occur
799           Cache.log.warn(
800                   "Unexpected path through code: Wrapped jar file opened with wrap alignment set in preferences");
801
802           // scroll to start of panel
803           ranges.setStartRes(0);
804           ranges.setStartSeq(0);
805         }
806       });
807     }
808     repaint();
809   }
810
811   /* (non-Javadoc)
812    * @see jalview.api.AlignmentViewPanel#paintAlignment(boolean)
813    */
814   @Override
815   public void paintAlignment(boolean updateOverview,
816           boolean updateStructures)
817   {
818     final AnnotationSorter sorter = new AnnotationSorter(getAlignment(),
819             av.isShowAutocalculatedAbove());
820     sorter.sort(getAlignment().getAlignmentAnnotation(),
821             av.getSortAnnotationsBy());
822     repaint();
823
824     if (updateStructures)
825     {
826       av.getStructureSelectionManager().sequenceColoursChanged(this);
827     }
828     if (updateOverview)
829     {
830
831       if (overviewPanel != null)
832       {
833         overviewPanel.updateOverviewImage();
834       }
835     }
836   }
837
838   /**
839    * DOCUMENT ME!
840    * 
841    * @param g
842    *          DOCUMENT ME!
843    */
844   @Override
845   public void paintComponent(Graphics g)
846   {
847     invalidate(); // needed so that the id width adjuster works correctly
848
849     Dimension d = getIdPanel().getIdCanvas().getPreferredSize();
850     idPanelHolder.setPreferredSize(d);
851     hscrollFillerPanel.setPreferredSize(new Dimension(d.width, 12));
852
853     validate(); // needed so that the id width adjuster works correctly
854
855     /*
856      * set scroll bar positions - tried to remove but necessary for split panel to resize correctly
857      * though I still think this call should be elsewhere.
858      */
859     ViewportRanges ranges = av.getRanges();
860     setScrollValues(ranges.getStartRes(), ranges.getStartSeq());
861   }
862
863   /**
864    * Set vertical scroll bar position, and number of increments, for wrapped
865    * panel
866    * 
867    * @param topLeftColumn
868    *          the column position at top left (0..)
869    */
870   private void setScrollingForWrappedPanel(int topLeftColumn)
871   {
872     ViewportRanges ranges = av.getRanges();
873     int scrollPosition = ranges.getWrappedScrollPosition(topLeftColumn);
874     int maxScroll = ranges.getWrappedMaxScroll(topLeftColumn);
875
876     /*
877      * a scrollbar's value can be set to at most (maximum-extent)
878      * so we add extent (1) to the maxScroll value
879      */
880     vscroll.setUnitIncrement(1);
881     vscroll.setValues(scrollPosition, 1, 0, maxScroll + 1);
882   }
883
884   /**
885    * DOCUMENT ME!
886    * 
887    * @param pg
888    *          DOCUMENT ME!
889    * @param pf
890    *          DOCUMENT ME!
891    * @param pi
892    *          DOCUMENT ME!
893    * 
894    * @return DOCUMENT ME!
895    * 
896    * @throws PrinterException
897    *           DOCUMENT ME!
898    */
899   @Override
900   public int print(Graphics pg, PageFormat pf, int pi)
901           throws PrinterException
902   {
903     pg.translate((int) pf.getImageableX(), (int) pf.getImageableY());
904
905     int pwidth = (int) pf.getImageableWidth();
906     int pheight = (int) pf.getImageableHeight();
907
908     if (av.getWrapAlignment())
909     {
910       return printWrappedAlignment(pwidth, pheight, pi, pg);
911     }
912     else
913     {
914       return printUnwrapped(pwidth, pheight, pi, pg, pg);
915     }
916   }
917
918   /**
919    * Draws the alignment image, including sequence ids, sequences, and
920    * annotation labels and annotations if shown, on either one or two Graphics
921    * contexts.
922    * 
923    * @param pageWidth
924    *          in pixels
925    * @param pageHeight
926    *          in pixels
927    * @param pageIndex
928    *          (0, 1, ...)
929    * @param idGraphics
930    *          the graphics context for sequence ids and annotation labels
931    * @param alignmentGraphics
932    *          the graphics context for sequences and annotations (may or may not
933    *          be the same context as idGraphics)
934    * @return
935    * @throws PrinterException
936    */
937   public int printUnwrapped(int pageWidth, int pageHeight, int pageIndex,
938           Graphics idGraphics, Graphics alignmentGraphics)
939           throws PrinterException
940   {
941     final int idWidth = getVisibleIdWidth(false);
942
943     /*
944      * Get the horizontal offset to where we draw the sequences.
945      * This is idWidth if using a single Graphics context, else zero.
946      */
947     final int alignmentGraphicsOffset = idGraphics != alignmentGraphics ? 0
948             : idWidth;
949
950     FontMetrics fm = getFontMetrics(av.getFont());
951     final int charHeight = av.getCharHeight();
952     final int scaleHeight = charHeight + fm.getDescent();
953
954     idGraphics.setColor(Color.white);
955     idGraphics.fillRect(0, 0, pageWidth, pageHeight);
956     idGraphics.setFont(av.getFont());
957
958     /*
959      * How many sequences and residues can we fit on a printable page?
960      */
961     final int totalRes = (pageWidth - idWidth) / av.getCharWidth();
962
963     final int totalSeq = (pageHeight - scaleHeight) / charHeight - 1;
964
965     final int alignmentWidth = av.getAlignment().getWidth();
966     final int pagesWide = (alignmentWidth / totalRes) + 1;
967
968     final int startRes = (pageIndex % pagesWide) * totalRes;
969     final int endRes = Math.min(startRes + totalRes - 1,
970             alignmentWidth - 1);
971
972     final int startSeq = (pageIndex / pagesWide) * totalSeq;
973     final int alignmentHeight = av.getAlignment().getHeight();
974     final int endSeq = Math.min(startSeq + totalSeq, alignmentHeight);
975
976     int pagesHigh = ((alignmentHeight / totalSeq) + 1) * pageHeight;
977
978     if (av.isShowAnnotation())
979     {
980       pagesHigh += getAnnotationPanel().adjustPanelHeight() + 3;
981     }
982
983     pagesHigh /= pageHeight;
984
985     if (pageIndex >= (pagesWide * pagesHigh))
986     {
987       return Printable.NO_SUCH_PAGE;
988     }
989     final int alignmentDrawnHeight = (endSeq - startSeq) * charHeight + 3;
990
991     /*
992      * draw the Scale at horizontal offset, then reset to top left (0, 0)
993      */
994     alignmentGraphics.translate(alignmentGraphicsOffset, 0);
995     getScalePanel().drawScale(alignmentGraphics, startRes, endRes,
996             pageWidth - idWidth, scaleHeight);
997     alignmentGraphics.translate(-alignmentGraphicsOffset, 0);
998
999     /*
1000      * Draw the sequence ids, offset for scale height,
1001      * then reset to top left (0, 0)
1002      */
1003     idGraphics.translate(0, scaleHeight);
1004     IdCanvas idCanvas = getIdPanel().getIdCanvas();
1005     List<SequenceI> selection = av.getSelectionGroup() == null ? null
1006             : av.getSelectionGroup().getSequences(null);
1007     idCanvas.drawIds((Graphics2D) idGraphics, av, startSeq, endSeq - 1,
1008             selection);
1009
1010     idGraphics.setFont(av.getFont());
1011     idGraphics.translate(0, -scaleHeight);
1012
1013     /*
1014      * draw the sequences, offset for scale height, and id width (if using a
1015      * single graphics context), then reset to (0, scale height)
1016      */
1017     alignmentGraphics.translate(alignmentGraphicsOffset, scaleHeight);
1018     getSeqPanel().seqCanvas.drawPanelForPrinting(alignmentGraphics, startRes,
1019             endRes, startSeq, endSeq - 1);
1020     alignmentGraphics.translate(-alignmentGraphicsOffset, 0);
1021
1022     if (av.isShowAnnotation() && (endSeq == alignmentHeight))
1023     {
1024       /*
1025        * draw annotation labels; drawComponent() translates by
1026        * getScrollOffset(), so compensate for that first;
1027        * then reset to (0, scale height)
1028        */
1029       int offset = getAlabels().getScrollOffset();
1030       idGraphics.translate(0, -offset);
1031       idGraphics.translate(0, alignmentDrawnHeight);
1032       getAlabels().drawComponent(idGraphics, idWidth);
1033       idGraphics.translate(0, -alignmentDrawnHeight);
1034
1035       /*
1036        * draw the annotations starting at 
1037        * (idOffset, alignmentHeight) from (0, scaleHeight)
1038        */
1039       alignmentGraphics.translate(alignmentGraphicsOffset,
1040               alignmentDrawnHeight);
1041       getAnnotationPanel().renderer.drawComponent(getAnnotationPanel(), av,
1042               alignmentGraphics, -1, startRes, endRes + 1);
1043     }
1044
1045     return Printable.PAGE_EXISTS;
1046   }
1047
1048   /**
1049    * Prints one page of an alignment in wrapped mode. Returns
1050    * Printable.PAGE_EXISTS (0) if a page was drawn, or Printable.NO_SUCH_PAGE if
1051    * no page could be drawn (page number out of range).
1052    * 
1053    * @param pageWidth
1054    * @param pageHeight
1055    * @param pageNumber
1056    *          (0, 1, ...)
1057    * @param g
1058    * 
1059    * @return
1060    * 
1061    * @throws PrinterException
1062    */
1063   public int printWrappedAlignment(int pageWidth, int pageHeight, int pageNumber,
1064           Graphics g) throws PrinterException
1065   {
1066     int annotationHeight = 0;
1067     if (av.isShowAnnotation())
1068     {
1069       annotationHeight = getAnnotationPanel().adjustPanelHeight();
1070     }
1071
1072     int hgap = av.getCharHeight();
1073     if (av.getScaleAboveWrapped())
1074     {
1075       hgap += av.getCharHeight();
1076     }
1077
1078     int cHeight = av.getAlignment().getHeight() * av.getCharHeight() + hgap
1079             + annotationHeight;
1080
1081     int idWidth = getVisibleIdWidth(false);
1082
1083     int maxwidth = av.getAlignment().getWidth();
1084     if (av.hasHiddenColumns())
1085     {
1086       maxwidth = av.getAlignment().getHiddenColumns()
1087               .absoluteToVisibleColumn(maxwidth) - 1;
1088     }
1089
1090     int resWidth = getSeqPanel().seqCanvas
1091             .getWrappedCanvasWidth(pageWidth - idWidth);
1092
1093     int totalHeight = cHeight * (maxwidth / resWidth + 1);
1094
1095     g.setColor(Color.white);
1096     g.fillRect(0, 0, pageWidth, pageHeight);
1097     g.setFont(av.getFont());
1098     g.setColor(Color.black);
1099
1100     /*
1101      * method: print the whole wrapped alignment, but with a clip region that
1102      * is restricted to the requested page; this supports selective print of 
1103      * single  pages or ranges, (at the cost of some repeated processing in 
1104      * the 'normal' case, when all pages are printed)
1105      */
1106     g.translate(0, -pageNumber * pageHeight);
1107
1108     g.setClip(0, pageNumber * pageHeight, pageWidth, pageHeight);
1109
1110     /*
1111      * draw sequence ids and annotation labels (if shown)
1112      */
1113     IdCanvas idCanvas = getIdPanel().getIdCanvas();
1114     idCanvas.drawIdsWrapped((Graphics2D) g, av, 0, totalHeight);
1115
1116     g.translate(idWidth, 0);
1117
1118     getSeqPanel().seqCanvas.drawWrappedPanelForPrinting(g, pageWidth - idWidth,
1119             totalHeight, 0);
1120
1121     if ((pageNumber * pageHeight) < totalHeight)
1122     {
1123       return Printable.PAGE_EXISTS;
1124     }
1125     else
1126     {
1127       return Printable.NO_SUCH_PAGE;
1128     }
1129   }
1130
1131   /**
1132    * get current sequence ID panel width, or nominal value if panel were to be
1133    * displayed using default settings
1134    * 
1135    * @return
1136    */
1137   public int getVisibleIdWidth()
1138   {
1139     return getVisibleIdWidth(true);
1140   }
1141
1142   /**
1143    * get current sequence ID panel width, or nominal value if panel were to be
1144    * displayed using default settings
1145    * 
1146    * @param onscreen
1147    *          indicate if the Id width for onscreen or offscreen display should
1148    *          be returned
1149    * @return
1150    */
1151   public int getVisibleIdWidth(boolean onscreen)
1152   {
1153     // see if rendering offscreen - check preferences and calc width accordingly
1154     if (!onscreen && Cache.getDefault("FIGURE_AUTOIDWIDTH", false))
1155     {
1156       return calculateIdWidth(-1).width + 4;
1157     }
1158     Integer idwidth = null;
1159     if (onscreen || (idwidth = Cache
1160             .getIntegerProperty("FIGURE_FIXEDIDWIDTH")) == null)
1161     {
1162       int w = getIdPanel().getWidth();
1163       return (w > 0 ? w : calculateIdWidth().width + 4);
1164     }
1165     return idwidth.intValue() + 4;
1166   }
1167
1168   void makeAlignmentImage(jalview.util.ImageMaker.TYPE type, File file)
1169   {
1170     int boarderBottomOffset = 5;
1171     long pSessionId = System.currentTimeMillis();
1172     headless = (System.getProperty("java.awt.headless") != null
1173             && System.getProperty("java.awt.headless").equals("true"));
1174     if (alignFrame != null && !headless)
1175     {
1176       if (file != null)
1177       {
1178         alignFrame.setProgressBar(MessageManager
1179                 .formatMessage("status.saving_file", new Object[]
1180                 { type.getLabel() }), pSessionId);
1181       }
1182     }
1183     try
1184     {
1185       AlignmentDimension aDimension = getAlignmentDimension();
1186       try
1187       {
1188         jalview.util.ImageMaker im;
1189         final String imageAction, imageTitle;
1190         if (type == jalview.util.ImageMaker.TYPE.PNG)
1191         {
1192           imageAction = "Create PNG image from alignment";
1193           imageTitle = null;
1194         }
1195         else if (type == jalview.util.ImageMaker.TYPE.EPS)
1196         {
1197           imageAction = "Create EPS file from alignment";
1198           imageTitle = alignFrame.getTitle();
1199         }
1200         else
1201         {
1202           imageAction = "Create SVG file from alignment";
1203           imageTitle = alignFrame.getTitle();
1204         }
1205
1206         im = new jalview.util.ImageMaker(this, type, imageAction,
1207                 aDimension.getWidth(),
1208                 aDimension.getHeight() + boarderBottomOffset, file,
1209                 imageTitle, alignFrame, pSessionId, headless);
1210         Graphics graphics = im.getGraphics();
1211         if (av.getWrapAlignment())
1212         {
1213           if (graphics != null)
1214           {
1215             printWrappedAlignment(aDimension.getWidth(),
1216                     aDimension.getHeight() + boarderBottomOffset, 0,
1217                     graphics);
1218             im.writeImage();
1219           }
1220         }
1221         else
1222         {
1223           if (graphics != null)
1224           {
1225             printUnwrapped(aDimension.getWidth(), aDimension.getHeight(), 0,
1226                     graphics, graphics);
1227             im.writeImage();
1228           }
1229         }
1230
1231       } catch (OutOfMemoryError err)
1232       {
1233         // Be noisy here.
1234         System.out.println("########################\n" + "OUT OF MEMORY "
1235                 + file + "\n" + "########################");
1236         new OOMWarning("Creating Image for " + file, err);
1237         // System.out.println("Create IMAGE: " + err);
1238       } catch (Exception ex)
1239       {
1240         ex.printStackTrace();
1241       }
1242     } finally
1243     {
1244
1245     }
1246   }
1247
1248   public AlignmentDimension getAlignmentDimension()
1249   {
1250     int maxwidth = av.getAlignment().getWidth();
1251     if (av.hasHiddenColumns())
1252     {
1253       maxwidth = av.getAlignment().getHiddenColumns()
1254               .absoluteToVisibleColumn(maxwidth);
1255     }
1256
1257     int height = ((av.getAlignment().getHeight() + 1) * av.getCharHeight())
1258             + getScalePanel().getHeight();
1259     int width = getVisibleIdWidth(false) + (maxwidth * av.getCharWidth());
1260
1261     if (av.getWrapAlignment())
1262     {
1263       height = getWrappedHeight();
1264       if (headless)
1265       {
1266         // need to obtain default alignment width and then add in any
1267         // additional allowance for id margin
1268         // this duplicates the calculation in getWrappedHeight but adjusts for
1269         // offscreen idWith
1270         width = alignFrame.getWidth() - vscroll.getPreferredSize().width
1271                 - alignFrame.getInsets().left - alignFrame.getInsets().right
1272                 - getVisibleIdWidth() + getVisibleIdWidth(false);
1273       }
1274       else
1275       {
1276         width = getSeqPanel().getWidth() + getVisibleIdWidth(false);
1277       }
1278
1279     }
1280     else if (av.isShowAnnotation())
1281     {
1282       height += getAnnotationPanel().adjustPanelHeight() + 3;
1283     }
1284     return new AlignmentDimension(width, height);
1285
1286   }
1287
1288   /**
1289    * DOCUMENT ME!
1290    */
1291   public void makeEPS(File epsFile)
1292   {
1293     makeAlignmentImage(jalview.util.ImageMaker.TYPE.EPS, epsFile);
1294   }
1295
1296   /**
1297    * DOCUMENT ME!
1298    */
1299   public void makePNG(File pngFile)
1300   {
1301     makeAlignmentImage(jalview.util.ImageMaker.TYPE.PNG, pngFile);
1302   }
1303
1304   public void makeSVG(File svgFile)
1305   {
1306     makeAlignmentImage(jalview.util.ImageMaker.TYPE.SVG, svgFile);
1307   }
1308
1309   public void makePNGImageMap(File imgMapFile, String imageName)
1310   {
1311     // /////ONLY WORKS WITH NON WRAPPED ALIGNMENTS
1312     // ////////////////////////////////////////////
1313     int idWidth = getVisibleIdWidth(false);
1314     FontMetrics fm = getFontMetrics(av.getFont());
1315     int scaleHeight = av.getCharHeight() + fm.getDescent();
1316
1317     // Gen image map
1318     // ////////////////////////////////
1319     if (imgMapFile != null)
1320     {
1321       try
1322       {
1323         int sSize = av.getAlignment().getHeight();
1324         int alwidth = av.getAlignment().getWidth();
1325         PrintWriter out = new PrintWriter(new FileWriter(imgMapFile));
1326         out.println(HTMLOutput.getImageMapHTML());
1327         out.println("<img src=\"" + imageName
1328                 + "\" border=\"0\" usemap=\"#Map\" >"
1329                 + "<map name=\"Map\">");
1330
1331         for (int s = 0; s < sSize; s++)
1332         {
1333           int sy = s * av.getCharHeight() + scaleHeight;
1334
1335           SequenceI seq = av.getAlignment().getSequenceAt(s);
1336           SequenceGroup[] groups = av.getAlignment().findAllGroups(seq);
1337           for (int column = 0; column < alwidth; column++)
1338           {
1339             StringBuilder text = new StringBuilder(512);
1340             String triplet = null;
1341             if (av.getAlignment().isNucleotide())
1342             {
1343               triplet = ResidueProperties.nucleotideName.get(seq
1344                       .getCharAt(column) + "");
1345             }
1346             else
1347             {
1348               triplet = ResidueProperties.aa2Triplet.get(seq.getCharAt(column)
1349                       + "");
1350             }
1351
1352             if (triplet == null)
1353             {
1354               continue;
1355             }
1356
1357             int seqPos = seq.findPosition(column);
1358             int gSize = groups.length;
1359             for (int g = 0; g < gSize; g++)
1360             {
1361               if (text.length() < 1)
1362               {
1363                 text.append("<area shape=\"rect\" coords=\"")
1364                         .append((idWidth + column * av.getCharWidth()))
1365                         .append(",").append(sy).append(",")
1366                         .append((idWidth + (column + 1) * av.getCharWidth()))
1367                         .append(",").append((av.getCharHeight() + sy))
1368                         .append("\"").append(" onMouseOver=\"toolTip('")
1369                         .append(seqPos).append(" ").append(triplet);
1370               }
1371
1372               if (groups[g].getStartRes() < column
1373                       && groups[g].getEndRes() > column)
1374               {
1375                 text.append("<br><em>").append(groups[g].getName())
1376                         .append("</em>");
1377               }
1378             }
1379
1380             if (text.length() < 1)
1381             {
1382               text.append("<area shape=\"rect\" coords=\"")
1383                       .append((idWidth + column * av.getCharWidth()))
1384                       .append(",").append(sy).append(",")
1385                       .append((idWidth + (column + 1) * av.getCharWidth()))
1386                       .append(",").append((av.getCharHeight() + sy))
1387                       .append("\"").append(" onMouseOver=\"toolTip('")
1388                       .append(seqPos).append(" ").append(triplet);
1389             }
1390             if (!Comparison.isGap(seq.getCharAt(column)))
1391             {
1392               List<SequenceFeature> features = seq.findFeatures(column, column);
1393               for (SequenceFeature sf : features)
1394               {
1395                 if (sf.isContactFeature())
1396                 {
1397                   text.append("<br>").append(sf.getType()).append(" ")
1398                           .append(sf.getBegin()).append(":")
1399                           .append(sf.getEnd());
1400                 }
1401                 else
1402                 {
1403                   text.append("<br>");
1404                   text.append(sf.getType());
1405                   String description = sf.getDescription();
1406                   if (description != null
1407                           && !sf.getType().equals(description))
1408                   {
1409                     description = description.replace("\"", "&quot;");
1410                     text.append(" ").append(description);
1411                   }
1412                 }
1413                 String status = sf.getStatus();
1414                 if (status != null && !"".equals(status))
1415                 {
1416                   text.append(" (").append(status).append(")");
1417                 }
1418               }
1419               if (text.length() > 1)
1420               {
1421                 text.append("')\"; onMouseOut=\"toolTip()\";  href=\"#\">");
1422                 out.println(text.toString());
1423               }
1424             }
1425           }
1426         }
1427         out.println("</map></body></html>");
1428         out.close();
1429
1430       } catch (Exception ex)
1431       {
1432         ex.printStackTrace();
1433       }
1434     } // /////////END OF IMAGE MAP
1435
1436   }
1437
1438   int getWrappedHeight()
1439   {
1440     int seqPanelWidth = getSeqPanel().seqCanvas.getWidth();
1441
1442     if (System.getProperty("java.awt.headless") != null
1443             && System.getProperty("java.awt.headless").equals("true"))
1444     {
1445       seqPanelWidth = alignFrame.getWidth() - getVisibleIdWidth()
1446               - vscroll.getPreferredSize().width
1447               - alignFrame.getInsets().left - alignFrame.getInsets().right;
1448     }
1449
1450     int chunkWidth = getSeqPanel().seqCanvas
1451             .getWrappedCanvasWidth(seqPanelWidth);
1452
1453     int hgap = av.getCharHeight();
1454     if (av.getScaleAboveWrapped())
1455     {
1456       hgap += av.getCharHeight();
1457     }
1458
1459     int annotationHeight = 0;
1460     if (av.isShowAnnotation())
1461     {
1462       annotationHeight = getAnnotationPanel().adjustPanelHeight();
1463     }
1464
1465     int cHeight = av.getAlignment().getHeight() * av.getCharHeight() + hgap
1466             + annotationHeight;
1467
1468     int maxwidth = av.getAlignment().getWidth();
1469     if (av.hasHiddenColumns())
1470     {
1471       maxwidth = av.getAlignment().getHiddenColumns()
1472               .absoluteToVisibleColumn(maxwidth) - 1;
1473     }
1474
1475     int height = ((maxwidth / chunkWidth) + 1) * cHeight;
1476
1477     return height;
1478   }
1479
1480   /**
1481    * close the panel - deregisters all listeners and nulls any references to
1482    * alignment data.
1483    */
1484   public void closePanel()
1485   {
1486     PaintRefresher.RemoveComponent(getSeqPanel().seqCanvas);
1487     PaintRefresher.RemoveComponent(getIdPanel().getIdCanvas());
1488     PaintRefresher.RemoveComponent(this);
1489
1490     closeChildFrames();
1491
1492     /*
1493      * try to ensure references are nulled
1494      */
1495     if (annotationPanel != null)
1496     {
1497       annotationPanel.dispose();
1498       annotationPanel = null;
1499     }
1500
1501     if (av != null)
1502     {
1503       av.removePropertyChangeListener(propertyChangeListener);
1504       propertyChangeListener = null;
1505       StructureSelectionManager ssm = av.getStructureSelectionManager();
1506       ssm.removeStructureViewerListener(getSeqPanel(), null);
1507       ssm.removeSelectionListener(getSeqPanel());
1508       ssm.removeCommandListener(av);
1509       ssm.removeStructureViewerListener(getSeqPanel(), null);
1510       ssm.removeSelectionListener(getSeqPanel());
1511       av.dispose();
1512       av = null;
1513     }
1514     else
1515     {
1516       if (Cache.log.isDebugEnabled())
1517       {
1518         Cache.log.warn("Closing alignment panel which is already closed.");
1519       }
1520     }
1521   }
1522
1523   /**
1524    * Close any open dialogs that would be orphaned when this one is closed
1525    */
1526   protected void closeChildFrames()
1527   {
1528     if (overviewPanel != null)
1529     {
1530       overviewPanel.dispose();
1531       overviewPanel = null;
1532     }
1533     if (calculationDialog != null)
1534     {
1535       calculationDialog.closeFrame();
1536       calculationDialog = null;
1537     }
1538   }
1539
1540   /**
1541    * hides or shows dynamic annotation rows based on groups and av state flags
1542    */
1543   public void updateAnnotation()
1544   {
1545     updateAnnotation(false, false);
1546   }
1547
1548   public void updateAnnotation(boolean applyGlobalSettings)
1549   {
1550     updateAnnotation(applyGlobalSettings, false);
1551   }
1552
1553   public void updateAnnotation(boolean applyGlobalSettings,
1554           boolean preserveNewGroupSettings)
1555   {
1556     av.updateGroupAnnotationSettings(applyGlobalSettings,
1557             preserveNewGroupSettings);
1558     adjustAnnotationHeight();
1559   }
1560
1561   @Override
1562   public AlignmentI getAlignment()
1563   {
1564     return av == null ? null : av.getAlignment();
1565   }
1566
1567   @Override
1568   public String getViewName()
1569   {
1570     return av.getViewName();
1571   }
1572
1573   /**
1574    * Make/Unmake this alignment panel the current input focus
1575    * 
1576    * @param b
1577    */
1578   public void setSelected(boolean b)
1579   {
1580     try
1581     {
1582       if (alignFrame.getSplitViewContainer() != null)
1583       {
1584         /*
1585          * bring enclosing SplitFrame to front first if there is one
1586          */
1587         ((SplitFrame) alignFrame.getSplitViewContainer()).setSelected(b);
1588       }
1589       alignFrame.setSelected(b);
1590     } catch (Exception ex)
1591     {
1592     }
1593
1594     if (b)
1595     {
1596       alignFrame.setDisplayedView(this);
1597     }
1598   }
1599
1600   @Override
1601   public StructureSelectionManager getStructureSelectionManager()
1602   {
1603     return av.getStructureSelectionManager();
1604   }
1605
1606   @Override
1607   public void raiseOOMWarning(String string, OutOfMemoryError error)
1608   {
1609     new OOMWarning(string, error, this);
1610   }
1611
1612   @Override
1613   public jalview.api.FeatureRenderer cloneFeatureRenderer()
1614   {
1615
1616     return new FeatureRenderer(this);
1617   }
1618
1619   @Override
1620   public jalview.api.FeatureRenderer getFeatureRenderer()
1621   {
1622     return seqPanel.seqCanvas.getFeatureRenderer();
1623   }
1624
1625   public void updateFeatureRenderer(
1626           jalview.renderer.seqfeatures.FeatureRenderer fr)
1627   {
1628     fr.transferSettings(getSeqPanel().seqCanvas.getFeatureRenderer());
1629   }
1630
1631   public void updateFeatureRendererFrom(jalview.api.FeatureRenderer fr)
1632   {
1633     if (getSeqPanel().seqCanvas.getFeatureRenderer() != null)
1634     {
1635       getSeqPanel().seqCanvas.getFeatureRenderer().transferSettings(fr);
1636     }
1637   }
1638
1639   public ScalePanel getScalePanel()
1640   {
1641     return scalePanel;
1642   }
1643
1644   public void setScalePanel(ScalePanel scalePanel)
1645   {
1646     this.scalePanel = scalePanel;
1647   }
1648
1649   public SeqPanel getSeqPanel()
1650   {
1651     return seqPanel;
1652   }
1653
1654   public void setSeqPanel(SeqPanel seqPanel)
1655   {
1656     this.seqPanel = seqPanel;
1657   }
1658
1659   public AnnotationPanel getAnnotationPanel()
1660   {
1661     return annotationPanel;
1662   }
1663
1664   public void setAnnotationPanel(AnnotationPanel annotationPanel)
1665   {
1666     this.annotationPanel = annotationPanel;
1667   }
1668
1669   public AnnotationLabels getAlabels()
1670   {
1671     return alabels;
1672   }
1673
1674   public void setAlabels(AnnotationLabels alabels)
1675   {
1676     this.alabels = alabels;
1677   }
1678
1679   public IdPanel getIdPanel()
1680   {
1681     return idPanel;
1682   }
1683
1684   public void setIdPanel(IdPanel idPanel)
1685   {
1686     this.idPanel = idPanel;
1687   }
1688
1689   /**
1690    * Follow a scrolling change in the (cDNA/Protein) complementary alignment.
1691    * The aim is to keep the two alignments 'lined up' on their centre columns.
1692    * 
1693    * @param sr
1694    *          holds mapped region(s) of this alignment that we are scrolling
1695    *          'to'; may be modified for sequence offset by this method
1696    * @param verticalOffset
1697    *          the number of visible sequences to show above the mapped region
1698    */
1699   protected void scrollToCentre(SearchResultsI sr, int verticalOffset)
1700   {
1701     scrollToPosition(sr, verticalOffset, true, true);
1702   }
1703
1704   /**
1705    * Set a flag to say do not scroll any (cDNA/protein) complement.
1706    * 
1707    * @param b
1708    */
1709   protected void setToScrollComplementPanel(boolean b)
1710   {
1711     this.scrollComplementaryPanel = b;
1712   }
1713
1714   /**
1715    * Get whether to scroll complement panel
1716    * 
1717    * @return true if cDNA/protein complement panels should be scrolled
1718    */
1719   protected boolean isSetToScrollComplementPanel()
1720   {
1721     return this.scrollComplementaryPanel;
1722   }
1723
1724   /**
1725    * Redraw sensibly.
1726    * 
1727    * @adjustHeight if true, try to recalculate panel height for visible
1728    *               annotations
1729    */
1730   protected void refresh(boolean adjustHeight)
1731   {
1732     validateAnnotationDimensions(adjustHeight);
1733     addNotify();
1734     if (adjustHeight)
1735     {
1736       // sort, repaint, update overview
1737       paintAlignment(true, false);
1738     }
1739     else
1740     {
1741       // lightweight repaint
1742       repaint();
1743     }
1744   }
1745
1746   @Override
1747   /**
1748    * Property change event fired when a change is made to the viewport ranges
1749    * object associated with this alignment panel's viewport
1750    */
1751   public void propertyChange(PropertyChangeEvent evt)
1752   {
1753     // update this panel's scroll values based on the new viewport ranges values
1754     ViewportRanges ranges = av.getRanges();
1755     int x = ranges.getStartRes();
1756     int y = ranges.getStartSeq();
1757     setScrollValues(x, y);
1758
1759     // now update any complementary alignment (its viewport ranges object
1760     // is different so does not get automatically updated)
1761     if (isSetToScrollComplementPanel())
1762     {
1763       setToScrollComplementPanel(false);
1764       av.scrollComplementaryAlignment();
1765       setToScrollComplementPanel(true);
1766     }
1767   }
1768
1769   /**
1770    * Set the reference to the PCA/Tree chooser dialog for this panel. This
1771    * reference should be nulled when the dialog is closed.
1772    * 
1773    * @param calculationChooser
1774    */
1775   public void setCalculationDialog(CalculationChooser calculationChooser)
1776   {
1777     calculationDialog = calculationChooser;
1778   }
1779
1780   /**
1781    * Returns the reference to the PCA/Tree chooser dialog for this panel (null
1782    * if none is open)
1783    */
1784   public CalculationChooser getCalculationDialog()
1785   {
1786     return calculationDialog;
1787   }
1788 }