OLD | NEW |
(Empty) | |
| 1 |
| 2 class _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement
{ |
| 3 _SVGMarkerElementImpl._wrap(ptr) : super._wrap(ptr); |
| 4 |
| 5 SVGAnimatedLength get markerHeight() => _wrap(_ptr.markerHeight); |
| 6 |
| 7 SVGAnimatedEnumeration get markerUnits() => _wrap(_ptr.markerUnits); |
| 8 |
| 9 SVGAnimatedLength get markerWidth() => _wrap(_ptr.markerWidth); |
| 10 |
| 11 SVGAnimatedAngle get orientAngle() => _wrap(_ptr.orientAngle); |
| 12 |
| 13 SVGAnimatedEnumeration get orientType() => _wrap(_ptr.orientType); |
| 14 |
| 15 SVGAnimatedLength get refX() => _wrap(_ptr.refX); |
| 16 |
| 17 SVGAnimatedLength get refY() => _wrap(_ptr.refY); |
| 18 |
| 19 void setOrientToAngle(SVGAngle angle) { |
| 20 _ptr.setOrientToAngle(_unwrap(angle)); |
| 21 return; |
| 22 } |
| 23 |
| 24 void setOrientToAuto() { |
| 25 _ptr.setOrientToAuto(); |
| 26 return; |
| 27 } |
| 28 |
| 29 // From SVGLangSpace |
| 30 |
| 31 String get xmllang() => _wrap(_ptr.xmllang); |
| 32 |
| 33 void set xmllang(String value) { _ptr.xmllang = _unwrap(value); } |
| 34 |
| 35 String get xmlspace() => _wrap(_ptr.xmlspace); |
| 36 |
| 37 void set xmlspace(String value) { _ptr.xmlspace = _unwrap(value); } |
| 38 |
| 39 // From SVGExternalResourcesRequired |
| 40 |
| 41 SVGAnimatedBoolean get externalResourcesRequired() => _wrap(_ptr.externalResou
rcesRequired); |
| 42 |
| 43 // From SVGStylable |
| 44 |
| 45 SVGAnimatedString get _className() => _wrap(_ptr.className); |
| 46 |
| 47 CSSStyleDeclaration get style() => _wrap(_ptr.style); |
| 48 |
| 49 CSSValue getPresentationAttribute(String name) { |
| 50 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); |
| 51 } |
| 52 |
| 53 // From SVGFitToViewBox |
| 54 |
| 55 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() => _wrap(_ptr.preserv
eAspectRatio); |
| 56 |
| 57 SVGAnimatedRect get viewBox() => _wrap(_ptr.viewBox); |
| 58 } |
OLD | NEW |