Non positional features shown as mouse over
[jalview.git] / src / jalview / gui / AnnotationPanel.java
index 1b4a230..ecd9370 100755 (executable)
@@ -61,6 +61,8 @@ public class AnnotationPanel extends JPanel implements MouseListener,
     int max; //used by mouseDragged to see if user\r
     boolean mouseDragging = false;\r
 \r
+    boolean MAC = false;\r
+\r
     /**\r
      * Creates a new AnnotationPanel object.\r
      *\r
@@ -68,6 +70,10 @@ public class AnnotationPanel extends JPanel implements MouseListener,
      */\r
     public AnnotationPanel(AlignmentPanel ap)\r
     {\r
+\r
+    if(System.getProperty("os.name").startsWith("Mac"))\r
+      MAC = true;\r
+\r
         ToolTipManager.sharedInstance().registerComponent(this);\r
         ToolTipManager.sharedInstance().setInitialDelay(0);\r
         ToolTipManager.sharedInstance().setDismissDelay(10000);\r
@@ -635,6 +641,8 @@ public class AnnotationPanel extends JPanel implements MouseListener,
      */\r
     public void drawComponent(Graphics g, int startRes, int endRes)\r
     {\r
+\r
+\r
       g.setFont(av.getFont());\r
 \r
       if (fm == null)\r
@@ -644,13 +652,14 @@ public class AnnotationPanel extends JPanel implements MouseListener,
         g.setColor(Color.white);\r
         g.fillRect(0, 0, (endRes - startRes) * av.charWidth, getHeight());\r
 \r
-        if ((av.alignment.getAlignmentAnnotation() == null) ||\r
+        if ( (av.alignment.getAlignmentAnnotation() == null) ||\r
                 (av.alignment.getAlignmentAnnotation().length < 1))\r
         {\r
             g.setColor(Color.white);\r
             g.fillRect(0, 0, getWidth(), getHeight());\r
             g.setColor(Color.black);\r
-            g.drawString("Alignment has no annotations", 20, 15);\r
+            if(av.validCharWidth)\r
+              g.drawString("Alignment has no annotations", 20, 15);\r
 \r
             return;\r
         }\r
@@ -705,20 +714,17 @@ public class AnnotationPanel extends JPanel implements MouseListener,
             }\r
 \r
             int column = startRes;\r
-            int yPos = startRes;\r
 \r
-            while (yPos < endRes)\r
+            while (column < endRes)\r
             {\r
               if (av.hasHiddenColumns)\r
               {\r
-                column = av.getColumnSelection().adjustForHiddenColumns(yPos);\r
+                column = av.getColumnSelection().adjustForHiddenColumns(column);\r
                 if (column > row.annotations.length-1)\r
                 {\r
                   break;\r
                 }\r
               }\r
-              else\r
-                column = yPos;\r
 \r
                 if ((row.annotations.length <= column) ||\r
                         (row.annotations[column] == null))\r
@@ -730,7 +736,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                     validRes = true;\r
                 }\r
 \r
-                x = (yPos - startRes) * av.charWidth;\r
+                x = (column - startRes) * av.charWidth;\r
 \r
                 if (activeRow == i)\r
                 {\r
@@ -751,7 +757,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                     }\r
                 }\r
 \r
-                if (validRes &&\r
+                if (av.validCharWidth && validRes &&\r
                         (row.annotations[column].displayCharacter.length() > 0))\r
                 {\r
 \r
@@ -765,10 +771,13 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                         g.drawString(row.annotations[column].displayCharacter, x+charOffset,\r
                             y + iconOffset + 3);\r
                     }\r
-                    else if (((row.annotations[column - 1] == null)\r
-                              ||\r
-                            (!row.annotations[column].displayCharacter.equals(\r
-                             row.annotations[column - 1].displayCharacter))))\r
+                    else if (\r
+                        row.annotations[column - 1] == null\r
+                        ||(!row.annotations[column].displayCharacter.equals(\r
+                            row.annotations[column - 1].displayCharacter)\r
+                        ||\r
+                  (row.annotations[column].displayCharacter.length() <2 &&\r
+                   row.annotations[column].secondaryStructure==' ')))\r
                     {\r
                         g.drawString(row.annotations[column].displayCharacter, x+charOffset,\r
                             y + iconOffset + 3);\r
@@ -784,20 +793,46 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                         {\r
                         case 'H':\r
                             g.setColor(HELIX_COLOUR);\r
-                            g.fillRoundRect(lastSSX, y + 4 + iconOffset,\r
-                                x - lastSSX, 7, 8, 8);\r
+                            if(MAC)\r
+                            {\r
+                              //Off by 1 offset when drawing rects and ovals\r
+                              //to offscreen image on the MAC\r
+                              g.fillRoundRect(lastSSX, y + 4 + iconOffset,\r
+                                              x - lastSSX, 7, 8, 8);\r
+                              break;\r
+                            }\r
+\r
+                            int sCol = (lastSSX / av.charWidth) + startRes;\r
+                            int x1 = lastSSX;\r
+                            int x2 = x;\r
 \r
+                           if(sCol==0 ||\r
+                              row.annotations[sCol-1]==null ||\r
+                              row.annotations[sCol-1].secondaryStructure!='H')\r
+                           {\r
+                             g.fillArc(lastSSX, y+4+iconOffset, av.charWidth+1, 7, 90,180) ;\r
+                             x1 += av.charWidth/2;\r
+                           }\r
+\r
+                            if(row.annotations[column]==null ||\r
+                               row.annotations[column].secondaryStructure!='H')\r
+                            {\r
+                              g.fillArc(x-av.charWidth, y+4+iconOffset, av.charWidth, 7, 270,180);\r
+                              x2 -= av.charWidth/2;\r
+                            }\r
+\r
+                            g.fillRect(x1, y+4+iconOffset, x2-x1+1, 7);\r
                             break;\r
 \r
                         case 'E':\r
                             g.setColor(SHEET_COLOUR);\r
                             g.fillRect(lastSSX, y + 4 + iconOffset,\r
                                 x - lastSSX - 4, 7);\r
-                            g.fillPolygon(new int[] { x - 4, x - 4, x },\r
+                            g.fillPolygon(new int[] { x - 5, x - 5, x },\r
                                 new int[]\r
                                 {\r
                                     y + iconOffset, y + 14 + iconOffset,\r
-                                    y + 8 + iconOffset\r
+                                    y + 7 + iconOffset\r
                                 }, 3);\r
 \r
                             break;\r
@@ -824,7 +859,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                     }\r
                 }\r
 \r
-                yPos++;\r
+                column++;\r
             }\r
 \r
             x += av.charWidth;\r
@@ -834,22 +869,50 @@ public class AnnotationPanel extends JPanel implements MouseListener,
                 switch (lastSS)\r
                 {\r
                 case 'H':\r
-                    g.setColor(HELIX_COLOUR);\r
+                  g.setColor(HELIX_COLOUR);\r
+                  if (MAC)\r
+                  {\r
+                    //Off by 1 offset when drawing rects and ovals\r
+                    //to offscreen image on the MAC\r
                     g.fillRoundRect(lastSSX, y + 4 + iconOffset,\r
-                        x - lastSSX, 7, 8, 8);\r
+                                    x - lastSSX, 7, 8, 8);\r
+                    break;\r
+                  }\r
+\r
+\r
+                  int sCol = (lastSSX / av.charWidth) + startRes;\r
+                  int x1 = lastSSX;\r
+                  int x2 = x;\r
+\r
+                 if(sCol==0 ||\r
+                    row.annotations[sCol-1]==null ||\r
+                    row.annotations[sCol-1].secondaryStructure!='H')\r
+                 {\r
+                   g.fillArc(lastSSX, y+4+iconOffset, av.charWidth+1, 7, 90,180) ;\r
+                   x1 += av.charWidth/2;\r
+                 }\r
+\r
+                  if(row.annotations[column]==null ||\r
+                     row.annotations[column].secondaryStructure!='H')\r
+                  {\r
+                    g.fillArc(x-av.charWidth, y+4+iconOffset, av.charWidth, 7, 270,180);\r
+                    x2 -= av.charWidth/2;\r
+                  }\r
+\r
+                  g.fillRect(x1, y+4+iconOffset, x2-x1+1, 7);\r
 \r
                     break;\r
 \r
                 case 'E':\r
                     g.setColor(SHEET_COLOUR);\r
 \r
-                    if (row.annotations[endRes] !=null\r
-                        && row.annotations[endRes].secondaryStructure != 'E')\r
+                    if (row.annotations[endRes] ==null\r
+                        || row.annotations[endRes].secondaryStructure != 'E')\r
                     {\r
                       g.fillRect(lastSSX, y + 4 + iconOffset,\r
                                  x - lastSSX - 4, 7);\r
                       g.fillPolygon(new int[]\r
-                                    {x - 4, x - 4, x},\r
+                                    {x - 5, x - 5, x},\r
                                     new int[]\r
                                     {\r
                                     y + iconOffset, y + 14 + iconOffset,\r
@@ -865,7 +928,8 @@ public class AnnotationPanel extends JPanel implements MouseListener,
 \r
                 default:\r
                     g.setColor(Color.gray);\r
-                    g.fillRect(lastSSX, y + 6 + iconOffset, x - lastSSX, 2);\r
+                    if(!av.wrapAlignment || endRes==av.endRes)\r
+                      g.fillRect(lastSSX, y + 6 + iconOffset, x - lastSSX, 2);\r
 \r
                     break;\r
                 }\r
@@ -934,7 +998,6 @@ public class AnnotationPanel extends JPanel implements MouseListener,
       if(sRes>aa.annotations.length)\r
         return;\r
 \r
-      eRes = Math.min(eRes, aa.annotations.length);\r
 \r
       int x = 0;\r
 \r
@@ -942,6 +1005,8 @@ public class AnnotationPanel extends JPanel implements MouseListener,
       if(eRes<av.endRes)\r
         eRes++;\r
 \r
+      eRes = Math.min(eRes, aa.annotations.length);\r
+\r
       if(sRes==0)\r
       {\r
         sRes++;\r
@@ -953,7 +1018,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
 \r
       ////Draw origin\r
       if(min<0)\r
-        y2 = (int)(y - (0-min / range)*graphHeight);\r
+        y2 = y - (int)((0-min / range)*graphHeight);\r
 \r
       g.setColor(Color.gray);\r
       g.drawLine(x-av.charWidth,y2,(eRes-sRes+1)*av.charWidth,y2);\r
@@ -961,35 +1026,36 @@ public class AnnotationPanel extends JPanel implements MouseListener,
       eRes = Math.min(eRes, aa.annotations.length);\r
 \r
       int column = sRes;\r
-      int yPos = sRes;\r
       int aaMax = aa.annotations.length-1;\r
 \r
-      while( yPos < eRes )\r
+      while( column < eRes )\r
       {\r
         if(av.hasHiddenColumns)\r
         {\r
-          column = av.getColumnSelection().adjustForHiddenColumns(yPos);\r
+          column = av.getColumnSelection().adjustForHiddenColumns(column);\r
           if(column > aaMax)\r
           {\r
             break;\r
           }\r
         }\r
-        else\r
-          column = yPos;\r
-\r
-        yPos ++;\r
 \r
         if(aa.annotations[column]==null || aa.annotations[column-1]==null)\r
         {\r
           x+=av.charWidth;\r
+          column ++;\r
           continue;\r
         }\r
 \r
+\r
           g.setColor(aa.annotations[column].colour);\r
           y1 = y - (int) (((aa.annotations[column-1].value-min) / range) * graphHeight);\r
           y2 = y - (int) (((aa.annotations[column].value-min) / range) * graphHeight);\r
+\r
           g.drawLine(x-av.charWidth/2, y1, x+av.charWidth/2, y2);\r
           x += av.charWidth;\r
+\r
+          column++;\r
+\r
        }\r
        if(aa.threshold!=null)\r
        {\r
@@ -1023,7 +1089,7 @@ public class AnnotationPanel extends JPanel implements MouseListener,
       y1 = y2 = y;\r
 \r
       if(min<0)\r
-        y2 = (int)(y - (0-min / (range))*aa.graphHeight);\r
+        y2 = y - (int)((0-min / (range))*aa.graphHeight);\r
 \r
       g.setColor(Color.gray);\r
 \r
@@ -1031,31 +1097,26 @@ public class AnnotationPanel extends JPanel implements MouseListener,
 \r
 \r
       int column = sRes;\r
-      int yPos = sRes;\r
       int aaMax = aa.annotations.length-1;\r
 \r
-      while( yPos < eRes )\r
+      while( column < eRes )\r
       {\r
         if(av.hasHiddenColumns)\r
         {\r
-          column = av.getColumnSelection().adjustForHiddenColumns(yPos);\r
+          column = av.getColumnSelection().adjustForHiddenColumns(column);\r
           if(column > aaMax)\r
           {\r
             break;\r
           }\r
         }\r
-        else\r
-          column = yPos;\r
-\r
-        yPos ++;\r
 \r
         if (aa.annotations[column] == null)\r
         {\r
           x += av.charWidth;\r
+          column ++;\r
           continue;\r
         }\r
 \r
-\r
           g.setColor(aa.annotations[column].colour);\r
           y1 = y - (int) (((aa.annotations[column].value-min) / (range)) * aa.graphHeight);\r
 \r
@@ -1065,6 +1126,8 @@ public class AnnotationPanel extends JPanel implements MouseListener,
             g.fillRect(x, y1, av.charWidth, y2-y1 );\r
 \r
           x += av.charWidth;\r
+          column ++;\r
+\r
       }\r
       if(aa.threshold!=null)\r
       {\r