/* Copyright 2008-2010 Gephi Authors : Mathieu Bastian <mathieu.bastian@gephi.org>, Mathieu Jacomy, Julian Bilcke, Eduardo Ramos Website : http://www.gephi.org This file is part of Gephi. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright 2011 Gephi Consortium. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 3 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at http://gephi.org/about/legal/license-notice/ or /cddl-1.0.txt and /gpl-3.0.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License files at /cddl-1.0.txt and /gpl-3.0.txt. If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]" If you wish your version of this file to be governed by only the CDDL or only the GPL Version 3, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 3] license." If you do not indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 3 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 3 code and therefore, elected the GPL Version 3 license, then the option applies only if the new code is made subject to such option by the copyright holder. Contributor(s): Portions Copyrighted 2011 Gephi Consortium. */ package org.gephi.ui.tools.plugin.edit; import java.awt.Color; import java.beans.PropertyEditor; import java.beans.PropertyEditorManager; import org.gephi.datalab.api.AttributeColumnsController; import org.gephi.graph.api.Column; import org.gephi.graph.api.GraphController; import org.gephi.graph.api.Node; import org.gephi.graph.api.TextProperties; import org.gephi.graph.api.TimeFormat; import org.gephi.ui.tools.plugin.edit.EditWindowUtils.AttributeValueWrapper; import org.joda.time.DateTimeZone; import org.openide.nodes.AbstractNode; import org.openide.nodes.Children; import org.openide.nodes.PropertySupport; import org.openide.nodes.Sheet; import org.openide.util.Exceptions; import org.openide.util.Lookup; import org.openide.util.NbBundle; /** * PropertySheet that allows to edit one or more nodes. If multiple node edition * mode is used at first all values will be shown as blank but will change with * the editions and all nodes will be set the values that the user inputs. * * @author Mathieu Bastian */ public class EditNodes extends AbstractNode { private PropertySet[] propertySets; private final Node[] nodes; private final boolean multipleNodes; private final TimeFormat currentTimeFormat; private final DateTimeZone dateTimeZone; /** * Single node edition mode will always be enabled with this single node * constructor * * @param node */ public EditNodes(Node node) { super(Children.LEAF); this.nodes = new Node[]{node}; setName(node.getLabel()); multipleNodes = false; GraphController gc = Lookup.getDefault().lookup(GraphController.class); currentTimeFormat = gc.getGraphModel().getTimeFormat(); dateTimeZone = gc.getGraphModel().getTimeZone(); } /** * If the nodes array has more than one element, multiple nodes edition mode * will be enabled. * * @param nodes */ public EditNodes(Node[] nodes) { super(Children.LEAF); this.nodes = nodes; multipleNodes = nodes.length > 1; if (multipleNodes) { setName(NbBundle.getMessage(EditNodes.class, "EditNodes.multiple.elements")); } else { setName(nodes[0].getLabel()); } GraphController gc = Lookup.getDefault().lookup(GraphController.class); currentTimeFormat = gc.getGraphModel().getTimeFormat(); dateTimeZone = gc.getGraphModel().getTimeZone(); } @Override public PropertySet[] getPropertySets() { propertySets = new PropertySet[]{prepareNodesProperties(), prepareNodesAttributes()}; return propertySets; } /** * Prepare set of attributes of the node(s). * * @return Set of these attributes */ private Sheet.Set prepareNodesAttributes() { try { // DynamicModel dm=Lookup.getDefault().lookup(DynamicController.class).getModel(); // if(dm!=null){ // currentTimeFormat=dm.getTimeFormat(); // } AttributeColumnsController ac = Lookup.getDefault().lookup(AttributeColumnsController.class); Sheet.Set set = new Sheet.Set(); set.setName("attributes"); if (nodes.length > 1) { set.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.attributes.text.multiple")); } else { set.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.attributes.text", nodes[0].getLabel())); } Node row = nodes[0]; AttributeValueWrapper wrap; for (Column column : row.getAttributeColumns()) { if (multipleNodes) { wrap = new MultipleRowsAttributeValueWrapper(nodes, column, currentTimeFormat, dateTimeZone); } else { wrap = new SingleRowAttributeValueWrapper(nodes[0], column, currentTimeFormat, dateTimeZone); } Property p; Class<?> type = column.getTypeClass(); PropertyEditor propEditor = PropertyEditorManager.findEditor(type); if (ac.canChangeColumnData(column)) { //Editable column, provide "set" method: if (propEditor != null && !type.isArray()) {//The type can be edited by default: p = new PropertySupport.Reflection(wrap, type, "getValue" + type.getSimpleName(), "setValue" + type.getSimpleName()); } else {//Use the AttributeType as String: p = new PropertySupport.Reflection(wrap, String.class, "getValueAsString", "setValueAsString"); } } else //Not editable column, do not provide "set" method: if (propEditor != null) {//The type can be edited by default: p = new PropertySupport.Reflection(wrap, type, "getValue" + type.getSimpleName(), null); } else {//Use the AttributeType as String: p = new PropertySupport.Reflection(wrap, String.class, "getValueAsString", null); } p.setDisplayName(column.getTitle()); p.setName(column.getId()); set.put(p); } return set; } catch (Exception ex) { Exceptions.printStackTrace(ex); return null; } } /** * Prepare set of editable properties of the node(s): size, position. * * @return Set of these properties */ private Sheet.Set prepareNodesProperties() { try { if (multipleNodes) { MultipleNodesPropertiesWrapper nodesWrapper = new MultipleNodesPropertiesWrapper(nodes); Sheet.Set set = new Sheet.Set(); set.setName("properties"); set.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.properties.text.multiple")); Property p; //Size: p = new PropertySupport.Reflection(nodesWrapper, Float.class, "getNodesSize", "setNodesSize"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.size.text")); p.setName("size"); set.put(p); //All position coordinates: set.put(buildMultipleNodesGeneralPositionProperty(nodesWrapper, "x")); set.put(buildMultipleNodesGeneralPositionProperty(nodesWrapper, "y")); set.put(buildMultipleNodesGeneralPositionProperty(nodesWrapper, "z")); //Color: p = new PropertySupport.Reflection(nodesWrapper, Color.class, "getNodesColor", "setNodesColor"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.color.text")); p.setName("color"); set.put(p); //Label color: p = new PropertySupport.Reflection(nodesWrapper, Color.class, "getLabelsColor", "setLabelsColor"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.color.text")); p.setName("labelcolor"); set.put(p); //Label size: p = new PropertySupport.Reflection(nodesWrapper, Float.class, "getLabelsSize", "setLabelsSize"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.size.text")); p.setName("labelsize"); set.put(p); //Label visible: p = new PropertySupport.Reflection(nodesWrapper, Boolean.class, "getLabelsVisible", "setLabelsVisible"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.visible.text")); p.setName("labelvisible"); set.put(p); return set; } else { Node node = nodes[0]; Sheet.Set set = new Sheet.Set(); set.setName("properties"); set.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.properties.text", node.getLabel())); Property p; //Size: p = new PropertySupport.Reflection(node, Float.TYPE, "size", "setSize"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.size.text")); p.setName("size"); set.put(p); //All position coordinates: set.put(buildGeneralPositionProperty(node, "x")); set.put(buildGeneralPositionProperty(node, "y")); set.put(buildGeneralPositionProperty(node, "z")); //Color: SingleNodePropertiesWrapper nodeWrapper = new SingleNodePropertiesWrapper(node); p = new PropertySupport.Reflection(nodeWrapper, Color.class, "getNodeColor", "setNodeColor"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.color.text")); p.setName("color"); set.put(p); TextProperties textProperties = node.getTextProperties(); //Label size: p = new PropertySupport.Reflection(textProperties, Float.TYPE, "getSize", "setSize"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.size.text")); p.setName("labelsize"); set.put(p); //Label color: p = new PropertySupport.Reflection(nodeWrapper, Color.class, "getLabelColor", "setLabelColor"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.color.text")); p.setName("labelcolor"); set.put(p); //Label visible: p = new PropertySupport.Reflection(textProperties, Boolean.TYPE, "isVisible", "setVisible"); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.label.visible.text")); p.setName("labelvisible"); set.put(p); return set; } } catch (Exception ex) { Exceptions.printStackTrace(ex); return null; } } public class SingleNodePropertiesWrapper { private final Node node; public SingleNodePropertiesWrapper(Node node) { this.node = node; } public Color getNodeColor() { return new Color(node.r(), node.g(), node.b(), node.alpha()); } public void setNodeColor(Color c) { if (c != null) { node.setR(c.getRed() / 255f); node.setG(c.getGreen() / 255f); node.setB(c.getBlue() / 255f); node.setAlpha(c.getAlpha() / 255f); } } public Color getLabelColor() { TextProperties textProps = node.getTextProperties(); if (textProps.getAlpha() == 0) { return null;//Not specific color for label } return textProps.getColor(); } public void setLabelColor(Color c) { if (c != null) { TextProperties textProps = node.getTextProperties(); textProps.setColor(c); } } } public class MultipleNodesPropertiesWrapper { private final Node[] nodes; public MultipleNodesPropertiesWrapper(Node[] nodes) { this.nodes = nodes; } //Methods and fields for multiple nodes editing: private Float nodesX = null; private Float nodesY = null; private Float nodesZ = null; private Float nodesSize = null; private Color nodesColor = null; private Color labelsColor = null; private Float labelsSize = null; private Boolean labelsVisible = null; public Float getNodesX() { return nodesX; } public void setNodesX(Float x) { nodesX = x; for (Node node : nodes) { node.setX(x); } } public Float getNodesY() { return nodesY; } public void setNodesY(Float y) { nodesY = y; for (Node node : nodes) { node.setY(y); } } public Float getNodesZ() { return nodesZ; } public void setNodesZ(Float z) { nodesZ = z; for (Node node : nodes) { node.setZ(z); } } public Color getNodesColor() { return nodesColor; } public void setNodesColor(Color c) { if (c != null) { nodesColor = c; for (Node node : nodes) { node.setR(c.getRed() / 255f); node.setG(c.getGreen() / 255f); node.setB(c.getBlue() / 255f); node.setAlpha(c.getAlpha() / 255f); } } } public Float getNodesSize() { return nodesSize; } public void setNodesSize(Float size) { nodesSize = size; for (Node node : nodes) { node.setSize(size); } } public Color getLabelsColor() { return labelsColor; } public void setLabelsColor(Color c) { if (c != null) { labelsColor = c; for (Node node : nodes) { TextProperties textProps = node.getTextProperties(); textProps.setR(c.getRed() / 255f); textProps.setG(c.getGreen() / 255f); textProps.setB(c.getBlue() / 255f); textProps.setAlpha(c.getAlpha() / 255f); } } } public Float getLabelsSize() { return labelsSize; } public void setLabelsSize(Float size) { labelsSize = size; for (Node node : nodes) { TextProperties textProps = node.getTextProperties(); textProps.setSize(size); } } public Boolean getLabelsVisible() { return labelsVisible; } public void setLabelsVisible(Boolean visible) { labelsVisible = visible; for (Node node : nodes) { TextProperties textProps = node.getTextProperties(); textProps.setVisible(visible); } } } /** * Used to build property for each position coordinate (x,y,z) in the same * way. * * @return Property for that coordinate */ private Property buildGeneralPositionProperty(Node node, String coordinate) throws NoSuchMethodException { //Position: Property p = new PropertySupport.Reflection(node, Float.TYPE, coordinate, "set" + coordinate.toUpperCase()); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.position.text", coordinate)); p.setName(coordinate); return p; } /** * Used to build property for each position coordinate of various nodes * (x,y,z) in the same way. * * @return Property for that coordinate */ private Property buildMultipleNodesGeneralPositionProperty(MultipleNodesPropertiesWrapper nodesWrapper, String coordinate) throws NoSuchMethodException { //Position: Property p = new PropertySupport.Reflection(nodesWrapper, Float.class, "getNodes" + coordinate.toUpperCase(), "setNodes" + coordinate.toUpperCase()); p.setDisplayName(NbBundle.getMessage(EditNodes.class, "EditNodes.position.text", coordinate)); p.setName(coordinate); return p; } }