2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.datamodel.SequenceGroup;
24 import jalview.util.MessageManager;
26 import java.awt.BorderLayout;
27 import java.awt.Color;
28 import java.awt.Dimension;
29 import java.awt.event.MouseAdapter;
30 import java.awt.event.MouseEvent;
32 import javax.swing.BorderFactory;
33 import javax.swing.JColorChooser;
34 import javax.swing.JLabel;
35 import javax.swing.JOptionPane;
36 import javax.swing.JPanel;
37 import javax.swing.JSlider;
38 import javax.swing.event.ChangeEvent;
39 import javax.swing.event.ChangeListener;
41 public class TextColourChooser
47 public void chooseColour(AlignmentPanel ap, SequenceGroup sg)
52 int original1, original2, originalThreshold;
55 original1 = ap.av.getTextColour().getRGB();
56 original2 = ap.av.getTextColour2().getRGB();
57 originalThreshold = ap.av.getThresholdTextColour();
61 original1 = sg.textColour.getRGB();
62 original2 = sg.textColour2.getRGB();
63 originalThreshold = sg.thresholdTextColour;
66 final JSlider slider = new JSlider(0, 750, originalThreshold);
67 final JPanel col1 = new JPanel();
68 col1.setPreferredSize(new Dimension(40, 20));
69 col1.setBorder(BorderFactory.createEtchedBorder());
70 col1.setToolTipText(MessageManager.getString("label.dark_colour"));
71 col1.setBackground(new Color(original1));
72 final JPanel col2 = new JPanel();
73 col2.setPreferredSize(new Dimension(40, 20));
74 col2.setBorder(BorderFactory.createEtchedBorder());
75 col2.setToolTipText(MessageManager.getString("label.ligth_colour"));
76 col2.setBackground(new Color(original2));
77 final JPanel bigpanel = new JPanel(new BorderLayout());
78 JPanel panel = new JPanel();
79 bigpanel.add(panel, BorderLayout.CENTER);
81 new JLabel("<html>"+MessageManager.getString("label.select_dark_light_set_thereshold")+"</html>"),
87 col1.addMouseListener(new MouseAdapter()
89 public void mousePressed(MouseEvent e)
91 Color col = JColorChooser.showDialog(bigpanel,
92 MessageManager.getString("label.select_colour_for_text"), col1.getBackground());
96 col1.setBackground(col);
101 col2.addMouseListener(new MouseAdapter()
103 public void mousePressed(MouseEvent e)
105 Color col = JColorChooser.showDialog(bigpanel,
106 MessageManager.getString("label.select_colour_for_text"), col2.getBackground());
110 col2.setBackground(col);
115 slider.addChangeListener(new ChangeListener()
117 public void stateChanged(ChangeEvent evt)
119 thresholdChanged(slider.getValue());
123 int reply = JOptionPane.showInternalOptionDialog(ap, bigpanel,
124 MessageManager.getString("label.adjunst_foreground_text_colour_thereshold"),
125 JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE,
128 if (reply == JOptionPane.CANCEL_OPTION)
132 ap.av.setTextColour(new Color(original1));
133 ap.av.setTextColour2(new Color(original2));
134 ap.av.setThresholdTextColour(originalThreshold);
138 sg.textColour = new Color(original1);
139 sg.textColour2 = new Color(original2);
140 sg.thresholdTextColour = originalThreshold;
145 void colour1Changed(Color col)
149 ap.av.setTextColour(col);
150 if (ap.av.getColourAppliesToAllGroups())
152 setGroupTextColour();
160 ap.paintAlignment(true);
163 void colour2Changed(Color col)
167 ap.av.setTextColour2(col);
168 if (ap.av.getColourAppliesToAllGroups())
170 setGroupTextColour();
175 sg.textColour2 = col;
178 ap.paintAlignment(true);
181 void thresholdChanged(int value)
185 ap.av.setThresholdTextColour(value);
186 if (ap.av.getColourAppliesToAllGroups())
188 setGroupTextColour();
193 sg.thresholdTextColour = value;
196 ap.paintAlignment(true);
199 void setGroupTextColour()
201 if (ap.av.getAlignment().getGroups() == null)
206 for (SequenceGroup sg : ap.av.getAlignment().getGroups())
208 sg.textColour = ap.av.getTextColour();
209 sg.textColour2 = ap.av.getTextColour2();
210 sg.thresholdTextColour = ap.av.getThresholdTextColour();