All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental.svg.SVGSVGElement Maven / Gradle / Ivy

Go to download

Everything needed to run a comprehensive dev environment. Just type X_ and pick a service from autocomplete; new dev modules will be added as they are built. The only dev service not included in the uber jar is xapi-dev-maven, as it includes all runtime dependencies of maven, adding ~4 seconds to build time, and 6 megabytes to the final output jar size (without xapi-dev-maven, it's ~1MB).

The newest version!
/*
 * Copyright 2012 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package elemental.svg;
import elemental.dom.Element;
import elemental.dom.NodeList;

import elemental.events.*;
import elemental.util.*;
import elemental.dom.*;
import elemental.html.*;
import elemental.css.*;
import elemental.stylesheets.*;

import java.util.Date;

/**
  * The SVGSVGElement interface provides access to the properties of <svg>
 elements, as well as methods to manipulate them. This interface contains also various miscellaneous commonly-used utility methods, such as matrix operations and the ability to control the time of redraw on visual rendering devices.
  */
public interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan {


  /**
    * Corresponds to attribute 
contentScriptType on the given <svg>
 element.
    */
  String getContentScriptType();

  void setContentScriptType(String arg);


  /**
    * Corresponds to attribute 
contentStyleType on the given <svg>
 element.
    */
  String getContentStyleType();

  void setContentStyleType(String arg);


  /**
    * On an outermost <svg>
 element, this attribute indicates the current scale factor relative to the initial view to take into account user magnification and panning operations. DOM attributes currentScale and currentTranslate are equivalent to the 2x3 matrix [a b c d e f] = [currentScale 0 0 currentScale currentTranslate.x currentTranslate.y]. If "magnification" is enabled (i.e., zoomAndPan="magnify"), then the effect is as if an extra transformation were placed at the outermost level on the SVG document fragment (i.e., outside the outermost <svg>
 element).
    */
  float getCurrentScale();

  void setCurrentScale(float arg);


  /**
    * On an outermost <svg>
 element, the corresponding translation factor that takes into account user "magnification".
    */
  SVGPoint getCurrentTranslate();


  /**
    * The definition of the initial view (i.e., before magnification and panning) of the current innermost SVG document fragment. The meaning depends on the situation:
*/ SVGViewSpec getCurrentView(); /** * Corresponds to attribute height on the given <svg> element. */ SVGAnimatedLength getAnimatedHeight(); /** * Size of a pixel units (as defined by CSS2) along the x-axis of the viewport, which represents a unit somewhere in the range of 70dpi to 120dpi, and, on systems that support this, might actually match the characteristics of the target medium. On systems where it is impossible to know the size of a pixel, a suitable default pixel size is provided. */ float getPixelUnitToMillimeterX(); /** * Corresponding size of a pixel unit along the y-axis of the viewport. */ float getPixelUnitToMillimeterY(); /** * User interface (UI) events in DOM Level 2 indicate the screen positions at which the given UI event occurred. When the browser actually knows the physical size of a "screen unit", this attribute will express that information; otherwise, user agents will provide a suitable default value such as .28mm. */ float getScreenPixelToMillimeterX(); /** * Corresponding size of a screen pixel along the y-axis of the viewport. */ float getScreenPixelToMillimeterY(); /** * The initial view (i.e., before magnification and panning) of the current innermost SVG document fragment can be either the "standard" view (i.e., based on attributes on the <svg> element such as viewBox) or to a "custom" view (i.e., a hyperlink into a particular <view> or other element). If the initial view is the "standard" view, then this attribute is false. If the initial view is a "custom" view, then this attribute is true. */ boolean isUseCurrentView(); /** * The position and size of the viewport (implicit or explicit) that corresponds to this <svg> element. When the browser is actually rendering the content, then the position and size values represent the actual values when rendering. The position and size values are unitless values in the coordinate system of the parent element. If no parent element exists (i.e., <svg> element represents the root of the document tree), if this SVG document is embedded as part of another document (e.g., via the HTML <object> element), then the position and size are unitless values in the coordinate system of the parent document. (If the parent uses CSS or XSL layout, then unitless values represent pixel units for the current CSS or XSL viewport.) */ SVGRect getViewport(); /** * Corresponds to attribute width on the given <svg> element. */ SVGAnimatedLength getAnimatedWidth(); SVGAnimatedLength getX(); SVGAnimatedLength getY(); /** * Returns true if this SVG document fragment is in a paused state. */ boolean animationsPaused(); /** * Returns true if the rendered content of the given element is entirely contained within the supplied rectangle. Each candidate graphics element is to be considered a match only if the same graphics element can be a target of pointer events as defined in pointer-events processing. */ boolean checkEnclosure(SVGElement element, SVGRect rect); /** * Returns true if the rendered content of the given element intersects the supplied rectangle. Each candidate graphics element is to be considered a match only if the same graphics element can be a target of pointer events as defined in pointer-events processing. */ boolean checkIntersection(SVGElement element, SVGRect rect); /** * Creates an SVGAngle object outside of any document trees. The object is initialized to a value of zero degrees (unitless). */ SVGAngle createSVGAngle(); /** * Creates an SVGLength object outside of any document trees. The object is initialized to a value of zero user units. */ SVGLength createSVGLength(); /** * Creates an SVGMatrix object outside of any document trees. The object is initialized to the identity matrix. */ SVGMatrix createSVGMatrix(); /** * Creates an SVGNumber object outside of any document trees. The object is initialized to a value of zero. */ SVGNumber createSVGNumber(); /** * Creates an SVGPoint object outside of any document trees. The object is initialized to the point (0,0) in the user coordinate system. */ SVGPoint createSVGPoint(); /** * Creates an SVGRect object outside of any document trees. The object is initialized such that all values are set to 0 user units. */ SVGRect createSVGRect(); /** * Creates an SVGTransform object outside of any document trees. The object is initialized to an identity matrix transform (SVG_TRANSFORM_MATRIX). */ SVGTransform createSVGTransform(); /** * Creates an SVGTransform object outside of any document trees. The object is initialized to the given matrix transform (i.e., SVG_TRANSFORM_MATRIX). The values from the parameter matrix are copied, the matrix parameter is not adopted as SVGTransform::matrix. */ SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); /** * Unselects any selected objects, including any selections of text strings and type-in bars. */ void deselectAll(); /** * In rendering environments supporting interactivity, forces the user agent to immediately redraw all regions of the viewport that require updating. */ void forceRedraw(); /** * Returns the current time in seconds relative to the start time for the current SVG document fragment. If getCurrentTime is called before the document timeline has begun (for example, by script running in a <script> element before the document's SVGLoad event is dispatched), then 0 is returned. */ float getCurrentTime(); /** * Searches this SVG document fragment (i.e., the search is restricted to a subset of the document tree) for an Element whose id is given by elementId. If an Element is found, that Element is returned. If no such element exists, returns null. Behavior is not defined if more than one element has this id. */ Element getElementById(String elementId); /** * Returns the list of graphics elements whose rendered content is entirely contained within the supplied rectangle. Each candidate graphics element is to be considered a match only if the same graphics element can be a target of pointer events as defined in pointer-events processing. */ NodeList getEnclosureList(SVGRect rect, SVGElement referenceElement); /** * Returns the list of graphics elements whose rendered content intersects the supplied rectangle. Each candidate graphics element is to be considered a match only if the same graphics element can be a target of pointer events as defined in pointer-events processing. */ NodeList getIntersectionList(SVGRect rect, SVGElement referenceElement); /** * Suspends (i.e., pauses) all currently running animations that are defined within the SVG document fragment corresponding to this <svg> element, causing the animation clock corresponding to this document fragment to stand still until it is unpaused. */ void pauseAnimations(); /** * Adjusts the clock for this SVG document fragment, establishing a new current time. If setCurrentTime is called before the document timeline has begun (for example, by script running in a <script> element before the document's SVGLoad event is dispatched), then the value of seconds in the last invocation of the method gives the time that the document will seek to once the document timeline has begun. */ void setCurrentTime(float seconds); /** *

Takes a time-out value which indicates that redraw shall not occur until:

  1. the corresponding unsuspendRedraw() call has been made,
  2. an unsuspendRedrawAll() call has been made, or
  3. its timer has timed out.

In environments that do not support interactivity (e.g., print media), then redraw shall not be suspended. Calls to suspendRedraw() and unsuspendRedraw() should, but need not be, made in balanced pairs.

To suspend redraw actions as a collection of SVG DOM changes occur, precede the changes to the SVG DOM with a method call similar to:

suspendHandleID = suspendRedraw(maxWaitMilliseconds);

and follow the changes with a method call similar to:

unsuspendRedraw(suspendHandleID);

Note that multiple suspendRedraw calls can be used at once and that each such method call is treated independently of the other suspendRedraw method calls.

*/ int suspendRedraw(int maxWaitMilliseconds); /** * Unsuspends (i.e., unpauses) currently running animations that are defined within the SVG document fragment, causing the animation clock to continue from the time at which it was suspended. */ void unpauseAnimations(); /** * Cancels a specified suspendRedraw() by providing a unique suspend handle ID that was returned by a previous suspendRedraw() call. */ void unsuspendRedraw(int suspendHandleId); /** * Cancels all currently active suspendRedraw() method calls. This method is most useful at the very end of a set of SVG DOM calls to ensure that all pending suspendRedraw() method calls have been cancelled. */ void unsuspendRedrawAll(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy