X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FIdCanvas.java;h=b883e98d5cefaad6c1da132871b07a42abbca6b8;hb=d3bf4ae12b72df02dee34c95da750ab38a3816b9;hp=cd7b0b77d8733a2c8d72d688c1a19ff0849c1042;hpb=aad3640b07f836362df7ea025fa09127a0a06145;p=jalview.git diff --git a/src/jalview/gui/IdCanvas.java b/src/jalview/gui/IdCanvas.java index cd7b0b7..b883e98 100755 --- a/src/jalview/gui/IdCanvas.java +++ b/src/jalview/gui/IdCanvas.java @@ -55,22 +55,20 @@ public class IdCanvas extends JPanel implements ViewportListenerI BufferedImage image; - Graphics2D gg; +// Graphics2D gg; int imgHeight = 0; - boolean fastPaint = false; + private boolean fastPaint = false; List searchResults; - FontMetrics fm; - - AnnotationLabels labels = null; - AnnotationPanel ap; private Font idfont; + private boolean allowFastPaint; + /** * Creates a new IdCanvas object. * @@ -88,7 +86,7 @@ public class IdCanvas extends JPanel implements ViewportListenerI /** * DOCUMENT ME! * - * @param gg + * @param g * DOCUMENT ME! * @param hiddenRows * true - check and display hidden row marker if need be @@ -101,7 +99,7 @@ public class IdCanvas extends JPanel implements ViewportListenerI * @param ypos * DOCUMENT ME! */ - public void drawIdString(Graphics2D gg, boolean hiddenRows, SequenceI s, + public void drawIdString(Graphics2D g, boolean hiddenRows, SequenceI s, int i, int starty, int ypos) { int xPos = 0; @@ -110,39 +108,41 @@ public class IdCanvas extends JPanel implements ViewportListenerI if ((searchResults != null) && searchResults.contains(s)) { - gg.setColor(Color.black); - gg.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), + g.setColor(Color.black); + g.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), charHeight); - gg.setColor(Color.white); + g.setColor(Color.white); } else if ((av.getSelectionGroup() != null) && av.getSelectionGroup().getSequences(null).contains(s)) { - gg.setColor(Color.lightGray); - gg.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), + g.setColor(Color.lightGray); + g.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), charHeight); - gg.setColor(Color.white); + g.setColor(Color.white); } else { - gg.setColor(av.getSequenceColour(s)); - gg.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), + g.setColor(av.getSequenceColour(s)); + g.fillRect(0, ((i - starty) * charHeight) + ypos, getWidth(), charHeight); - gg.setColor(Color.black); + g.setColor(Color.black); } if (av.isRightAlignIds()) { + FontMetrics fm = g.getFontMetrics(); xPos = panelWidth - fm.stringWidth(s.getDisplayId(av.getShowJVSuffix())) - 4; } - gg.drawString(s.getDisplayId(av.getShowJVSuffix()), xPos, + g.drawString(s.getDisplayId(av.getShowJVSuffix()), xPos, (((i - starty + 1) * charHeight) + ypos) - (charHeight / 5)); - if (hiddenRows) + // JAL-3253-applet was just hiddenRows here. ccfc48e (gmungoc) added getShowHiddenMarkers test + if (hiddenRows && av.getShowHiddenMarkers()) { - drawMarker(i, starty, ypos); + drawMarker(g, av, i, starty, ypos); } } @@ -155,10 +155,11 @@ public class IdCanvas extends JPanel implements ViewportListenerI */ public void fastPaint(int vertical) { + /* * for now, not attempting fast paint of wrapped ids... */ - if (gg == null || av.getWrapAlignment()) + if (image == null || av.getWrapAlignment()) { repaint(); @@ -167,6 +168,7 @@ public class IdCanvas extends JPanel implements ViewportListenerI ViewportRanges ranges = av.getRanges(); + Graphics2D gg = image.createGraphics(); gg.copyArea(0, 0, getWidth(), imgHeight, 0, -vertical * av.getCharHeight()); @@ -199,10 +201,12 @@ public class IdCanvas extends JPanel implements ViewportListenerI gg.translate(0, transY); - drawIds(ss, es); + drawIds(gg, av, ss, es, searchResults); gg.translate(0, -transY); + gg.dispose(); + fastPaint = true; // Call repaint on alignment panel so that repaints from other alignment @@ -220,12 +224,15 @@ public class IdCanvas extends JPanel implements ViewportListenerI @Override public void paintComponent(Graphics g) { - super.paintComponent(g); + if (av.getAlignPanel().getHoldRepaint()) + { + return; + } g.setColor(Color.white); g.fillRect(0, 0, getWidth(), getHeight()); - if (fastPaint) + if (allowFastPaint && fastPaint) { fastPaint = false; g.drawImage(image, 0, 0, this); @@ -245,169 +252,190 @@ public class IdCanvas extends JPanel implements ViewportListenerI if (oldHeight != imgHeight || image.getWidth(this) != getWidth()) { - image = new BufferedImage(getWidth(), imgHeight, + image = new BufferedImage(getWidth(), imgHeight, BufferedImage.TYPE_INT_RGB); } - gg = (Graphics2D) image.getGraphics(); + Graphics2D gg = image.createGraphics(); // Fill in the background gg.setColor(Color.white); gg.fillRect(0, 0, getWidth(), imgHeight); - drawIds(av.getRanges().getStartSeq(), av.getRanges().getEndSeq()); + drawIds(gg, av, av.getRanges().getStartSeq(), av.getRanges().getEndSeq(), searchResults); + + gg.dispose(); g.drawImage(image, 0, 0, this); } /** - * DOCUMENT ME! + * Draws sequence ids from sequence index startSeq to endSeq (inclusive), with + * the font and other display settings configured on the viewport. Ids of + * sequences included in the selection are coloured grey, otherwise the + * current id colour for the sequence id is used. * - * @param starty - * DOCUMENT ME! - * @param endy - * DOCUMENT ME! + * @param g + * @param alignViewport + * @param startSeq + * @param endSeq + * @param selection */ - void drawIds(int starty, int endy) + void drawIds(Graphics2D g, AlignViewport alignViewport, final int startSeq, + final int endSeq, List selection) { - if (av.isSeqNameItalics()) + Font font = alignViewport.getFont(); + if (alignViewport.isSeqNameItalics()) { - setIdfont(new Font(av.getFont().getName(), Font.ITALIC, - av.getFont().getSize())); + setIdfont(new Font(font.getName(), Font.ITALIC, + font.getSize())); } else { - setIdfont(av.getFont()); + setIdfont(font); } - gg.setFont(getIdfont()); - fm = gg.getFontMetrics(); + g.setFont(getIdfont()); + FontMetrics fm = g.getFontMetrics(); - if (av.antiAlias) + if (alignViewport.antiAlias) { - gg.setRenderingHint(RenderingHints.KEY_ANTIALIASING, + g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); } Color currentColor = Color.white; Color currentTextColor = Color.black; - boolean hasHiddenRows = av.hasHiddenRows(); + boolean hasHiddenRows = alignViewport.hasHiddenRows(); - if (av.getWrapAlignment()) + if (alignViewport.getWrapAlignment()) { - drawIdsWrapped(starty, hasHiddenRows); + drawIdsWrapped(g, alignViewport, startSeq, getHeight()); return; } - // No need to hang on to labels if we're not wrapped - labels = null; - // Now draw the id strings int panelWidth = getWidth(); int xPos = 0; - SequenceI sequence; // Now draw the id strings - for (int i = starty; i <= endy; i++) + for (int i = startSeq; i <= endSeq; i++) { - sequence = av.getAlignment().getSequenceAt(i); + SequenceI sequence = alignViewport.getAlignment().getSequenceAt(i); if (sequence == null) { continue; } - if (hasHiddenRows || av.isDisplayReferenceSeq()) + if (hasHiddenRows || alignViewport.isDisplayReferenceSeq()) { - setHiddenFont(sequence); + g.setFont(getHiddenFont(sequence, alignViewport)); } // Selected sequence colours - if ((searchResults != null) && searchResults.contains(sequence)) + if (selection != null && selection.contains(sequence)) { currentColor = Color.black; currentTextColor = Color.white; } - else if ((av.getSelectionGroup() != null) && av.getSelectionGroup() - .getSequences(null).contains(sequence)) + else if ((alignViewport.getSelectionGroup() != null) && alignViewport + .getSelectionGroup().getSequences(null).contains(sequence)) { currentColor = Color.lightGray; currentTextColor = Color.black; } else { - currentColor = av.getSequenceColour(sequence); + currentColor = alignViewport.getSequenceColour(sequence); currentTextColor = Color.black; } - gg.setColor(currentColor); + g.setColor(currentColor); - gg.fillRect(0, (i - starty) * av.getCharHeight(), getWidth(), - av.getCharHeight()); + int charHeight = alignViewport.getCharHeight(); + g.fillRect(0, (i - startSeq) * charHeight, + getWidth(), charHeight); - gg.setColor(currentTextColor); + g.setColor(currentTextColor); - String string = sequence.getDisplayId(av.getShowJVSuffix()); + String string = sequence + .getDisplayId(alignViewport.getShowJVSuffix()); - if (av.isRightAlignIds()) + if (alignViewport.isRightAlignIds()) { xPos = panelWidth - fm.stringWidth(string) - 4; } - gg.drawString(string, xPos, - (((i - starty) * av.getCharHeight()) + av.getCharHeight()) - - (av.getCharHeight() / 5)); + g.drawString(string, xPos, (((i - startSeq) * charHeight) + charHeight) + - (charHeight / 5)); - if (hasHiddenRows) + if (hasHiddenRows && av.getShowHiddenMarkers()) { - drawMarker(i, starty, 0); + drawMarker(g, alignViewport, i, startSeq, 0); } } } /** - * Draws sequence ids in wrapped mode + * Draws sequence ids, and annotation labels if annotations are shown, in + * wrapped mode * - * @param starty - * @param hasHiddenRows + * @param g + * @param alignViewport + * @param startSeq */ - protected void drawIdsWrapped(int starty, boolean hasHiddenRows) + void drawIdsWrapped(Graphics2D g, AlignViewport alignViewport, + int startSeq, int pageHeight) { - int maxwidth = av.getAlignment().getWidth(); - int alheight = av.getAlignment().getHeight(); + int alignmentWidth = alignViewport.getAlignment().getWidth(); + final int alheight = alignViewport.getAlignment().getHeight(); - if (av.hasHiddenColumns()) - { - maxwidth = av.getAlignment().getHiddenColumns() - .absoluteToVisibleColumn(maxwidth) - 1; - } + +// int annotationHeight = 0; + + /* (former) + * assumption: SeqCanvas.calculateWrappedGeometry has been called + * + * was based on the fact that SeqCanvas was added as a child prior to IdCanvas, + * and children are processed in order of addition. + * + * It's probably fine. But... + * + */ + SeqCanvas seqCanvas = alignViewport.getAlignPanel() + .getSeqPanel().seqCanvas; + // ...better: let's call it now + seqCanvas.calculateWrappedGeometry(); - int annotationHeight = 0; + final int charHeight = alignViewport.getCharHeight(); - if (av.isShowAnnotation()) + AnnotationLabels labels = null; + if (alignViewport.isShowAnnotation()) { + // BH when was ap == null? if (ap == null) { - ap = new AnnotationPanel(av); - } - - annotationHeight = ap.adjustPanelHeight(); - if (labels == null) - { - labels = new AnnotationLabels(av); + ap = new AnnotationPanel(alignViewport); } +// annotationHeight = ap.adjustPanelHeight(); + labels = new AnnotationLabels(alignViewport); } - int hgap = av.getCharHeight(); - if (av.getScaleAboveWrapped()) - { - hgap += av.getCharHeight(); - } - - int cHeight = alheight * av.getCharHeight() + hgap + annotationHeight; - - ViewportRanges ranges = av.getRanges(); +// int hgap = charHeight; +// if (alignViewport.getScaleAboveWrapped()) +// { +// hgap += charHeight; +// } +// +// /* +// * height of alignment + gap + annotations (if shown) +// */ +// int cHeight = alheight * charHeight + hgap +// + annotationHeight; +// + ViewportRanges ranges = alignViewport.getRanges(); int rowSize = ranges.getViewportWidth(); @@ -415,49 +443,58 @@ public class IdCanvas extends JPanel implements ViewportListenerI * draw repeating sequence ids until out of sequence data or * out of visible space, whichever comes first */ - int ypos = hgap; - int row = ranges.getStartRes(); - while ((ypos <= getHeight()) && (row < maxwidth)) + boolean hasHiddenRows = alignViewport.hasHiddenRows(); + int ypos = seqCanvas.wrappedSpaceAboveAlignment; + int rowStartRes = ranges.getStartRes(); + while ((ypos <= pageHeight) && (rowStartRes < alignmentWidth)) { - for (int i = starty; i < alheight; i++) + for (int i = startSeq; i < alheight; i++) { - SequenceI s = av.getAlignment().getSequenceAt(i); - if (hasHiddenRows || av.isDisplayReferenceSeq()) + SequenceI s = alignViewport.getAlignment().getSequenceAt(i); + if (hasHiddenRows || alignViewport.isDisplayReferenceSeq()) { - setHiddenFont(s); + g.setFont(getHiddenFont(s, alignViewport)); } else { - gg.setFont(getIdfont()); + g.setFont(getIdfont()); } - - drawIdString(gg, hasHiddenRows, s, i, 0, ypos); + drawIdString(g, hasHiddenRows, s, i, 0, ypos); } - if (labels != null && av.isShowAnnotation()) + if (labels != null && alignViewport.isShowAnnotation()) { - gg.translate(0, ypos + (alheight * av.getCharHeight())); - labels.drawComponent(gg, getWidth()); - gg.translate(0, -ypos - (alheight * av.getCharHeight())); + g.translate(0, ypos + (alheight * charHeight)); + labels.drawComponent(g, getWidth()); + g.translate(0, -ypos - (alheight * charHeight)); } - ypos += cHeight; - row += rowSize; + ypos += seqCanvas.wrappedRepeatHeightPx; + rowStartRes += rowSize; } } - void drawMarker(int i, int starty, int yoffset) + /** + * Draws a marker (a blue right-pointing triangle) between sequences to + * indicate hidden sequences. + * + * @param g + * @param alignViewport + * @param seqIndex + * @param starty + * @param yoffset + */ + void drawMarker(Graphics2D g, AlignViewport alignViewport, int seqIndex, int starty, int yoffset) { - - SequenceI[] hseqs = av.getAlignment() + SequenceI[] hseqs = alignViewport.getAlignment() .getHiddenSequences().hiddenSequences; // Use this method here instead of calling hiddenSeq adjust // 3 times. int hSize = hseqs.length; - int hiddenIndex = i; - int lastIndex = i - 1; - int nextIndex = i + 1; + int hiddenIndex = seqIndex; + int lastIndex = seqIndex - 1; + int nextIndex = seqIndex + 1; for (int j = 0; j < hSize; j++) { @@ -478,52 +515,56 @@ public class IdCanvas extends JPanel implements ViewportListenerI } } + /* + * are we below or above the hidden sequences? + */ boolean below = (hiddenIndex > lastIndex + 1); boolean above = (nextIndex > hiddenIndex + 1); - gg.setColor(Color.blue); + g.setColor(Color.blue); + int charHeight = av.getCharHeight(); + + /* + * vertices of the triangle, below or above hidden seqs + */ + int[] xPoints = new int[] + { getWidth() - charHeight, + getWidth() - charHeight, getWidth() }; + int yShift = seqIndex - starty; + if (below) { - gg.fillPolygon( - new int[] - { getWidth() - av.getCharHeight(), - getWidth() - av.getCharHeight(), getWidth() }, - new int[] - { (i - starty) * av.getCharHeight() + yoffset, - (i - starty) * av.getCharHeight() + yoffset - + av.getCharHeight() / 4, - (i - starty) * av.getCharHeight() + yoffset }, - 3); + int[] yPoints = new int[] { yShift * charHeight + yoffset, + yShift * charHeight + yoffset + charHeight / 4, + yShift * charHeight + yoffset }; + g.fillPolygon(xPoints, yPoints, 3); } if (above) { - gg.fillPolygon( - new int[] - { getWidth() - av.getCharHeight(), - getWidth() - av.getCharHeight(), getWidth() }, - new int[] - { (i - starty + 1) * av.getCharHeight() + yoffset, - (i - starty + 1) * av.getCharHeight() + yoffset - - av.getCharHeight() / 4, - (i - starty + 1) * av.getCharHeight() + yoffset }, - 3); - + yShift++; + int[] yPoints = new int[] { yShift * charHeight + yoffset, + yShift * charHeight + yoffset - charHeight / 4, + yShift * charHeight + yoffset }; + g.fillPolygon(xPoints, yPoints, 3); } } - void setHiddenFont(SequenceI seq) + /** + * Answers the standard sequence id font, or a bold font if the sequence is + * set as reference or a hidden group representative + * + * @param seq + * @param alignViewport + * @return + */ + private Font getHiddenFont(SequenceI seq, AlignViewport alignViewport) { - Font bold = new Font(av.getFont().getName(), Font.BOLD, - av.getFont().getSize()); - if (av.isReferenceSeq(seq) || av.isHiddenRepSequence(seq)) { - gg.setFont(bold); - } - else - { - gg.setFont(getIdfont()); + return new Font(av.getFont().getName(), Font.BOLD, + av.getFont().getSize()); } + return getIdfont(); } /** @@ -564,20 +605,34 @@ public class IdCanvas extends JPanel implements ViewportListenerI public void propertyChange(PropertyChangeEvent evt) { String propertyName = evt.getPropertyName(); - if (propertyName.equals(ViewportRanges.STARTSEQ) - || (av.getWrapAlignment() - && propertyName.equals(ViewportRanges.STARTRES))) + switch (propertyName) { + case ViewportRanges.STARTSEQ: fastPaint((int) evt.getNewValue() - (int) evt.getOldValue()); - } - else if (propertyName.equals(ViewportRanges.STARTRESANDSEQ)) - { + break; + case ViewportRanges.STARTRES: + if (av.getWrapAlignment()) + { + fastPaint((int) evt.getNewValue() - (int) evt.getOldValue()); + } + break; + case ViewportRanges.STARTRESANDSEQ: fastPaint(((int[]) evt.getNewValue())[1] - ((int[]) evt.getOldValue())[1]); - } - else if (propertyName.equals(ViewportRanges.MOVE_VIEWPORT)) - { + break; + case ViewportRanges.MOVE_VIEWPORT: repaint(); + break; + default: } } + + /** + * Clears the flag that allows a 'fast paint' on the next repaint, so + * requiring a full repaint + */ + public void setNoFastPaint() + { + allowFastPaint = false; + } }