192 |
- |
1 |
###############################################################################
|
|
|
2 |
# BRLTTY - A background process providing access to the console screen (when in
|
|
|
3 |
# text mode) for a blind person using a refreshable braille display.
|
|
|
4 |
#
|
|
|
5 |
# Copyright (C) 1995-2018 by The BRLTTY Developers.
|
|
|
6 |
#
|
|
|
7 |
# BRLTTY comes with ABSOLUTELY NO WARRANTY.
|
|
|
8 |
#
|
|
|
9 |
# This is free software, placed under the terms of the
|
|
|
10 |
# GNU Lesser General Public License, as published by the Free Software
|
|
|
11 |
# Foundation; either version 2.1 of the License, or (at your option) any
|
|
|
12 |
# later version. Please see the file LICENSE-LGPL for details.
|
|
|
13 |
#
|
|
|
14 |
# Web Page: http://brltty.com/
|
|
|
15 |
#
|
|
|
16 |
# This software is maintained by Dave Mielke <dave@mielke.cc>.
|
|
|
17 |
###############################################################################
|
|
|
18 |
|
|
|
19 |
note The eight dot keys of the braille keyboard are behind the cursor routing keys.
|
|
|
20 |
note From left to right, they are: Dot7, Dot3, Dot2, Dot1, Dot4, Dot5, Dot6, Dot8.
|
|
|
21 |
note The two keys of the braille keyboard in front of the braille cells, from left to right, are: Backspace, Space.
|
|
|
22 |
|
|
|
23 |
map Dot1 DOT1
|
|
|
24 |
map Dot2 DOT2
|
|
|
25 |
map Dot3 DOT3
|
|
|
26 |
map Dot4 DOT4
|
|
|
27 |
map Dot5 DOT5
|
|
|
28 |
map Dot6 DOT6
|
|
|
29 |
map Dot7 DOT7
|
|
|
30 |
map Dot8 DOT8
|
|
|
31 |
|
|
|
32 |
map Space SPACE
|
|
|
33 |
bind Backspace KEY_BACKSPACE
|
|
|
34 |
bind Backspace+Space KEY_ENTER
|
|
|
35 |
|
|
|
36 |
bind Space+Dot7 SHIFT
|
|
|
37 |
bind Space+Dot8 META
|
|
|
38 |
bind Space+Dot7+Dot8 CONTROL
|
|
|
39 |
|
|
|
40 |
bind Space+Dot2+Dot5+Dot6 KEY_TAB
|
|
|
41 |
bind Space+Dot2+Dot3+Dot6 KEY_TAB+shift
|
|
|
42 |
|
|
|
43 |
bind Space+Dot4 KEY_CURSOR_UP
|
|
|
44 |
bind Space+Dot6 KEY_CURSOR_DOWN
|
|
|
45 |
bind Space+Dot2 KEY_CURSOR_LEFT
|
|
|
46 |
bind Space+Dot5 KEY_CURSOR_RIGHT
|
|
|
47 |
|
|
|
48 |
bind Space+Dot1+Dot3 KEY_PAGE_UP
|
|
|
49 |
bind Space+Dot4+Dot6 KEY_PAGE_DOWN
|
|
|
50 |
|
|
|
51 |
bind Space+Dot1+Dot2+Dot3 KEY_HOME
|
|
|
52 |
bind Space+Dot4+Dot5+Dot6 KEY_END
|
|
|
53 |
|
|
|
54 |
bind Space+Dot3+Dot6 KEY_DELETE
|
|
|
55 |
bind Space+Dot1+Dot2+Dot4+Dot5 KEY_ESCAPE
|
|
|
56 |
bind Space+Dot1+Dot3+Dot5 KEY_INSERT
|
|
|
57 |
|
|
|
58 |
bind Backspace+Dot1 KEY_FUNCTION+0
|
|
|
59 |
bind Backspace+Dot1+Dot2 KEY_FUNCTION+1
|
|
|
60 |
bind Backspace+Dot1+Dot4 KEY_FUNCTION+2
|
|
|
61 |
bind Backspace+Dot1+Dot4+Dot5 KEY_FUNCTION+3
|
|
|
62 |
bind Backspace+Dot1+Dot5 KEY_FUNCTION+4
|
|
|
63 |
bind Backspace+Dot1+Dot2+Dot4 KEY_FUNCTION+5
|
|
|
64 |
bind Backspace+Dot1+Dot2+Dot4+Dot5 KEY_FUNCTION+6
|
|
|
65 |
bind Backspace+Dot1+Dot2+Dot5 KEY_FUNCTION+7
|
|
|
66 |
bind Backspace+Dot2+Dot4 KEY_FUNCTION+8
|
|
|
67 |
bind Backspace+Dot2+Dot4+Dot5 KEY_FUNCTION+9
|
|
|
68 |
bind Backspace+Dot1+Dot3 KEY_FUNCTION+10
|
|
|
69 |
bind Backspace+Dot1+Dot2+Dot3 KEY_FUNCTION+11
|
|
|
70 |
|