X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FIdCanvas.java;h=58a4f107519548f27d3e5398983a05484f67f677;hb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;hp=7f9eba9c08c8e0f697decae0b6b55ba52948bcc1;hpb=be32c14cd8e48fe0a207cd7030cb9cd46f894678;p=jalview.git diff --git a/src/jalview/appletgui/IdCanvas.java b/src/jalview/appletgui/IdCanvas.java index 7f9eba9..58a4f10 100755 --- a/src/jalview/appletgui/IdCanvas.java +++ b/src/jalview/appletgui/IdCanvas.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) - * Copyright (C) $$Year-Rel$$ The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9) + * Copyright (C) 2015 The Jalview Authors * * This file is part of Jalview. * @@ -56,8 +56,8 @@ public class IdCanvas extends Panel PaintRefresher.Register(this, av.getSequenceSetId()); } - public void drawIdString(Graphics gg, SequenceI s, int i, int starty, - int ypos) + public void drawIdString(Graphics gg, boolean hiddenRows, SequenceI s, + int i, int starty, int ypos) { int charHeight = av.getCharHeight(); @@ -88,7 +88,7 @@ public class IdCanvas extends Panel ((i - starty) * charHeight) + ypos + charHeight - (charHeight / 5)); - if (av.hasHiddenRows() && av.getShowHiddenMarkers()) + if (hiddenRows) { drawMarker(i, starty, ypos); } @@ -186,6 +186,7 @@ public class IdCanvas extends Panel * local copy of av.getCharHeight set at top of drawIds */ private int avcharHeight; + void drawIds(int starty, int endy) { // hardwired italic IDs in applet currently @@ -199,6 +200,10 @@ public class IdCanvas extends Panel Color currentColor = Color.white; Color currentTextColor = Color.black; + final boolean doHiddenCheck = av.isDisplayReferenceSeq() + || av.hasHiddenRows(), hiddenRows = av.hasHiddenRows() + && av.getShowHiddenMarkers(); + if (av.getWrapAlignment()) { int maxwidth = av.getAlignment().getWidth(); @@ -227,7 +232,6 @@ public class IdCanvas extends Panel int cHeight = alheight * avcharHeight + hgap + annotationHeight; int rowSize = av.getEndRes() - av.getStartRes(); - // Draw the rest of the panels for (int ypos = hgap, row = av.startRes; (ypos <= getSize().height) && (row < maxwidth); ypos += cHeight, row += rowSize) @@ -237,11 +241,11 @@ public class IdCanvas extends Panel SequenceI s = av.getAlignment().getSequenceAt(i); gg.setFont(italic); - if (av.isDisplayReferenceSeq() || av.hasHiddenRows()) + if (doHiddenCheck) { setHiddenFont(s); } - drawIdString(gg, s, i, 0, ypos); + drawIdString(gg, hiddenRows, s, i, 0, ypos); } if (labels != null) @@ -267,7 +271,7 @@ public class IdCanvas extends Panel } gg.setFont(italic); // boolean isrep=false; - if (av.isDisplayReferenceSeq() || av.hasHiddenRows()) + if (doHiddenCheck) { // isrep = setHiddenFont(seq); @@ -302,7 +306,7 @@ public class IdCanvas extends Panel (((i - starty) * avcharHeight) + avcharHeight) - (avcharHeight / 5)); - if (av.hasHiddenRows() && av.getShowHiddenMarkers()) + if (hiddenRows) { drawMarker(i, starty, 0); } @@ -352,19 +356,17 @@ public class IdCanvas extends Panel gg.setColor(Color.blue); if (below) { - gg.fillPolygon(new int[] - { getSize().width - avcharHeight, getSize().width - avcharHeight, - getSize().width }, new int[] - { (i - starty) * avcharHeight + yoffset, + gg.fillPolygon(new int[] { getSize().width - avcharHeight, + getSize().width - avcharHeight, getSize().width }, new int[] { + (i - starty) * avcharHeight + yoffset, (i - starty) * avcharHeight + yoffset + avcharHeight / 4, (i - starty) * avcharHeight + yoffset }, 3); } if (above) { - gg.fillPolygon(new int[] - { getSize().width - avcharHeight, getSize().width - avcharHeight, - getSize().width }, new int[] - { (i - starty + 1) * avcharHeight + yoffset, + gg.fillPolygon(new int[] { getSize().width - avcharHeight, + getSize().width - avcharHeight, getSize().width }, new int[] { + (i - starty + 1) * avcharHeight + yoffset, (i - starty + 1) * avcharHeight + yoffset - avcharHeight / 4, (i - starty + 1) * avcharHeight + yoffset }, 3);