2015-08-03 20:01:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-11-24 10:45:41 +01:00
|
|
|
<!-- This file defines the QWERTY (US) layout.
|
2023-03-03 19:44:05 +01:00
|
|
|
|
2024-11-24 10:45:41 +01:00
|
|
|
A layout is made of keys arranged into rows. Each keys can be assigned several
|
|
|
|
symbols.
|
|
|
|
'key0' assigns the symbol on the middle of the key. 'nw', 'ne', etc.. assign
|
|
|
|
symbols to the corners of a key, they are arranged following the cardinal
|
|
|
|
directions:
|
2023-03-03 19:44:05 +01:00
|
|
|
|
2024-11-24 10:45:41 +01:00
|
|
|
nw n ne
|
2024-11-24 10:56:19 +01:00
|
|
|
w c e
|
2024-11-24 10:45:41 +01:00
|
|
|
sw s se
|
2023-03-03 19:44:05 +01:00
|
|
|
|
2024-11-24 10:45:41 +01:00
|
|
|
Symbols prefixed with 'loc ' are not visible on the keyboard. They are used to
|
2023-03-03 19:44:05 +01:00
|
|
|
specify a place for a key, if it needed to be added to the layout later.
|
|
|
|
(for example, by the "Add keys to keyboard" option)
|
|
|
|
|
2024-11-24 10:45:41 +01:00
|
|
|
Keys can be made bigger with the 'width' attribute and blank space can be added
|
|
|
|
on the left of a key with the 'shift' attribute.
|
|
|
|
|
|
|
|
See res/xml/bottom_row.xml for the definition of the bottom row and
|
|
|
|
doc/Possible-key-values.md for the keys that have a special meaning.
|
2023-03-03 19:44:05 +01:00
|
|
|
-->
|
2023-06-25 15:52:24 +02:00
|
|
|
<keyboard name="QWERTY (US)" script="latin">
|
2021-12-19 19:44:27 +01:00
|
|
|
<row>
|
2024-11-24 10:56:19 +01:00
|
|
|
<key c="q" ne="1" se="loc esc"/>
|
|
|
|
<key c="w" nw="~" ne="2" sw="\@"/>
|
|
|
|
<key c="e" nw="!" ne="3" sw="\#" se="loc €"/>
|
|
|
|
<key c="r" ne="4" sw="$"/>
|
|
|
|
<key c="t" ne="5" sw="%"/>
|
|
|
|
<key c="y" ne="6" sw="^"/>
|
|
|
|
<key c="u" ne="7" sw="&"/>
|
|
|
|
<key c="i" ne="8" sw="*"/>
|
|
|
|
<key c="o" ne="9" sw="(" se=")"/>
|
|
|
|
<key c="p" ne="0"/>
|
2021-12-19 19:44:27 +01:00
|
|
|
</row>
|
|
|
|
<row>
|
2024-11-24 10:56:19 +01:00
|
|
|
<key shift="0.5" c="a" nw="loc tab" ne="`"/>
|
|
|
|
<key c="s" ne="loc §" sw="loc ß"/>
|
|
|
|
<key c="d"/>
|
|
|
|
<key c="f"/>
|
|
|
|
<key c="g" ne="-" sw="_"/>
|
|
|
|
<key c="h" ne="=" sw="+"/>
|
|
|
|
<key c="j" se="}" sw="{"/>
|
|
|
|
<key c="k" sw="[" se="]"/>
|
|
|
|
<key c="l" ne="|" sw="\\"/>
|
2021-12-19 19:44:27 +01:00
|
|
|
</row>
|
|
|
|
<row>
|
2024-11-24 10:56:19 +01:00
|
|
|
<key width="1.5" c="shift" ne="loc capslock"/>
|
|
|
|
<key c="z"/>
|
|
|
|
<key c="x" ne="loc †"/>
|
|
|
|
<key c="c" ne="<" sw="."/>
|
|
|
|
<key c="v" ne=">" sw=","/>
|
|
|
|
<key c="b" ne="\?" sw="/"/>
|
|
|
|
<key c="n" ne=":" sw=";"/>
|
|
|
|
<key c="m" ne=""" sw="'"/>
|
|
|
|
<key width="1.5" c="backspace" ne="delete"/>
|
2021-12-19 19:44:27 +01:00
|
|
|
</row>
|
2015-08-03 20:01:05 +02:00
|
|
|
</keyboard>
|