2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.util.MessageManager;
25 import java.awt.FlowLayout;
28 import javax.swing.BoxLayout;
29 import javax.swing.JButton;
30 import javax.swing.JComponent;
31 import javax.swing.JLabel;
32 import javax.swing.JPanel;
33 import javax.swing.JTextField;
36 * A dialog where a name and description may be edited
38 public class EditNameDialog
40 private static final Font COURIER_12 = new Font("Courier", Font.PLAIN,
45 JTextField description;
47 JButton ok = new JButton(MessageManager.getString("action.accept"));
49 JButton cancel = new JButton(MessageManager.getString("action.cancel"));
53 public String getName()
58 public String getDescription()
60 if (description.getText().length() < 1)
66 return description.getText();
78 public EditNameDialog(String name, String desc, String label1,
82 panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
83 JPanel namePanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
84 JPanel descriptionPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
86 panel.add(descriptionPanel);
88 JLabel nameLabel = new JLabel(label1);
89 nameLabel.setFont(COURIER_12);
90 namePanel.add(nameLabel);
92 id = new JTextField(name, 40);
95 description = new JTextField(desc, 40);
98 * optionally add field for description
100 if (desc != null || label2 != null)
102 JLabel descLabel = new JLabel(label2);
103 descLabel.setFont(COURIER_12);
104 descriptionPanel.add(descLabel);
105 descriptionPanel.add(description);
110 * Shows the dialog, and runs the response action if OK is selected
114 public void showDialog(JComponent parent, String title, Runnable action)
116 Object[] options = new Object[] { MessageManager.getString("action.ok"),
117 MessageManager.getString("action.cancel") };
118 JvOptionPane.newOptionDialog(parent).setResponseHandler(0, action)
119 .showInternalDialog(panel, title,
120 JvOptionPane.YES_NO_CANCEL_OPTION,
121 JvOptionPane.PLAIN_MESSAGE, null, options,
122 MessageManager.getString("action.ok"));