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.light_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);
84 .getString("label.select_dark_light_set_threshold")
85 + "</html>"), BorderLayout.NORTH);
90 col1.addMouseListener(new MouseAdapter()
93 public void mousePressed(MouseEvent e)
95 Color col = JColorChooser.showDialog(bigpanel,
96 MessageManager.getString("label.select_colour_for_text"),
97 col1.getBackground());
101 col1.setBackground(col);
106 col2.addMouseListener(new MouseAdapter()
109 public void mousePressed(MouseEvent e)
111 Color col = JColorChooser.showDialog(bigpanel,
112 MessageManager.getString("label.select_colour_for_text"),
113 col2.getBackground());
117 col2.setBackground(col);
122 slider.addChangeListener(new ChangeListener()
125 public void stateChanged(ChangeEvent evt)
127 thresholdChanged(slider.getValue());
131 int reply = JvOptionPane
132 .showInternalOptionDialog(
136 .getString("label.adjunst_foreground_text_colour_threshold"),
137 JvOptionPane.OK_CANCEL_OPTION,
138 JvOptionPane.QUESTION_MESSAGE, null, null, null);
140 if (reply == JvOptionPane.CANCEL_OPTION)
144 ap.av.setTextColour(new Color(original1));
145 ap.av.setTextColour2(new Color(original2));
146 ap.av.setThresholdTextColour(originalThreshold);
150 sg.textColour = new Color(original1);
151 sg.textColour2 = new Color(original2);
152 sg.thresholdTextColour = originalThreshold;
157 void colour1Changed(Color col)
161 ap.av.setTextColour(col);
162 if (ap.av.getColourAppliesToAllGroups())
164 setGroupTextColour();
172 ap.paintAlignment(true);
175 void colour2Changed(Color col)
179 ap.av.setTextColour2(col);
180 if (ap.av.getColourAppliesToAllGroups())
182 setGroupTextColour();
187 sg.textColour2 = col;
190 ap.paintAlignment(true);
193 void thresholdChanged(int value)
197 ap.av.setThresholdTextColour(value);
198 if (ap.av.getColourAppliesToAllGroups())
200 setGroupTextColour();
205 sg.thresholdTextColour = value;
208 ap.paintAlignment(true);
211 void setGroupTextColour()
213 if (ap.av.getAlignment().getGroups() == null)
218 for (SequenceGroup sg : ap.av.getAlignment().getGroups())
220 sg.textColour = ap.av.getTextColour();
221 sg.textColour2 = ap.av.getTextColour2();
222 sg.thresholdTextColour = ap.av.getThresholdTextColour();