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.FeaturesDisplayedI;
27 import jalview.bin.Jalview;
28 import jalview.datamodel.AlignmentI;
29 import jalview.datamodel.ColumnSelection;
30 import jalview.datamodel.SequenceI;
31 import jalview.io.AppletFormatAdapter;
32 import jalview.io.FileParse;
33 import jalview.io.FormatAdapter;
34 import jalview.io.IdentifyFile;
35 import jalview.io.JalviewFileChooser;
36 import jalview.io.JalviewFileView;
37 import jalview.jbgui.GCutAndPasteTransfer;
38 import jalview.schemes.ColourSchemeI;
39 import jalview.util.MessageManager;
41 import java.awt.Toolkit;
42 import java.awt.datatransfer.Clipboard;
43 import java.awt.datatransfer.DataFlavor;
44 import java.awt.datatransfer.StringSelection;
45 import java.awt.datatransfer.Transferable;
46 import java.awt.event.ActionEvent;
47 import java.awt.event.ActionListener;
48 import java.awt.event.MouseEvent;
50 import javax.swing.JMenuItem;
51 import javax.swing.JOptionPane;
52 import javax.swing.JPopupMenu;
53 import javax.swing.SwingUtilities;
56 * Cut'n'paste files into the desktop See JAL-1105
61 public class CutAndPasteTransfer extends GCutAndPasteTransfer
64 AlignmentViewPanel alignpanel;
66 AlignViewportI viewport;
68 FileParse source = null;
69 public CutAndPasteTransfer()
71 SwingUtilities.invokeLater(new Runnable()
75 textarea.requestFocus();
84 public void setForInput(AlignmentViewPanel viewpanel)
86 this.alignpanel = viewpanel;
87 if (alignpanel != null)
89 this.viewport = alignpanel.getAlignViewport();
93 ok.setText(MessageManager.getString("action.add"));
96 getContentPane().add(inputButtonPanel, java.awt.BorderLayout.SOUTH);
102 * @return DOCUMENT ME!
104 public String getText()
106 return textarea.getText();
115 public void setText(String text)
117 textarea.setText(text);
120 public void appendText(String text)
122 textarea.append(text);
125 public void save_actionPerformed(ActionEvent e)
127 JalviewFileChooser chooser = new JalviewFileChooser(
128 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
130 chooser.setAcceptAllFileFilterUsed(false);
131 chooser.setFileView(new JalviewFileView());
132 chooser.setDialogTitle(MessageManager.getString("label.save_text_to_file"));
133 chooser.setToolTipText(MessageManager.getString("action.save"));
135 int value = chooser.showSaveDialog(this);
137 if (value == JalviewFileChooser.APPROVE_OPTION)
141 java.io.PrintWriter out = new java.io.PrintWriter(
142 new java.io.FileWriter(chooser.getSelectedFile()));
144 out.print(getText());
146 } catch (Exception ex)
148 ex.printStackTrace();
160 public void copyItem_actionPerformed(ActionEvent e)
162 textarea.getSelectedText();
163 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
164 c.setContents(new StringSelection(textarea.getSelectedText()), null);
173 public void pasteMenu_actionPerformed(ActionEvent e)
175 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
176 Transferable contents = c.getContents(this);
178 if (contents == null)
185 textarea.append((String) contents
186 .getTransferData(DataFlavor.stringFlavor));
187 } catch (Exception ex)
198 public void ok_actionPerformed(ActionEvent e)
200 String text = getText();
201 if (text.trim().length() < 1)
206 String format = new IdentifyFile().Identify(text, "Paste");
207 if (format == null || format.equalsIgnoreCase("EMPTY DATA FILE"))
209 System.err.println(MessageManager
210 .getString("label.couldnt_read_data"));
211 if (!Jalview.isHeadlessMode())
213 javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop,
214 AppletFormatAdapter.SUPPORTED_FORMATS,
215 MessageManager.getString("label.couldnt_read_data"),
216 JOptionPane.WARNING_MESSAGE);
221 // TODO: identify feature, annotation or tree file and parse appropriately.
222 AlignmentI al = null;
224 if (FormatAdapter.isValidFormat(format))
228 FormatAdapter fa = new FormatAdapter(alignpanel);
229 al = fa.readFile(getText(), "Paste", format);
230 source = fa.getAlignFile();
232 } catch (java.io.IOException ex)
234 JOptionPane.showInternalMessageDialog(Desktop.desktop,
235 MessageManager.formatMessage(
236 "label.couldnt_read_pasted_text", new String[]
237 { ex.toString() }), MessageManager
238 .getString("label.error_parsing_text"),
239 JOptionPane.WARNING_MESSAGE);
243 if (al != null && al.hasValidSequence())
245 String title = MessageManager.formatMessage(
246 "label.input_cut_paste_params", new String[]
248 if (viewport != null)
250 ((AlignViewport) viewport).addAlignment(al, title);
256 if (source instanceof ComplexAlignFile)
258 ColumnSelection colSel = ((ComplexAlignFile) source)
259 .getColumnSelection();
260 SequenceI[] hiddenSeqs = ((ComplexAlignFile) source)
261 .getHiddenSequences();
262 boolean showSeqFeatures = ((ComplexAlignFile) source)
263 .isShowSeqFeatures();
264 ColourSchemeI cs = ((ComplexAlignFile) source).getColourScheme();
265 FeaturesDisplayedI fd = ((ComplexAlignFile) source)
266 .getDisplayedFeatures();
267 af = new AlignFrame(al, hiddenSeqs, colSel,
268 AlignFrame.DEFAULT_WIDTH,
269 AlignFrame.DEFAULT_HEIGHT);
270 af.getViewport().setShowSequenceFeatures(showSeqFeatures);
271 af.getViewport().setFeaturesDisplayed(fd);
276 af = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
277 AlignFrame.DEFAULT_HEIGHT);
280 af.currentFileFormat = format;
281 Desktop.addInternalFrame(af, title, AlignFrame.DEFAULT_WIDTH,
282 AlignFrame.DEFAULT_HEIGHT);
283 af.statusBar.setText(MessageManager
284 .getString("label.successfully_pasted_alignment_file"));
288 af.setMaximum(jalview.bin.Cache.getDefault("SHOW_FULLSCREEN",
290 } catch (Exception ex)
297 System.err.println(MessageManager
298 .getString("label.couldnt_read_data"));
299 if (!Jalview.isHeadlessMode())
301 javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop,
302 AppletFormatAdapter.SUPPORTED_FORMATS,
303 MessageManager.getString("label.couldnt_read_data"),
304 JOptionPane.WARNING_MESSAGE);
316 public void cancel_actionPerformed(ActionEvent e)
320 this.setClosed(true);
321 } catch (Exception ex)
326 public void textarea_mousePressed(MouseEvent e)
328 if (SwingUtilities.isRightMouseButton(e))
330 JPopupMenu popup = new JPopupMenu(
331 MessageManager.getString("action.edit"));
332 JMenuItem item = new JMenuItem(
333 MessageManager.getString("action.copy"));
334 item.addActionListener(new ActionListener()
336 public void actionPerformed(ActionEvent e)
338 copyItem_actionPerformed(e);
342 item = new JMenuItem(MessageManager.getString("action.paste"));
343 item.addActionListener(new ActionListener()
345 public void actionPerformed(ActionEvent e)
347 pasteMenu_actionPerformed(e);
351 popup.show(this, e.getX() + 10, e.getY() + textarea.getY() + 40);