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.
21 package jalview.jbgui;
23 import jalview.gui.JvSwingUtils;
24 import jalview.util.MessageManager;
26 import java.awt.BorderLayout;
27 import java.awt.Color;
28 import java.awt.Dimension;
29 import java.awt.FlowLayout;
31 import java.awt.GridBagLayout;
32 import java.awt.GridLayout;
33 import java.awt.event.ActionEvent;
34 import java.awt.event.ActionListener;
35 import java.util.ArrayList;
36 import java.util.List;
38 import javax.swing.JButton;
39 import javax.swing.JCheckBox;
40 import javax.swing.JColorChooser;
41 import javax.swing.JLabel;
42 import javax.swing.JPanel;
43 import javax.swing.JTextField;
44 import javax.swing.SwingConstants;
45 import javax.swing.colorchooser.AbstractColorChooserPanel;
53 public class GUserDefinedColours extends JPanel
55 protected JColorChooser colorChooser = new JColorChooser();
57 protected JPanel buttonPanel = new JPanel();
59 protected GridLayout gridLayout = new GridLayout();
61 JPanel lowerPanel = new JPanel();
63 protected JButton okButton = new JButton();
65 protected JButton applyButton = new JButton();
67 protected JButton loadbutton = new JButton();
69 protected JButton savebutton = new JButton();
71 protected JButton cancelButton = new JButton();
73 JPanel namePanel = new JPanel();
75 JLabel jLabel1 = new JLabel();
77 protected JTextField schemeName = new JTextField();
79 BorderLayout borderLayout1 = new BorderLayout();
81 JPanel panel1 = new JPanel();
83 JPanel okCancelPanel = new JPanel();
85 JPanel saveLoadPanel = new JPanel();
87 BorderLayout borderLayout3 = new BorderLayout();
89 GridBagLayout gridBagLayout1 = new GridBagLayout();
91 BorderLayout borderLayout2 = new BorderLayout();
93 FlowLayout flowLayout1 = new FlowLayout();
95 BorderLayout borderLayout4 = new BorderLayout();
97 JPanel jPanel4 = new JPanel();
99 BorderLayout borderLayout5 = new BorderLayout();
101 JLabel label = new JLabel();
103 protected JPanel casePanel = new JPanel();
105 protected JCheckBox caseSensitive = new JCheckBox();
107 protected JCheckBox lcaseColour = new JCheckBox();
109 protected List<JButton> selectedButtons;
112 * Creates a new GUserDefinedColours object.
114 public GUserDefinedColours()
119 } catch (Exception e)
132 private void jbInit() throws Exception
134 this.setLayout(borderLayout4);
135 buttonPanel.setLayout(gridLayout);
136 gridLayout.setColumns(4);
137 gridLayout.setRows(5);
138 okButton.setFont(new java.awt.Font("Verdana", 0, 11));
139 okButton.setText(MessageManager.getString("action.ok"));
140 okButton.addActionListener(new ActionListener()
143 public void actionPerformed(ActionEvent e)
145 okButton_actionPerformed();
148 applyButton.setFont(new java.awt.Font("Verdana", 0, 11));
149 applyButton.setText(MessageManager.getString("action.apply"));
150 applyButton.addActionListener(new ActionListener()
153 public void actionPerformed(ActionEvent e)
155 applyButton_actionPerformed();
158 loadbutton.setFont(new java.awt.Font("Verdana", 0, 11));
159 loadbutton.setText(MessageManager.getString("action.load_scheme"));
160 loadbutton.addActionListener(new ActionListener()
163 public void actionPerformed(ActionEvent e)
165 loadbutton_actionPerformed();
168 savebutton.setFont(new java.awt.Font("Verdana", 0, 11));
169 savebutton.setText(MessageManager.getString("action.save_scheme"));
170 savebutton.addActionListener(new ActionListener()
173 public void actionPerformed(ActionEvent e)
175 savebutton_actionPerformed();
178 cancelButton.setFont(JvSwingUtils.getLabelFont());
179 cancelButton.setText(MessageManager.getString("action.cancel"));
180 cancelButton.addActionListener(new ActionListener()
183 public void actionPerformed(ActionEvent e)
185 cancelButton_actionPerformed();
188 this.setBackground(new Color(212, 208, 223));
189 lowerPanel.setOpaque(false);
190 lowerPanel.setLayout(borderLayout3);
191 colorChooser.setOpaque(false);
192 jLabel1.setFont(JvSwingUtils.getLabelFont());
193 jLabel1.setText(MessageManager.getString("label.name"));
194 namePanel.setMinimumSize(new Dimension(300, 31));
195 namePanel.setOpaque(false);
196 namePanel.setPreferredSize(new Dimension(240, 25));
197 namePanel.setLayout(borderLayout1);
198 schemeName.setFont(JvSwingUtils.getLabelFont());
199 schemeName.setPreferredSize(new Dimension(105, 21));
200 schemeName.setText("");
201 schemeName.setHorizontalAlignment(SwingConstants.CENTER);
202 panel1.setLayout(flowLayout1);
203 panel1.setOpaque(false);
204 okCancelPanel.setOpaque(false);
205 saveLoadPanel.setOpaque(false);
206 jPanel4.setLayout(borderLayout5);
207 label.setFont(new java.awt.Font("Verdana", Font.ITALIC, 10));
208 label.setOpaque(false);
209 label.setPreferredSize(new Dimension(260, 34));
211 MessageManager.formatMessage("label.html_content", new String[]
212 { MessageManager.getString(
213 "label.save_colour_scheme_with_unique_name_added_to_colour_menu") }));
214 caseSensitive.setText(MessageManager.getString("label.case_sensitive"));
215 caseSensitive.addActionListener(new ActionListener()
218 public void actionPerformed(ActionEvent e)
220 caseSensitive_actionPerformed();
224 .setText(MessageManager.getString("label.lower_case_colour"));
225 lcaseColour.setToolTipText(
226 MessageManager.getString("label.lower_case_tip"));
228 saveLoadPanel.add(savebutton);
229 saveLoadPanel.add(loadbutton);
230 okCancelPanel.add(applyButton);
231 okCancelPanel.add(okButton);
232 okCancelPanel.add(cancelButton);
233 lowerPanel.add(saveLoadPanel, java.awt.BorderLayout.NORTH);
234 lowerPanel.add(okCancelPanel, java.awt.BorderLayout.SOUTH);
236 namePanel.add(schemeName, java.awt.BorderLayout.CENTER);
237 namePanel.add(jLabel1, java.awt.BorderLayout.WEST);
238 panel1.add(namePanel, null);
239 panel1.add(buttonPanel, null);
240 panel1.add(casePanel);
241 casePanel.add(caseSensitive);
242 casePanel.add(lcaseColour);
243 panel1.add(lowerPanel, null);
246 jPanel4.add(panel1, java.awt.BorderLayout.CENTER);
247 this.add(jPanel4, java.awt.BorderLayout.CENTER);
248 this.add(colorChooser, java.awt.BorderLayout.EAST);
250 AbstractColorChooserPanel[] choosers = colorChooser.getChooserPanels();
251 // JAL-1360 larger JColorChooser in Java 7 overwrites AA panel; restrict to
252 // swatch picker only
253 if (choosers.length > 3)
255 // Java 7 default has 5 options rather than 3 for choosing colours; keep
258 .setChooserPanels(new AbstractColorChooserPanel[]
262 selectedButtons = new ArrayList<JButton>();
268 protected void okButton_actionPerformed()
275 protected void applyButton_actionPerformed()
285 protected void loadbutton_actionPerformed()
289 protected boolean savebutton_actionPerformed()
300 protected void cancelButton_actionPerformed()
304 public void caseSensitive_actionPerformed()
309 public void lcaseColour_actionPerformed()