Package org.apache.batik.dom.svg
Interface SVGSVGContext
- All Superinterfaces:
SVGContext
- All Known Implementing Classes:
SVGSVGElementBridge
Context class for svg:svg elements.
Eventually this interface will likely have a number of other
methods but for now it will have methods to do intersection
and enclosure checking.
-
Field Summary
Fields inherited from interface org.apache.batik.dom.svg.SVGContext
PERCENTAGE_FONT_SIZE, PERCENTAGE_VIEWPORT_HEIGHT, PERCENTAGE_VIEWPORT_SIZE, PERCENTAGE_VIEWPORT_WIDTH
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether animations are currently paused.boolean
checkEnclosure
(Element element, org.w3c.dom.svg.SVGRect rect) Returns true if the given DOM element is enclosed in thesvgRect
.boolean
checkIntersection
(Element element, org.w3c.dom.svg.SVGRect rect) Returns true if the given DOM element intersectssvgRect
.void
Used to inform the user agent that the text selection should be cleared.void
Forces an immediate redraw of the canvas.float
Returns the current document time.getEnclosureList
(org.w3c.dom.svg.SVGRect rect, Element end) Returns a List of all the DOM elements that are encosed insvgRect
that are belowend
in the rendering order.getIntersectionList
(org.w3c.dom.svg.SVGRect svgRect, Element end) Returns a List of all the DOM elements that intersectsvgRect
that are belowend
in the rendering order.void
Pauses animations in the document.void
setCurrentTime
(float t) Sets the current document time.int
suspendRedraw
(int max_wait_milliseconds) Suspends redrawing of the canvas for the given number of milliseconds.void
Unpauses animations in the document.boolean
unsuspendRedraw
(int suspend_handle_id) Unsuspends redrawing of the canvas.void
Unsuspends redrawing of the canvas.Methods inherited from interface org.apache.batik.dom.svg.SVGContext
getBBox, getCTM, getFontSize, getGlobalTransform, getPixelToMM, getPixelUnitToMillimeter, getScreenTransform, getViewportHeight, getViewportWidth, setScreenTransform
-
Method Details
-
getIntersectionList
Returns a List of all the DOM elements that intersectsvgRect
that are belowend
in the rendering order. -
getEnclosureList
Returns a List of all the DOM elements that are encosed insvgRect
that are belowend
in the rendering order. -
checkIntersection
Returns true if the given DOM element intersectssvgRect
. -
checkEnclosure
Returns true if the given DOM element is enclosed in thesvgRect
. -
deselectAll
void deselectAll()Used to inform the user agent that the text selection should be cleared. -
suspendRedraw
int suspendRedraw(int max_wait_milliseconds) Suspends redrawing of the canvas for the given number of milliseconds. -
unsuspendRedraw
boolean unsuspendRedraw(int suspend_handle_id) Unsuspends redrawing of the canvas. -
unsuspendRedrawAll
void unsuspendRedrawAll()Unsuspends redrawing of the canvas. -
forceRedraw
void forceRedraw()Forces an immediate redraw of the canvas. -
pauseAnimations
void pauseAnimations()Pauses animations in the document. -
unpauseAnimations
void unpauseAnimations()Unpauses animations in the document. -
animationsPaused
boolean animationsPaused()Returns whether animations are currently paused. -
getCurrentTime
float getCurrentTime()Returns the current document time. -
setCurrentTime
void setCurrentTime(float t) Sets the current document time.
-