Package net.sourceforge.jpowergraph

Examples of net.sourceforge.jpowergraph.Node


    }
   
    public void mouseMove(JPowerGraphMouseEvent e) {
        if (m_draggedNode!=null) {
            autoscroll(e);
            Node overChild = getGraphPane().getNodeAtPoint(e.getPoint());
            boolean canLinkHere = edgeCreatorListener.canCreateEdge(m_draggedNode, overChild);
            if (!canLinkHere && overChild != null){
                cursorLens.setStop(true);
            }
            else{
View Full Code Here


        public void elementsRemoved(Graph graph,Collection nodes,Collection edges) {
            if (nodes!=null) {
                Set <Node> toRemove=null;
                Iterator iterator=nodes.iterator();
                while (iterator.hasNext()) {
                    Node node=(Node)iterator.next();
                    if (m_selectedNodes.contains(node)) {
                        if (toRemove==null)
                            toRemove=new HashSet <Node> ();
                        toRemove.add(node);
                    }
View Full Code Here

        updateHighlight(e);
    }
   
    protected void updateHighlight(JPowerGraphMouseEvent e) {
        if (getGraphPane().isEnabled()) {
            Node nodeAtPoint = getGraphPane().getNodeAtPoint(e.getPoint());
            if (nodeAtPoint != null) {
                setHighlightedNode(nodeAtPoint);
                setHighlightedEdge(null);
            }
            else {
View Full Code Here

        return m_highlightedNode;
    }
   
    public void setHighlightedNode(Node highlightedNode) {
        if (highlightedNode != m_highlightedNode) {
            Node oldHighlightedNode = m_highlightedNode;
            if (oldHighlightedNode != null){
                getGraphPane().repaintNode(oldHighlightedNode);
            }
            m_highlightedNode = highlightedNode;
            if (m_highlightedNode != null){
View Full Code Here

    }
   
    public void mouseDown(JPowerGraphMouseEvent e) {
        if (getGraphPane().isEnabled() && e.getButton() == JPowerGraphMouseEvent.LEFT) {
            Legend legend = getGraphPane().getLegendAtPoint(e.getPoint());
            Node node=getGraphPane().getNodeAtPoint(e.getPoint());
            if (legend != null){
                Action a = legend.getActionAtPoint(e.getPoint());
                if (a != null){
                    a.actionPerformed(new ActionEvent("Selection Source", 0, "do Action")); // null was e.getSource()
                }
View Full Code Here

                        paintEdge(buffer, edge);
                    }
                }
                iterator = m_graph.getVisibleNodes().iterator();
                while (iterator.hasNext()) {
                    Node node = (Node) iterator.next();
                    getNodeScreenBounds(node, bounds);
                    if (clipRectangle.intersects(bounds)){
                        paintNode(buffer, node);
                    }
                }
View Full Code Here

    public Node getNodeAtPoint(JPowerGraphPoint point) {
        synchronized (m_graph) {
            List nodes = m_graph.getVisibleNodes();
            ListIterator iterator = nodes.listIterator(nodes.size());
            while (iterator.hasPrevious()) {
                Node node = (Node) iterator.previous();
                NodePainter nodePainter = getPainterForNode(node);
                if (nodePainter.isInNode(this, node, point, nodeSize, 1))
                    return node;
            }
            return null;
View Full Code Here

        synchronized (m_graph) {
            Set <Node> nodesInRectangle = new HashSet <Node> ();
            JPowerGraphRectangle nodeRectangle = new JPowerGraphRectangle(0, 0, 0, 0);
            Iterator <Node> nodes = m_graph.getVisibleNodes().iterator();
            while (nodes.hasNext()) {
                Node node = nodes.next();
                getNodeScreenBounds(node, nodeRectangle);
                if (RectangleUtil.contains(rectangle, nodeRectangle)) {
                    nodesInRectangle.add(node);
                }
            }
View Full Code Here

    protected void updateNodeScreenPositions() {
        synchronized (m_graph) {
            Point2D graphPoint = new Point2D.Double();
            Iterator nodes = m_graph.getVisibleNodes().iterator();
            while (nodes.hasNext()) {
                Node node = (Node) nodes.next();
                JPowerGraphPoint point = m_nodePositions.get(node);
                if (point == null) {
                    point = new JPowerGraphPoint(0, 0);
                    m_nodePositions.put(node, point);
                }
                graphPoint.setLocation(node.getX(), node.getY());
                graphToScreenPoint(graphPoint, point);
            }
        }
    }
View Full Code Here

    }
   
    public void refreshLegend(Graph graph) {
        m_legend.clear();
        for (Iterator i = graph.getAllNodes().iterator(); i.hasNext();) {
            Node node = (Node) i.next();
            NodePainter nodePainter = getPainterForNode(node);
            m_legend.add(new NodeLegendItem(node.getClass(), nodePainter, node.getNodeType()));
        }
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.jpowergraph.Node

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.