removed Iterator usage.
[jalview.git] / src / jalview / gui / AnnotationColourChooser.java
index 0209d76..31c7ba7 100755 (executable)
@@ -1,31 +1,32 @@
 /*\r
-* Jalview - A Sequence Alignment Editor and Viewer\r
-* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
-*\r
-* This program is free software; you can redistribute it and/or\r
-* modify it under the terms of the GNU General Public License\r
-* as published by the Free Software Foundation; either version 2\r
-* of the License, or (at your option) any later version.\r
-*\r
-* This program is distributed in the hope that it will be useful,\r
-* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-* GNU General Public License for more details.\r
-*\r
-* You should have received a copy of the GNU General Public License\r
-* along with this program; if not, write to the Free Software\r
-* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
-*/\r
+ * Jalview - A Sequence Alignment Editor and Viewer\r
+ * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
+ */\r
 package jalview.gui;\r
 \r
-import javax.swing.*;\r
-import java.awt.event.*;\r
+import java.util.*;\r
+\r
 import java.awt.*;\r
+import java.awt.event.*;\r
+import javax.swing.*;\r
+import javax.swing.event.*;\r
 \r
+import jalview.datamodel.*;\r
 import jalview.schemes.*;\r
-import javax.swing.event.*;\r
-import java.util.*;\r
-import jalview.datamodel.SequenceGroup;\r
 \r
 public class AnnotationColourChooser\r
     extends JPanel\r
@@ -38,7 +39,7 @@ public class AnnotationColourChooser
   jalview.datamodel.AlignmentAnnotation currentAnnotation;\r
   boolean adjusting = false;\r
 \r
-  public AnnotationColourChooser(AlignViewport av, AlignmentPanel ap)\r
+  public AnnotationColourChooser(AlignViewport av, final AlignmentPanel ap)\r
   {\r
     oldcs = av.getGlobalColourScheme();\r
     if (av.alignment.getGroups() != null)\r
@@ -49,7 +50,10 @@ public class AnnotationColourChooser
       for (int g = 0; g < allGroups.size(); g++)\r
       {\r
         sg = (SequenceGroup) allGroups.get(g);\r
-        oldgroupColours.put(sg, sg.cs);\r
+        if (sg.cs != null)\r
+        {\r
+          oldgroupColours.put(sg, sg.cs);\r
+        }\r
       }\r
     }\r
     this.av = av;\r
@@ -70,16 +74,25 @@ public class AnnotationColourChooser
     {\r
       public void stateChanged(ChangeEvent evt)\r
       {\r
-        if(!adjusting)\r
+        if (!adjusting)\r
         {\r
           thresholdValue.setText( ( (float) slider.getValue() / 1000f) + "");\r
           valueChanged();\r
         }\r
       }\r
     });\r
+    slider.addMouseListener(new MouseAdapter()\r
+        {\r
+          public void mouseReleased(MouseEvent evt)\r
+          {\r
+            ap.paintAlignment(true);\r
+          }\r
+        });\r
 \r
     if (av.alignment.getAlignmentAnnotation() == null)\r
+    {\r
       return;\r
+    }\r
 \r
     if (oldcs instanceof AnnotationColourGradient)\r
     {\r
@@ -97,7 +110,9 @@ public class AnnotationColourChooser
     for (int i = 0; i < av.alignment.getAlignmentAnnotation().length; i++)\r
     {\r
       if (av.alignment.getAlignmentAnnotation()[i].graph > 0)\r
+      {\r
         annotations.addItem(av.alignment.getAlignmentAnnotation()[i].label);\r
+      }\r
     }\r
 \r
     threshold.addItem("No Threshold");\r
@@ -126,24 +141,31 @@ public class AnnotationColourChooser
       throws Exception\r
   {\r
     minColour.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11));\r
