GPL license added
[jalview.git] / src / jalview / jbappletgui / GCutAndPasteTransfer.java
1 /*\r
2 * Jalview - A Sequence Alignment Editor and Viewer\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
4 *\r
5 * This program is free software; you can redistribute it and/or\r
6 * modify it under the terms of the GNU General Public License\r
7 * as published by the Free Software Foundation; either version 2\r
8 * of the License, or (at your option) any later version.\r
9 *\r
10 * This program is distributed in the hope that it will be useful,\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 * GNU General Public License for more details.\r
14 *\r
15 * You should have received a copy of the GNU General Public License\r
16 * along with this program; if not, write to the Free Software\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
18 */\r
19 \r
20 package jalview.jbappletgui;\r
21 \r
22 import java.awt.*;\r
23 import java.awt.event.*;\r
24 \r
25 \r
26 public class GCutAndPasteTransfer extends Panel\r
27 {\r
28   protected TextArea textarea = new TextArea();\r
29   Button ok = new Button();\r
30   Button cancel = new Button();\r
31   protected Panel buttonPanel = new Panel();\r
32   BorderLayout borderLayout1 = new BorderLayout();\r
33   public GCutAndPasteTransfer()\r
34   {\r
35     try\r
36     {\r
37       jbInit();\r
38     }\r
39     catch(Exception e)\r
40     {\r
41       e.printStackTrace();\r
42     }\r
43 \r
44   }\r
45   private void jbInit() throws Exception\r
46   {\r
47     textarea.setFont(new java.awt.Font("Verdana", 0, 12));\r
48     textarea.setText("Paste your alignment file here");\r
49     textarea.addMouseListener(new java.awt.event.MouseAdapter()\r
50     {\r
51       public void mousePressed(MouseEvent e)\r
52       {\r
53         textarea_mousePressed(e);\r
54       }\r
55     });\r
56     this.setLayout(borderLayout1);\r
57     ok.setLabel("OK");\r
58     ok.addActionListener(new java.awt.event.ActionListener() {\r
59       public void actionPerformed(ActionEvent e) {\r
60         ok_actionPerformed(e);\r
61       }\r
62     });\r
63     cancel.setLabel("Cancel");\r
64     cancel.addActionListener(new java.awt.event.ActionListener() {\r
65       public void actionPerformed(ActionEvent e) {\r
66         cancel_actionPerformed(e);\r
67       }\r
68     });\r
69     this.add(buttonPanel, BorderLayout.SOUTH);\r
70     buttonPanel.add(ok, null);\r
71     buttonPanel.add(cancel, null);\r
72     this.add(textarea, java.awt.BorderLayout.CENTER);\r
73   }\r
74 \r
75 \r
76 \r
77 \r
78   void textarea_mousePressed(MouseEvent e)\r
79   {\r
80     if(textarea.getText().equals("Paste your alignment file here"))\r
81       textarea.setText("");\r
82   }\r
83 \r
84   protected void ok_actionPerformed(ActionEvent e) {\r
85 \r
86   }\r
87 \r
88   protected void cancel_actionPerformed(ActionEvent e) {\r
89 \r
90   }\r
91 \r
92 }\r