Examples of VerticalCenterAnchor


Examples of org.dyno.visual.swing.widgets.grouplayout.anchor.VerticalCenterAnchor

    int targeti = targetx + indent;
    int miny = Math.min(thisy, targety) - ANCHOR_EXT;
    int maxb = Math.max(thisb, targetb) + ANCHOR_EXT;
    if (Math.abs(tm - sm) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
      Quartet trio = new Quartet(tm, 2 * tm - sp.x - todrop.getWidth(), miny, maxb, new VerticalCenterAnchor(target));
      list.add(trio);
      return list;
    } else if (Math.abs(dx - targetx) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
      Quartet trio = new Quartet(targetx, targetx, miny, maxb, new VerticalLeftAlignAnchor(target));
View Full Code Here

Examples of org.dyno.visual.swing.widgets.grouplayout.anchor.VerticalCenterAnchor

    int targetr = targetx + target.getWidth();
    int miny = Math.min(thisy, targety) - ANCHOR_EXT;
    int maxb = Math.max(thisb, targetb) + ANCHOR_EXT;
    if (Math.abs(tm - sm) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
      Quartet trio = new Quartet(tm, 2 * tm - sp.x, miny, maxb, new VerticalCenterAnchor(target));
      list.add(trio);
      return list;
    } else if (Math.abs(drx - targetr) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
      Quartet trio = new Quartet(targetr, targetr, miny, maxb, new VerticalRightAlignAnchor(target));
View Full Code Here

Examples of org.dyno.visual.swing.widgets.grouplayout.anchor.VerticalCenterAnchor

    int targeti = targetx + indent;
    int miny = Math.min(thisy, targety) - ANCHOR_EXT;
    int maxb = Math.max(thisb, targetb) + ANCHOR_EXT;
    if (Math.abs(tm - sm) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
      Anchor a = new VerticalCenterAnchor(target);
      Quartet trio = new Quartet(tm, tm - todrop.getWidth() / 2 + dropAdapter.getHotspotPoint().x, miny, maxb, a);
      list.add(trio);
      return list;
    } else if (Math.abs(dx - targetx) < THRESHOLD_DISTANCE) {
      List<Quartet> list = new ArrayList<Quartet>();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.