Examples of SVGEvent


Examples of net.xoetrope.optional.svg.tinyline.SVGEvent

   * Loads and dispalys an SVG document from the given URL.
   * External hyperlinks handling
   */
  synchronized public void goURL(String url)
  {
    SVGEvent event = new SVGEvent(SVGEvent.EVENT_LOAD,url);
    postEvent(event);
  }
View Full Code Here

Examples of net.xoetrope.optional.svg.tinyline.SVGEvent

  /**
   *  Returns the current SVGT document to its original view.
   */
  public void origView()
  {
    SVGEvent  event = new SVGEvent(SVGEvent.EVENT_ORIGVIEW, null);
    postEvent(event);
  }
View Full Code Here

Examples of net.xoetrope.optional.svg.tinyline.SVGEvent

  /**
   * Switches the rendering quality of this <tt>SVGPlayer</tt> .
   */
  public void switchQuality()
  {
    SVGEvent event = new SVGEvent(SVGEvent.EVENT_QUALITY, null );
    postEvent(event);
  }
View Full Code Here

Examples of net.xoetrope.optional.svg.tinyline.SVGEvent

   * Suspends or unsuspends all animations that are defined
   * within the current SVGT document fragment.
   */
  public void pauseResumeAnimations()
  {
    SVGEvent event = new SVGEvent(SVGEvent.EVENT_PAUSERESUME, null );
    postEvent(event);
  }
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.