Search in sources :

Example 1 with IMapZone

use of org.talend.designer.abstractmap.ui.visualmap.zone.IMapZone in project tdi-studio-se by Talend.

the class Link method draw.

public void draw(GC gc, Rectangle boundsOfDrawing) {
    StyleLinkFactory drawableLinkFactory = mapperManager.getUiManager().getStyleLinkFactory();
    IStyleLink styleLink = drawableLinkFactory.getStyleLink(this);
    IDrawableLink drawableLink = styleLink.getDrawableLink();
    if (drawableLink == null) {
        throw new NullPointerException();
    }
    IMapZone zone1 = pointLinkDescriptor1.getZone();
    IMapZone zone2 = pointLinkDescriptor2.getZone();
    int yOffsetPoint1 = uiManager.getVerticalScrolledOffsetBar((Zone) zone1);
    int yOffsetPoint2 = uiManager.getVerticalScrolledOffsetBar((Zone) zone2);
    boolean leftSidePosition = ((zone1 == Zone.INPUTS || zone1 == Zone.OUTPUTS) && zone1 == zone2);
    int point1xForTraceLink = point1.x + (leftSidePosition ? 0 : widthTable1 - 4);
    int point2xForTraceLink = point2.x + (leftSidePosition ? 0 : 0);
    int point1yOffset = point1.y + yOffsetPoint1;
    int point2yOffset = point2.y + yOffsetPoint2;
    drawableLink.setPoint1(new Point(point1xForTraceLink, point1yOffset));
    drawableLink.setPoint2(new Point(point2xForTraceLink, point2yOffset));
    drawableLink.setBoundsOfCalculate(boundsOfDrawing);
    Rectangle boundsOfSolidLine = new Rectangle(boundsOfDrawing.x, boundsOfDrawing.y, boundsOfDrawing.width, boundsOfDrawing.height);
    boundsOfSolidLine.y = boundsOfDrawing.y + MapperUI.OFFSET_VISIBLES_POINTS;
    boundsOfSolidLine.height = boundsOfDrawing.height - 2 * MapperUI.OFFSET_VISIBLES_POINTS;
    drawableLink.getStyle().apply(gc);
    if (!boundsOfSolidLine.contains(new Point(point1xForTraceLink, point1yOffset)) || !boundsOfSolidLine.contains(new Point(point2xForTraceLink, point2yOffset))) {
        // gc.setLineDash(new int[] { 1, spaceBetweenPoints, 1 });
        gc.setLineStyle(SWT.LINE_DOT);
    // gc.setLineStyle(SWT.LINE_CUSTOM);
    // System.out.println("SWT.LINE_DOT");
    } else {
        gc.setLineStyle(SWT.LINE_SOLID);
    // System.out.println("SWT.LINE_SOLID");
    }
    if (this.level != null) {
        drawableLink.setConnectorWidth(this.level * 5);
    }
    drawableLink.draw(gc);
}
Also used : IStyleLink(org.talend.commons.ui.swt.drawing.link.IStyleLink) Rectangle(org.eclipse.swt.graphics.Rectangle) IDrawableLink(org.talend.commons.ui.swt.drawing.link.IDrawableLink) Point(org.eclipse.swt.graphics.Point) Point(org.eclipse.swt.graphics.Point) IMapZone(org.talend.designer.abstractmap.ui.visualmap.zone.IMapZone)

Example 2 with IMapZone

use of org.talend.designer.abstractmap.ui.visualmap.zone.IMapZone in project tdi-studio-se by Talend.

the class Link method draw.

public void draw(GC gc, Rectangle boundsOfDrawing) {
    StyleLinkFactory drawableLinkFactory = mapperManager.getUiManager().getStyleLinkFactory();
    IStyleLink styleLink = drawableLinkFactory.getStyleLink(this);
    IDrawableLink drawableLink = styleLink.getDrawableLink();
    if (drawableLink == null) {
        throw new NullPointerException();
    }
    IMapZone zone1 = pointLinkDescriptor1.getZone();
    IMapZone zone2 = pointLinkDescriptor2.getZone();
    int yOffsetPoint1 = uiManager.getVerticalScrolledOffsetBar((Zone) zone1);
    int yOffsetPoint2 = uiManager.getVerticalScrolledOffsetBar((Zone) zone2);
    boolean leftSidePosition = ((zone1 == Zone.INPUTS || zone1 == Zone.VARS) && zone1 == zone2);
    int point1xForTraceLink = point1.x + (leftSidePosition ? 0 : widthTable1 - 4);
    int point2xForTraceLink = point2.x + (leftSidePosition ? 0 : 0);
    int point1yOffset = point1.y + yOffsetPoint1;
    int point2yOffset = point2.y + yOffsetPoint2;
    // feature 11742
    final int yOffsetConstant = 5;
    if (point1yOffset < -yOffsetConstant) {
        point1yOffset = -yOffsetConstant;
    }
    if (point2yOffset < -yOffsetConstant) {
        point2yOffset = -yOffsetConstant;
    }
    drawableLink.setPoint1(new Point(point1xForTraceLink, point1yOffset));
    drawableLink.setPoint2(new Point(point2xForTraceLink, point2yOffset));
    drawableLink.setBoundsOfCalculate(boundsOfDrawing);
    Rectangle boundsOfSolidLine = new Rectangle(boundsOfDrawing.x, boundsOfDrawing.y, boundsOfDrawing.width, boundsOfDrawing.height);
    boundsOfSolidLine.y = boundsOfDrawing.y + MapperUI.OFFSET_VISIBLES_POINTS;
    boundsOfSolidLine.height = boundsOfDrawing.height - 2 * MapperUI.OFFSET_VISIBLES_POINTS;
    drawableLink.getStyle().apply(gc);
    if (!boundsOfSolidLine.contains(new Point(point1xForTraceLink, point1yOffset)) || !boundsOfSolidLine.contains(new Point(point2xForTraceLink, point2yOffset))) {
        // gc.setLineDash(new int[] { 1, spaceBetweenPoints, 1 });
        gc.setLineStyle(SWT.LINE_DOT);
    // gc.setLineStyle(SWT.LINE_CUSTOM);
    // System.out.println("SWT.LINE_DOT");
    } else {
        gc.setLineStyle(SWT.LINE_SOLID);
    // System.out.println("SWT.LINE_SOLID");
    }
    if (this.level != null) {
        drawableLink.setConnectorWidth(this.level * 5);
    }
    drawableLink.draw(gc);
}
Also used : IStyleLink(org.talend.commons.ui.swt.drawing.link.IStyleLink) Rectangle(org.eclipse.swt.graphics.Rectangle) IDrawableLink(org.talend.commons.ui.swt.drawing.link.IDrawableLink) Point(org.eclipse.swt.graphics.Point) Point(org.eclipse.swt.graphics.Point) IMapZone(org.talend.designer.abstractmap.ui.visualmap.zone.IMapZone)

Aggregations

Point (org.eclipse.swt.graphics.Point)2 Rectangle (org.eclipse.swt.graphics.Rectangle)2 IDrawableLink (org.talend.commons.ui.swt.drawing.link.IDrawableLink)2 IStyleLink (org.talend.commons.ui.swt.drawing.link.IStyleLink)2 IMapZone (org.talend.designer.abstractmap.ui.visualmap.zone.IMapZone)2