org.netbeans.modeler.router.WidgetsCollisionCollector Maven / Gradle / Ivy
/*
* 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.modeler.router;
import org.netbeans.api.visual.router.CollisionsCollector;
import org.netbeans.api.visual.widget.ConnectionWidget;
import org.netbeans.api.visual.widget.LayerWidget;
import org.netbeans.api.visual.widget.Widget;
import java.awt.*;
import java.util.ArrayList;
import java.util.Collection;
/**
* @author David Kaspar
*/
public class WidgetsCollisionCollector implements CollisionsCollector {
private LayerWidget[] layers;
public WidgetsCollisionCollector (LayerWidget... layers) {
this.layers = layers;
}
public void collectCollisions (java.util.List verticalCollisions, java.util.List horizontalCollisions) {
for (Widget widget : getWidgets ()) {
if (! widget.isValidated ())
continue;
if (widget instanceof ConnectionWidget) {
ConnectionWidget conn = (ConnectionWidget) widget;
if (! conn.isRouted ())
continue;
java.util.List controlPoints = conn.getControlPoints ();
int last = controlPoints.size () - 1;
for (int i = 0; i < last; i ++) {
Point point1 = controlPoints.get (i);
Point point2 = controlPoints.get (i + 1);
if (point1.x == point2.x) {
Rectangle rectangle = new Rectangle (point1.x, Math.min (point1.y, point2.y), 0, Math.abs (point2.y - point1.y));
rectangle.grow (OrthogonalSearchRouter.SPACING_EDGE, OrthogonalSearchRouter.SPACING_EDGE);
verticalCollisions.add (rectangle);
} else if (point1.y == point2.y) {
Rectangle rectangle = new Rectangle (Math.min (point1.x, point2.x), point1.y, Math.abs (point2.x - point1.x), 0);
rectangle.grow (OrthogonalSearchRouter.SPACING_EDGE, OrthogonalSearchRouter.SPACING_EDGE);
horizontalCollisions.add (rectangle);
}
}
} else {
Rectangle bounds = widget.getBounds ();
Rectangle rectangle = widget.convertLocalToScene (bounds);
rectangle.grow (OrthogonalSearchRouter.SPACING_NODE, OrthogonalSearchRouter.SPACING_NODE);
verticalCollisions.add (rectangle);
horizontalCollisions.add (rectangle);
}
}
}
protected Collection getWidgets () {
ArrayList list = new ArrayList ();
for (LayerWidget layer : layers)
list.addAll (layer.getChildren ());
return list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy