Package org.dyno.visual.swing.designer

Examples of org.dyno.visual.swing.designer.GlassPlane


    } else
      return null;
  }

  public void setMascotLocation(Point p) {
    GlassPlane glassPlane = getGlass();
    if (glassPlane != null) {
      glassPlane.setHotspotPoint(convertToGlobal(p));
    }
  }
View Full Code Here


      glassPlane.setHotspotPoint(convertToGlobal(p));
    }
  }

  public Point getMascotLocation() {
    GlassPlane glassPlane = getGlass();
    Point p = glassPlane.getHotspotPoint();
    if (glassPlane != null && p != null) {
      return convertToLocal(glassPlane.getHotspotPoint());
    } else {
      return null;
    }
  }
View Full Code Here

  }

  private static List<WidgetAdapter> EMPTY_LIST = new ArrayList<WidgetAdapter>(0);

  protected Point getGlassHotspot() {
    GlassPlane glassPlane = getGlass();
    if (glassPlane != null)
      return glassPlane.getHotspotPoint();
    else
      return null;
  }
View Full Code Here

    if (designer != null)
      designer.clearSelection();
  }

  public int getState() {
    GlassPlane glass = getGlass();
    if (glass != null)
      return glass.getState();
    else
      return 0;
  }
View Full Code Here

TOP

Related Classes of org.dyno.visual.swing.designer.GlassPlane

Copyright © 2018 www.massapicom. 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.