All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netbeans.api.visual.vmd.VMDGraphScene Maven / Gradle / Ivy

There is a newer version: RELEASE230
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.netbeans.api.visual.vmd;

import org.netbeans.api.visual.action.ActionFactory;
import org.netbeans.api.visual.action.WidgetAction;
import org.netbeans.api.visual.anchor.Anchor;
import org.netbeans.api.visual.anchor.AnchorFactory;
import org.netbeans.api.visual.graph.GraphPinScene;
import org.netbeans.api.visual.graph.layout.GridGraphLayout;
import org.netbeans.api.visual.layout.LayoutFactory;
import org.netbeans.api.visual.layout.SceneLayout;
import org.netbeans.api.visual.router.Router;
import org.netbeans.api.visual.router.RouterFactory;
import org.netbeans.api.visual.widget.ConnectionWidget;
import org.netbeans.api.visual.widget.EventProcessingType;
import org.netbeans.api.visual.widget.LayerWidget;
import org.netbeans.api.visual.widget.Widget;

/**
 * This class represents a GraphPinScene for the VMD visualization style. Nodes, edges and pins are represented using String class.
 * The visualization is done by: VMDNodeWidget for nodes, VMDPinWidget for pins, ConnectionWidget fro edges.
 * 

* The scene has 4 layers: background, main, connection, upper. *

* The scene has following actions: zoom, panning, rectangular selection. * * @author David Kaspar */ public class VMDGraphScene extends GraphPinScene { public static final String PIN_ID_DEFAULT_SUFFIX = "#default"; // NOI18N private LayerWidget backgroundLayer = new LayerWidget (this); private LayerWidget mainLayer = new LayerWidget (this); private LayerWidget connectionLayer = new LayerWidget (this); private LayerWidget upperLayer = new LayerWidget (this); private Router router; private WidgetAction moveControlPointAction = ActionFactory.createOrthogonalMoveControlPointAction (); private WidgetAction moveAction = ActionFactory.createMoveAction (); private SceneLayout sceneLayout; private VMDColorScheme scheme; /** * Creates a VMD graph scene. */ public VMDGraphScene () { this (VMDFactory.getOriginalScheme ()); } /** * Creates a VMD graph scene with a specific color scheme. * @param scheme the color scheme */ public VMDGraphScene (VMDColorScheme scheme) { this.scheme = scheme; setKeyEventProcessingType (EventProcessingType.FOCUSED_WIDGET_AND_ITS_PARENTS); addChild (backgroundLayer); addChild (mainLayer); addChild (connectionLayer); addChild (upperLayer); router = RouterFactory.createOrthogonalSearchRouter (mainLayer, connectionLayer); getActions ().addAction (ActionFactory.createZoomAction ()); getActions ().addAction (ActionFactory.createPanAction ()); getActions ().addAction (ActionFactory.createRectangularSelectAction (this, backgroundLayer)); sceneLayout = LayoutFactory.createSceneGraphLayout (this, new GridGraphLayout ().setChecker (true)); } /** * Implements attaching a widget to a node. The widget is VMDNodeWidget and has object-hover, select, popup-menu and move actions. * @param node the node * @return the widget attached to the node */ protected Widget attachNodeWidget (String node) { VMDNodeWidget widget = new VMDNodeWidget (this, scheme); mainLayer.addChild (widget); widget.getHeader ().getActions ().addAction (createObjectHoverAction ()); widget.getActions ().addAction (createSelectAction ()); widget.getActions ().addAction (moveAction); return widget; } /** * Implements attaching a widget to a pin. The widget is VMDPinWidget and has object-hover and select action. * The the node id ends with "#default" then the pin is the default pin of a node and therefore it is non-visual. * @param node the node * @param pin the pin * @return the widget attached to the pin, null, if it is a default pin */ protected Widget attachPinWidget (String node, String pin) { if (pin.endsWith (PIN_ID_DEFAULT_SUFFIX)) return null; VMDPinWidget widget = new VMDPinWidget (this, scheme); ((VMDNodeWidget) findWidget (node)).attachPinWidget (widget); widget.getActions ().addAction (createObjectHoverAction ()); widget.getActions ().addAction (createSelectAction ()); return widget; } /** * Implements attaching a widget to an edge. the widget is ConnectionWidget and has object-hover, select and move-control-point actions. * @param edge the edge * @return the widget attached to the edge */ protected Widget attachEdgeWidget (String edge) { VMDConnectionWidget connectionWidget = new VMDConnectionWidget (this, scheme); connectionWidget.setRouter (router); connectionLayer.addChild (connectionWidget); connectionWidget.getActions ().addAction (createObjectHoverAction ()); connectionWidget.getActions ().addAction (createSelectAction ()); connectionWidget.getActions ().addAction (moveControlPointAction); return connectionWidget; } /** * Attaches an anchor of a source pin an edge. * The anchor is a ProxyAnchor that switches between the anchor attached to the pin widget directly and * the anchor attached to the pin node widget based on the minimize-state of the node. * @param edge the edge * @param oldSourcePin the old source pin * @param sourcePin the new source pin */ protected void attachEdgeSourceAnchor (String edge, String oldSourcePin, String sourcePin) { ((ConnectionWidget) findWidget (edge)).setSourceAnchor (getPinAnchor (sourcePin)); } /** * Attaches an anchor of a target pin an edge. * The anchor is a ProxyAnchor that switches between the anchor attached to the pin widget directly and * the anchor attached to the pin node widget based on the minimize-state of the node. * @param edge the edge * @param oldTargetPin the old target pin * @param targetPin the new target pin */ protected void attachEdgeTargetAnchor (String edge, String oldTargetPin, String targetPin) { ((ConnectionWidget) findWidget (edge)).setTargetAnchor (getPinAnchor (targetPin)); } private Anchor getPinAnchor (String pin) { if (pin == null) return null; VMDNodeWidget nodeWidget = (VMDNodeWidget) findWidget (getPinNode (pin)); Widget pinMainWidget = findWidget (pin); Anchor anchor; if (pinMainWidget != null) { anchor = AnchorFactory.createDirectionalAnchor (pinMainWidget, AnchorFactory.DirectionalAnchorKind.HORIZONTAL, 8); anchor = nodeWidget.createAnchorPin (anchor); } else anchor = nodeWidget.getNodeAnchor (); return anchor; } /** * Invokes layout of the scene. */ public void layoutScene () { sceneLayout.invokeLayout (); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy