X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGCutAndPasteTransfer.java;h=bc7d6ee2144771d7425dd389df9c61e233925769;hb=7bc213bae5828287329a3490faba291706599b03;hp=6922fd3364e9229884bd790d6aa1a481c3826818;hpb=1ecf6419aba86993b3c223bf5ec0fa79427baf85;p=jalview.git diff --git a/src/jalview/jbgui/GCutAndPasteTransfer.java b/src/jalview/jbgui/GCutAndPasteTransfer.java index 6922fd3..bc7d6ee 100755 --- a/src/jalview/jbgui/GCutAndPasteTransfer.java +++ b/src/jalview/jbgui/GCutAndPasteTransfer.java @@ -1,82 +1,205 @@ -/******************** - * 2004 Jalview Reengineered - * Barton Group - * Dundee University - * - * AM Waterhouse - *******************/ - -package jalview.jbgui; - -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; - - -public class GCutAndPasteTransfer extends JPanel -{ - protected JTextArea textarea = new JTextArea(); - protected JComboBox formatChoice = new JComboBox(); - protected JLabel formatLabel = new JLabel(); - protected JScrollPane scrollPane = new JScrollPane(); - public GCutAndPasteTransfer() - { - try - { - jbInit(); - } - catch(Exception e) - { - e.printStackTrace(); - } - - } - private void jbInit() throws Exception - { - textarea.setFont(new java.awt.Font("Verdana", 0, 12)); - textarea.setBorder(BorderFactory.createLineBorder(Color.black)); - textarea.setText("Paste your alignment file here"); - textarea.addMouseListener(new java.awt.event.MouseAdapter() - { - public void mousePressed(MouseEvent e) - { - textarea_mousePressed(e); - } - }); - formatChoice.setFont(new java.awt.Font("Verdana", 0, 12)); - formatChoice.setBounds(new Rectangle(194, 269, 159, 22)); - formatChoice.addActionListener(new java.awt.event.ActionListener() - { - public void actionPerformed(ActionEvent e) - { - formatChoice_actionPerformed(e); - } - }); - formatLabel.setFont(new java.awt.Font("Verdana", 0, 12)); - formatLabel.setHorizontalAlignment(SwingConstants.TRAILING); - formatLabel.setText("Alignment Format"); - formatLabel.setBounds(new Rectangle(76, 272, 110, 16)); - this.setLayout(null); - this.setPreferredSize(new Dimension(400, 300)); - scrollPane.setBounds(new Rectangle(5, 5, 389, 256)); - this.add(formatLabel, null); - this.add(formatChoice, null); - this.add(scrollPane, null); - scrollPane.getViewport().add(textarea, null); - - } - - - - protected void formatChoice_actionPerformed(ActionEvent e) - { - - } - - void textarea_mousePressed(MouseEvent e) - { - if(textarea.getText().equals("Paste your alignment file here")) - textarea.setText(""); - } - -} +/* +* 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 java.awt.*; +import java.awt.event.*; + +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(); + JMenuItem selectAll = new JMenuItem(); + JMenu jMenu1 = new JMenu(); + JMenuItem save = new JMenuItem(); + + /** + * Creates a new GCutAndPasteTransfer object. + */ + public GCutAndPasteTransfer() + { + try + { + setJMenuBar(editMenubar); + jbInit(); + } + catch (Exception e) + { + e.printStackTrace(); + } + } + + /** + * DOCUMENT ME! + * + * @throws Exception DOCUMENT ME! + */ + 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("Close"); + 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) + { + selectAll_actionPerformed(e); + } + }); + jMenu1.setText("File"); + save.setText("Save"); + save.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + save_actionPerformed(e); + } + }); + editMenubar.add(jMenu1); + 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); + jMenu1.add(save); + } + + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void textarea_mousePressed(MouseEvent e) + { + + } + + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void copyItem_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) + { + } + + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void cancel_actionPerformed(ActionEvent e) + { + } + + + public void selectAll_actionPerformed(ActionEvent e) + { + textarea.selectAll(); + } + + public void save_actionPerformed(ActionEvent e) + { + + } +}