summaryrefslogtreecommitdiff
path: root/src/keyboardcommon.py
blob: 2593a83c1d5140041e9363243ded63ba61116f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# from OnBoard.utils.py
keysyms = { "space"     : 0xff80,
            "insert"    : 0xff9e,
            "home"      : 0xff50,
            "page_up"   : 0xff55,
            "page_down" : 0xff56,
            "end"       : 0xff57,
            "delete"    : 0xff9f,
            "return"    : 0xff0d,
            "backspace" : 0xff08,
            "left"      : 0xff51,
            "up"        : 0xff52,
            "right"     : 0xff53,
            "down"      : 0xff54 }