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.AlignViewportI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.api.ComplexAlignFile;
26 import jalview.api.FeatureSettingsModelI;
27 import jalview.api.FeaturesDisplayedI;
28 import jalview.api.FeaturesSourceI;
29 import jalview.bin.Jalview;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.HiddenColumns;
32 import jalview.datamodel.SequenceI;
33 import jalview.io.AlignmentFileReaderI;
34 import jalview.io.AppletFormatAdapter;
35 import jalview.io.DataSourceType;
36 import jalview.io.FileFormatException;
37 import jalview.io.FileFormatI;
38 import jalview.io.FormatAdapter;
39 import jalview.io.IdentifyFile;
40 import jalview.io.JalviewFileChooser;
41 import jalview.io.JalviewFileView;
42 import jalview.jbgui.GCutAndPasteTransfer;
43 import jalview.json.binding.biojson.v1.ColourSchemeMapper;
44 import jalview.schemes.ColourSchemeI;
45 import jalview.util.MessageManager;
47 import java.awt.Toolkit;
48 import java.awt.datatransfer.Clipboard;
49 import java.awt.datatransfer.DataFlavor;
50 import java.awt.datatransfer.StringSelection;
51 import java.awt.datatransfer.Transferable;
52 import java.awt.event.ActionEvent;
53 import java.awt.event.ActionListener;
54 import java.awt.event.MouseEvent;
55 import java.io.FileWriter;
56 import java.io.IOException;
57 import java.io.PrintWriter;
59 import javax.swing.JMenuItem;
60 import javax.swing.JPopupMenu;
61 import javax.swing.SwingUtilities;
64 * Cut'n'paste files into the desktop See JAL-1105
69 public class CutAndPasteTransfer extends GCutAndPasteTransfer
72 AlignmentViewPanel alignpanel;
74 AlignViewportI viewport;
76 AlignmentFileReaderI source = null;
78 public CutAndPasteTransfer()
80 SwingUtilities.invokeLater(new Runnable()
85 textarea.requestFocus();
94 public void setForInput(AlignmentViewPanel viewpanel)
96 this.alignpanel = viewpanel;
97 if (alignpanel != null)
99 this.viewport = alignpanel.getAlignViewport();
101 if (viewport != null)
103 ok.setText(MessageManager.getString("action.add"));
106 getContentPane().add(inputButtonPanel, java.awt.BorderLayout.SOUTH);
112 * @return DOCUMENT ME!
114 public String getText()
116 return textarea.getText();
125 public void setText(String text)
127 textarea.setText(text);
130 public void appendText(String text)
132 textarea.append(text);
136 public void save_actionPerformed(ActionEvent e)
138 // TODO: JAL-3048 JalviewFileChooser - Save option
140 JalviewFileChooser chooser = new JalviewFileChooser(
141 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
143 chooser.setAcceptAllFileFilterUsed(false);
144 chooser.setFileView(new JalviewFileView());
145 chooser.setDialogTitle(
146 MessageManager.getString("label.save_text_to_file"));
147 chooser.setToolTipText(MessageManager.getString("action.save"));
149 int value = chooser.showSaveDialog(this);
151 if (value == JalviewFileChooser.APPROVE_OPTION)
155 PrintWriter out = new PrintWriter(
156 new FileWriter(chooser.getSelectedFile()));
158 out.print(getText());
160 } catch (Exception ex)
162 ex.printStackTrace();
175 public void copyItem_actionPerformed(ActionEvent e)
177 textarea.getSelectedText();
178 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
179 c.setContents(new StringSelection(textarea.getSelectedText()), null);
189 public void pasteMenu_actionPerformed(ActionEvent e)
191 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
192 Transferable contents = c.getContents(this);
194 if (contents == null)
202 (String) contents.getTransferData(DataFlavor.stringFlavor));
203 } catch (Exception ex)
215 public void ok_actionPerformed(ActionEvent e)
217 String text = getText();
218 if (text.trim().length() < 1)
223 FileFormatI format = null;
226 format = new IdentifyFile().identify(text, DataSourceType.PASTE);
227 } catch (FileFormatException e1)
234 .println(MessageManager.getString("label.couldnt_read_data"));
235 if (!Jalview.isHeadlessMode())
237 JvOptionPane.showInternalMessageDialog(Desktop.desktop,
238 AppletFormatAdapter.getSupportedFormats(),
239 MessageManager.getString("label.couldnt_read_data"),
240 JvOptionPane.WARNING_MESSAGE);
245 // TODO: identify feature, annotation or tree file and parse appropriately.
246 AlignmentI al = null;
250 FormatAdapter fa = new FormatAdapter(alignpanel);
251 al = fa.readFile(getText(), DataSourceType.PASTE, format);
252 source = fa.getAlignFile();
254 } catch (IOException ex)
256 JvOptionPane.showInternalMessageDialog(Desktop.desktop, MessageManager
257 .formatMessage("label.couldnt_read_pasted_text", new String[]
259 MessageManager.getString("label.error_parsing_text"),
260 JvOptionPane.WARNING_MESSAGE);
263 if (al != null && al.hasValidSequence())
265 String title = MessageManager
266 .formatMessage("label.input_cut_paste_params", new String[]
267 { format.getName() });
268 FeatureSettingsModelI proxyColourScheme = source
269 .getFeatureColourScheme();
272 * if the view panel was closed its alignment is nulled
273 * and this is an orphaned cut and paste window
275 if (viewport != null && viewport.getAlignment() != null)
277 if (proxyColourScheme != null)
279 viewport.applyFeaturesStyle(proxyColourScheme);
281 ((AlignViewport) viewport).addAlignment(al, title);
287 if (source instanceof ComplexAlignFile)
289 HiddenColumns hidden = ((ComplexAlignFile) source)
291 SequenceI[] hiddenSeqs = ((ComplexAlignFile) source)
292 .getHiddenSequences();
293 boolean showSeqFeatures = ((ComplexAlignFile) source)
294 .isShowSeqFeatures();
295 String colourSchemeName = ((ComplexAlignFile) source)
296 .getGlobalColourScheme();
297 FeaturesDisplayedI fd = ((ComplexAlignFile) source)
298 .getDisplayedFeatures();
299 af = new AlignFrame(al, hiddenSeqs, hidden,
300 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
301 af.getViewport().setShowSequenceFeatures(showSeqFeatures);
302 af.getViewport().setFeaturesDisplayed(fd);
303 af.setMenusForViewport();
304 ColourSchemeI cs = ColourSchemeMapper.getJalviewColourScheme(
305 colourSchemeName, al);
313 af = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
314 AlignFrame.DEFAULT_HEIGHT);
315 if (source instanceof FeaturesSourceI)
317 af.getViewport().setShowSequenceFeatures(true);
320 if (proxyColourScheme != null)
322 af.getViewport().applyFeaturesStyle(proxyColourScheme);
324 af.currentFileFormat = format;
325 Desktop.addInternalFrame(af, title, AlignFrame.DEFAULT_WIDTH,
326 AlignFrame.DEFAULT_HEIGHT);
327 af.setStatus(MessageManager
328 .getString("label.successfully_pasted_alignment_file"));
333 jalview.bin.Cache.getDefault("SHOW_FULLSCREEN", false));
334 } catch (Exception ex)
342 .println(MessageManager.getString("label.couldnt_read_data"));
343 if (!Jalview.isHeadlessMode())
345 JvOptionPane.showInternalMessageDialog(Desktop.desktop,
346 AppletFormatAdapter.getSupportedFormats(),
347 MessageManager.getString("label.couldnt_read_data"),
348 JvOptionPane.WARNING_MESSAGE);
360 public void cancel_actionPerformed(ActionEvent e)
364 this.setClosed(true);
365 } catch (Exception ex)
371 public void textarea_mousePressed(MouseEvent e)
374 * isPopupTrigger is checked in mousePressed on Mac,
375 * in mouseReleased on Windows
377 if (e.isPopupTrigger())
379 JPopupMenu popup = new JPopupMenu(
380 MessageManager.getString("action.edit"));
381 JMenuItem item = new JMenuItem(
382 MessageManager.getString("action.copy"));
383 item.addActionListener(new ActionListener()
386 public void actionPerformed(ActionEvent e)
388 copyItem_actionPerformed(e);
392 item = new JMenuItem(MessageManager.getString("action.paste"));
393 item.addActionListener(new ActionListener()
396 public void actionPerformed(ActionEvent e)
398 pasteMenu_actionPerformed(e);
402 popup.show(this, e.getX() + 10, e.getY() + textarea.getY() + 40);