Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
e045ef29
Unverified
Commit
e045ef29
authored
Oct 01, 2019
by
Mouad Debbar
Committed by
GitHub
Oct 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keymap for Web (#41397)
parent
a9c28d5f
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
885 additions
and
17 deletions
+885
-17
keyboard_maps.tmpl
dev/tools/gen_keycodes/data/keyboard_maps.tmpl
+17
-0
code_gen.dart
dev/tools/gen_keycodes/lib/code_gen.dart
+45
-12
services.dart
packages/flutter/lib/services.dart
+1
-0
keyboard_maps.dart
packages/flutter/lib/src/services/keyboard_maps.dart
+489
-0
raw_keyboard.dart
packages/flutter/lib/src/services/raw_keyboard.dart
+8
-0
raw_keyboard_web.dart
packages/flutter/lib/src/services/raw_keyboard_web.dart
+198
-0
raw_keyboard_test.dart
packages/flutter/test/services/raw_keyboard_test.dart
+127
-5
No files found.
dev/tools/gen_keycodes/data/keyboard_maps.tmpl
View file @
e045ef29
...
...
@@ -70,3 +70,20 @@ const Map<int, PhysicalKeyboardKey> kLinuxToPhysicalKey = <int, PhysicalKeyboard
@@@XKB_SCAN_CODE_MAP@@@
};
/// Maps Web KeyboardEvent codes to the matching [LogicalKeyboardKey].
const Map<String, LogicalKeyboardKey> kWebToLogicalKey = <String, LogicalKeyboardKey>{
@@@WEB_LOGICAL_KEY_MAP@@@
};
/// Maps Web KeyboardEvent codes to the matching [PhysicalKeyboardKey].
const Map<String, PhysicalKeyboardKey> kWebToPhysicalKey = <String, PhysicalKeyboardKey>{
@@@WEB_PHYSICAL_KEY_MAP@@@
};
/// A map of Web KeyboardEvent codes which have printable representations, but appear
/// on the number pad. Used to provide different key objects for keys like
/// KEY_EQUALS and NUMPAD_EQUALS.
const Map<String, LogicalKeyboardKey> kWebNumPadMap = <String, LogicalKeyboardKey>{
@@@WEB_NUMPAD_MAP@@@
};
dev/tools/gen_keycodes/lib/code_gen.dart
View file @
e045ef29
...
...
@@ -108,6 +108,12 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
return
synonyms
.
toString
();
}
List
<
Key
>
get
numpadKeyData
{
return
keyData
.
data
.
where
((
Key
entry
)
{
return
entry
.
constantName
.
startsWith
(
'numpad'
)
&&
entry
.
keyLabel
!=
null
;
}).
toList
();
}
/// This generates the map of USB HID codes to physical keys.
String
get
predefinedHidCodeMap
{
final
StringBuffer
scanCodeMap
=
StringBuffer
();
...
...
@@ -139,10 +145,7 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
/// This generates the map of GLFW number pad key codes to logical keys.
String
get
glfwNumpadMap
{
final
StringBuffer
glfwNumpadMap
=
StringBuffer
();
final
List
<
Key
>
onlyNumpads
=
keyData
.
data
.
where
((
Key
entry
)
{
return
entry
.
constantName
.
startsWith
(
'numpad'
)
&&
entry
.
keyLabel
!=
null
;
}).
toList
();
for
(
Key
entry
in
onlyNumpads
)
{
for
(
Key
entry
in
numpadKeyData
)
{
if
(
entry
.
glfwKeyCodes
!=
null
)
{
for
(
int
code
in
entry
.
glfwKeyCodes
.
cast
<
int
>())
{
glfwNumpadMap
.
writeln
(
'
$code
: LogicalKeyboardKey.
${entry.constantName}
,'
);
...
...
@@ -192,10 +195,7 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
/// This generates the map of Android number pad key codes to logical keys.
String
get
androidNumpadMap
{
final
StringBuffer
androidKeyCodeMap
=
StringBuffer
();
final
List
<
Key
>
onlyNumpads
=
keyData
.
data
.
where
((
Key
entry
)
{
return
entry
.
constantName
.
startsWith
(
'numpad'
)
&&
entry
.
keyLabel
!=
null
;
}).
toList
();
for
(
Key
entry
in
onlyNumpads
)
{
for
(
Key
entry
in
numpadKeyData
)
{
if
(
entry
.
androidKeyCodes
!=
null
)
{
for
(
int
code
in
entry
.
androidKeyCodes
.
cast
<
int
>())
{
androidKeyCodeMap
.
writeln
(
'
$code
: LogicalKeyboardKey.
${entry.constantName}
,'
);
...
...
@@ -232,10 +232,7 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
/// This generates the map of macOS number pad key codes to logical keys.
String
get
macOsNumpadMap
{
final
StringBuffer
macOsNumPadMap
=
StringBuffer
();
final
List
<
Key
>
onlyNumpads
=
keyData
.
data
.
where
((
Key
entry
)
{
return
entry
.
constantName
.
startsWith
(
'numpad'
)
&&
entry
.
keyLabel
!=
null
;
}).
toList
();
for
(
Key
entry
in
onlyNumpads
)
{
for
(
Key
entry
in
numpadKeyData
)
{
if
(
entry
.
macOsScanCode
!=
null
)
{
macOsNumPadMap
.
writeln
(
'
${toHex(entry.macOsScanCode)}
: LogicalKeyboardKey.
${entry.constantName}
,'
);
}
...
...
@@ -265,6 +262,39 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
return
fuchsiaScanCodeMap
.
toString
().
trimRight
();
}
/// This generates the map of Web KeyboardEvent codes to logical keys.
String
get
webLogicalKeyMap
{
final
StringBuffer
result
=
StringBuffer
();
for
(
Key
entry
in
keyData
.
data
)
{
if
(
entry
.
name
!=
null
)
{
result
.
writeln
(
" '
${entry.name}
': LogicalKeyboardKey.
${entry.constantName}
,"
);
}
}
return
result
.
toString
().
trimRight
();
}
/// This generates the map of Web KeyboardEvent codes to physical keys.
String
get
webPhysicalKeyMap
{
final
StringBuffer
result
=
StringBuffer
();
for
(
Key
entry
in
keyData
.
data
)
{
if
(
entry
.
name
!=
null
)
{
result
.
writeln
(
" '
${entry.name}
': PhysicalKeyboardKey.
${entry.constantName}
,"
);
}
}
return
result
.
toString
().
trimRight
();
}
/// This generates the map of Web number pad codes to logical keys.
String
get
webNumpadMap
{
final
StringBuffer
result
=
StringBuffer
();
for
(
Key
entry
in
numpadKeyData
)
{
if
(
entry
.
name
!=
null
)
{
result
.
writeln
(
" '
${entry.name}
': LogicalKeyboardKey.
${entry.constantName}
,"
);
}
}
return
result
.
toString
().
trimRight
();
}
/// Substitutes the various maps and definitions into the template file for
/// keyboard_key.dart.
String
generateKeyboardKeys
()
{
...
...
@@ -297,6 +327,9 @@ $otherComments static const LogicalKeyboardKey $constantName = LogicalKeyboardK
'GLFW_KEY_CODE_MAP'
:
glfwKeyCodeMap
,
'GLFW_NUMPAD_MAP'
:
glfwNumpadMap
,
'XKB_SCAN_CODE_MAP'
:
xkbScanCodeMap
,
'WEB_LOGICAL_KEY_MAP'
:
webLogicalKeyMap
,
'WEB_PHYSICAL_KEY_MAP'
:
webPhysicalKeyMap
,
'WEB_NUMPAD_MAP'
:
webNumpadMap
,
};
final
String
template
=
File
(
path
.
join
(
flutterRoot
.
path
,
'dev'
,
'tools'
,
'gen_keycodes'
,
'data'
,
'keyboard_maps.tmpl'
)).
readAsStringSync
();
...
...
packages/flutter/lib/services.dart
View file @
e045ef29
...
...
@@ -28,6 +28,7 @@ export 'src/services/raw_keyboard_android.dart';
export
'src/services/raw_keyboard_fuchsia.dart'
;
export
'src/services/raw_keyboard_linux.dart'
;
export
'src/services/raw_keyboard_macos.dart'
;
export
'src/services/raw_keyboard_web.dart'
;
export
'src/services/system_channels.dart'
;
export
'src/services/system_chrome.dart'
;
export
'src/services/system_navigator.dart'
;
...
...
packages/flutter/lib/src/services/keyboard_maps.dart
View file @
e045ef29
This diff is collapsed.
Click to expand it.
packages/flutter/lib/src/services/raw_keyboard.dart
View file @
e045ef29
...
...
@@ -11,6 +11,7 @@ import 'raw_keyboard_android.dart';
import
'raw_keyboard_fuchsia.dart'
;
import
'raw_keyboard_linux.dart'
;
import
'raw_keyboard_macos.dart'
;
import
'raw_keyboard_web.dart'
;
import
'system_channels.dart'
;
/// An enum describing the side of the keyboard that a key is on, to allow
...
...
@@ -284,6 +285,13 @@ abstract class RawKeyEvent extends Diagnosticable {
scanCode:
message
[
'scanCode'
]
??
0
,
modifiers:
message
[
'modifiers'
]
??
0
);
break
;
case
'web'
:
data
=
RawKeyEventDataWeb
(
code:
message
[
'code'
],
key:
message
[
'key'
],
metaState:
message
[
'metaState'
],
);
break
;
default
:
// We don't yet implement raw key events on iOS or other platforms, but
// we don't hit this exception because the engine never sends us these
...
...
packages/flutter/lib/src/services/raw_keyboard_web.dart
0 → 100644
View file @
e045ef29
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
;
import
'keyboard_key.dart'
;
import
'keyboard_maps.dart'
;
import
'raw_keyboard.dart'
;
/// Platform-specific key event data for Web.
///
/// See also:
///
/// * [RawKeyboard], which uses this interface to expose key data.
@immutable
class
RawKeyEventDataWeb
extends
RawKeyEventData
{
/// Creates a key event data structure specific for Web.
///
/// The [keyCode] and [metaState] arguments must not be null.
const
RawKeyEventDataWeb
({
@required
this
.
code
,
@required
this
.
key
,
this
.
metaState
=
modifierNone
,
})
:
assert
(
code
!=
null
),
assert
(
metaState
!=
null
);
/// The `KeyboardEvent.code` corresponding to this event.
///
/// See <https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code>
/// for more information.
final
String
code
;
/// The `KeyboardEvent.key` corresponding to this event.
///
/// See <https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key>
/// for more information.
final
String
key
;
/// The modifiers that were present when the key event occurred.
///
/// See `lib/src/engine/keyboard.dart` in the web engine for the numerical
/// values of the `metaState`. These constants are also replicated as static
/// constants in this class.
///
/// See also:
///
/// * [modifiersPressed], which returns a Map of currently pressed modifiers
/// and their keyboard side.
/// * [isModifierPressed], to see if a specific modifier is pressed.
/// * [isControlPressed], to see if a CTRL key is pressed.
/// * [isShiftPressed], to see if a SHIFT key is pressed.
/// * [isAltPressed], to see if an ALT key is pressed.
/// * [isMetaPressed], to see if a META key is pressed.
final
int
metaState
;
@override
String
get
keyLabel
=>
key
;
@override
PhysicalKeyboardKey
get
physicalKey
{
return
kWebToPhysicalKey
[
code
]
??
PhysicalKeyboardKey
.
none
;
}
@override
LogicalKeyboardKey
get
logicalKey
{
// Look to see if the keyCode is a printable number pad key, so that a
// difference between regular keys (e.g. ".") and the number pad version
// (e.g. the "." on the number pad) can be determined.
final
LogicalKeyboardKey
numPadKey
=
kWebNumPadMap
[
code
];
if
(
numPadKey
!=
null
)
{
return
numPadKey
;
}
// Look to see if the [code] is one we know about and have a mapping for.
final
LogicalKeyboardKey
newKey
=
kWebToLogicalKey
[
code
];
if
(
newKey
!=
null
)
{
return
newKey
;
}
// This is a non-printable key that we don't know about, so we mint a new
// code with the autogenerated bit set.
const
int
webKeyIdPlane
=
0x00800000000
;
return
LogicalKeyboardKey
(
webKeyIdPlane
|
code
.
hashCode
|
LogicalKeyboardKey
.
autogeneratedMask
,
debugName:
kReleaseMode
?
null
:
'Unknown Web code "
$code
"'
,
);
}
@override
bool
isModifierPressed
(
ModifierKey
key
,
{
KeyboardSide
side
=
KeyboardSide
.
any
,
})
{
switch
(
key
)
{
case
ModifierKey
.
controlModifier
:
return
metaState
&
modifierControl
!=
0
;
case
ModifierKey
.
shiftModifier
:
return
metaState
&
modifierShift
!=
0
;
case
ModifierKey
.
altModifier
:
return
metaState
&
modifierAlt
!=
0
;
case
ModifierKey
.
metaModifier
:
return
metaState
&
modifierMeta
!=
0
;
case
ModifierKey
.
numLockModifier
:
return
metaState
&
modifierNumLock
!=
0
;
case
ModifierKey
.
capsLockModifier
:
return
metaState
&
modifierCapsLock
!=
0
;
case
ModifierKey
.
scrollLockModifier
:
return
metaState
&
modifierScrollLock
!=
0
;
case
ModifierKey
.
functionModifier
:
case
ModifierKey
.
symbolModifier
:
default
:
// On Web, the browser doesn't report the state of the FN and SYM modifiers.
return
false
;
}
}
@override
KeyboardSide
getModifierSide
(
ModifierKey
key
)
{
// On Web, we don't distinguish the sides of modifier keys. Both left shift
// and right shift, for example, are reported as the "Shift" modifier.
//
// See <https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState>
// for more information.
return
KeyboardSide
.
all
;
}
// Modifier key masks.
/// No modifier keys are pressed in the [metaState] field.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierNone
=
0
;
/// This mask is used to check the [metaState] field to test whether one of
/// the SHIFT modifier keys is pressed.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierShift
=
0x01
;
/// This mask is used to check the [metaState] field to test whether one of
/// the ALT modifier keys is pressed.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierAlt
=
0x02
;
/// This mask is used to check the [metaState] field to test whether one of
/// the CTRL modifier keys is pressed.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierControl
=
0x04
;
/// This mask is used to check the [metaState] field to test whether one of
/// the META modifier keys is pressed.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierMeta
=
0x08
;
/// This mask is used to check the [metaState] field to test whether the NUM
/// LOCK modifier key is on.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierNumLock
=
0x10
;
/// This mask is used to check the [metaState] field to test whether the CAPS
/// LOCK modifier key is on.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierCapsLock
=
0x20
;
/// This mask is used to check the [metaState] field to test whether the
/// SCROLL LOCK modifier key is on.
///
/// Use this value if you need to decode the [metaState] field yourself, but
/// it's much easier to use [isModifierPressed] if you just want to know if
/// a modifier is pressed.
static
const
int
modifierScrollLock
=
0x40
;
@override
String
toString
()
{
return
'
$runtimeType
(keyLabel:
$keyLabel
, code:
$code
, '
'metaState:
$metaState
, modifiers down:
$modifiersPressed
)'
;
}
}
packages/flutter/test/services/raw_keyboard_test.dart
View file @
e045ef29
...
...
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@TestOn
(
'!chrome'
)
// web does not have keyboard support yet.
import
'package:flutter/services.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
...
...
@@ -321,7 +319,7 @@ void main() {
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
shiftLeft
));
expect
(
data
.
keyLabel
,
isNull
);
});
});
}
,
skip:
isBrowser
);
group
(
'RawKeyEventDataMacOs'
,
()
{
const
Map
<
int
,
_ModifierCheck
>
modifierTests
=
<
int
,
_ModifierCheck
>{
RawKeyEventDataMacOs
.
modifierOption
|
RawKeyEventDataMacOs
.
modifierLeftOption
:
_ModifierCheck
(
ModifierKey
.
altModifier
,
KeyboardSide
.
left
),
...
...
@@ -465,8 +463,7 @@ void main() {
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
arrowLeft
));
expect
(
data
.
logicalKey
.
keyLabel
,
isNull
);
});
});
},
skip:
isBrowser
);
group
(
'RawKeyEventDataLinux-GFLW'
,
()
{
const
Map
<
int
,
_ModifierCheck
>
modifierTests
=
<
int
,
_ModifierCheck
>{
GLFWKeyHelper
.
modifierAlt
:
_ModifierCheck
(
ModifierKey
.
altModifier
,
KeyboardSide
.
any
),
...
...
@@ -622,5 +619,130 @@ void main() {
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
shiftLeft
));
expect
(
data
.
keyLabel
,
isNull
);
});
},
skip:
isBrowser
);
group
(
'RawKeyEventDataWeb'
,
()
{
const
Map
<
int
,
ModifierKey
>
modifierTests
=
<
int
,
ModifierKey
>{
RawKeyEventDataWeb
.
modifierAlt
:
ModifierKey
.
altModifier
,
RawKeyEventDataWeb
.
modifierShift
:
ModifierKey
.
shiftModifier
,
RawKeyEventDataWeb
.
modifierControl
:
ModifierKey
.
controlModifier
,
RawKeyEventDataWeb
.
modifierMeta
:
ModifierKey
.
metaModifier
,
RawKeyEventDataWeb
.
modifierCapsLock
:
ModifierKey
.
capsLockModifier
,
RawKeyEventDataWeb
.
modifierNumLock
:
ModifierKey
.
numLockModifier
,
RawKeyEventDataWeb
.
modifierScrollLock
:
ModifierKey
.
scrollLockModifier
,
};
test
(
'modifier keys are recognized individually'
,
()
{
for
(
int
modifier
in
modifierTests
.
keys
)
{
final
RawKeyEvent
event
=
RawKeyEvent
.
fromMessage
(<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'RandomCode'
,
'key'
:
null
,
'metaState'
:
modifier
,
});
final
RawKeyEventDataWeb
data
=
event
.
data
;
for
(
ModifierKey
key
in
ModifierKey
.
values
)
{
if
(
modifierTests
[
modifier
]
==
key
)
{
expect
(
data
.
isModifierPressed
(
key
),
isTrue
,
reason:
"
$key
should be pressed with metaState
$modifier
, but isn't."
,
);
}
else
{
expect
(
data
.
isModifierPressed
(
key
),
isFalse
,
reason:
'
$key
should not be pressed with metaState
$modifier
.'
,
);
}
}
}
});
test
(
'modifier keys are recognized when combined'
,
()
{
for
(
int
modifier
in
modifierTests
.
keys
)
{
if
(
modifier
==
RawKeyEventDataWeb
.
modifierMeta
)
{
// No need to combine meta key with itself.
continue
;
}
final
RawKeyEvent
event
=
RawKeyEvent
.
fromMessage
(<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'RandomCode'
,
'key'
:
null
,
'metaState'
:
modifier
|
RawKeyEventDataWeb
.
modifierMeta
,
});
final
RawKeyEventDataWeb
data
=
event
.
data
;
for
(
ModifierKey
key
in
ModifierKey
.
values
)
{
if
(
modifierTests
[
modifier
]
==
key
||
key
==
ModifierKey
.
metaModifier
)
{
expect
(
data
.
isModifierPressed
(
key
),
isTrue
,
reason:
'
$key
should be pressed with metaState
$modifier
'
"and additional key
${RawKeyEventDataWeb.modifierMeta}
, but isn't."
,
);
}
else
{
expect
(
data
.
isModifierPressed
(
key
),
isFalse
,
reason:
'
$key
should not be pressed with metaState
$modifier
'
'and additional key
${RawKeyEventDataWeb.modifierMeta}
.'
,
);
}
}
}
});
test
(
'Printable keyboard keys are correctly translated'
,
()
{
final
RawKeyEvent
keyAEvent
=
RawKeyEvent
.
fromMessage
(
const
<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'KeyA'
,
'key'
:
'a'
,
'metaState'
:
0x0
,
});
final
RawKeyEventDataWeb
data
=
keyAEvent
.
data
;
expect
(
data
.
physicalKey
,
equals
(
PhysicalKeyboardKey
.
keyA
));
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
keyA
));
expect
(
data
.
keyLabel
,
equals
(
'a'
));
});
test
(
'Control keyboard keys are correctly translated'
,
()
{
final
RawKeyEvent
escapeKeyEvent
=
RawKeyEvent
.
fromMessage
(
const
<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'Escape'
,
'key'
:
null
,
'metaState'
:
0x0
,
});
final
RawKeyEventDataWeb
data
=
escapeKeyEvent
.
data
;
expect
(
data
.
physicalKey
,
equals
(
PhysicalKeyboardKey
.
escape
));
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
escape
));
expect
(
data
.
keyLabel
,
isNull
);
});
test
(
'Modifier keyboard keys are correctly translated'
,
()
{
final
RawKeyEvent
shiftKeyEvent
=
RawKeyEvent
.
fromMessage
(
const
<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'ShiftLeft'
,
'keyLabel'
:
null
,
'metaState'
:
RawKeyEventDataWeb
.
modifierShift
,
});
final
RawKeyEventDataWeb
data
=
shiftKeyEvent
.
data
;
expect
(
data
.
physicalKey
,
equals
(
PhysicalKeyboardKey
.
shiftLeft
));
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
shiftLeft
));
expect
(
data
.
keyLabel
,
isNull
);
});
test
(
'Arrow keys from a keyboard give correct physical key mappings'
,
()
{
final
RawKeyEvent
arrowKeyDown
=
RawKeyEvent
.
fromMessage
(
const
<
String
,
dynamic
>{
'type'
:
'keydown'
,
'keymap'
:
'web'
,
'code'
:
'ArrowDown'
,
'key'
:
null
,
'metaState'
:
0x0
,
});
final
RawKeyEventDataWeb
data
=
arrowKeyDown
.
data
;
expect
(
data
.
physicalKey
,
equals
(
PhysicalKeyboardKey
.
arrowDown
));
expect
(
data
.
logicalKey
,
equals
(
LogicalKeyboardKey
.
arrowDown
));
expect
(
data
.
keyLabel
,
isNull
);
});
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment