| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 class SVGZoomEventWrappingImplementation extends UIEventWrappingImplementation i
mplements SVGZoomEvent { |
| 8 SVGZoomEventWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 |
| 10 num get newScale() { return _ptr.newScale; } |
| 11 |
| 12 SVGPoint get newTranslate() { return LevelDom.wrapSVGPoint(_ptr.newTranslate);
} |
| 13 |
| 14 num get previousScale() { return _ptr.previousScale; } |
| 15 |
| 16 SVGPoint get previousTranslate() { return LevelDom.wrapSVGPoint(_ptr.previousT
ranslate); } |
| 17 |
| 18 SVGRect get zoomRectScreen() { return LevelDom.wrapSVGRect(_ptr.zoomRectScreen
); } |
| 19 } |
| OLD | NEW |