JAL-2446 merged to spike branch
[jalview.git] / src / jalview / jbgui / GUserDefinedColours.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.jbgui;
22
23 import jalview.gui.JvSwingUtils;
24 import jalview.util.MessageManager;
25
26 import java.awt.BorderLayout;
27 import java.awt.Color;
28 import java.awt.Dimension;
29 import java.awt.FlowLayout;
30 import java.awt.Font;
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;
37
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;
46
47 /**
48  * DOCUMENT ME!
49  * 
50  * @author $author$
51  * @version $Revision$
52  */
53 public class GUserDefinedColours extends JPanel
54 {
55   protected JColorChooser colorChooser = new JColorChooser();
56
57   protected JPanel buttonPanel = new JPanel();
58
59   protected GridLayout gridLayout = new GridLayout();
60
61   JPanel lowerPanel = new JPanel();
62
63   protected JButton okButton = new JButton();
64
65   protected JButton applyButton = new JButton();
66
67   protected JButton loadbutton = new JButton();
68
69   protected JButton savebutton = new JButton();
70
71   protected JButton cancelButton = new JButton();
72
73   JPanel namePanel = new JPanel();
74
75   JLabel jLabel1 = new JLabel();
76
77   protected JTextField schemeName = new JTextField();
78
79   BorderLayout borderLayout1 = new BorderLayout();
80
81   JPanel panel1 = new JPanel();
82
83   JPanel okCancelPanel = new JPanel();
84
85   JPanel saveLoadPanel = new JPanel();
86
87   BorderLayout borderLayout3 = new BorderLayout();
88
89   GridBagLayout gridBagLayout1 = new GridBagLayout();
90
91   BorderLayout borderLayout2 = new BorderLayout();
92
93   FlowLayout flowLayout1 = new FlowLayout();
94
95   BorderLayout borderLayout4 = new BorderLayout();
96
97   JPanel jPanel4 = new JPanel();
98
99   BorderLayout borderLayout5 = new BorderLayout();
100
101   JLabel label = new JLabel();
102
103   protected JPanel casePanel = new JPanel();
104
105   protected JCheckBox caseSensitive = new JCheckBox();
106
107   protected JCheckBox lcaseColour = new JCheckBox();
108
109   protected List<JButton> selectedButtons;
110
111   /**
112    * Creates a new GUserDefinedColours object.
113    */
114   public GUserDefinedColours()
115   {
116     try
117     {
118       jbInit();
119     } catch (Exception e)
120     {
121       e.printStackTrace();
122     }
123
124   }
125
126   /**
127    * DOCUMENT ME!
128    * 
129    * @throws Exception
130    *           DOCUMENT ME!
131    */
132   private void jbInit() throws Exception
133   {
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()
141     {
142       @Override
143       public void actionPerformed(ActionEvent e)
144       {
145         okButton_actionPerformed();
146       }
147     });
148     applyButton.setFont(new java.awt.Font("Verdana", 0, 11));
149     applyButton.setText(MessageManager.getString("action.apply"));
150     applyButton.addActionListener(new ActionListener()
151     {
152       @Override
153       public void actionPerformed(ActionEvent e)
154       {
155         applyButton_actionPerformed();
156       }
157     });
158     loadbutton.setFont(new java.awt.Font("Verdana", 0, 11));
159     loadbutton.setText(MessageManager.getString("action.load_scheme"));
160     loadbutton.addActionListener(new ActionListener()
161     {
162       @Override
163       public void actionPerformed(ActionEvent e)
164       {
165         loadbutton_actionPerformed();
166       }
167     });
168     savebutton.setFont(new java.awt.Font("Verdana", 0, 11));
169     savebutton.setText(MessageManager.getString("action.save_scheme"));
170     savebutton.addActionListener(new ActionListener()
171     {
172       @Override
173       public void actionPerformed(ActionEvent e)
174       {
175         savebutton_actionPerformed();
176       }
177     });
178     cancelButton.setFont(JvSwingUtils.getLabelFont());
179     cancelButton.setText(MessageManager.getString("action.cancel"));
180     cancelButton.addActionListener(new ActionListener()
181     {
182       @Override
183       public void actionPerformed(ActionEvent e)
184       {
185         cancelButton_actionPerformed();
186       }
187     });
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));
210     label.setText(MessageManager
211             .formatMessage(
212                     "label.html_content",
213                     new String[] { MessageManager
214                             .getString("label.save_colour_scheme_with_unique_name_added_to_colour_menu") }));
215     caseSensitive.setText(MessageManager.getString("label.case_sensitive"));
216     caseSensitive.addActionListener(new ActionListener()
217     {
218       @Override
219       public void actionPerformed(ActionEvent e)
220       {
221         caseSensitive_actionPerformed();
222       }
223     });
224     lcaseColour
225             .setText(MessageManager.getString("label.lower_case_colour"));
226     lcaseColour.setToolTipText(MessageManager
227             .getString("label.lower_case_tip"));
228
229     saveLoadPanel.add(savebutton);
230     saveLoadPanel.add(loadbutton);
231     okCancelPanel.add(applyButton);
232     okCancelPanel.add(okButton);
233     okCancelPanel.add(cancelButton);
234     lowerPanel.add(saveLoadPanel, java.awt.BorderLayout.NORTH);
235     lowerPanel.add(okCancelPanel, java.awt.BorderLayout.SOUTH);
236
237     namePanel.add(schemeName, java.awt.BorderLayout.CENTER);
238     namePanel.add(jLabel1, java.awt.BorderLayout.WEST);
239     panel1.add(namePanel, null);
240     panel1.add(buttonPanel, null);
241     panel1.add(casePanel);
242     casePanel.add(caseSensitive);
243     casePanel.add(lcaseColour);
244     panel1.add(lowerPanel, null);
245     panel1.add(label);
246
247     jPanel4.add(panel1, java.awt.BorderLayout.CENTER);
248     this.add(jPanel4, java.awt.BorderLayout.CENTER);
249     this.add(colorChooser, java.awt.BorderLayout.EAST);
250
251     AbstractColorChooserPanel[] choosers = colorChooser.getChooserPanels();
252     // JAL-1360 larger JColorChooser in Java 7 overwrites AA panel; restrict to
253     // swatch picker only
254     if (choosers.length > 3)
255     {
256       // Java 7 default has 5 options rather than 3 for choosing colours; keep
257       // the first only
258       colorChooser
259               .setChooserPanels(new AbstractColorChooserPanel[] { choosers[0] });
260     }
261
262     selectedButtons = new ArrayList<JButton>();
263   }
264
265   /**
266    * DOCUMENT ME!
267    */
268   protected void okButton_actionPerformed()
269   {
270   }
271
272   /**
273    * DOCUMENT ME!
274    */
275   protected void applyButton_actionPerformed()
276   {
277   }
278
279   /**
280    * DOCUMENT ME!
281    * 
282    * @param e
283    *          DOCUMENT ME!
284    */
285   protected void loadbutton_actionPerformed()
286   {
287   }
288
289   protected boolean savebutton_actionPerformed()
290   {
291     return false;
292   }
293
294   /**
295    * DOCUMENT ME!
296    * 
297    * @param e
298    *          DOCUMENT ME!
299    */
300   protected void cancelButton_actionPerformed()
301   {
302   }
303
304   public void caseSensitive_actionPerformed()
305   {
306
307   }
308
309   public void lcaseColour_actionPerformed()
310   {
311
312   }
313 }