2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
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.SearchResultsI;
29 import jalview.datamodel.SequenceFeature;
30 import jalview.datamodel.SequenceGroup;
31 import jalview.datamodel.SequenceI;
32 import jalview.jbgui.GAlignmentPanel;
33 import jalview.math.AlignmentDimension;
34 import jalview.schemes.ResidueProperties;
35 import jalview.structure.StructureSelectionManager;
36 import jalview.util.MessageManager;
37 import jalview.util.Platform;
39 import java.awt.BorderLayout;
40 import java.awt.Color;
41 import java.awt.Container;
42 import java.awt.Dimension;
44 import java.awt.FontMetrics;
45 import java.awt.Graphics;
46 import java.awt.Insets;
47 import java.awt.event.AdjustmentEvent;
48 import java.awt.event.AdjustmentListener;
49 import java.awt.print.PageFormat;
50 import java.awt.print.Printable;
51 import java.awt.print.PrinterException;
52 import java.beans.PropertyChangeEvent;
53 import java.beans.PropertyChangeListener;
55 import java.io.FileWriter;
56 import java.io.PrintWriter;
57 import java.util.List;
59 import javax.swing.SwingUtilities;
65 * @version $Revision: 1.161 $
67 public class AlignmentPanel extends GAlignmentPanel implements
68 AdjustmentListener, Printable, AlignmentViewPanel
70 public AlignViewport av;
72 OverviewPanel overviewPanel;
74 private SeqPanel seqPanel;
76 private IdPanel idPanel;
78 private boolean headless;
80 IdwidthAdjuster idwidthAdjuster;
83 public AlignFrame alignFrame;
85 private ScalePanel scalePanel;
87 private AnnotationPanel annotationPanel;
89 private AnnotationLabels alabels;
91 // this value is set false when selection area being dragged
92 boolean fastPaint = true;
99 * Flag set while scrolling to follow complementary cDNA/protein scroll. When
100 * true, suppresses invoking the same method recursively.
102 private boolean dontScrollComplement;
104 private PropertyChangeListener propertyChangeListener;
107 * Creates a new AlignmentPanel object.
112 public AlignmentPanel(AlignFrame af, final AlignViewport av)
116 setSeqPanel(new SeqPanel(av, this));
117 setIdPanel(new IdPanel(av, this));
119 setScalePanel(new ScalePanel(av, this));
121 idPanelHolder.add(getIdPanel(), BorderLayout.CENTER);
122 idwidthAdjuster = new IdwidthAdjuster(this);
123 idSpaceFillerPanel1.add(idwidthAdjuster, BorderLayout.CENTER);
125 setAnnotationPanel(new AnnotationPanel(this));
126 setAlabels(new AnnotationLabels(this));
128 annotationScroller.setViewportView(getAnnotationPanel());
129 annotationSpaceFillerHolder.add(getAlabels(), BorderLayout.CENTER);
131 scalePanelHolder.add(getScalePanel(), BorderLayout.CENTER);
132 seqPanelHolder.add(getSeqPanel(), BorderLayout.CENTER);
134 setScrollValues(0, 0);
136 hscroll.addAdjustmentListener(this);
137 vscroll.addAdjustmentListener(this);
139 final AlignmentPanel ap = this;
140 propertyChangeListener = new PropertyChangeListener()
143 public void propertyChange(PropertyChangeEvent evt)
145 if (evt.getPropertyName().equals("alignment"))
147 PaintRefresher.Refresh(ap, av.getSequenceSetId(), true, true);
152 av.addPropertyChangeListener(propertyChangeListener);
154 adjustAnnotationHeight();
159 public AlignViewportI getAlignViewport()
164 public void alignmentChanged()
166 av.alignmentChanged(this);
168 alignFrame.updateEditMenuBar();
170 paintAlignment(true);
177 public void fontChanged()
179 // set idCanvas bufferedImage to null
180 // to prevent drawing old image
181 FontMetrics fm = getFontMetrics(av.getFont());
183 scalePanelHolder.setPreferredSize(new Dimension(10, av.getCharHeight()
185 idSpaceFillerPanel1.setPreferredSize(new Dimension(10, av
186 .getCharHeight() + fm.getDescent()));
188 getIdPanel().getIdCanvas().gg = null;
189 getSeqPanel().seqCanvas.img = null;
190 getAnnotationPanel().adjustPanelHeight();
192 Dimension d = calculateIdWidth();
194 d.setSize(d.width + 4, d.height);
195 getIdPanel().getIdCanvas().setPreferredSize(d);
196 hscrollFillerPanel.setPreferredSize(d);
198 if (overviewPanel != null)
200 overviewPanel.setBoxPosition();
202 if (this.alignFrame.getSplitViewContainer() != null)
204 ((SplitFrame) this.alignFrame.getSplitViewContainer()).adjustLayout();
211 * Calculate the width of the alignment labels based on the displayed names
212 * and any bounds on label width set in preferences.
214 * @return Dimension giving the maximum width of the alignment label panel
215 * that should be used.
217 public Dimension calculateIdWidth()
219 // calculate sensible default width when no preference is available
221 if (av.getIdWidth() < 0)
223 int afwidth = (alignFrame != null ? alignFrame.getWidth() : 300);
224 int maxwidth = Math.max(20, Math.min(afwidth - 200, 2 * afwidth / 3));
225 r = calculateIdWidth(maxwidth);
226 av.setIdWidth(r.width);
231 r.width = av.getIdWidth();
238 * Calculate the width of the alignment labels based on the displayed names
239 * and any bounds on label width set in preferences.
242 * -1 or maximum width allowed for IdWidth
243 * @return Dimension giving the maximum width of the alignment label panel
244 * that should be used.
246 public Dimension calculateIdWidth(int maxwidth)
248 Container c = new Container();
250 FontMetrics fm = c.getFontMetrics(new Font(av.font.getName(),
251 Font.ITALIC, av.font.getSize()));
253 AlignmentI al = av.getAlignment();
258 while ((i < al.getHeight()) && (al.getSequenceAt(i) != null))
260 SequenceI s = al.getSequenceAt(i);
262 id = s.getDisplayId(av.getShowJVSuffix());
264 if (fm.stringWidth(id) > idWidth)
266 idWidth = fm.stringWidth(id);
272 // Also check annotation label widths
275 if (al.getAlignmentAnnotation() != null)
277 fm = c.getFontMetrics(getAlabels().getFont());
279 while (i < al.getAlignmentAnnotation().length)
281 String label = al.getAlignmentAnnotation()[i].label;
283 if (fm.stringWidth(label) > idWidth)
285 idWidth = fm.stringWidth(label);
292 return new Dimension(maxwidth < 0 ? idWidth : Math.min(maxwidth,
297 * Highlight the given results on the alignment.
300 public void highlightSearchResults(SearchResultsI results)
302 scrollToPosition(results);
303 getSeqPanel().seqCanvas.highlightSearchResults(results);
307 * Scroll the view to show the position of the highlighted region in results
308 * (if any) and redraw the overview
312 public boolean scrollToPosition(SearchResultsI results)
314 return scrollToPosition(results, 0, true, false);
318 * Scroll the view to show the position of the highlighted region in results
321 * @param searchResults
322 * @param redrawOverview
325 public boolean scrollToPosition(SearchResultsI searchResults,
326 boolean redrawOverview)
328 return scrollToPosition(searchResults, 0, redrawOverview, false);
332 * Scroll the view to show the position of the highlighted region in results
336 * @param verticalOffset
337 * if greater than zero, allows scrolling to a position below the
338 * first displayed sequence
339 * @param redrawOverview
340 * - when set, the overview will be recalculated (takes longer)
342 * if true, try to centre the search results horizontally in the view
343 * @return false if results were not found
345 public boolean scrollToPosition(SearchResultsI results,
346 int verticalOffset, boolean redrawOverview, boolean centre)
348 int startv, endv, starts, ends;
349 // TODO: properly locate search results in view when large numbers of hidden
350 // columns exist before highlighted region
351 // do we need to scroll the panel?
352 // TODO: tons of nullpointerexceptions raised here.
353 if (results != null && results.getSize() > 0 && av != null
354 && av.getAlignment() != null)
356 int seqIndex = av.getAlignment().findIndex(results);
361 SequenceI seq = av.getAlignment().getSequenceAt(seqIndex);
363 int[] r = results.getResults(seq, 0, av.getAlignment().getWidth());
371 // System.err.println(this.av.viewName + " Seq : " + seqIndex
372 // + " Scroll to " + start + "," + end);
375 * To centre results, scroll to positions half the visible width
376 * left/right of the start/end positions
380 int offset = (av.getEndRes() - av.getStartRes() + 1) / 2 - 1;
381 start = Math.max(start - offset, 0);
382 end = end + offset - 1;
388 if (end == seq.getEnd())
392 if (av.hasHiddenColumns())
394 start = av.getColumnSelection().findColumnPosition(start);
395 end = av.getColumnSelection().findColumnPosition(end);
398 if (!av.getColumnSelection().isVisible(r[0]))
400 // don't scroll - position isn't visible
407 * allow for offset of target sequence (actually scroll to one above it)
409 seqIndex = Math.max(0, seqIndex - verticalOffset);
411 // System.out.println("start=" + start + ", end=" + end + ", startv="
412 // + av.getStartRes() + ", endv=" + av.getEndRes() + ", starts="
413 // + av.getStartSeq() + ", ends=" + av.getEndSeq());
414 if (!av.getWrapAlignment())
416 if ((startv = av.getStartRes()) >= start)
419 * Scroll left to make start of search results visible
421 // setScrollValues(start - 1, seqIndex); // plus one residue
422 setScrollValues(start, seqIndex);
424 else if ((endv = av.getEndRes()) <= end)
427 * Scroll right to make end of search results visible
429 // setScrollValues(startv + 1 + end - endv, seqIndex); // plus one
430 setScrollValues(startv + end - endv, seqIndex);
432 else if ((starts = av.getStartSeq()) > seqIndex)
435 * Scroll up to make start of search results visible
437 setScrollValues(av.getStartRes(), seqIndex);
439 else if ((ends = av.getEndSeq()) <= seqIndex)
442 * Scroll down to make end of search results visible
444 setScrollValues(av.getStartRes(), starts + seqIndex - ends + 1);
447 * Else results are already visible - no need to scroll
452 scrollToWrappedVisible(start);
455 if (redrawOverview && overviewPanel != null)
457 overviewPanel.setBoxPosition();
459 paintAlignment(redrawOverview);
463 void scrollToWrappedVisible(int res)
465 int cwidth = getSeqPanel().seqCanvas
466 .getWrappedCanvasWidth(getSeqPanel().seqCanvas.getWidth());
467 if (res < av.getStartRes() || res >= (av.getStartRes() + cwidth))
469 vscroll.setValue((res / cwidth));
470 av.startRes = vscroll.getValue() * cwidth;
478 * @return DOCUMENT ME!
480 public OverviewPanel getOverviewPanel()
482 return overviewPanel;
491 public void setOverviewPanel(OverviewPanel op)
499 * Hide or show annotation panel
502 public void setAnnotationVisible(boolean b)
504 if (!av.getWrapAlignment())
506 annotationSpaceFillerHolder.setVisible(b);
507 annotationScroller.setVisible(b);
513 * automatically adjust annotation panel height for new annotation whilst
514 * ensuring the alignment is still visible.
517 public void adjustAnnotationHeight()
519 // TODO: display vertical annotation scrollbar if necessary
520 // this is called after loading new annotation onto alignment
521 if (alignFrame.getHeight() == 0)
523 System.out.println("NEEDS FIXING");
525 validateAnnotationDimensions(true);
527 paintAlignment(true);
531 * calculate the annotation dimensions and refresh slider values accordingly.
532 * need to do repaints/notifys afterwards.
534 protected void validateAnnotationDimensions(boolean adjustPanelHeight)
536 int annotationHeight = getAnnotationPanel().adjustPanelHeight();
538 if (adjustPanelHeight)
540 int rowHeight = av.getCharHeight();
541 int alignmentHeight = rowHeight * av.getAlignment().getHeight();
544 * Estimate available height in the AlignFrame for alignment +
545 * annotations. Deduct an estimate for title bar, menu bar, scale panel,
546 * hscroll, status bar (as these are not laid out we can't inspect their
547 * actual heights). Insets gives frame borders.
549 int stuff = Platform.isAMac() ? 80 : 100;
550 Insets insets = alignFrame.getInsets();
551 int availableHeight = alignFrame.getHeight() - stuff - insets.top
555 * If not enough vertical space, maximize annotation height while keeping
556 * at least two rows of alignment visible
558 if (annotationHeight + alignmentHeight > availableHeight)
560 annotationHeight = Math.min(annotationHeight, availableHeight - 2
566 // maintain same window layout whilst updating sliders
567 annotationHeight = annotationScroller.getSize().height;
571 annotationScroller.setPreferredSize(new Dimension(annotationScroller
572 .getWidth(), annotationHeight));
574 Dimension e = idPanel.getSize();
575 alabels.setSize(new Dimension(e.width, annotationHeight));
577 annotationSpaceFillerHolder.setPreferredSize(new Dimension(
578 annotationSpaceFillerHolder.getWidth(), annotationHeight));
579 annotationScroller.validate();
580 annotationScroller.addNotify();
584 * update alignment layout for viewport settings
589 public void updateLayout()
592 setAnnotationVisible(av.isShowAnnotation());
593 boolean wrap = av.getWrapAlignment();
595 scalePanelHolder.setVisible(!wrap);
596 hscroll.setVisible(!wrap);
597 idwidthAdjuster.setVisible(!wrap);
601 annotationScroller.setVisible(false);
602 annotationSpaceFillerHolder.setVisible(false);
604 else if (av.isShowAnnotation())
606 annotationScroller.setVisible(true);
607 annotationSpaceFillerHolder.setVisible(true);
610 idSpaceFillerPanel1.setVisible(!wrap);
615 // return value is true if the scroll is valid
616 public boolean scrollUp(boolean up)
620 if (vscroll.getValue() < 1)
626 vscroll.setValue(vscroll.getValue() - 1);
630 if ((vextent + vscroll.getValue()) >= av.getAlignment().getHeight())
636 vscroll.setValue(vscroll.getValue() + 1);
650 * @return DOCUMENT ME!
652 public boolean scrollRight(boolean right)
656 if (hscroll.getValue() < 1)
662 hscroll.setValue(hscroll.getValue() - 1);
666 if ((hextent + hscroll.getValue()) >= av.getAlignment().getWidth())
672 hscroll.setValue(hscroll.getValue() + 1);
681 * Adjust row/column scrollers to show a visible position in the alignment.
684 * visible column to scroll to
686 * visible row to scroll to
689 public void setScrollValues(int x, int y)
691 // System.err.println("Scroll " + this.av.viewName + " to " + x + "," + y);
692 if (av == null || av.getAlignment() == null)
696 int width = av.getAlignment().getWidth();
697 int height = av.getAlignment().getHeight();
699 if (av.hasHiddenColumns())
701 width = av.getColumnSelection().findColumnPosition(width);
704 av.setEndRes((x + (getSeqPanel().seqCanvas.getWidth() / av
705 .getCharWidth())) - 1);
707 hextent = getSeqPanel().seqCanvas.getWidth() / av.getCharWidth();
708 vextent = getSeqPanel().seqCanvas.getHeight() / av.getCharHeight();
715 if (vextent > height)
720 if ((hextent + x) > width)
725 if ((vextent + y) > height)
727 y = height - vextent;
741 * each scroll adjustment triggers adjustmentValueChanged, which resets the
742 * 'do not scroll complement' flag; ensure it is the same for both
745 boolean flag = isDontScrollComplement();
746 hscroll.setValues(x, hextent, 0, width);
747 setDontScrollComplement(flag);
748 vscroll.setValues(y, vextent, 0, height);
758 public void adjustmentValueChanged(AdjustmentEvent evt)
760 int oldX = av.getStartRes();
761 int oldY = av.getStartSeq();
763 if (evt.getSource() == hscroll)
765 int x = hscroll.getValue();
767 av.setEndRes((x + (getSeqPanel().seqCanvas.getWidth() / av
768 .getCharWidth())) - 1);
771 if (evt.getSource() == vscroll)
773 int offy = vscroll.getValue();
775 if (av.getWrapAlignment())
779 int rowSize = getSeqPanel().seqCanvas
780 .getWrappedCanvasWidth(getSeqPanel().seqCanvas.getWidth());
781 av.setStartRes(offy * rowSize);
782 av.setEndRes((offy + 1) * rowSize);
786 // This is only called if file loaded is a jar file that
787 // was wrapped when saved and user has wrap alignment true
788 // as preference setting
789 SwingUtilities.invokeLater(new Runnable()
794 setScrollValues(av.getStartRes(), av.getStartSeq());
801 av.setStartSeq(offy);
803 + (getSeqPanel().seqCanvas.getHeight() / av.getCharHeight()));
807 if (overviewPanel != null)
809 overviewPanel.setBoxPosition();
812 int scrollX = av.startRes - oldX;
813 int scrollY = av.startSeq - oldY;
815 if (av.getWrapAlignment() || !fastPaint)
821 // Make sure we're not trying to draw a panel
822 // larger than the visible window
823 if (scrollX > av.endRes - av.startRes)
825 scrollX = av.endRes - av.startRes;
827 else if (scrollX < av.startRes - av.endRes)
829 scrollX = av.startRes - av.endRes;
832 if (scrollX != 0 || scrollY != 0)
834 getIdPanel().getIdCanvas().fastPaint(scrollY);
835 getSeqPanel().seqCanvas.fastPaint(scrollX, scrollY);
836 getScalePanel().repaint();
838 if (av.isShowAnnotation() && scrollX != 0)
840 getAnnotationPanel().fastPaint(scrollX);
845 * If there is one, scroll the (Protein/cDNA) complementary alignment to
846 * match, unless we are ourselves doing that.
848 if (isDontScrollComplement())
850 setDontScrollComplement(false);
854 av.scrollComplementaryAlignment();
859 * Repaint the alignment including the annotations and overview panels (if
863 public void paintAlignment(boolean updateOverview)
865 final AnnotationSorter sorter = new AnnotationSorter(getAlignment(),
866 av.isShowAutocalculatedAbove());
867 sorter.sort(getAlignment().getAlignmentAnnotation(),
868 av.getSortAnnotationsBy());
873 // TODO: determine if this paintAlignment changed structure colours
874 av.getStructureSelectionManager().sequenceColoursChanged(this);
876 if (overviewPanel != null)
878 overviewPanel.updateOverviewImage();
890 public void paintComponent(Graphics g)
894 Dimension d = getIdPanel().getIdCanvas().getPreferredSize();
895 idPanelHolder.setPreferredSize(d);
896 hscrollFillerPanel.setPreferredSize(new Dimension(d.width, 12));
900 * set scroll bar positions; first suppress this being 'followed' in any
901 * complementary split pane
903 setDontScrollComplement(true);
905 if (av.getWrapAlignment())
907 int maxwidth = av.getAlignment().getWidth();
909 if (av.hasHiddenColumns())
911 maxwidth = av.getColumnSelection().findColumnPosition(maxwidth) - 1;
914 int canvasWidth = getSeqPanel().seqCanvas
915 .getWrappedCanvasWidth(getSeqPanel().seqCanvas.getWidth());
919 / getSeqPanel().seqCanvas
920 .getWrappedCanvasWidth(getSeqPanel().seqCanvas
922 vscroll.setMaximum(max);
923 vscroll.setUnitIncrement(1);
924 vscroll.setVisibleAmount(1);
929 setScrollValues(av.getStartRes(), av.getStartSeq());
943 * @return DOCUMENT ME!
945 * @throws PrinterException
949 public int print(Graphics pg, PageFormat pf, int pi)
950 throws PrinterException
952 pg.translate((int) pf.getImageableX(), (int) pf.getImageableY());
954 int pwidth = (int) pf.getImageableWidth();
955 int pheight = (int) pf.getImageableHeight();
957 if (av.getWrapAlignment())
959 return printWrappedAlignment(pwidth, pheight, pi, pg);
963 return printUnwrapped(pwidth, pheight, pi, pg, pg);
979 * @return DOCUMENT ME!
981 * @throws PrinterException
985 * Draws the alignment image, including sequence ids, sequences, and
986 * annotation labels and annotations if shown, on either one or two Graphics
993 * the graphics context for sequence ids and annotation labels
994 * @param alignmentGraphics
995 * the graphics context for sequences and annotations (may or may not
996 * be the same context as idGraphics)
998 * @throws PrinterException
1000 public int printUnwrapped(int pageWidth, int pageHeight, int pi,
1001 Graphics idGraphics, Graphics alignmentGraphics)
1002 throws PrinterException
1004 final int idWidth = getVisibleIdWidth(false);
1007 * Get the horizontal offset to where we draw the sequences.
1008 * This is idWidth if using a single Graphics context, else zero.
1010 final int alignmentGraphicsOffset = idGraphics != alignmentGraphics ? 0 : idWidth;
1012 FontMetrics fm = getFontMetrics(av.getFont());
1013 int charHeight = av.getCharHeight();
1014 int scaleHeight = charHeight + fm.getDescent();
1016 idGraphics.setColor(Color.white);
1017 idGraphics.fillRect(0, 0, pageWidth, pageHeight);
1018 idGraphics.setFont(av.getFont());
1021 * How many sequences and residues can we fit on a printable page?
1023 int totalRes = (pageWidth - idWidth) / av.getCharWidth();
1025 int totalSeq = (pageHeight - scaleHeight) / charHeight - 1;
1027 int alignmentWidth = av.getAlignment().getWidth();
1028 int pagesWide = (alignmentWidth / totalRes) + 1;
1030 final int startRes = (pi % pagesWide) * totalRes;
1031 int endRes = (startRes + totalRes) - 1;
1033 if (endRes > (alignmentWidth - 1))
1035 endRes = alignmentWidth - 1;
1038 final int startSeq = (pi / pagesWide) * totalSeq;
1039 int endSeq = startSeq + totalSeq;
1041 int alignmentHeight = av.getAlignment().getHeight();
1042 if (endSeq > alignmentHeight)
1044 endSeq = alignmentHeight;
1047 int pagesHigh = ((alignmentHeight / totalSeq) + 1)
1050 if (av.isShowAnnotation())
1052 pagesHigh += getAnnotationPanel().adjustPanelHeight() + 3;
1055 pagesHigh /= pageHeight;
1057 if (pi >= (pagesWide * pagesHigh))
1059 return Printable.NO_SUCH_PAGE;
1061 final int alignmentDrawnHeight = (endSeq - startSeq) * charHeight
1065 * draw the Scale at horizontal offset, then reset to top left (0, 0)
1067 alignmentGraphics.translate(alignmentGraphicsOffset, 0);
1068 getScalePanel().drawScale(alignmentGraphics, startRes, endRes,
1069 pageWidth - idWidth, scaleHeight);
1070 alignmentGraphics.translate(-alignmentGraphicsOffset, 0);
1073 * Draw the sequence ids, offset for scale height,
1074 * then reset to top left (0, 0)
1076 idGraphics.translate(0, scaleHeight);
1077 idGraphics.setFont(getIdPanel().getIdCanvas().getIdfont());
1078 Color currentColor = null;
1079 Color currentTextColor = null;
1082 for (int i = startSeq; i < endSeq; i++)
1084 seq = av.getAlignment().getSequenceAt(i);
1085 if ((av.getSelectionGroup() != null)
1086 && av.getSelectionGroup().getSequences(null).contains(seq))
1089 * gray out ids of sequences in selection group (if any)
1091 currentColor = Color.gray;
1092 currentTextColor = Color.black;
1096 currentColor = av.getSequenceColour(seq);
1097 currentTextColor = Color.black;
1100 idGraphics.setColor(currentColor);
1101 idGraphics.fillRect(0, (i - startSeq) * charHeight, idWidth,
1104 idGraphics.setColor(currentTextColor);
1107 String displayId = seq.getDisplayId(av.getShowJVSuffix());
1108 if (av.isRightAlignIds())
1110 fm = idGraphics.getFontMetrics();
1112 - fm.stringWidth(displayId)
1116 idGraphics.drawString(displayId, xPos,
1117 (((i - startSeq) * charHeight) + charHeight)
1118 - (charHeight / 5));
1120 idGraphics.setFont(av.getFont());
1121 idGraphics.translate(0, -scaleHeight);
1124 * draw the sequences, offset for scale height, and id width (if using a
1125 * single graphics context), then reset to (0, scale height)
1127 alignmentGraphics.translate(alignmentGraphicsOffset, scaleHeight);
1128 getSeqPanel().seqCanvas.drawPanel(alignmentGraphics, startRes, endRes,
1129 startSeq, endSeq, 0);
1130 alignmentGraphics.translate(-alignmentGraphicsOffset, 0);
1132 if (av.isShowAnnotation() && (endSeq == alignmentHeight))
1135 * draw annotation labels; drawComponent() translates by
1136 * getScrollOffset(), so compensate for that first;
1137 * then reset to (0, scale height)
1139 int offset = getAlabels().getScrollOffset();
1140 idGraphics.translate(0, -offset);
1141 idGraphics.translate(0, alignmentDrawnHeight);
1142 getAlabels().drawComponent(idGraphics, idWidth);
1143 idGraphics.translate(0, -alignmentDrawnHeight);
1146 * draw the annotations starting at
1147 * (idOffset, alignmentHeight) from (0, scaleHeight)
1149 alignmentGraphics.translate(alignmentGraphicsOffset, alignmentDrawnHeight);
1150 getAnnotationPanel().renderer.drawComponent(getAnnotationPanel(), av,
1151 alignmentGraphics, -1, startRes, endRes + 1);
1154 return Printable.PAGE_EXISTS;
1169 * @return DOCUMENT ME!
1171 * @throws PrinterException
1174 public int printWrappedAlignment(int pwidth, int pheight, int pi,
1175 Graphics pg) throws PrinterException
1177 int annotationHeight = 0;
1178 AnnotationLabels labels = null;
1179 if (av.isShowAnnotation())
1181 annotationHeight = getAnnotationPanel().adjustPanelHeight();
1182 labels = new AnnotationLabels(av);
1185 int hgap = av.getCharHeight();
1186 if (av.getScaleAboveWrapped())
1188 hgap += av.getCharHeight();
1191 int cHeight = av.getAlignment().getHeight() * av.getCharHeight() + hgap
1194 int idWidth = getVisibleIdWidth(false);
1196 int maxwidth = av.getAlignment().getWidth();
1197 if (av.hasHiddenColumns())
1199 maxwidth = av.getColumnSelection().findColumnPosition(maxwidth) - 1;
1202 int resWidth = getSeqPanel().seqCanvas.getWrappedCanvasWidth(pwidth
1205 int totalHeight = cHeight * (maxwidth / resWidth + 1);
1207 pg.setColor(Color.white);
1208 pg.fillRect(0, 0, pwidth, pheight);
1209 pg.setFont(av.getFont());
1213 pg.setColor(Color.black);
1215 pg.translate(0, -pi * pheight);
1217 pg.setClip(0, pi * pheight, pwidth, pheight);
1223 for (int i = 0; i < av.getAlignment().getHeight(); i++)
1225 pg.setFont(getIdPanel().getIdCanvas().getIdfont());
1226 SequenceI s = av.getAlignment().getSequenceAt(i);
1227 String string = s.getDisplayId(av.getShowJVSuffix());
1229 if (av.isRightAlignIds())
1231 FontMetrics fm = pg.getFontMetrics();
1232 xPos = idWidth - fm.stringWidth(string) - 4;
1234 pg.drawString(string, xPos,
1235 ((i * av.getCharHeight()) + ypos + av.getCharHeight())
1236 - (av.getCharHeight() / 5));
1241 ypos + (av.getAlignment().getHeight() * av.getCharHeight()));
1243 pg.setFont(av.getFont());
1244 labels.drawComponent(pg, idWidth);
1248 - (av.getAlignment().getHeight() * av
1253 } while (ypos < totalHeight);
1255 pg.translate(idWidth, 0);
1257 getSeqPanel().seqCanvas.drawWrappedPanel(pg, pwidth - idWidth,
1260 if ((pi * pheight) < totalHeight)
1262 return Printable.PAGE_EXISTS;
1267 return Printable.NO_SUCH_PAGE;
1272 * get current sequence ID panel width, or nominal value if panel were to be
1273 * displayed using default settings
1277 public int getVisibleIdWidth()
1279 return getVisibleIdWidth(true);
1283 * get current sequence ID panel width, or nominal value if panel were to be
1284 * displayed using default settings
1287 * indicate if the Id width for onscreen or offscreen display should
1291 public int getVisibleIdWidth(boolean onscreen)
1293 // see if rendering offscreen - check preferences and calc width accordingly
1294 if (!onscreen && Cache.getDefault("FIGURE_AUTOIDWIDTH", false))
1296 return calculateIdWidth(-1).width + 4;
1298 Integer idwidth = null;
1300 || (idwidth = Cache.getIntegerProperty("FIGURE_FIXEDIDWIDTH")) == null)
1302 int w = getIdPanel().getWidth();
1303 return (w > 0 ? w : calculateIdWidth().width + 4);
1305 return idwidth.intValue() + 4;
1308 void makeAlignmentImage(jalview.util.ImageMaker.TYPE type, File file)
1310 int boarderBottomOffset = 5;
1311 long pSessionId = System.currentTimeMillis();
1312 headless = (System.getProperty("java.awt.headless") != null && System
1313 .getProperty("java.awt.headless").equals("true"));
1314 if (alignFrame != null && !headless)
1318 alignFrame.setProgressBar(MessageManager.formatMessage(
1319 "status.saving_file", new Object[] { type.getLabel() }),
1325 AlignmentDimension aDimension = getAlignmentDimension();
1328 jalview.util.ImageMaker im;
1329 final String imageAction, imageTitle;
1330 if (type == jalview.util.ImageMaker.TYPE.PNG)
1332 imageAction = "Create PNG image from alignment";
1335 else if (type == jalview.util.ImageMaker.TYPE.EPS)
1337 imageAction = "Create EPS file from alignment";
1338 imageTitle = alignFrame.getTitle();
1342 imageAction = "Create SVG file from alignment";
1343 imageTitle = alignFrame.getTitle();
1346 im = new jalview.util.ImageMaker(this, type, imageAction,
1347 aDimension.getWidth(), aDimension.getHeight()
1348 + boarderBottomOffset, file, imageTitle,
1349 alignFrame, pSessionId, headless);
1350 Graphics graphics = im.getGraphics();
1351 if (av.getWrapAlignment())
1353 if (graphics != null)
1355 printWrappedAlignment(aDimension.getWidth(),
1356 aDimension.getHeight() + boarderBottomOffset, 0,
1363 if (graphics != null)
1365 printUnwrapped(aDimension.getWidth(), aDimension.getHeight(),
1366 0, graphics, graphics);
1371 } catch (OutOfMemoryError err)
1374 System.out.println("########################\n" + "OUT OF MEMORY "
1375 + file + "\n" + "########################");
1376 new OOMWarning("Creating Image for " + file, err);
1377 // System.out.println("Create IMAGE: " + err);
1378 } catch (Exception ex)
1380 ex.printStackTrace();
1388 public AlignmentDimension getAlignmentDimension()
1390 int maxwidth = av.getAlignment().getWidth();
1391 if (av.hasHiddenColumns())
1393 maxwidth = av.getColumnSelection().findColumnPosition(maxwidth);
1396 int height = ((av.getAlignment().getHeight() + 1) * av.getCharHeight())
1397 + getScalePanel().getHeight();
1398 int width = getVisibleIdWidth(false) + (maxwidth * av.getCharWidth());
1400 if (av.getWrapAlignment())
1402 height = getWrappedHeight();
1405 // need to obtain default alignment width and then add in any
1406 // additional allowance for id margin
1407 // this duplicates the calculation in getWrappedHeight but adjusts for
1409 width = alignFrame.getWidth() - vscroll.getPreferredSize().width
1410 - alignFrame.getInsets().left
1411 - alignFrame.getInsets().right - getVisibleIdWidth()
1412 + getVisibleIdWidth(false);
1416 width = getSeqPanel().getWidth() + getVisibleIdWidth(false);
1420 else if (av.isShowAnnotation())
1422 height += getAnnotationPanel().adjustPanelHeight() + 3;
1424 return new AlignmentDimension(width, height);
1431 public void makeEPS(File epsFile)
1433 makeAlignmentImage(jalview.util.ImageMaker.TYPE.EPS, epsFile);
1439 public void makePNG(File pngFile)
1441 makeAlignmentImage(jalview.util.ImageMaker.TYPE.PNG, pngFile);
1444 public void makeSVG(File svgFile)
1446 makeAlignmentImage(jalview.util.ImageMaker.TYPE.SVG, svgFile);
1449 public void makePNGImageMap(File imgMapFile, String imageName)
1451 // /////ONLY WORKS WITH NON WRAPPED ALIGNMENTS
1452 // ////////////////////////////////////////////
1453 int idWidth = getVisibleIdWidth(false);
1454 FontMetrics fm = getFontMetrics(av.getFont());
1455 int scaleHeight = av.getCharHeight() + fm.getDescent();
1458 // ////////////////////////////////
1459 if (imgMapFile != null)
1463 int s, sSize = av.getAlignment().getHeight(), res, alwidth = av
1464 .getAlignment().getWidth(), g, gSize, f, fSize, sy;
1465 PrintWriter out = new PrintWriter(new FileWriter(imgMapFile));
1466 out.println(jalview.io.HTMLOutput.getImageMapHTML());
1467 out.println("<img src=\"" + imageName
1468 + "\" border=\"0\" usemap=\"#Map\" >"
1469 + "<map name=\"Map\">");
1471 for (s = 0; s < sSize; s++)
1473 sy = s * av.getCharHeight() + scaleHeight;
1475 SequenceI seq = av.getAlignment().getSequenceAt(s);
1476 SequenceFeature[] features = seq.getSequenceFeatures();
1477 SequenceGroup[] groups = av.getAlignment().findAllGroups(seq);
1478 for (res = 0; res < alwidth; res++)
1480 StringBuilder text = new StringBuilder();
1481 String triplet = null;
1482 if (av.getAlignment().isNucleotide())
1484 triplet = ResidueProperties.nucleotideName.get(seq
1485 .getCharAt(res) + "");
1489 triplet = ResidueProperties.aa2Triplet.get(seq.getCharAt(res)
1493 if (triplet == null)
1498 int alIndex = seq.findPosition(res);
1499 gSize = groups.length;
1500 for (g = 0; g < gSize; g++)
1502 if (text.length() < 1)
1504 text.append("<area shape=\"rect\" coords=\"")
1505 .append((idWidth + res * av.getCharWidth()))
1506 .append(",").append(sy).append(",")
1507 .append((idWidth + (res + 1) * av.getCharWidth()))
1508 .append(",").append((av.getCharHeight() + sy))
1509 .append("\"").append(" onMouseOver=\"toolTip('")
1510 .append(alIndex).append(" ").append(triplet);
1513 if (groups[g].getStartRes() < res
1514 && groups[g].getEndRes() > res)
1516 text.append("<br><em>").append(groups[g].getName())
1521 if (features != null)
1523 if (text.length() < 1)
1525 text.append("<area shape=\"rect\" coords=\"")
1526 .append((idWidth + res * av.getCharWidth()))
1527 .append(",").append(sy).append(",")
1528 .append((idWidth + (res + 1) * av.getCharWidth()))
1529 .append(",").append((av.getCharHeight() + sy))
1530 .append("\"").append(" onMouseOver=\"toolTip('")
1531 .append(alIndex).append(" ").append(triplet);
1533 fSize = features.length;
1534 for (f = 0; f < fSize; f++)
1537 if ((features[f].getBegin() <= seq.findPosition(res))
1538 && (features[f].getEnd() >= seq.findPosition(res)))
1540 if (features[f].isContactFeature())
1542 if (features[f].getBegin() == seq.findPosition(res)
1543 || features[f].getEnd() == seq
1546 text.append("<br>").append(features[f].getType())
1547 .append(" ").append(features[f].getBegin())
1548 .append(":").append(features[f].getEnd());
1553 text.append("<br>");
1554 text.append(features[f].getType());
1555 if (features[f].getDescription() != null
1556 && !features[f].getType().equals(
1557 features[f].getDescription()))
1559 text.append(" ").append(features[f].getDescription());
1562 if (features[f].getValue("status") != null)
1564 text.append(" (").append(features[f].getValue("status"))
1572 if (text.length() > 1)
1574 text.append("')\"; onMouseOut=\"toolTip()\"; href=\"#\">");
1575 out.println(text.toString());
1579 out.println("</map></body></html>");
1582 } catch (Exception ex)
1584 ex.printStackTrace();
1586 } // /////////END OF IMAGE MAP
1590 int getWrappedHeight()
1592 int seqPanelWidth = getSeqPanel().seqCanvas.getWidth();
1594 if (System.getProperty("java.awt.headless") != null
1595 && System.getProperty("java.awt.headless").equals("true"))
1597 seqPanelWidth = alignFrame.getWidth() - getVisibleIdWidth()
1598 - vscroll.getPreferredSize().width
1599 - alignFrame.getInsets().left - alignFrame.getInsets().right;
1602 int chunkWidth = getSeqPanel().seqCanvas
1603 .getWrappedCanvasWidth(seqPanelWidth);
1605 int hgap = av.getCharHeight();
1606 if (av.getScaleAboveWrapped())
1608 hgap += av.getCharHeight();
1611 int annotationHeight = 0;
1612 if (av.isShowAnnotation())
1614 annotationHeight = getAnnotationPanel().adjustPanelHeight();
1617 int cHeight = av.getAlignment().getHeight() * av.getCharHeight() + hgap
1620 int maxwidth = av.getAlignment().getWidth();
1621 if (av.hasHiddenColumns())
1623 maxwidth = av.getColumnSelection().findColumnPosition(maxwidth) - 1;
1626 int height = ((maxwidth / chunkWidth) + 1) * cHeight;
1632 * close the panel - deregisters all listeners and nulls any references to
1635 public void closePanel()
1637 PaintRefresher.RemoveComponent(getSeqPanel().seqCanvas);
1638 PaintRefresher.RemoveComponent(getIdPanel().getIdCanvas());
1639 PaintRefresher.RemoveComponent(this);
1642 * try to ensure references are nulled
1644 if (annotationPanel != null)
1646 annotationPanel.dispose();
1651 av.removePropertyChangeListener(propertyChangeListener);
1652 jalview.structure.StructureSelectionManager ssm = av
1653 .getStructureSelectionManager();
1654 ssm.removeStructureViewerListener(getSeqPanel(), null);
1655 ssm.removeSelectionListener(getSeqPanel());
1656 ssm.removeCommandListener(av);
1657 ssm.removeStructureViewerListener(getSeqPanel(), null);
1658 ssm.removeSelectionListener(getSeqPanel());
1664 if (Cache.log.isDebugEnabled())
1666 Cache.log.warn("Closing alignment panel which is already closed.");
1672 * hides or shows dynamic annotation rows based on groups and av state flags
1674 public void updateAnnotation()
1676 updateAnnotation(false, false);
1679 public void updateAnnotation(boolean applyGlobalSettings)
1681 updateAnnotation(applyGlobalSettings, false);
1684 public void updateAnnotation(boolean applyGlobalSettings,
1685 boolean preserveNewGroupSettings)
1687 av.updateGroupAnnotationSettings(applyGlobalSettings,
1688 preserveNewGroupSettings);
1689 adjustAnnotationHeight();
1693 public AlignmentI getAlignment()
1695 return av == null ? null : av.getAlignment();
1699 public String getViewName()
1705 * Make/Unmake this alignment panel the current input focus
1709 public void setSelected(boolean b)
1713 if (alignFrame.getSplitViewContainer() != null)
1716 * bring enclosing SplitFrame to front first if there is one
1718 ((SplitFrame) alignFrame.getSplitViewContainer()).setSelected(b);
1720 alignFrame.setSelected(b);
1721 } catch (Exception ex)
1727 alignFrame.setDisplayedView(this);
1732 public StructureSelectionManager getStructureSelectionManager()
1734 return av.getStructureSelectionManager();
1738 public void raiseOOMWarning(String string, OutOfMemoryError error)
1740 new OOMWarning(string, error, this);
1744 public jalview.api.FeatureRenderer cloneFeatureRenderer()
1747 return new FeatureRenderer(this);
1751 public jalview.api.FeatureRenderer getFeatureRenderer()
1753 return seqPanel.seqCanvas.getFeatureRenderer();
1756 public void updateFeatureRenderer(
1757 jalview.renderer.seqfeatures.FeatureRenderer fr)
1759 fr.transferSettings(getSeqPanel().seqCanvas.getFeatureRenderer());
1762 public void updateFeatureRendererFrom(jalview.api.FeatureRenderer fr)
1764 if (getSeqPanel().seqCanvas.getFeatureRenderer() != null)
1766 getSeqPanel().seqCanvas.getFeatureRenderer().transferSettings(fr);
1770 public ScalePanel getScalePanel()
1775 public void setScalePanel(ScalePanel scalePanel)
1777 this.scalePanel = scalePanel;
1780 public SeqPanel getSeqPanel()
1785 public void setSeqPanel(SeqPanel seqPanel)
1787 this.seqPanel = seqPanel;
1790 public AnnotationPanel getAnnotationPanel()
1792 return annotationPanel;
1795 public void setAnnotationPanel(AnnotationPanel annotationPanel)
1797 this.annotationPanel = annotationPanel;
1800 public AnnotationLabels getAlabels()
1805 public void setAlabels(AnnotationLabels alabels)
1807 this.alabels = alabels;
1810 public IdPanel getIdPanel()
1815 public void setIdPanel(IdPanel idPanel)
1817 this.idPanel = idPanel;
1821 * Follow a scrolling change in the (cDNA/Protein) complementary alignment.
1822 * The aim is to keep the two alignments 'lined up' on their centre columns.
1825 * holds mapped region(s) of this alignment that we are scrolling
1826 * 'to'; may be modified for sequence offset by this method
1827 * @param verticalOffset
1828 * the number of visible sequences to show above the mapped region
1830 public void scrollToCentre(SearchResultsI sr, int verticalOffset)
1833 * To avoid jumpy vertical scrolling (if some sequences are gapped or not
1834 * mapped), we can make the scroll-to location a sequence above the one
1837 SequenceI mappedTo = sr.getResults().get(0).getSequence();
1838 List<SequenceI> seqs = av.getAlignment().getSequences();
1841 * This is like AlignmentI.findIndex(seq) but here we are matching the
1842 * dataset sequence not the aligned sequence
1844 boolean matched = false;
1845 for (SequenceI seq : seqs)
1847 if (mappedTo == seq.getDatasetSequence())
1855 return; // failsafe, shouldn't happen
1859 * Scroll to position but centring the target residue.
1861 scrollToPosition(sr, verticalOffset, true, true);
1865 * Set a flag to say do not scroll any (cDNA/protein) complement.
1869 protected void setDontScrollComplement(boolean b)
1871 this.dontScrollComplement = b;
1874 protected boolean isDontScrollComplement()
1876 return this.dontScrollComplement;