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