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