JAL-1807 Bob's first commit -- Applet loaded; needs image
[jalview.git] / src / jalview / appletgui / OverviewPanel.java
index b48b2a4..8bc0da8 100755 (executable)
@@ -1,26 +1,39 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
- * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
- *
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
  * This file is part of Jalview.
- *
+ * 
  * Jalview is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * Jalview is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty
- * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
  * PURPOSE.  See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
  */
 package jalview.appletgui;
 
 import jalview.datamodel.AlignmentI;
-
-import java.awt.*;
-import java.awt.event.*;
+import jalview.datamodel.SequenceI;
+
+import java.awt.Color;
+import java.awt.Dimension;
+import awt2swing.Frame;
+import java.awt.Graphics;
+import java.awt.Image;
+import awt2swing.Panel;
+import java.awt.event.ComponentAdapter;
+import java.awt.event.ComponentEvent;
+import java.awt.event.MouseEvent;
+import java.awt.event.MouseListener;
+import java.awt.event.MouseMotionListener;
 
 public class OverviewPanel extends Panel implements Runnable,
         MouseMotionListener, MouseListener
@@ -66,7 +79,6 @@ public class OverviewPanel extends Panel implements Runnable,
     sr.renderGaps = false;
     sr.forOverview = true;
     fr = new FeatureRenderer(av);
-    fr.overview = true;
 
     // scale the initial size of overviewpanel to shape of alignment
     float initialScale = (float) av.getAlignment().getWidth()
@@ -207,8 +219,8 @@ public class OverviewPanel extends Panel implements Runnable,
 
     if (av.hasHiddenRows())
     {
-      row = av.getAlignment().getHiddenSequences().findIndexWithoutHiddenSeqs(
-              row);
+      row = av.getAlignment().getHiddenSequences()
+              .findIndexWithoutHiddenSeqs(row);
     }
 
     ap.setScrollValues(col, row);
@@ -226,10 +238,9 @@ public class OverviewPanel extends Panel implements Runnable,
       return;
     }
 
-    if (av.showSequenceFeatures)
+    if (av.isShowSequenceFeatures())
     {
-      fr.featureGroups = ap.seqPanel.seqCanvas.getFeatureRenderer().featureGroups;
-      fr.featureColours = ap.seqPanel.seqCanvas.getFeatureRenderer().featureColours;
+      fr.transferSettings(ap.seqPanel.seqCanvas.fr);
     }
 
     resizing = true;
@@ -257,7 +268,7 @@ public class OverviewPanel extends Panel implements Runnable,
     int alwidth = av.getAlignment().getWidth();
     int alheight = av.getAlignment().getHeight();
 
-    if (av.showSequenceFeatures)
+    if (av.isShowSequenceFeatures())
     {
       fr.transferSettings(ap.seqPanel.seqCanvas.getFeatureRenderer());
     }
@@ -287,9 +298,11 @@ public class OverviewPanel extends Panel implements Runnable,
     int xstart = 0, ystart = 0;
     Color color = Color.yellow;
     int row, col, sameRow = 0, sameCol = 0;
-    jalview.datamodel.SequenceI seq;
+    SequenceI seq;
+    final boolean hasHiddenRows = av.hasHiddenRows(), hasHiddenCols = av
+            .hasHiddenColumns();
     boolean hiddenRow = false;
-    AlignmentI alignment=av.getAlignment();
+    AlignmentI alignment = av.getAlignment();
     for (row = 0; row <= sequencesHeight; row++)
     {
       if ((int) (row * sampleRow) == lastrow)
@@ -299,7 +312,7 @@ public class OverviewPanel extends Panel implements Runnable,
       }
 
       hiddenRow = false;
-      if (av.hasHiddenRows())
+      if (hasHiddenRows)
       {
         seq = alignment.getHiddenSequences().getHiddenSequence(lastrow);
         if (seq == null)
@@ -334,7 +347,7 @@ public class OverviewPanel extends Panel implements Runnable,
         {
           color = sr.getResidueBoxColour(seq, lastcol);
 
-          if (av.showSequenceFeatures)
+          if (av.isShowSequenceFeatures())
           {
             color = fr.findFeatureColour(color, seq, lastcol);
           }
@@ -345,7 +358,7 @@ public class OverviewPanel extends Panel implements Runnable,
         }
 
         if (hiddenRow
-                || (av.hasHiddenColumns() && !av.getColumnSelection()
+                || (hasHiddenCols && !av.getColumnSelection()
                         .isVisible(lastcol)))
         {
           color = color.darker().darker();
@@ -369,14 +382,16 @@ public class OverviewPanel extends Panel implements Runnable,
       sameRow = 1;
     }
 
-    if (av.getAlignmentConservationAnnotation()!= null)
+    if (av.getAlignmentConservationAnnotation() != null)
     {
       for (col = 0; col < width; col++)
       {
         lastcol = (int) (col * sampleCol);
         {
           mg.translate(col, sequencesHeight);
-          ap.annotationPanel.renderer.drawGraph(mg, av.getAlignmentConservationAnnotation(),av.getAlignmentConservationAnnotation().annotations,
+          ap.annotationPanel.renderer.drawGraph(mg,
+                  av.getAlignmentConservationAnnotation(),
+                  av.getAlignmentConservationAnnotation().annotations,
                   (int) (sampleCol) + 1, graphHeight,
                   (int) (col * sampleCol), (int) (col * sampleCol) + 1);
           mg.translate(-col, -sequencesHeight);
@@ -400,7 +415,8 @@ public class OverviewPanel extends Panel implements Runnable,
   {
     int fullsizeWidth = av.getAlignment().getWidth() * av.getCharWidth();
     int fullsizeHeight = (av.getAlignment().getHeight() + av.getAlignment()
-            .getHiddenSequences().getSize()) * av.getCharHeight();
+            .getHiddenSequences().getSize())
+            * av.getCharHeight();
 
     int startRes = av.getStartRes();
     int endRes = av.getEndRes();
@@ -416,8 +432,8 @@ public class OverviewPanel extends Panel implements Runnable,
 
     if (av.hasHiddenRows())
     {
-      startSeq = av.getAlignment().getHiddenSequences().adjustForHiddenSeqs(
-              startSeq);
+      startSeq = av.getAlignment().getHiddenSequences()
+              .adjustForHiddenSeqs(startSeq);
 
       endSeq = av.getAlignment().getHiddenSequences()
               .adjustForHiddenSeqs(endSeq);
@@ -451,7 +467,7 @@ public class OverviewPanel extends Panel implements Runnable,
   }
 
   @Override
-  public void paint(Graphics g)
+  public void paintComponent(Graphics g)
   {
     Graphics og = offscreen.getGraphics();
     if (miniMe != null)