X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGCutAndPasteTransfer.java;h=6a89e2ce42a8ea87cff93f927303ebcf5b2d5e83;hb=d8d6f16acc71a3929e2fd8ae54a680618f9af8b6;hp=e9a0164015d631f5b9fbc33de15acde5a3a415b1;hpb=fc798f10d356073d76d180342d232c31597a3b4f;p=jalview.git diff --git a/src/jalview/jbgui/GCutAndPasteTransfer.java b/src/jalview/jbgui/GCutAndPasteTransfer.java index e9a0164..6a89e2c 100755 --- a/src/jalview/jbgui/GCutAndPasteTransfer.java +++ b/src/jalview/jbgui/GCutAndPasteTransfer.java @@ -1,149 +1,191 @@ -/******************** - * 2004 Jalview Reengineered - * Barton Group - * Dundee University - * - * AM Waterhouse - *******************/ - +/* +* Jalview - A Sequence Alignment Editor and Viewer +* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle +* +* This program is free software; you can redistribute it and/or +* modify it under the terms of the GNU General Public License +* as published by the Free Software Foundation; either version 2 +* of the License, or (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program; if not, write to the Free Software +* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +*/ package jalview.jbgui; -import javax.swing.*; import java.awt.*; import java.awt.event.*; -import java.beans.VetoableChangeListener; + import java.beans.PropertyChangeEvent; -import java.beans.PropertyVetoException; +//import java.beans.PropertyVetoException; +//import java.beans.VetoableChangeListener; + +import javax.swing.*; + +/** + * DOCUMENT ME! + * + * @author $author$ + * @version $Revision$ + */ public class GCutAndPasteTransfer extends JInternalFrame { - protected JTextArea textarea = new JTextArea(); - protected JScrollPane scrollPane = new JScrollPane(); - BorderLayout borderLayout1 = new BorderLayout(); - JMenuBar editMenubar = new JMenuBar(); - JMenu editMenu = new JMenu(); - JMenuItem copyItem = new JMenuItem(); - JMenuItem pasteMenu = new JMenuItem(); - BorderLayout borderLayout2 = new BorderLayout(); - protected JPanel inputButtonPanel = new JPanel(); - JButton ok = new JButton(); - JButton cancel = new JButton(); - public GCutAndPasteTransfer() - { - try - { - setJMenuBar(editMenubar); - jbInit(); - } - catch(Exception e) - { - e.printStackTrace(); - } - - } - private void jbInit() throws Exception - { - scrollPane.setBorder(null); - ok.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); - ok.setText("Accept"); - ok.addActionListener(new ActionListener() - { - public void actionPerformed(ActionEvent e) - { - ok_actionPerformed(e); - } - }); - cancel.setText("Cancel"); - cancel.addActionListener(new ActionListener() - { - public void actionPerformed(ActionEvent e) - { - cancel_actionPerformed(e); - } - }); - textarea.setBorder(null); - textarea.addVetoableChangeListener(new VetoableChangeListener() + protected JTextArea textarea = new JTextArea(); + protected JScrollPane scrollPane = new JScrollPane(); + BorderLayout borderLayout1 = new BorderLayout(); + JMenuBar editMenubar = new JMenuBar(); + JMenu editMenu = new JMenu(); + JMenuItem copyItem = new JMenuItem(); + JMenuItem pasteMenu = new JMenuItem(); + BorderLayout borderLayout2 = new BorderLayout(); + protected JPanel inputButtonPanel = new JPanel(); + JButton ok = new JButton(); + JButton cancel = new JButton(); + JMenuItem selectAll = new JMenuItem(); + + /** + * Creates a new GCutAndPasteTransfer object. + */ + public GCutAndPasteTransfer() { - public void vetoableChange(PropertyChangeEvent evt) - { try { - textarea_vetoableChange(evt); + setJMenuBar(editMenubar); + jbInit(); } - catch (java.beans.PropertyVetoException exception0) + catch (Exception e) { - exception0.printStackTrace(); + e.printStackTrace(); } + } - } - }); - editMenubar.add(editMenu); - textarea.setFont(new java.awt.Font("Verdana", 0, 12)); - textarea.addMouseListener(new java.awt.event.MouseAdapter() + /** + * DOCUMENT ME! + * + * @throws Exception DOCUMENT ME! + */ + private void jbInit() throws Exception { - public void mousePressed(MouseEvent e) - { - textarea_mousePressed(e); - } - }); - editMenu.setText("Edit"); - pasteMenu.setText("Paste"); - pasteMenu.addActionListener(new ActionListener() - { - public void actionPerformed(ActionEvent e) - { - pasteMenu_actionPerformed(e); - } - }); - copyItem.setText("Copy"); - copyItem.addActionListener(new ActionListener() + scrollPane.setBorder(null); + ok.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); + ok.setText("Accept"); + ok.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + ok_actionPerformed(e); + } + }); + cancel.setText("Cancel"); + cancel.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + cancel_actionPerformed(e); + } + }); + textarea.setBorder(null); + + selectAll.setText("Select All"); + selectAll.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { - copyItem_actionPerformed(e); + selectAll_actionPerformed(e); } }); - this.getContentPane().setLayout(borderLayout2); - scrollPane.setBorder(null); - scrollPane.getViewport().add(textarea, null); + editMenubar.add(editMenu); + textarea.setFont(new java.awt.Font("Monospaced", Font.PLAIN, 12)); + textarea.addMouseListener(new java.awt.event.MouseAdapter() + { + public void mousePressed(MouseEvent e) + { + textarea_mousePressed(e); + } + }); + editMenu.setText("Edit"); + pasteMenu.setText("Paste"); + pasteMenu.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + pasteMenu_actionPerformed(e); + } + }); + copyItem.setText("Copy"); + copyItem.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + copyItem_actionPerformed(e); + } + }); + this.getContentPane().setLayout(borderLayout2); + scrollPane.setBorder(null); + scrollPane.getViewport().add(textarea, null); + editMenu.add(selectAll); editMenu.add(copyItem); - editMenu.add(pasteMenu); - this.getContentPane().add(scrollPane, java.awt.BorderLayout.CENTER); - inputButtonPanel.add(ok); - inputButtonPanel.add(cancel); - - } - - void textarea_mousePressed(MouseEvent e) - { - if(textarea.getText().equals("Paste your alignment file here")) - textarea.setText(""); - } - - public void copyItem_actionPerformed(ActionEvent e) - { - - } - - public void pasteMenu_actionPerformed(ActionEvent e) - { + editMenu.add(pasteMenu); + this.getContentPane().add(scrollPane, java.awt.BorderLayout.CENTER); + inputButtonPanel.add(ok); + inputButtonPanel.add(cancel); + } - } + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void textarea_mousePressed(MouseEvent e) + { - public void ok_actionPerformed(ActionEvent e) - { + } - } + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void copyItem_actionPerformed(ActionEvent e) + { + } - public void cancel_actionPerformed(ActionEvent e) - { + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void pasteMenu_actionPerformed(ActionEvent e) + { + } - } + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void ok_actionPerformed(ActionEvent e) + { + } - public void textarea_vetoableChange(PropertyChangeEvent evt) - throws PropertyVetoException - { + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void cancel_actionPerformed(ActionEvent e) + { + } - } + public void selectAll_actionPerformed(ActionEvent e) + { + textarea.selectAll(); + } }