-    minColour.setToolTipText("");\r
-    minColour.setMargin(new Insets(2, 2, 2, 2));\r
-    minColour.setText("Min Colour");\r
-    minColour.addActionListener(new ActionListener()\r
+    minColour.setBorder(BorderFactory.createEtchedBorder());\r
+    minColour.setPreferredSize(new Dimension(40, 20));\r
+    minColour.setToolTipText("Minimum Colour");\r
+    minColour.addMouseListener(new MouseAdapter()\r
     {\r
-      public void actionPerformed(ActionEvent e)\r
+      public void mousePressed(MouseEvent e)\r
       {\r
-        minColour_actionPerformed(e);\r
+        if (minColour.isEnabled())\r
+        {\r
+          minColour_actionPerformed();\r
+        }\r
       }\r
     });\r
     maxColour.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11));\r
-    maxColour.setMargin(new Insets(2, 2, 2, 2));\r
-    maxColour.setText("Max Colour");\r
-    maxColour.addActionListener(new ActionListener()\r
+    maxColour.setBorder(BorderFactory.createEtchedBorder());\r
+    maxColour.setPreferredSize(new Dimension(40, 20));\r
+    maxColour.setToolTipText("Maximum Colour");\r
+    maxColour.addMouseListener(new MouseAdapter()\r
     {\r
-      public void actionPerformed(ActionEvent e)\r
+      public void mousePressed(MouseEvent e)\r
       {\r
-        maxColour_actionPerformed(e);\r
+        if (maxColour.isEnabled())\r
+        {\r
+          maxColour_actionPerformed();\r
+        }\r
       }\r
     });\r
     ok.setOpaque(false);\r
@@ -224,8 +246,8 @@ public class AnnotationColourChooser
   }\r
 \r
   JComboBox annotations = new JComboBox();\r
-  JButton minColour = new JButton();\r
-  JButton maxColour = new JButton();\r
+  JPanel minColour = new JPanel();\r
+  JPanel maxColour = new JPanel();\r
   JButton ok = new JButton();\r
   JButton cancel = new JButton();\r
   JPanel jPanel1 = new JPanel();\r
@@ -239,24 +261,28 @@ public class AnnotationColourChooser
   JTextField thresholdValue = new JTextField(20);\r
   JCheckBox currentColours = new JCheckBox();\r
 \r
-  public void minColour_actionPerformed(ActionEvent e)\r
+  public void minColour_actionPerformed()\r
   {\r
     Color col = JColorChooser.showDialog(this,\r
                                          "Select Colour for Minimum Value",\r
                                          minColour.getBackground());\r
     if (col != null)\r
+    {\r
       minColour.setBackground(col);\r
+    }\r
     minColour.repaint();\r
     changeColour();\r
   }\r
 \r
-  public void maxColour_actionPerformed(ActionEvent e)\r
+  public void maxColour_actionPerformed()\r
   {\r
     Color col = JColorChooser.showDialog(this,\r
                                          "Select Colour for Maximum Value",\r
                                          maxColour.getBackground());\r
     if (col != null)\r
+    {\r
       maxColour.setBackground(col);\r
+    }\r
     maxColour.repaint();\r
     changeColour();\r
   }\r
@@ -265,7 +291,9 @@ public class AnnotationColourChooser
   {\r
     // Check if combobox is still adjusting\r
     if (adjusting)\r
+    {\r
       return;\r
+    }\r
 \r
     // We removed the non-graph annotations when filling the combobox\r
     // so allow for them again here\r
@@ -273,21 +301,31 @@ public class AnnotationColourChooser
     for (int i = 0; i < av.alignment.getAlignmentAnnotation().length; i++)\r
     {\r
       if (av.alignment.getAlignmentAnnotation()[i].graph == 0)\r
+      {\r
         nograph++;\r
+      }\r
       else\r
+      {\r
         graph++;\r
+      }\r
 \r
       if (graph == annotations.getSelectedIndex())\r
+      {\r
         break;\r
+      }\r
     }\r
 \r
     currentAnnotation = av.alignment.getAlignmentAnnotation()[graph + nograph];\r
 \r
     int aboveThreshold = -1;\r
     if (threshold.getSelectedItem().equals("Above Threshold"))\r
+    {\r
       aboveThreshold = AnnotationColourGradient.ABOVE_THRESHOLD;\r
+    }\r
     else if (threshold.getSelectedItem().equals("Below Threshold"))\r
+    {\r
       aboveThreshold = AnnotationColourGradient.BELOW_THRESHOLD;\r
+    }\r
 \r
     slider.setEnabled(true);\r
     thresholdValue.setEnabled(true);\r
@@ -308,7 +346,7 @@ public class AnnotationColourChooser
                                       Color.black));\r
     }\r
 \r
