2 * jSite - NodeManagerPage.java - Copyright © 2006–2014 David Roden
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 package de.todesbaum.jsite.gui;
21 import java.awt.BorderLayout;
22 import java.awt.Dimension;
23 import java.awt.FlowLayout;
24 import java.awt.GridBagConstraints;
25 import java.awt.GridBagLayout;
26 import java.awt.Insets;
27 import java.awt.event.ActionEvent;
28 import java.awt.event.KeyEvent;
29 import java.util.ArrayList;
30 import java.util.List;
32 import javax.swing.AbstractAction;
33 import javax.swing.Action;
34 import javax.swing.DefaultListModel;
35 import javax.swing.JButton;
36 import javax.swing.JLabel;
37 import javax.swing.JList;
38 import javax.swing.JOptionPane;
39 import javax.swing.JPanel;
40 import javax.swing.JScrollPane;
41 import javax.swing.JSpinner;
42 import javax.swing.JTextField;
43 import javax.swing.ListSelectionModel;
44 import javax.swing.SpinnerNumberModel;
45 import javax.swing.border.EmptyBorder;
46 import javax.swing.event.ChangeEvent;
47 import javax.swing.event.ChangeListener;
48 import javax.swing.event.DocumentEvent;
49 import javax.swing.event.DocumentListener;
50 import javax.swing.event.ListSelectionEvent;
51 import javax.swing.event.ListSelectionListener;
52 import javax.swing.text.BadLocationException;
53 import javax.swing.text.Document;
55 import de.todesbaum.jsite.application.Node;
56 import de.todesbaum.jsite.i18n.I18n;
57 import de.todesbaum.jsite.i18n.I18nContainer;
58 import de.todesbaum.util.swing.TLabel;
59 import de.todesbaum.util.swing.TWizard;
60 import de.todesbaum.util.swing.TWizardPage;
63 * Wizard page that lets the user edit his nodes.
65 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
67 public class NodeManagerPage extends TWizardPage implements ListSelectionListener, DocumentListener, ChangeListener {
69 /** List of node manager listeners. */
70 private List<NodeManagerListener> nodeManagerListeners = new ArrayList<NodeManagerListener>();
72 /** The “add node” action. */
73 protected Action addNodeAction;
75 /** The “delete node” action. */
76 protected Action deleteNodeAction;
78 /** The node list model. */
79 private DefaultListModel nodeListModel;
82 private JList nodeList;
84 /** The node name textfield. */
85 private JTextField nodeNameTextField;
87 /** The node hostname textfield. */
88 private JTextField nodeHostnameTextField;
90 /** The spinner for the node port. */
91 private JSpinner nodePortSpinner;
94 * Creates a new node manager wizard page.
97 * The wizard this page belongs to
99 public NodeManagerPage(final TWizard wizard) {
102 setHeading(I18n.getMessage("jsite.node-manager.heading"));
103 setDescription(I18n.getMessage("jsite.node-manager.description"));
104 I18nContainer.getInstance().registerRunnable(new Runnable() {
108 setHeading(I18n.getMessage("jsite.node-manager.heading"));
109 setDescription(I18n.getMessage("jsite.node-manager.description"));
115 * Adds a listener for node manager events.
117 * @param nodeManagerListener
118 * The listener to add
120 public void addNodeManagerListener(NodeManagerListener nodeManagerListener) {
121 nodeManagerListeners.add(nodeManagerListener);
125 * Removes a listener for node manager events.
127 * @param nodeManagerListener
128 * The listener to remove
130 public void removeNodeManagerListener(NodeManagerListener nodeManagerListener) {
131 nodeManagerListeners.remove(nodeManagerListener);
135 * Notifies all listeners that the node configuration has changed.
138 * The new list of nodes
140 protected void fireNodesUpdated(Node[] nodes) {
141 for (NodeManagerListener nodeManagerListener : nodeManagerListeners) {
142 nodeManagerListener.nodesUpdated(nodes);
147 * Notifies all listeners that a new node was selected.
150 * The newly selected node
152 protected void fireNodeSelected(Node node) {
153 for (NodeManagerListener nodeManagerListener : nodeManagerListeners) {
154 nodeManagerListener.nodeSelected(node);
159 * Creates all actions.
161 private void createActions() {
162 addNodeAction = new AbstractAction(I18n.getMessage("jsite.node-manager.add-node")) {
165 @SuppressWarnings("synthetic-access")
166 public void actionPerformed(ActionEvent actionEvent) {
171 deleteNodeAction = new AbstractAction(I18n.getMessage("jsite.node-manager.delete-node")) {
174 @SuppressWarnings("synthetic-access")
175 public void actionPerformed(ActionEvent actionEvent) {
179 deleteNodeAction.setEnabled(false);
181 I18nContainer.getInstance().registerRunnable(new Runnable() {
185 addNodeAction.putValue(Action.NAME, I18n.getMessage("jsite.node-manager.add-node"));
186 deleteNodeAction.putValue(Action.NAME, I18n.getMessage("jsite.node-manager.delete-node"));
192 * Initializes the page and all components in it.
194 private void pageInit() {
196 nodeListModel = new DefaultListModel();
197 nodeList = new JList(nodeListModel);
198 nodeList.setName("node-list");
199 nodeList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
200 nodeList.addListSelectionListener(this);
202 nodeNameTextField = new JTextField("");
203 nodeNameTextField.getDocument().putProperty("Name", "node-name");
204 nodeNameTextField.getDocument().addDocumentListener(this);
205 nodeNameTextField.setEnabled(false);
207 nodeHostnameTextField = new JTextField("localhost");
208 nodeHostnameTextField.getDocument().putProperty("Name", "node-hostname");
209 nodeHostnameTextField.getDocument().addDocumentListener(this);
210 nodeHostnameTextField.setEnabled(false);
212 nodePortSpinner = new JSpinner(new SpinnerNumberModel(9481, 1, 65535, 1));
213 nodePortSpinner.setName("node-port");
214 nodePortSpinner.addChangeListener(this);
215 nodePortSpinner.setEnabled(false);
217 JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.LEADING, 12, 12));
218 buttonPanel.setBorder(new EmptyBorder(-12, -12, -12, -12));
219 buttonPanel.add(new JButton(addNodeAction));
220 buttonPanel.add(new JButton(deleteNodeAction));
222 JPanel centerPanel = new JPanel(new BorderLayout());
223 JPanel nodeInformationPanel = new JPanel(new GridBagLayout());
224 centerPanel.add(nodeInformationPanel, BorderLayout.PAGE_START);
225 nodeInformationPanel.add(buttonPanel, new GridBagConstraints(0, 0, 2, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
226 final JLabel nodeInformationLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.node-manager.node-information") + "</b></html>");
227 nodeInformationPanel.add(nodeInformationLabel, new GridBagConstraints(0, 1, 2, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 0, 0, 0), 0, 0));
228 final TLabel nodeNameLabel = new TLabel(I18n.getMessage("jsite.node-manager.name") + ":", KeyEvent.VK_N, nodeNameTextField);
229 nodeInformationPanel.add(nodeNameLabel, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
230 nodeInformationPanel.add(nodeNameTextField, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
231 final TLabel nodeHostnameLabel = new TLabel(I18n.getMessage("jsite.node-manager.hostname") + ":", KeyEvent.VK_H, nodeHostnameTextField);
232 nodeInformationPanel.add(nodeHostnameLabel, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
233 nodeInformationPanel.add(nodeHostnameTextField, new GridBagConstraints(1, 3, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(6, 6, 0, 0), 0, 0));
234 final TLabel nodePortLabel = new TLabel(I18n.getMessage("jsite.node-manager.port") + ":", KeyEvent.VK_P, nodePortSpinner);
235 nodeInformationPanel.add(nodePortLabel, new GridBagConstraints(0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 18, 0, 0), 0, 0));
236 nodeInformationPanel.add(nodePortSpinner, new GridBagConstraints(1, 4, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 6, 0, 0), 0, 0));
238 setLayout(new BorderLayout(12, 12));
239 final JScrollPane nodeListScrollPane = new JScrollPane(nodeList);
240 nodeListScrollPane.setPreferredSize(new Dimension(250, -1));
241 add(nodeListScrollPane, BorderLayout.LINE_START);
242 add(centerPanel, BorderLayout.CENTER);
244 I18nContainer.getInstance().registerRunnable(new Runnable() {
248 nodeInformationLabel.setText("<html><b>" + I18n.getMessage("jsite.node-manager.node-information") + "</b></html>");
249 nodeNameLabel.setText(I18n.getMessage("jsite.node-manager.name") + ":");
250 nodeHostnameLabel.setText(I18n.getMessage("jsite.node-manager.hostname") + ":");
251 nodePortLabel.setText(I18n.getMessage("jsite.node-manager.port") + ":");
260 public void pageAdded(TWizard wizard) {
261 this.wizard.setNextEnabled(nodeListModel.getSize() > 0);
262 this.wizard.setPreviousName(I18n.getMessage("jsite.wizard.previous"));
263 this.wizard.setNextName(I18n.getMessage("jsite.wizard.next"));
264 this.wizard.setQuitName(I18n.getMessage("jsite.wizard.quit"));
268 * Sets the node list.
273 public void setNodes(Node[] nodes) {
274 nodeListModel.clear();
275 for (Node node : nodes) {
276 nodeListModel.addElement(node);
279 fireNodesUpdated(nodes);
283 * Returns the node list.
285 * @return The list of nodes
287 public Node[] getNodes() {
288 Node[] returnNodes = new Node[nodeListModel.getSize()];
289 for (int nodeIndex = 0, nodeCount = nodeListModel.getSize(); nodeIndex < nodeCount; nodeIndex++) {
290 returnNodes[nodeIndex] = (Node) nodeListModel.get(nodeIndex);
296 * Returns the currently selected node.
298 * @return The selected node, or <code>null</code> if no node is selected
300 private Node getSelectedNode() {
301 return (Node) nodeList.getSelectedValue();
305 * Updates node name or hostname when the user types into the textfields.
307 * @see #insertUpdate(DocumentEvent)
308 * @see #removeUpdate(DocumentEvent)
309 * @see #changedUpdate(DocumentEvent)
310 * @see DocumentListener
311 * @param documentEvent
314 private void updateTextField(DocumentEvent documentEvent) {
315 Node node = getSelectedNode();
319 Document document = documentEvent.getDocument();
320 String documentText = null;
322 documentText = document.getText(0, document.getLength());
323 } catch (BadLocationException ble1) {
326 if (documentText == null) {
329 String documentName = (String) document.getProperty("Name");
330 if ("node-name".equals(documentName)) {
331 node.setName(documentText);
333 fireNodesUpdated(getNodes());
334 } else if ("node-hostname".equals(documentName)) {
335 node.setHostname(documentText);
337 fireNodesUpdated(getNodes());
346 * Adds a new node to the list of nodes.
348 private void addNode() {
349 Node node = new Node("localhost", 9481, I18n.getMessage("jsite.node-manager.new-node"));
350 nodeListModel.addElement(node);
351 nodeList.setSelectedIndex(nodeListModel.size() - 1);
352 deleteNodeAction.setEnabled(nodeListModel.size() > 1);
353 wizard.setNextEnabled(true);
354 fireNodesUpdated(getNodes());
358 * Deletes the currently selected node from the list of nodes.
360 private void deleteNode() {
361 Node node = getSelectedNode();
365 if (JOptionPane.showConfirmDialog(wizard, I18n.getMessage("jsite.node-manager.delete-node.warning"), null, JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) == JOptionPane.CANCEL_OPTION) {
368 int nodeIndex = nodeListModel.indexOf(node);
369 nodeListModel.removeElement(node);
371 fireNodeSelected((Node) nodeListModel.get(Math.min(nodeIndex, nodeListModel.size() - 1)));
372 fireNodesUpdated(getNodes());
373 deleteNodeAction.setEnabled(nodeListModel.size() > 1);
374 wizard.setNextEnabled(nodeListModel.size() > 0);
378 // INTERFACE ListSelectionListener
385 @SuppressWarnings("null")
386 public void valueChanged(ListSelectionEvent e) {
387 Object source = e.getSource();
388 if (source instanceof JList) {
389 JList sourceList = (JList) source;
390 if ("node-list".equals(sourceList.getName())) {
391 Node node = (Node) sourceList.getSelectedValue();
392 boolean enabled = (node != null);
393 nodeNameTextField.setEnabled(enabled);
394 nodeHostnameTextField.setEnabled(enabled);
395 nodePortSpinner.setEnabled(enabled);
396 deleteNodeAction.setEnabled(enabled && (nodeListModel.size() > 1));
398 nodeNameTextField.setText(node.getName());
399 nodeHostnameTextField.setText(node.getHostname());
400 nodePortSpinner.setValue(node.getPort());
402 nodeNameTextField.setText("");
403 nodeHostnameTextField.setText("localhost");
404 nodePortSpinner.setValue(9481);
411 // INTERFACE DocumentListener
418 public void insertUpdate(DocumentEvent e) {
426 public void removeUpdate(DocumentEvent e) {
434 public void changedUpdate(DocumentEvent e) {
439 // INTERFACE ChangeListener
446 public void stateChanged(ChangeEvent e) {
447 Object source = e.getSource();
448 Node selectedNode = getSelectedNode();
449 if (selectedNode == null) {
452 if (source instanceof JSpinner) {
453 JSpinner sourceSpinner = (JSpinner) source;
454 if ("node-port".equals(sourceSpinner.getName())) {
455 selectedNode.setPort((Integer) sourceSpinner.getValue());
456 fireNodeSelected(selectedNode);