View Javadoc

1   /**********************************************
2    * Copyright (C) 2010-2011 Lukas Laag
3    * This file is part of lib-gwt-svg.
4    * 
5    * libgwtsvg is free software: you can redistribute it and/or modify
6    * it under the terms of the GNU Lesser General Public License as published by
7    * the Free Software Foundation, either version 3 of the License, or
8    * (at your option) any later version.
9    * 
10   * libgwtsvg is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU Lesser General Public License for more details.
14   * 
15   * You should have received a copy of the GNU Lesser General Public License
16   * along with libgwtsvg.  If not, see http://www.gnu.org/licenses/
17   **********************************************/
18  /*
19   * Copyright (c) 2004 World Wide Web Consortium,
20   *
21   * (Massachusetts Institute of Technology, European Research Consortium for
22   * Informatics and Mathematics, Keio University). All Rights Reserved. This
23   * work is distributed under the W3C(r) Software License [1] in the hope that
24   * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
25   * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
26   *
27   * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
28   */
29  
30  package org.vectomatic.dom.svg;
31  
32  import org.vectomatic.dom.svg.events.ActivateEvent;
33  import org.vectomatic.dom.svg.events.ActivateHandler;
34  import org.vectomatic.dom.svg.events.FocusInEvent;
35  import org.vectomatic.dom.svg.events.FocusInHandler;
36  import org.vectomatic.dom.svg.events.FocusOutEvent;
37  import org.vectomatic.dom.svg.events.FocusOutHandler;
38  import org.vectomatic.dom.svg.events.HasGraphicalHandlers;
39  import org.vectomatic.dom.svg.impl.SVGAElement;
40  import org.vectomatic.dom.svg.impl.SVGElement;
41  import org.vectomatic.dom.svg.itf.ISVGContainerElement;
42  import org.vectomatic.dom.svg.itf.ISVGExternalResourcesRequired;
43  import org.vectomatic.dom.svg.itf.ISVGLangSpace;
44  import org.vectomatic.dom.svg.itf.ISVGStylable;
45  import org.vectomatic.dom.svg.itf.ISVGTests;
46  import org.vectomatic.dom.svg.itf.ISVGTransformable;
47  import org.vectomatic.dom.svg.itf.ISVGURIReference;
48  import org.vectomatic.dom.svg.utils.DOMHelper;
49  import org.vectomatic.dom.svg.utils.SVGConstants;
50  
51  import com.google.gwt.core.client.JavaScriptException;
52  import com.google.gwt.dom.client.TagName;
53  import com.google.gwt.event.dom.client.ClickEvent;
54  import com.google.gwt.event.dom.client.ClickHandler;
55  import com.google.gwt.event.dom.client.DragEndEvent;
56  import com.google.gwt.event.dom.client.DragEndHandler;
57  import com.google.gwt.event.dom.client.DragEnterEvent;
58  import com.google.gwt.event.dom.client.DragEnterHandler;
59  import com.google.gwt.event.dom.client.DragEvent;
60  import com.google.gwt.event.dom.client.DragHandler;
61  import com.google.gwt.event.dom.client.DragLeaveEvent;
62  import com.google.gwt.event.dom.client.DragLeaveHandler;
63  import com.google.gwt.event.dom.client.DragOverEvent;
64  import com.google.gwt.event.dom.client.DragOverHandler;
65  import com.google.gwt.event.dom.client.DragStartEvent;
66  import com.google.gwt.event.dom.client.DragStartHandler;
67  import com.google.gwt.event.dom.client.DropEvent;
68  import com.google.gwt.event.dom.client.DropHandler;
69  import com.google.gwt.event.dom.client.LoadEvent;
70  import com.google.gwt.event.dom.client.LoadHandler;
71  import com.google.gwt.event.dom.client.MouseDownEvent;
72  import com.google.gwt.event.dom.client.MouseDownHandler;
73  import com.google.gwt.event.dom.client.MouseMoveEvent;
74  import com.google.gwt.event.dom.client.MouseMoveHandler;
75  import com.google.gwt.event.dom.client.MouseOutEvent;
76  import com.google.gwt.event.dom.client.MouseOutHandler;
77  import com.google.gwt.event.dom.client.MouseOverEvent;
78  import com.google.gwt.event.dom.client.MouseOverHandler;
79  import com.google.gwt.event.dom.client.MouseUpEvent;
80  import com.google.gwt.event.dom.client.MouseUpHandler;
81  import com.google.gwt.event.dom.client.TouchCancelEvent;
82  import com.google.gwt.event.dom.client.TouchCancelHandler;
83  import com.google.gwt.event.dom.client.TouchEndEvent;
84  import com.google.gwt.event.dom.client.TouchEndHandler;
85  import com.google.gwt.event.dom.client.TouchMoveEvent;
86  import com.google.gwt.event.dom.client.TouchMoveHandler;
87  import com.google.gwt.event.dom.client.TouchStartEvent;
88  import com.google.gwt.event.dom.client.TouchStartHandler;
89  import com.google.gwt.event.shared.HandlerRegistration;
90  
91  /**
92   * The {@link org.vectomatic.dom.svg.OMSVGAElement} interface corresponds
93   * to the <a href='http://www.w3.org/TR/SVG11/linking.html#AElement' title='a
94   * element specification'>a</a> element.
95   */
96  @TagName("a")
97  public class OMSVGAElement extends OMSVGElement implements HasGraphicalHandlers, ISVGURIReference, ISVGTests, ISVGLangSpace, ISVGExternalResourcesRequired, ISVGStylable, ISVGTransformable, ISVGContainerElement {
98    public OMSVGAElement() {
99      this((SVGAElement)DOMHelper.createElementNS(DOMHelper.getCurrentDocument(), SVGConstants.SVG_NAMESPACE_URI, SVGConstants.SVG_A_TAG).cast());
100   }
101 
102   protected OMSVGAElement(SVGAElement ot) {
103     super(ot);
104   }
105 
106   // Implementation of the svg::SVGAElement W3C IDL interface
107   /**
108    * Corresponds to attribute {@link org.vectomatic.dom.svg.OMSVGAElement#getTarget()}
109    * on the given <a href='http://www.w3.org/TR/SVG11/linking.html#AElement'
110    * title='a element specification'>a</a> element.
111    */
112   public final OMSVGAnimatedString getTarget() {
113     return ((SVGAElement)ot).getTarget();
114   }
115 
116   // Implementation of the svg::SVGExternalResourcesRequired W3C IDL interface
117   /**
118    * Corresponds to attribute {@link org.vectomatic.dom.svg.itf.ISVGExternalResourcesRequired#getExternalResourcesRequired()}
119    * on the given element. Note that the SVG DOM defines the attribute {@link
120    * org.vectomatic.dom.svg.itf.ISVGExternalResourcesRequired#getExternalResourcesRequired()}
121    * as being of type {@link org.vectomatic.dom.svg.OMSVGAnimatedBoolean}, whereas
122    * the SVG language definition says that {@link org.vectomatic.dom.svg.itf.ISVGExternalResourcesRequired#getExternalResourcesRequired()}
123    * is not animated. Because the SVG language definition states that {@link
124    * org.vectomatic.dom.svg.itf.ISVGExternalResourcesRequired#getExternalResourcesRequired()}
125    * cannot be animated, the {@link org.vectomatic.dom.svg.OMSVGAnimatedBoolean#getAnimVal()}
126    * will always be the same as the {@link org.vectomatic.dom.svg.OMSVGAnimatedBoolean#getBaseVal()}.
127    */
128   public final OMSVGAnimatedBoolean getExternalResourcesRequired() {
129     return ((SVGAElement)ot).getExternalResourcesRequired();
130   }
131 
132   // Implementation of the svg::SVGLangSpace W3C IDL interface
133   /**
134    * Corresponds to attribute <code>xml:lang</code> on the given element.
135    */
136   public final String getXmllang() {
137     return ((SVGAElement)ot).getXmllang();
138   }
139   /**
140    * Corresponds to attribute <code>xml:lang</code> on the given element.
141    * @throws DOMException(NO_MODIFICATION_ALLOWED_ERR) Raised on an   attempt
142    * to change the value of a <a href="svgdom.html#ReadOnlyNodes">read only
143    * attribute</a>.
144    */
145   public final void setXmllang(java.lang.String value) throws JavaScriptException {
146     ((SVGAElement)ot).setXmllang(value);
147   }
148   /**
149    * Corresponds to attribute <code>xml:space</code> on the given element.
150    */
151   public final String getXmlspace() {
152     return ((SVGAElement)ot).getXmlspace();
153   }
154   /**
155    * Corresponds to attribute <code>xml:space</code> on the given element.
156    * @throws DOMException(NO_MODIFICATION_ALLOWED_ERR) Raised on an   attempt
157    * to change the value of a <a href="svgdom.html#ReadOnlyNodes">read only
158    * attribute</a>.
159    */
160   public final void setXmlspace(java.lang.String value) throws JavaScriptException {
161     ((SVGAElement)ot).setXmlspace(value);
162   }
163 
164   // Implementation of the svg::SVGLocatable W3C IDL interface
165   /**
166    * The element which established the current viewport. Often, the nearest
167    * ancestor <a href='http://www.w3.org/TR/SVG11/struct.html#SVGElement' title='svg
168    * element specification'>svg</a> element. Null if the current element is
169    * the outermost <a href='http://www.w3.org/TR/SVG11/struct.html#SVGElement'
170    * title='svg element specification'>svg</a> element.
171    */
172   public final OMSVGElement getNearestViewportElement() {
173     SVGElement elt = ((SVGAElement)ot).getNearestViewportElement();
174     return elt != null ? (OMSVGElement)convert(elt) : null;
175   }
176   /**
177    * The farthest ancestor <a href='http://www.w3.org/TR/SVG11/struct.html#SVGElement'
178    * title='svg element specification'>svg</a> element. Null if the current
179    * element is the outermost <a href='http://www.w3.org/TR/SVG11/struct.html#SVGElement'
180    * title='svg element specification'>svg</a> element.
181    */
182   public final OMSVGElement getFarthestViewportElement() {
183     SVGElement elt = ((SVGAElement)ot).getFarthestViewportElement();
184     return elt != null ? (OMSVGElement)convert(elt) : null;
185   }
186   /**
187    * Returns the tight bounding box in current user space (i.e., after application
188    * of the <code>transform</code> attribute, if any) on the geometry of all
189    * contained graphics elements, exclusive of stroking, clipping, masking and
190    * filter effects). Note that getBBox must return the actual bounding box
191    * at the time the method was called, even in case the element has not yet
192    * been rendered.
193    * @return An {@link org.vectomatic.dom.svg.OMSVGRect} object that defines
194    * the bounding box.
195    */
196   public final OMSVGRect getBBox() {
197     return ((SVGAElement)ot).getBBox();
198   }
199   /**
200    * Returns the transformation matrix from current user units (i.e., after
201    * application of the <code>transform</code> attribute, if any) to the viewport
202    * coordinate system for the {@link org.vectomatic.dom.svg.itf.ISVGLocatable#getNearestViewportElement()}.
203    * @return An {@link org.vectomatic.dom.svg.OMSVGMatrix} object that defines
204    * the CTM.
205    */
206   public final OMSVGMatrix getCTM() {
207     return ((SVGAElement)ot).getCTM();
208   }
209   /**
210    * Returns the transformation matrix from current user units (i.e., after
211    * application of the <code>transform</code> attribute, if any) to the parent
212    * user agent's notice of a "pixel". For display devices, ideally this represents
213    * a physical screen pixel. For other devices or environments where physical
214    * pixel sizes are not known, then an algorithm similar to the CSS2 definition
215    * of a "pixel" can be used instead.  Note that null is returned if this element
216    * is not hooked into the document tree. This method would have been more
217    * aptly named as <code>getClientCTM</code>, but the name <code>getScreenCTM</code>
218    * is kept for historical reasons.
219    * @return An {@link org.vectomatic.dom.svg.OMSVGMatrix} object that defines
220    * the given   transformation matrix.
221    */
222   public final OMSVGMatrix getScreenCTM() {
223     return ((SVGAElement)ot).getScreenCTM();
224   }
225   /**
226    * Returns the transformation matrix from the user coordinate system on the
227    * current element (after application of the <code>transform</code> attribute,
228    * if any) to the user coordinate system on parameter <var>element</var> (after
229    * application of its <code>transform</code> attribute, if any).
230    * @param element The target element.
231    * @return An {@link org.vectomatic.dom.svg.OMSVGMatrix} object that defines
232    * the transformation.
233    * @throws SVGException(SVG_MATRIX_NOT_INVERTABLE) Raised if the currently
234    * defined transformation matrices make it impossible to compute the   given
235    * matrix (e.g., because one of the transformations is singular).
236    */
237   public final OMSVGMatrix getTransformToElement(OMSVGElement element) throws JavaScriptException {
238     return ((SVGAElement)ot).getTransformToElement(((SVGElement)element.ot));
239   }
240 
241   // Implementation of the svg::SVGTests W3C IDL interface
242   /**
243    * Corresponds to attribute {@link org.vectomatic.dom.svg.itf.ISVGTests#getRequiredFeatures()}
244    * on the given element.
245    */
246   public final OMSVGStringList getRequiredFeatures() {
247     return ((SVGAElement)ot).getRequiredFeatures();
248   }
249   /**
250    * Corresponds to attribute {@link org.vectomatic.dom.svg.itf.ISVGTests#getRequiredExtensions()}
251    * on the given element.
252    */
253   public final OMSVGStringList getRequiredExtensions() {
254     return ((SVGAElement)ot).getRequiredExtensions();
255   }
256   /**
257    * Corresponds to attribute {@link org.vectomatic.dom.svg.itf.ISVGTests#getSystemLanguage()}
258    * on the given element.
259    */
260   public final OMSVGStringList getSystemLanguage() {
261     return ((SVGAElement)ot).getSystemLanguage();
262   }
263   /**
264    * Returns true if the user agent supports the given extension, specified
265    * by a URI.
266    * @param extension The name of the extension, expressed as a URI.
267    * @return True or false, depending on whether the given extension is   supported.
268    */
269   public final boolean hasExtension(String extension) {
270     return ((SVGAElement)ot).hasExtension(extension);
271   }
272 
273   // Implementation of the svg::SVGTransformable W3C IDL interface
274   /**
275    * Corresponds to attribute {@link org.vectomatic.dom.svg.itf.ISVGTransformable#getTransform()}
276    * on the given element.
277    */
278   public final OMSVGAnimatedTransformList getTransform() {
279     return ((SVGAElement)ot).getTransform();
280   }
281 
282   // Implementation of the svg::SVGURIReference W3C IDL interface
283   /**
284    * Corresponds to attribute <span class='attr-name'>'xlink:href'</span> on
285    * the given element.
286    */
287   public final OMSVGAnimatedString getHref() {
288     return ((SVGAElement)ot).getHref();
289   }
290 
291   @Override
292   public final HandlerRegistration addClickHandler(ClickHandler handler) {
293     return addDomHandler(handler, ClickEvent.getType());
294   }
295   @Override
296   public final HandlerRegistration addDragEndHandler(DragEndHandler handler) {
297     return addDomHandler(handler, DragEndEvent.getType());
298   }
299   @Override
300   public final HandlerRegistration addDragEnterHandler(DragEnterHandler handler) {
301     return addDomHandler(handler, DragEnterEvent.getType());
302   }
303   @Override
304   public final HandlerRegistration addDragHandler(DragHandler handler) {
305     return addDomHandler(handler, DragEvent.getType());
306   }
307   @Override
308   public final HandlerRegistration addDragLeaveHandler(DragLeaveHandler handler) {
309     return addDomHandler(handler, DragLeaveEvent.getType());
310   }
311   @Override
312   public final HandlerRegistration addDragOverHandler(DragOverHandler handler) {
313     return addDomHandler(handler, DragOverEvent.getType());
314   }
315   @Override
316   public final HandlerRegistration addDragStartHandler(DragStartHandler handler) {
317     return addDomHandler(handler, DragStartEvent.getType());
318   }
319   @Override
320   public final HandlerRegistration addDropHandler(DropHandler handler) {
321     return addDomHandler(handler, DropEvent.getType());
322   }
323   @Override
324   public final HandlerRegistration addLoadHandler(LoadHandler handler) {
325     return addDomHandler(handler, LoadEvent.getType());
326   }
327   @Override
328   public final HandlerRegistration addMouseDownHandler(MouseDownHandler handler) {
329     return addDomHandler(handler, MouseDownEvent.getType());
330   }
331   @Override
332   public final HandlerRegistration addMouseMoveHandler(MouseMoveHandler handler) {
333     return addDomHandler(handler, MouseMoveEvent.getType());
334   }
335   @Override
336   public final HandlerRegistration addMouseOutHandler(MouseOutHandler handler) {
337     return addDomHandler(handler, MouseOutEvent.getType());
338   }
339   @Override
340   public final HandlerRegistration addMouseOverHandler(MouseOverHandler handler) {
341     return addDomHandler(handler, MouseOverEvent.getType());
342   }
343   @Override
344   public final HandlerRegistration addMouseUpHandler(MouseUpHandler handler) {
345     return addDomHandler(handler, MouseUpEvent.getType());
346   }
347   @Override
348   public final HandlerRegistration addTouchCancelHandler(TouchCancelHandler handler) {
349     return addDomHandler(handler, TouchCancelEvent.getType());
350   }
351   @Override
352   public final HandlerRegistration addTouchEndHandler(TouchEndHandler handler) {
353     return addDomHandler(handler, TouchEndEvent.getType());
354   }
355   @Override
356   public final HandlerRegistration addTouchMoveHandler(TouchMoveHandler handler) {
357     return addDomHandler(handler, TouchMoveEvent.getType());
358   }
359   @Override
360   public final HandlerRegistration addTouchStartHandler(TouchStartHandler handler) {
361     return addDomHandler(handler, TouchStartEvent.getType());
362   }
363   @Override
364   public final HandlerRegistration addActivateHandler(ActivateHandler handler) {
365     return addDomHandler(handler, ActivateEvent.getType());
366   }
367   @Override
368   public final HandlerRegistration addFocusInHandler(FocusInHandler handler) {
369     return addDomHandler(handler, FocusInEvent.getType());
370   }
371   @Override
372   public final HandlerRegistration addFocusOutHandler(FocusOutHandler handler) {
373     return addDomHandler(handler, FocusOutEvent.getType());
374   }
375 }