-    if(aboveThreshold != AnnotationColourGradient.NO_THRESHOLD)\r
+    if (aboveThreshold != AnnotationColourGradient.NO_THRESHOLD)\r
     {\r
       adjusting = true;\r
       float range = currentAnnotation.graphMax * 1000 -\r
@@ -326,16 +364,20 @@ public class AnnotationColourChooser
 \r
     AnnotationColourGradient acg = null;\r
     if (currentColours.isSelected())\r
+    {\r
       acg = new AnnotationColourGradient(\r
           currentAnnotation,\r
           av.getGlobalColourScheme(), aboveThreshold);\r
+    }\r
     else\r
+    {\r
       acg =\r
           new AnnotationColourGradient(\r
               currentAnnotation,\r
               minColour.getBackground(),\r
               maxColour.getBackground(),\r
               aboveThreshold);\r
+    }\r
 \r
     av.setGlobalColourScheme(acg);\r
 \r
@@ -353,20 +395,24 @@ public class AnnotationColourChooser
         }\r
 \r
         if (currentColours.isSelected())\r
+        {\r
           sg.cs = new AnnotationColourGradient(\r
               currentAnnotation,\r
               sg.cs, aboveThreshold);\r
+        }\r
         else\r
+        {\r
           sg.cs = new AnnotationColourGradient(\r
               currentAnnotation,\r
               minColour.getBackground(),\r
               maxColour.getBackground(),\r
               aboveThreshold);\r
+        }\r
 \r
       }\r
     }\r
 \r
-    ap.repaint();\r
+    ap.paintAlignment(false);\r
   }\r
 \r
   public void ok_actionPerformed(ActionEvent e)\r
@@ -391,7 +437,6 @@ public class AnnotationColourChooser
     {}\r
   }\r
 \r
-\r
   void reset()\r
   {\r
     av.setGlobalColourScheme(oldcs);\r
@@ -402,7 +447,7 @@ public class AnnotationColourChooser
       for (int g = 0; g < allGroups.size(); g++)\r
       {\r
         sg = (SequenceGroup) allGroups.get(g);\r
-        sg.cs = (ColourSchemeI)oldgroupColours.get(sg);\r
+        sg.cs = (ColourSchemeI) oldgroupColours.get(sg);\r
       }\r
     }\r
   }\r
@@ -436,18 +481,18 @@ public class AnnotationColourChooser
   public void valueChanged()\r
   {\r
     if (currentColours.isSelected()\r
-        && !(av.getGlobalColourScheme() instanceof AnnotationColourGradient))\r
+        && ! (av.getGlobalColourScheme() instanceof AnnotationColourGradient))\r
     {\r
       changeColour();\r
     }\r
 \r
-    currentAnnotation.threshold.value = (float)slider.getValue()/1000f;\r
-    ap.repaint();\r
+    currentAnnotation.threshold.value = (float) slider.getValue() / 1000f;\r
+    ap.paintAlignment(false);\r
   }\r
 \r
   public void currentColours_actionPerformed(ActionEvent e)\r
   {\r
-    if(currentColours.isSelected())\r
+    if (currentColours.isSelected())\r
     {\r
       reset();\r
     }\r