JAL-1645 Version-Rel Version 2.9 Year-Rel 2015 Licensing glob
[jalview.git] / src / jalview / gui / TextColourChooser.java
index 8dd9d49..fc01404 100644 (file)
-/*\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
-\r
-package jalview.gui;\r
-\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
-\r
-public class TextColourChooser\r
-{\r
-  AlignmentPanel ap;\r
-  SequenceGroup sg;\r
-\r
-  public void chooseColour(AlignmentPanel ap, SequenceGroup sg)\r
-  {\r
-    this.ap = ap;\r
-    this.sg = sg;\r
-\r
-    int original1, original2, originalThreshold;\r
-    if (sg == null)\r
-    {\r
-      original1 = ap.av.textColour.getRGB();\r
-      original2 = ap.av.textColour2.getRGB();\r
-      originalThreshold = ap.av.thresholdTextColour;\r
-    }\r
-    else\r
-    {\r
-      original1 = sg.textColour.getRGB();\r
-      original2 = sg.textColour2.getRGB();\r
-      originalThreshold = sg.thresholdTextColour;\r
-    }\r
-\r
-    final JSlider slider = new JSlider(0, 750, originalThreshold);\r
-    final JPanel col1 = new JPanel();\r
-    col1.setPreferredSize(new Dimension(40, 20));\r
-    col1.setBorder(BorderFactory.createEtchedBorder());\r
-    col1.setToolTipText("Dark Colour");\r
-    col1.setBackground(new Color(original1));\r
-    final JPanel col2 = new JPanel();\r
-    col2.setPreferredSize(new Dimension(40, 20));\r
-    col2.setBorder(BorderFactory.createEtchedBorder());\r
-    col2.setToolTipText("Light Colour");\r
-    col2.setBackground(new Color(original2));\r
-    final JPanel bigpanel = new JPanel(new BorderLayout());\r
-    JPanel panel = new JPanel();\r
-    bigpanel.add(panel, BorderLayout.CENTER);\r
-    bigpanel.add(new JLabel(\r
-        "<html><i>Select a dark and light text colour, then set the threshold to"\r
-        + "<br>switch between colours, based on background colour</i></html>"),\r
-                 BorderLayout.NORTH);\r
-    panel.add(col1);\r
-    panel.add(slider);\r
-    panel.add(col2);\r
-\r
-    col1.addMouseListener(new MouseAdapter()\r
-    {\r
-      public void mousePressed(MouseEvent e)\r
-      {\r
-        Color col = JColorChooser.showDialog(bigpanel,\r
-                                             "Select Colour for Text",\r
-                                             col1.getBackground());\r
-        if (col != null)\r
-        {\r
-          colour1Changed(col);\r
-          col1.setBackground(col);\r
-        }\r
-      }\r
-    });\r
-\r
-    col2.addMouseListener(new MouseAdapter()\r
-    {\r
-      public void mousePressed(MouseEvent e)\r
-      {\r
-        Color col = JColorChooser.showDialog(bigpanel,\r
-                                             "Select Colour for Text",\r
-                                             col2.getBackground());\r
-        if (col != null)\r
-        {\r
-          colour2Changed(col);\r
-          col2.setBackground(col);\r
-        }\r
-      }\r
-    });\r
-\r
-    slider.addChangeListener(new ChangeListener()\r
-    {\r
-      public void stateChanged(ChangeEvent evt)\r
-      {\r
-        thresholdChanged(slider.getValue());\r
-      }\r
-    });\r
-\r
-    int reply = JOptionPane.showInternalOptionDialog(\r
-        ap,\r
-        bigpanel,\r
-        "Adjust Foreground Text Colour Threshold",\r
-        JOptionPane.OK_CANCEL_OPTION,\r
-        JOptionPane.QUESTION_MESSAGE,\r
-        null,\r
-        null, null);\r
-\r
-    if (reply == JOptionPane.CANCEL_OPTION)\r
-    {\r
-      if (sg == null)\r
-      {\r
-        ap.av.textColour = new Color(original1);\r
-        ap.av.textColour2 = new Color(original2);\r
-        ap.av.thresholdTextColour = originalThreshold;\r
-      }\r
-      else\r
-      {\r
-        sg.textColour = new Color(original1);\r
-        sg.textColour2 = new Color(original2);\r
-        sg.thresholdTextColour = originalThreshold;\r
-      }\r
-    }\r
-  }\r
-\r
-  void colour1Changed(Color col)\r
-  {\r
-    if (sg == null)\r
-    {\r
-      ap.av.textColour = col;\r
-      if (ap.av.colourAppliesToAllGroups)\r
-      {\r
-        setGroupTextColour();\r
-      }\r
-    }\r
-    else\r
-    {\r
-      sg.textColour = col;\r
-    }\r
-\r
-    ap.paintAlignment(true);\r
-  }\r
-\r
-  void colour2Changed(Color col)\r
-  {\r
-    if (sg == null)\r
-    {\r
-      ap.av.textColour2 = col;\r
-      if (ap.av.colourAppliesToAllGroups)\r
-      {\r
-        setGroupTextColour();\r
-      }\r
-    }\r
-    else\r
-    {\r
-      sg.textColour2 = col;\r
-    }\r
-\r
-    ap.paintAlignment(true);\r
-  }\r
-\r
-  void thresholdChanged(int value)\r
-  {\r
-    if (sg == null)\r
-    {\r
-      ap.av.thresholdTextColour = value;\r
-      if (ap.av.colourAppliesToAllGroups)\r
-      {\r
-        setGroupTextColour();\r
-      }\r
-    }\r
-    else\r
-    {\r
-      sg.thresholdTextColour = value;\r
-    }\r
-\r
-    ap.paintAlignment(true);\r
-  }\r
-\r
-  void setGroupTextColour()\r
-  {\r
-    if (ap.av.alignment.getGroups() == null)\r
-    {\r
-      return;\r
-    }\r
-\r
-    Vector groups = ap.av.alignment.getGroups();\r
-\r
-    for (int i = 0; i < groups.size(); i++)\r
-    {\r
-      SequenceGroup sg = (SequenceGroup) groups.elementAt(i);\r
-      sg.textColour = ap.av.textColour;\r
-      sg.textColour2 = ap.av.textColour2;\r
-      sg.thresholdTextColour = ap.av.thresholdTextColour;\r
-    }\r
-  }\r
-\r
-}\r
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
+ * Copyright (C) 2015 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 
+ * 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/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
+package jalview.gui;
+
+import jalview.datamodel.SequenceGroup;
+import jalview.util.MessageManager;
+
+import java.awt.BorderLayout;
+import java.awt.Color;
+import java.awt.Dimension;
+import java.awt.event.MouseAdapter;
+import java.awt.event.MouseEvent;
+
+import javax.swing.BorderFactory;
+import javax.swing.JColorChooser;
+import javax.swing.JLabel;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.JSlider;
+import javax.swing.event.ChangeEvent;
+import javax.swing.event.ChangeListener;
+
+public class TextColourChooser
+{
+  AlignmentPanel ap;
+
+  SequenceGroup sg;
+
+  public void chooseColour(AlignmentPanel ap, SequenceGroup sg)
+  {
+    this.ap = ap;
+    this.sg = sg;
+
+    int original1, original2, originalThreshold;
+    if (sg == null)
+    {
+      original1 = ap.av.getTextColour().getRGB();
+      original2 = ap.av.getTextColour2().getRGB();
+      originalThreshold = ap.av.getThresholdTextColour();
+    }
+    else
+    {
+      original1 = sg.textColour.getRGB();
+      original2 = sg.textColour2.getRGB();
+      originalThreshold = sg.thresholdTextColour;
+    }
+
+    final JSlider slider = new JSlider(0, 750, originalThreshold);
+    final JPanel col1 = new JPanel();
+    col1.setPreferredSize(new Dimension(40, 20));
+    col1.setBorder(BorderFactory.createEtchedBorder());
+    col1.setToolTipText(MessageManager.getString("label.dark_colour"));
+    col1.setBackground(new Color(original1));
+    final JPanel col2 = new JPanel();
+    col2.setPreferredSize(new Dimension(40, 20));
+    col2.setBorder(BorderFactory.createEtchedBorder());
+    col2.setToolTipText(MessageManager.getString("label.ligth_colour"));
+    col2.setBackground(new Color(original2));
+    final JPanel bigpanel = new JPanel(new BorderLayout());
+    JPanel panel = new JPanel();
+    bigpanel.add(panel, BorderLayout.CENTER);
+    bigpanel.add(
+            new JLabel(
+                    "<html>"
+                            + MessageManager
+                                    .getString("label.select_dark_light_set_thereshold")
+                            + "</html>"), BorderLayout.NORTH);
+    panel.add(col1);
+    panel.add(slider);
+    panel.add(col2);
+
+    col1.addMouseListener(new MouseAdapter()
+    {
+      public void mousePressed(MouseEvent e)
+      {
+        Color col = JColorChooser.showDialog(bigpanel,
+                MessageManager.getString("label.select_colour_for_text"),
+                col1.getBackground());
+        if (col != null)
+        {
+          colour1Changed(col);
+          col1.setBackground(col);
+        }
+      }
+    });
+
+    col2.addMouseListener(new MouseAdapter()
+    {
+      public void mousePressed(MouseEvent e)
+      {
+        Color col = JColorChooser.showDialog(bigpanel,
+                MessageManager.getString("label.select_colour_for_text"),
+                col2.getBackground());
+        if (col != null)
+        {
+          colour2Changed(col);
+          col2.setBackground(col);
+        }
+      }
+    });
+
+    slider.addChangeListener(new ChangeListener()
+    {
+      public void stateChanged(ChangeEvent evt)
+      {
+        thresholdChanged(slider.getValue());
+      }
+    });
+
+    int reply = JOptionPane
+            .showInternalOptionDialog(
+                    ap,
+                    bigpanel,
+                    MessageManager
+                            .getString("label.adjunst_foreground_text_colour_thereshold"),
+                    JOptionPane.OK_CANCEL_OPTION,
+                    JOptionPane.QUESTION_MESSAGE, null, null, null);
+
+    if (reply == JOptionPane.CANCEL_OPTION)
+    {
+      if (sg == null)
+      {
+        ap.av.setTextColour(new Color(original1));
+        ap.av.setTextColour2(new Color(original2));
+        ap.av.setThresholdTextColour(originalThreshold);
+      }
+      else
+      {
+        sg.textColour = new Color(original1);
+        sg.textColour2 = new Color(original2);
+        sg.thresholdTextColour = originalThreshold;
+      }
+    }
+  }
+
+  void colour1Changed(Color col)
+  {
+    if (sg == null)
+    {
+      ap.av.setTextColour(col);
+      if (ap.av.getColourAppliesToAllGroups())
+      {
+        setGroupTextColour();
+      }
+    }
+    else
+    {
+      sg.textColour = col;
+    }
+
+    ap.paintAlignment(true);
+  }
+
+  void colour2Changed(Color col)
+  {
+    if (sg == null)
+    {
+      ap.av.setTextColour2(col);
+      if (ap.av.getColourAppliesToAllGroups())
+      {
+        setGroupTextColour();
+      }
+    }
+    else
+    {
+      sg.textColour2 = col;
+    }
+
+    ap.paintAlignment(true);
+  }
+
+  void thresholdChanged(int value)
+  {
+    if (sg == null)
+    {
+      ap.av.setThresholdTextColour(value);
+      if (ap.av.getColourAppliesToAllGroups())
+      {
+        setGroupTextColour();
+      }
+    }
+    else
+    {
+      sg.thresholdTextColour = value;
+    }
+
+    ap.paintAlignment(true);
+  }
+
+  void setGroupTextColour()
+  {
+    if (ap.av.getAlignment().getGroups() == null)
+    {
+      return;
+    }
+
+    for (SequenceGroup sg : ap.av.getAlignment().getGroups())
+    {
+      sg.textColour = ap.av.getTextColour();
+      sg.textColour2 = ap.av.getTextColour2();
+      sg.thresholdTextColour = ap.av.getThresholdTextColour();
+    }
+  }
+
+}