| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * An event that describes user interaction with the keyboard. | 7 * An event that describes user interaction with the keyboard. |
| 8 * | 8 * |
| 9 * The [type] of the event identifies what kind of interaction occurred. | 9 * The [type] of the event identifies what kind of interaction occurred. |
| 10 * | 10 * |
| 11 * See also: | 11 * See also: |
| 12 * | 12 * |
| 13 * * [KeyboardEvent](https://developer.mozilla.org/en/DOM/KeyboardEvent) at MDN. | 13 * * [KeyboardEvent](https://developer.mozilla.org/en/DOM/KeyboardEvent) at MDN. |
| 14 */ | 14 */ |
| 15 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 15 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
| 16 | 16 |
| 17 /** |
| 18 * Programmatically create a KeyboardEvent. |
| 19 * |
| 20 * Due to browser differences, keyCode, charCode, or keyIdentifier values |
| 21 * cannot be specified in this base level constructor. This constructor |
| 22 * enables the user to programmatically create and dispatch a [KeyboardEvent], |
| 23 * but it will not contain any particular key content. For programmatically |
| 24 * creating keyboard events with specific key value contents, see the custom |
| 25 * Event [KeyEvent]. |
| 26 */ |
| 17 factory $CLASSNAME(String type, | 27 factory $CLASSNAME(String type, |
| 18 {Window view, bool canBubble: true, bool cancelable: true, | 28 {Window view, bool canBubble: true, bool cancelable: true, |
| 19 String keyIdentifier: "", int keyLocation: 1, bool ctrlKey: false, | 29 int keyLocation: 1, bool ctrlKey: false, |
| 20 bool altKey: false, bool shiftKey: false, bool metaKey: false, | 30 bool altKey: false, bool shiftKey: false, bool metaKey: false, |
| 21 bool altGraphKey: false}) { | 31 bool altGraphKey: false}) { |
| 22 if (view == null) { | 32 if (view == null) { |
| 23 view = window; | 33 view = window; |
| 24 } | 34 } |
| 25 final e = document.$dom_createEvent("KeyboardEvent"); | 35 final e = document.$dom_createEvent("KeyboardEvent"); |
| 26 e.$dom_initKeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, | 36 e.$dom_initKeyboardEvent(type, canBubble, cancelable, view, "", |
| 27 keyLocation, ctrlKey, altKey, shiftKey, metaKey, altGraphKey); | 37 keyLocation, ctrlKey, altKey, shiftKey, metaKey, altGraphKey); |
| 28 return e; | 38 return e; |
| 29 } | 39 } |
| 30 | 40 |
| 31 @DomName('KeyboardEvent.initKeyboardEvent') | 41 @DomName('KeyboardEvent.initKeyboardEvent') |
| 32 void $dom_initKeyboardEvent(String type, bool canBubble, bool cancelable, | 42 void $dom_initKeyboardEvent(String type, bool canBubble, bool cancelable, |
| 33 Window view, String keyIdentifier, int keyLocation, bool ctrlKey, | 43 Window view, String keyIdentifier, int keyLocation, bool ctrlKey, |
| 34 bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) { | 44 bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) { |
| 35 if (JS('bool', 'typeof(#.initKeyEvent) == "function"', this)) { | 45 if (JS('bool', 'typeof(#.initKeyEvent) == "function"', this)) { |
| 36 // initKeyEvent is only in Firefox (instead of initKeyboardEvent). It has | 46 // initKeyEvent is only in Firefox (instead of initKeyboardEvent). It has |
| (...skipping 11 matching lines...) Expand all Loading... |
| 48 } | 58 } |
| 49 } | 59 } |
| 50 | 60 |
| 51 @DomName('KeyboardEvent.keyCode') | 61 @DomName('KeyboardEvent.keyCode') |
| 52 int get keyCode => $dom_keyCode; | 62 int get keyCode => $dom_keyCode; |
| 53 | 63 |
| 54 @DomName('KeyboardEvent.charCode') | 64 @DomName('KeyboardEvent.charCode') |
| 55 int get charCode => $dom_charCode; | 65 int get charCode => $dom_charCode; |
| 56 $!MEMBERS | 66 $!MEMBERS |
| 57 } | 67 } |
| OLD | NEW |