merge from 2_4_Release branch
[jalview.git] / src / jalview / appletgui / EditNameDialog.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
3  * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
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 }