| Index: tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Touch.darttemplate b/tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f9efa4a4d9dfbaa611fa30aba5c6031ecc5846fc
|
| --- /dev/null
|
| +++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
|
| @@ -0,0 +1,22 @@
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +part of $LIBRARYNAME;
|
| +
|
| +@DocsEditable
|
| +$(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| +$!MEMBERS
|
| +
|
| + @DomName('Touch.clientX')
|
| + @DomName('Touch.clientY')
|
| + Point get client => new Point($dom_clientX, $dom_clientY);
|
| +
|
| + @DomName('Touch.pageX')
|
| + @DomName('Touch.pageY')
|
| + Point get page => new Point($dom_pageX, $dom_pageY);
|
| +
|
| + @DomName('Touch.screenX')
|
| + @DomName('Touch.screenY')
|
| + Point get screen => new Point($dom_screenX, $dom_screenY);
|
| +}
|
|
|