jlibs.nblr.editor.Util Maven / Gradle / Ivy
/**
* Copyright 2015 Santhosh Kumar Tekuri
*
* The JLibs authors license 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 jlibs.nblr.editor;
import jlibs.core.lang.NotImplementedException;
import jlibs.core.util.CollectionUtil;
import jlibs.nblr.rules.Edge;
import jlibs.nblr.rules.Node;
import org.netbeans.api.visual.layout.LayoutFactory;
import org.netbeans.api.visual.model.ObjectScene;
import org.netbeans.api.visual.widget.ConnectionWidget;
import org.netbeans.api.visual.widget.Widget;
import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
/**
* @author Santhosh Kumar T
*/
public class Util{
public static Font FIXED_WIDTH_FONT = new Font("Monospaced", Font.BOLD, 16);
public static Stroke STROKE_2 = new BasicStroke(2);
public static JToolBar toolbar(Action... actions){
JToolBar toolbar = new JToolBar(JToolBar.HORIZONTAL);
toolbar.setFloatable(false);
for(Action action: actions){
if(action==null)
toolbar.addSeparator();
else{
action.putValue(Action.SHORT_DESCRIPTION, action.getValue(Action.NAME));
toolbar.add(action);
}
}
return toolbar;
}
public static java.util.List points(Point... points){
ArrayList list = new ArrayList();
CollectionUtil.addAll(list, points);
return list;
}
public static Point point(Rectangle rect, double widthInPercentage, double heightInPercentage){
return new Point(rect.x+(int)(rect.width*widthInPercentage), rect.y+(int)(rect.height*heightInPercentage));
}
public static Point rightCenter(Rectangle rect){
return point(rect, 1, 0.5);
}
public static Point leftCenter(Rectangle rect){
return point(rect, 0, 0.5);
}
public static Point topCenter(Rectangle rect){
return point(rect, 0.5, 0);
}
public static Point bottomCenter(Rectangle rect){
return point(rect, 0.5, 1);
}
public static Point point(Point pt, int dx, int dy){
return new Point(pt.x+dx, pt.y+dy);
}
public static int dist(Point p1, Point p2){
if(p1.x==p2.x) // horizontal line
return Math.abs(p1.y-p2.y);
else if(p1.y==p2.y) // vertical line
return Math.abs(p1.x-p2.x);
else
throw new NotImplementedException();
}
public static int dist(java.util.List points, int labelSegment){
int dist = 0;
for(int segment=0; segment route(ConnectionWidget connection, int labelSegment, Point... points){
java.util.List pointsList = points(points);
Widget label = connection.getChildren().get(0);
connection.removeConstraint(label);
connection.setConstraint(label, LayoutFactory.ConnectionWidgetLayoutAlignment.TOP_CENTER, dist(pointsList, labelSegment));
return pointsList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy