Update overview in alignmentChanged
[jalview.git] / src / jalview / appletgui / OverviewPanel.java
index d02892b..7910f2d 100755 (executable)
@@ -32,11 +32,16 @@ public class OverviewPanel
   float scaleh = 1f;\r
 \r
   public int width, sequencesHeight;\r
-  int graphHeight = 30;\r
+  int graphHeight = 20;\r
   int boxX = -1, boxY = -1, boxWidth = -1, boxHeight = -1;\r
 \r
   boolean resizing = false;\r
 \r
+  // Can set different properties in this seqCanvas than\r
+  // main visible SeqCanvas\r
+  SeqCanvas overviewSeq;\r
+\r
+\r
   Frame nullFrame;\r
 \r
   public OverviewPanel(AlignmentPanel ap)\r
@@ -47,14 +52,25 @@ public class OverviewPanel
     nullFrame = new Frame();\r
     nullFrame.addNotify();\r
 \r
+    overviewSeq = new SeqCanvas(av);\r
+    overviewSeq.isOverview = true;\r
+    overviewSeq.sr.renderGaps = false;\r
+\r
+\r
     // scale the initial size of overviewpanel to shape of alignment\r
     float initialScale = (float) av.alignment.getWidth() /\r
         (float) av.alignment.getHeight();\r
+\r
+    if(av.vconsensus==null)\r
+          graphHeight = 0;\r
+\r
     if (av.alignment.getWidth() > av.alignment.getHeight())\r
     {\r
       // wider\r
       width = 400;\r
       sequencesHeight = (int) (400f / initialScale);\r
+      if(sequencesHeight<40)\r
+              sequencesHeight = 40;\r
     }\r
     else\r
     {\r
@@ -120,11 +136,8 @@ public class OverviewPanel
     boxX = evt.getX();\r
     boxY = evt.getY();\r
     checkValid();\r
-    if (!resizing)\r
-    {\r
-      ap.setScrollValues( (int) (boxX / scalew / av.getCharWidth()),\r
+    ap.setScrollValues( (int) (boxX / scalew / av.getCharWidth()),\r
                          (int) (boxY / scaleh / av.getCharHeight()));\r
-    }\r
   }\r
 \r
   public void doMouseDragged(MouseEvent evt)\r
@@ -132,11 +145,9 @@ public class OverviewPanel
     boxX = evt.getX();\r
     boxY = evt.getY();\r
     checkValid();\r
-    if (!resizing)\r
-    {\r
-      ap.setScrollValues( (int) (boxX / scalew / av.getCharWidth()),\r
+    ap.setScrollValues( (int) (boxX / scalew / av.getCharWidth()),\r
                          (int) (boxY / scaleh / av.getCharHeight()));\r
-    }\r
+\r
     repaint();\r
     ap.repaint();\r
   }\r
@@ -164,19 +175,36 @@ public class OverviewPanel
     }\r
   }\r
 \r
+  /**\r
+   * DOCUMENT ME!\r
+   */\r
   public void updateOverviewImage()\r
   {\r
     if (resizing)\r
     {\r
-      return;\r
+        resizeAgain = true;\r
+        return;\r
     }\r
 \r
     resizing = true;\r
+\r
+    if ( (getSize().width > 0) && (getSize().height > 0))\r
+    {\r
+      width = getSize().width;\r
+      sequencesHeight = getSize().height - graphHeight;\r
+    }\r
+    setSize(new Dimension(width, sequencesHeight + graphHeight));\r
+    setBoxPosition();\r
+\r
     Thread thread = new Thread(this);\r
     thread.start();\r
-    repaint();\r
+        repaint();\r
   }\r
 \r
