2.08, not 2.07
[jalview.git] / src / jalview / appletgui / SeqCanvas.java
index 5afbe23..f6ef577 100755 (executable)
@@ -37,12 +37,13 @@ public class SeqCanvas
 \r
   SearchResults searchResults = null;\r
 \r
-  int chunkHeight;\r
-  int chunkWidth;\r
-\r
   boolean fastPaint = false;\r
 \r
 \r
+  int cursorX = 0;\r
+  int cursorY = 0;\r
+\r
+\r
   public SeqCanvas(AlignViewport av)\r
   {\r
     this.av = av;\r
@@ -359,12 +360,19 @@ public class SeqCanvas
     av.endRes = av.startRes + cWidth;\r
 \r
 \r
-    int endx = (startRes + cWidth) - 1;\r
+    int endx;\r
     int ypos = hgap;\r
 \r
 \r
     while ((ypos <= canvasHeight) && (startRes < av.alignment.getWidth()))\r
     {\r
+      endx = startRes + cWidth;\r
+\r
+      if (endx > al.getWidth())\r
+      {\r
+        endx = al.getWidth();\r
+      }\r
+\r
         g.setColor(Color.black);\r
 \r
         if (av.scaleLeftWrapped)\r
@@ -386,13 +394,6 @@ public class SeqCanvas
             drawNorthScale(g, startRes, endx, ypos);\r
         }\r
 \r
-\r
-        if (av.vconsensus!=null && av.alignment.getWidth() >= av.vconsensus.size())\r
-        {\r
-          endx = av.vconsensus.size() - 2;\r
-        }\r
-\r
-\r
         if(g.getClip()==null)\r
           g.setClip(0, 0, cWidth * av.charWidth, canvasHeight);\r
 \r
@@ -406,7 +407,7 @@ public class SeqCanvas
           if(annotations==null)\r
             annotations = new AnnotationPanel(av);\r
 \r
-          annotations.drawComponent( g, startRes, endx + 1);\r
+          annotations.drawComponent( g, startRes, endx );\r
           g.translate(0, -cHeight - ypos-4);\r
         }\r
         g.translate(-LABEL_WEST, 0);\r
@@ -415,12 +416,6 @@ public class SeqCanvas
 \r
 \r
         startRes += cWidth;\r
-        endx = (startRes + cWidth) - 1;\r
-\r
-        if (endx > al.getWidth())\r
-        {\r
-            endx = al.getWidth();\r
-        }\r
         }\r
 \r
   }\r
@@ -474,6 +469,14 @@ public class SeqCanvas
                                 av.charWidth, av.charHeight);\r
        }\r
    }\r
+\r
+   if (av.cursorMode && cursorY == i\r
+       && cursorX >= startRes && cursorX <= endRes)\r
+   {\r
+     sr.drawCursor(nextSeq, cursorX, (cursorX - startRes) * av.charWidth,\r
+                   offset + ( (i - startSeq) * av.charHeight));\r
+   }\r
+\r
   }\r
 \r
   //\r