Package net.xoetrope.optional.svg.tinyline

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


  /**
   *  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

  /**
   * 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

   * 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

Related Classes of net.xoetrope.optional.svg.tinyline.SVGEvent

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.