org.netbeans.modules.visual.action.OrthogonalMoveControlPointProvider 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.modules.visual.action;
import org.netbeans.api.visual.action.MoveControlPointProvider;
import org.netbeans.api.visual.widget.ConnectionWidget;
import java.awt.*;
import java.util.ArrayList;
/**
* @author David Kaspar
*/
public final class OrthogonalMoveControlPointProvider implements MoveControlPointProvider {
public java.util.List locationSuggested (ConnectionWidget connectionWidget, int index, Point suggestedLocation) {
java.util.List controlPoints = connectionWidget.getControlPoints ();
int last = controlPoints.size () - 1;
if (index <= 0 || index >= last)
return null;
Point pointPre = controlPoints.get (index - 1);
Point pointIndex = controlPoints.get (index);
Point pointPost = controlPoints.get (index + 1);
boolean changeX = true;
boolean changeY = true;
if (index <= 1) {
Point pointFirst = controlPoints.get (0);
if (pointFirst.x == pointIndex.x)
changeX = false;
if (pointFirst.y == pointIndex.y)
changeY = false;
}
if (index >= last - 1) {
Point pointLast = controlPoints.get (last);
if (pointLast.x == pointIndex.x)
changeX = false;
if (pointLast.y == pointIndex.y)
changeY = false;
}
Point newPointPre = new Point (pointPre);
Point newPointIndex = new Point (pointIndex);
Point newPointPost = new Point (pointPost);
if (changeX) {
final int x = suggestedLocation.x;
if (pointPre.x == pointIndex.x)
newPointPre.x = x;
newPointIndex.x = x;
if (pointPost.x == pointIndex.x)
newPointPost.x = x;
}
if (changeY) {
final int y = suggestedLocation.y;
if (pointPre.y == pointIndex.y)
newPointPre.y = y;
newPointIndex.y = y;
if (pointPost.y == pointIndex.y)
newPointPost.y = y;
}
ArrayList list = new ArrayList (controlPoints);
list.set (index - 1, newPointPre);
list.set (index, newPointIndex);
list.set (index + 1, newPointPost);
return list;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy