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.api.FeatureColourI;
24 import jalview.datamodel.SearchResults;
25 import jalview.datamodel.SequenceFeature;
26 import jalview.datamodel.SequenceI;
27 import jalview.schemes.FeatureColour;
28 import jalview.schemes.UserColourScheme;
29 import jalview.util.MessageManager;
31 import java.awt.BorderLayout;
32 import java.awt.Color;
33 import java.awt.Dimension;
35 import java.awt.GridLayout;
36 import java.awt.event.ActionEvent;
37 import java.awt.event.ActionListener;
38 import java.awt.event.ItemEvent;
39 import java.awt.event.ItemListener;
40 import java.awt.event.MouseAdapter;
41 import java.awt.event.MouseEvent;
42 import java.util.Arrays;
43 import java.util.Comparator;
45 import javax.swing.JColorChooser;
46 import javax.swing.JComboBox;
47 import javax.swing.JLabel;
48 import javax.swing.JOptionPane;
49 import javax.swing.JPanel;
50 import javax.swing.JScrollPane;
51 import javax.swing.JSpinner;
52 import javax.swing.JTextArea;
53 import javax.swing.JTextField;
54 import javax.swing.SwingConstants;
62 public class FeatureRenderer extends
63 jalview.renderer.seqfeatures.FeatureRenderer implements
64 jalview.api.FeatureRenderer
71 * Creates a new FeatureRenderer object.
76 public FeatureRenderer(AlignmentPanel ap)
81 if (ap != null && ap.getSeqPanel() != null
82 && ap.getSeqPanel().seqCanvas != null
83 && ap.getSeqPanel().seqCanvas.fr != null)
85 transferSettings(ap.getSeqPanel().seqCanvas.fr);
90 // // Feature Editing Dialog
91 // // Will be refactored in next release.
93 static String lastFeatureAdded;
95 static String lastFeatureGroupAdded;
97 static String lastDescriptionAdded;
99 FeatureColourI oldcol, fcol;
101 int featureIndex = 0;
103 boolean amendFeatures(final SequenceI[] sequences,
104 final SequenceFeature[] features, boolean newFeatures,
105 final AlignmentPanel ap)
110 final JPanel bigPanel = new JPanel(new BorderLayout());
111 final JComboBox overlaps;
112 final JTextField name = new JTextField(25);
113 final JTextField source = new JTextField(25);
114 final JTextArea description = new JTextArea(3, 25);
115 final JSpinner start = new JSpinner();
116 final JSpinner end = new JSpinner();
117 start.setPreferredSize(new Dimension(80, 20));
118 end.setPreferredSize(new Dimension(80, 20));
119 final FeatureRenderer me = this;
120 final JLabel colour = new JLabel();
121 colour.setOpaque(true);
122 // colour.setBorder(BorderFactory.createEtchedBorder());
123 colour.setMaximumSize(new Dimension(30, 16));
124 colour.addMouseListener(new MouseAdapter()
126 FeatureColourChooser fcc = null;
129 public void mousePressed(MouseEvent evt)
131 if (fcol.isSimpleColour())
133 Color col = JColorChooser.showDialog(Desktop.desktop,
134 MessageManager.getString("label.select_feature_colour"),
138 fcol = new FeatureColour(col);
139 updateColourButton(bigPanel, colour, new FeatureColour(col));
146 final String type = features[featureIndex].getType();
147 fcc = new FeatureColourChooser(me, type);
148 fcc.setRequestFocusEnabled(true);
151 fcc.addActionListener(new ActionListener()
155 public void actionPerformed(ActionEvent e)
157 fcol = fcc.getLastColour();
159 setColour(type, fcol);
160 updateColourButton(bigPanel, colour, fcol);
168 JPanel tmp = new JPanel();
169 JPanel panel = new JPanel(new GridLayout(3, 1));
171 // /////////////////////////////////////
172 // /MULTIPLE FEATURES AT SELECTED RESIDUE
173 if (!newFeatures && features.length > 1)
175 panel = new JPanel(new GridLayout(4, 1));
177 tmp.add(new JLabel(MessageManager.getString("label.select_feature")));
178 overlaps = new JComboBox();
179 for (int i = 0; i < features.length; i++)
181 overlaps.addItem(features[i].getType() + "/"
182 + features[i].getBegin() + "-" + features[i].getEnd()
183 + " (" + features[i].getFeatureGroup() + ")");
188 overlaps.addItemListener(new ItemListener()
191 public void itemStateChanged(ItemEvent e)
193 int index = overlaps.getSelectedIndex();
196 featureIndex = index;
197 name.setText(features[index].getType());
198 description.setText(features[index].getDescription());
199 source.setText(features[index].getFeatureGroup());
200 start.setValue(new Integer(features[index].getBegin()));
201 end.setValue(new Integer(features[index].getEnd()));
203 SearchResults highlight = new SearchResults();
204 highlight.addResult(sequences[0], features[index].getBegin(),
205 features[index].getEnd());
207 ap.getSeqPanel().seqCanvas.highlightSearchResults(highlight);
210 FeatureColourI col = getFeatureStyle(name.getText());
213 col = new FeatureColour(UserColourScheme
214 .createColourFromName(name.getText()));
217 updateColourButton(bigPanel, colour, col);
224 // ////////////////////////////////////
228 tmp.add(new JLabel(MessageManager.getString("label.name"), JLabel.RIGHT));
233 tmp.add(new JLabel(MessageManager.getString("label.group") + ":",
239 tmp.add(new JLabel(MessageManager.getString("label.colour"),
242 colour.setPreferredSize(new Dimension(150, 15));
243 colour.setFont(new java.awt.Font("Verdana", Font.PLAIN, 9));
244 colour.setForeground(Color.black);
245 colour.setHorizontalAlignment(SwingConstants.CENTER);
246 colour.setVerticalAlignment(SwingConstants.CENTER);
247 colour.setHorizontalTextPosition(SwingConstants.CENTER);
248 colour.setVerticalTextPosition(SwingConstants.CENTER);
249 bigPanel.add(panel, BorderLayout.NORTH);
251 panel = new JPanel();
252 panel.add(new JLabel(MessageManager.getString("label.description"),
254 description.setFont(JvSwingUtils.getTextAreaFont());
255 description.setLineWrap(true);
256 panel.add(new JScrollPane(description));
260 bigPanel.add(panel, BorderLayout.SOUTH);
262 panel = new JPanel();
263 panel.add(new JLabel(MessageManager.getString("label.start"),
266 panel.add(new JLabel(MessageManager.getString("label.end"),
269 bigPanel.add(panel, BorderLayout.CENTER);
273 bigPanel.add(panel, BorderLayout.CENTER);
276 if (lastFeatureAdded == null)
278 if (features[0].type != null)
280 lastFeatureAdded = features[0].type;
284 lastFeatureAdded = "feature_1";
288 if (lastFeatureGroupAdded == null)
290 if (features[0].featureGroup != null)
292 lastFeatureGroupAdded = features[0].featureGroup;
296 lastFeatureGroupAdded = "Jalview";
302 name.setText(lastFeatureAdded);
303 source.setText(lastFeatureGroupAdded);
307 name.setText(features[0].getType());
308 source.setText(features[0].getFeatureGroup());
311 start.setValue(new Integer(features[0].getBegin()));
312 end.setValue(new Integer(features[0].getEnd()));
313 description.setText(features[0].getDescription());
314 updateColourButton(bigPanel, colour,
315 (oldcol = fcol = getFeatureStyle(name.getText())));
319 options = new Object[] { "Amend", "Delete", "Cancel" };
323 options = new Object[] { "OK", "Cancel" };
326 String title = newFeatures ? MessageManager
327 .getString("label.create_new_sequence_features")
328 : MessageManager.formatMessage("label.amend_delete_features",
329 new String[] { sequences[0].getName() });
331 int reply = JOptionPane.showInternalOptionDialog(Desktop.desktop,
332 bigPanel, title, JOptionPane.YES_NO_CANCEL_OPTION,
333 JOptionPane.QUESTION_MESSAGE, null, options,
334 MessageManager.getString("action.ok"));
336 jalview.io.FeaturesFile ffile = new jalview.io.FeaturesFile();
338 if (reply == JOptionPane.OK_OPTION && name.getText().length() > 0)
340 // This ensures that the last sequence
341 // is refreshed and new features are rendered
343 lastFeatureAdded = name.getText().trim();
344 lastFeatureGroupAdded = source.getText().trim();
345 lastDescriptionAdded = description.getText().replaceAll("\n", " ");
346 // TODO: determine if the null feature group is valid
347 if (lastFeatureGroupAdded.length() < 1)
349 lastFeatureGroupAdded = null;
355 SequenceFeature sf = features[featureIndex];
357 if (reply == JOptionPane.NO_OPTION)
359 sequences[0].getDatasetSequence().deleteFeature(sf);
361 else if (reply == JOptionPane.YES_OPTION)
363 sf.type = lastFeatureAdded;
364 sf.featureGroup = lastFeatureGroupAdded;
365 sf.description = lastDescriptionAdded;
367 setColour(sf.type, fcol);
368 getFeaturesDisplayed().setVisible(sf.type);
372 sf.begin = ((Integer) start.getValue()).intValue();
373 sf.end = ((Integer) end.getValue()).intValue();
374 } catch (NumberFormatException ex)
378 ffile.parseDescriptionHTML(sf, false);
382 // NEW FEATURES ADDED
384 if (reply == JOptionPane.OK_OPTION && lastFeatureAdded.length() > 0)
386 for (int i = 0; i < sequences.length; i++)
388 features[i].type = lastFeatureAdded;
389 // fix for JAL-1538 - always set feature group here
390 features[i].featureGroup = lastFeatureGroupAdded;
391 features[i].description = lastDescriptionAdded;
392 sequences[i].addSequenceFeature(features[i]);
393 ffile.parseDescriptionHTML(features[i], false);
396 if (lastFeatureGroupAdded != null)
398 setGroupVisibility(lastFeatureGroupAdded, true);
400 setColour(lastFeatureAdded, fcol);
401 setVisible(lastFeatureAdded);
403 findAllFeatures(false);
405 ap.paintAlignment(true);
415 ap.paintAlignment(true);
421 * update the amend feature button dependent on the given style
427 protected void updateColourButton(JPanel bigPanel, JLabel colour,
431 colour.setIcon(null);
432 colour.setToolTipText(null);
435 if (col.isSimpleColour())
437 colour.setBackground(col.getColour());
441 colour.setBackground(bigPanel.getBackground());
442 colour.setForeground(Color.black);
443 FeatureSettings.renderGraduatedColor(colour, col);
448 * Orders features in render precedence (last in order is last to render, so
449 * displayed on top of other features)
453 public void orderFeatures(Comparator<String> order)
455 Arrays.sort(renderOrder, order);