JAL-1807 still testing
[jalviewjs.git] / unused / appletgui / EditNameDialog.java
1 /*\r
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)\r
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors\r
4  * \r
5  * This file is part of Jalview.\r
6  * \r
7  * Jalview is free software: you can redistribute it and/or\r
8  * modify it under the terms of the GNU General Public License \r
9  * as published by the Free Software Foundation, either version 3\r
10  * of the License, or (at your option) any later version.\r
11  *  \r
12  * Jalview is distributed in the hope that it will be useful, but \r
13  * WITHOUT ANY WARRANTY; without even the implied warranty \r
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR \r
15  * PURPOSE.  See the GNU General Public License for more details.\r
16  * \r
17  * You should have received a copy of the GNU General Public License\r
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.\r
19  * The Jalview Authors are detailed in the 'AUTHORS' file.\r
20  */\r
21 package jalview.appletgui;\r
22 \r
23 import java.awt.BorderLayout;\r
24 import java.awt.Font;\r
25 import java.awt.Frame;\r
26 import java.awt.Label;\r
27 import java.awt.Panel;\r
28 import java.awt.TextField;\r
29 \r
30 public class EditNameDialog extends JVDialog\r
31 {\r
32   TextField id, description;\r
33 \r
34   public String getName()\r
35   {\r
36     return id.getText();\r
37   }\r
38 \r
39   public String getDescription()\r
40   {\r
41     if (description.getText().length() < 1)\r
42     {\r
43       return null;\r
44     }\r
45     else\r
46     {\r
47       return description.getText();\r
48     }\r
49   }\r
50 \r
51   public EditNameDialog(String name, String desc, String label1,\r
52           String label2, Frame owner, String title, int width, int height,\r
53           boolean display)\r
54   {\r
55     super(owner, title, true, width, height);\r
56 \r
57     Font mono = new Font("Monospaced", Font.PLAIN, 12);\r
58     Panel panel = new Panel(new BorderLayout());\r
59     Panel panel2 = new Panel(new BorderLayout());\r
60 \r
61     id = new TextField(name, 40);\r
62     id.setFont(mono);\r
63     Label label = new Label(label1);\r
64     label.setFont(mono);\r
65 \r
66     panel2.add(label, BorderLayout.WEST);\r
67     panel2.add(id, BorderLayout.CENTER);\r
68     panel.add(panel2, BorderLayout.NORTH);\r
69 \r
70     if (label2 != null)\r
71     {\r
72       panel2 = new Panel(new BorderLayout());\r
73       description = new TextField(desc, 40);\r
74       description.setFont(mono);\r
75       label = new Label(label2);\r
76       label.setFont(mono);\r
77       panel2.add(label, BorderLayout.WEST);\r
78       panel2.add(description, BorderLayout.CENTER);\r
79       panel.add(panel2, BorderLayout.CENTER);\r
80     }\r
81     setMainPanel(panel);\r
82     setVisible(display);\r
83   }\r
84 }\r