+  // This is set true if the user resizes whilst\r
+  // the overview is being calculated\r
+    boolean resizeAgain = false;\r
+\r
   public void run()\r
   {\r
     miniMe = null;\r
@@ -200,85 +228,55 @@ public class OverviewPanel
     miniMe = nullFrame.createImage(width, sequencesHeight + graphHeight);\r
 \r
     Graphics mg = miniMe.getGraphics();\r
-    Image consensus = nullFrame.createImage(fullsizeWidth, 60);\r
-    Graphics g = consensus.getGraphics();\r
-    ap.annotationPanel.drawGraph(g, av.conservation, fullsizeWidth, 60);\r
-    mg.drawImage(consensus, 0, sequencesHeight, width,\r
-                 sequencesHeight + graphHeight, 0, 0, fullsizeWidth, 60, this);\r
-\r
-    boolean oldRenderGaps = av.renderGaps;\r
-    try\r
-    {\r
-      // We'll have to draw the full size alignment in chunks, as an image of the\r
-      // whole alignment requires too much memory\r
+    float sampleCol = (float) alwidth / (float) width;\r
+    float sampleRow = (float) alheight / (float) sequencesHeight;\r
 \r
-      // Max size depends on the font size, the following is a\r
-      // guess at a size which works\r
-      int maxSize = 2000 / av.getFont().getSize();\r
-      Image block;\r
-      int blockx = 0, blocky = 0, blockw = 0, blockh = 0, eRes = 0, eSeq = 0;\r
-\r
-      av.setRenderGaps(false);\r
-      for (int sRes = 0, chunkx = 0; sRes < alwidth; sRes += maxSize, chunkx++)\r
+    for (int col = 0; col < width; col++)\r
+    {\r
+      for (int row = 0; row < sequencesHeight; row++)\r
       {\r
-        eSeq = 0;\r
-        eRes += maxSize;\r
-        if (eRes > alwidth)\r
-        {\r
-          eRes = alwidth;\r
-        }\r
-\r
-        for (int sSeq = 0, chunky = 0; sSeq < alheight; sSeq += maxSize, chunky++)\r
-        {\r
-          eSeq += maxSize;\r
-          if (eSeq > alheight)\r
-          {\r
-            eSeq = alheight;\r
-          }\r
-\r
-          blocky = 0;\r
-          blockx = (int) ( (float) sRes / (float) alwidth * width);\r
-\r
-          block = nullFrame.createImage( (eRes - sRes) * av.charWidth,\r
-                                        (eSeq - sSeq) * av.charHeight);\r
-          g = block.getGraphics();\r
-\r
-          ap.seqPanel.seqCanvas.drawPanel(g, sRes, eRes, sSeq, eSeq, sRes, sSeq,\r
-                                          0);\r
-\r
-          blockh = (int) ( (float) (eSeq - sSeq) / (float) alheight *\r
-                          sequencesHeight) + 1;\r
-          blockw = (int) ( (float) (eRes - sRes) / (float) alwidth * width) + 1;\r
-\r
-          blocky += (int) ( (float) sSeq / (float) alheight * sequencesHeight);\r
-\r
-          mg.drawImage(block, blockx,\r
-                       blocky,\r
-                       blockx + blockw,\r
-                       blocky + blockh,\r
-\r
-                       0, 0, block.getWidth(null), block.getHeight(null), this);\r
-\r
-          block = null;\r
-        }\r
+        overviewSeq.drawPanel(mg,\r
+                                        (int) (col * sampleCol),\r
+                                        (int) (col * sampleCol),\r
+                                        (int) (row * sampleRow),\r
+                                        (int) (row * sampleRow) + 1,\r
+                                        (int) (col * sampleCol),\r
+                                        (int) (row * sampleRow), 0);\r
+        mg.translate(0, 1);\r
+\r
+        if (av.conservation != null)\r
+          ap.annotationPanel.drawGraph(mg, av.conservation,\r
+                                       (int) (sampleCol) + 1,\r
+                                       graphHeight,\r
+                                       (int) (col * sampleCol),\r
+                                       (int) (col * sampleCol) + 1);\r
 \r
       }\r
+      mg.translate(0, -sequencesHeight);\r
+      mg.translate(1, 0);\r
 \r
-    }\r
-    catch (OutOfMemoryError error)\r
-    {\r
-      System.err.println(\r
-          "Out of memory when trying to calculate the overview window image!");\r
-    }\r
+        }\r
+    System.gc();\r
 \r
-    av.setRenderGaps(oldRenderGaps);\r
     resizing = false;\r
 \r
     setBoxPosition();\r
+\r
+    if(resizeAgain)\r
+    {\r
+      resizeAgain = false;\r
+      updateOverviewImage();\r
+    }\r
   }\r
 \r
   public void setBoxPosition()\r
   {\r
+    int fullsizeWidth = av.alignment.getWidth() * av.getCharWidth();\r
+    int fullsizeHeight = av.alignment.getHeight() * av.getCharHeight();\r
+\r
+    scalew = (float) width / (float) fullsizeWidth;\r
+    scaleh = (float) sequencesHeight / (float) fullsizeHeight;\r
+\r
     boxX = (int) (av.getStartRes() * av.getCharWidth() * scalew);\r
     boxY = (int) (av.getStartSeq() * av.getCharHeight() * scaleh);\r
     boxWidth = (int) ( (av.getEndRes() - av.getStartRes() + 1) *\r
@@ -294,27 +292,23 @@ public class OverviewPanel
 \r
   public void paint(Graphics g)\r
   {\r
-    if (resizing)\r
+    if (miniMe != null)\r
+    {\r
+      g.drawImage(miniMe, 0, 0, this);\r
+    }\r
+    else\r
     {\r
       g.setColor(Color.white);\r
       g.fillRect(0, 0, getSize().width, getSize().height);\r
       g.setColor(Color.black);\r
-\r
       g.setFont(new Font("Verdana", Font.BOLD, 15));\r
       g.drawString("Recalculating", 5, sequencesHeight / 2);\r
-      g.drawString("Overview.....", 5, sequencesHeight / 2 + 20);\r
+      g.drawString("Overview.....", 5, (sequencesHeight / 2) + 20);\r
     }\r
-    else\r
-    {\r
-      if (miniMe != null)\r
-      {\r
-        g.drawImage(miniMe, 0, 0, this);\r
-      }\r
 \r
-      g.setColor(Color.red);\r
-      g.drawRect(boxX, boxY, boxWidth, boxHeight);\r
-      g.drawRect(boxX + 1, boxY + 1, boxWidth - 2, boxHeight - 2);\r
-    }\r
+    g.setColor(Color.red);\r
+    g.drawRect(boxX, boxY, boxWidth, boxHeight);\r
+    g.drawRect(boxX + 1, boxY + 1, boxWidth - 2, boxHeight - 2);\r
   }\r
 \r
 }\r