svg event mapping

The following table displays all the events which exists in SVG 1.1 (events are grouped in three categories: animation, graphical and document). For each type of event, the table displays the name of the native GWT event class if one exists, or the name of the lib-gwt-svg event class which extends the GWT event model. Three types of event are currently not supported (SVGUnload, SVGAbort and SVGError)

SVG event Category GWT event vectomatic GWT event
focusin graphical org.vectomatic.dom.svg.events.FocusInEvent
focusout graphical org.vectomatic.dom.svg.events.FocusOutEvent
activate graphical org.vectomatic.dom.svg.events.ActivateEvent
click graphical com.google.gwt.event.dom.client.ClickEvent
mousedown graphical com.google.gwt.event.dom.client.MouseDownEvent
mouseup graphical com.google.gwt.event.dom.client.MouseUpEvent
mouseover graphical com.google.gwt.event.dom.client.MouseOverEvent
mousemove graphical com.google.gwt.event.dom.client.MouseMoveEvent
mouseout graphical com.google.gwt.event.dom.client.MouseOutEvent
SVGLoad graphical, animation com.google.gwt.event.dom.client.LoadEvent
SVGUnload document N/A
SVGAbort document N/A
SVGError document N/A
SVGResize document com.google.gwt.event.logical.shared.ResizeEvent
SVGScroll document com.google.gwt.event.dom.client.ScrollEvent
SVGZoom document org.vectomatic.dom.svg.events.SVGZoomEvent
beginEvent animation org.vectomatic.dom.svg.events.BeginEvent
endEvent animation org.vectomatic.dom.svg.events.EndEvent
repeatEvent animation org.vectomatic.dom.svg.events.RepeatEvent