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 |
include fnkey.kti
|
|
|
20 |
hide on
|
|
|
21 |
|
|
|
22 |
bind Dot7 KEY_BACKSPACE
|
|
|
23 |
bind Dot8 KEY_ENTER
|
|
|
24 |
|
|
|
25 |
bind Space+Dot1+Dot3+Dot6 UPPER
|
|
|
26 |
bind Space+Dot1+Dot3+Dot4 META
|
|
|
27 |
|
|
|
28 |
bind Space+Dot1+Dot5 KEY_ESCAPE
|
|
|
29 |
bind Space+Dot2+Dot4 KEY_INSERT
|
|
|
30 |
bind Space+Dot1+Dot4+Dot5 KEY_DELETE
|
|
|
31 |
|
|
|
32 |
bind F2+Dot1+Dot2+Dot3+Dot4+Dot8 KEY_INSERT+control
|
|
|
33 |
bind F1+Dot1+Dot2+Dot3+Dot4+Dot8 KEY_INSERT+shift+control
|
|
|
34 |
|
|
|
35 |
bind Space+Dot4+Dot5 KEY_TAB
|
|
|
36 |
bind Space+Dot1+Dot2 KEY_TAB+shift
|
|
|
37 |
bind Space+Dot1+Dot2+Dot8 KEY_TAB+control
|
|
|
38 |
bind F2+F3 KEY_TAB+meta
|
|
|
39 |
bind F1+F2+F3 KEY_TAB+shift+meta
|
|
|
40 |
|
|
|
41 |
bind Space+Dot1+Dot3 KEY_HOME
|
|
|
42 |
bind Space+Dot4+Dot6 KEY_END
|
|
|
43 |
|
|
|
44 |
bind Space+Dot1+Dot2+Dot3 KEY_HOME+control
|
|
|
45 |
bind Space+Dot4+Dot5+Dot6 KEY_END+control
|
|
|
46 |
|
|
|
47 |
bind Space+Dot1+Dot2+Dot6 KEY_PAGE_UP
|
|
|
48 |
bind Space+Dot3+Dot4+Dot5 KEY_PAGE_DOWN
|
|
|
49 |
|
|
|
50 |
bind Space+Dot1+Dot2+Dot6+Dot8 KEY_PAGE_UP+control
|
|
|
51 |
bind Space+Dot3+Dot4+Dot5+Dot8 KEY_PAGE_DOWN+control
|
|
|
52 |
|
|
|
53 |
bind Space+Dot1 KEY_CURSOR_UP
|
|
|
54 |
bind Space+Dot4 KEY_CURSOR_DOWN
|
|
|
55 |
|
|
|
56 |
bind Space+RightScrollUp KEY_CURSOR_UP+shift
|
|
|
57 |
bind Space+RightScrollDown KEY_CURSOR_DOWN+shift
|
|
|
58 |
|
|
|
59 |
bind Space+Dot2+Dot3 KEY_CURSOR_UP+control
|
|
|
60 |
bind Space+Dot5+Dot6 KEY_CURSOR_DOWN+control
|
|
|
61 |
|
|
|
62 |
bind F1+Space+Dot2+Dot3+Dot8 KEY_CURSOR_UP+shift+control
|
|
|
63 |
bind F1+Space+Dot5+Dot6+Dot8 KEY_CURSOR_DOWN+shift+control
|
|
|
64 |
|
|
|
65 |
bind Dot2+Dot3+Dot7 KEY_CURSOR_UP+meta
|
|
|
66 |
bind Dot5+Dot6+Dot7 KEY_CURSOR_DOWN+meta
|
|
|
67 |
|
|
|
68 |
bind F1+Dot2+Dot3+Dot7 KEY_CURSOR_UP+shift+meta
|
|
|
69 |
bind F1+Dot5+Dot6+Dot7 KEY_CURSOR_DOWN+shift+meta
|
|
|
70 |
|
|
|
71 |
bind Space+Dot3 KEY_CURSOR_LEFT
|
|
|
72 |
bind Space+Dot6 KEY_CURSOR_RIGHT
|
|
|
73 |
|
|
|
74 |
bind Space+Dot2 KEY_CURSOR_LEFT+control
|
|
|
75 |
bind Space+Dot5 KEY_CURSOR_RIGHT+control
|
|
|
76 |
|
|
|
77 |
bind F1+Space+Dot2+Dot8 KEY_CURSOR_LEFT+shift+control
|
|
|
78 |
bind F1+Space+Dot5+Dot8 KEY_CURSOR_RIGHT+shift+control
|
|
|
79 |
|
|
|
80 |
bind Dot2+Dot7 KEY_CURSOR_LEFT+meta
|
|
|
81 |
bind Dot5+Dot7 KEY_CURSOR_RIGHT+meta
|
|
|
82 |
|
|
|
83 |
bind F1+Dot2+Dot7 KEY_CURSOR_LEFT+shift+meta
|
|
|
84 |
bind F1+Dot5+Dot7 KEY_CURSOR_RIGHT+shift+meta
|
|
|
85 |
|
|
|
86 |
bind Space+Dot1+Dot2+Dot5 KEY_FUNCTION+0
|
|
|
87 |
bind F4+Space+Dot1+Dot2 KEY_FUNCTION+1
|
|
|
88 |
bind F4+Dot1+Dot2+Dot4+Dot8 KEY_FUNCTION+2
|
|
|
89 |
bind F3+Dot7 KEY_FUNCTION+3
|
|
|
90 |
bind F2+Dot7 KEY_FUNCTION+4
|
|
|
91 |
bind F4+Dot7 KEY_FUNCTION+5
|
|
|
92 |
bind F4+Space KEY_FUNCTION+6
|
|
|
93 |
bind F4+Dot8 KEY_FUNCTION+7
|
|
|
94 |
bind Dot3+Dot4+Dot5+Dot6+Dot7 KEY_FUNCTION+8
|
|
|
95 |
bind Space+Dot1+Dot3+Dot5 KEY_FUNCTION+9
|
|
|
96 |
bind Dot1+Dot4+Dot5+Dot6+Dot7 KEY_FUNCTION+10
|
|
|
97 |
bind F4+Dot1+Dot2+Dot4+Dot5+Dot8 KEY_FUNCTION+11
|
|
|
98 |
|
|
|
99 |
bind F1+Dot7 KEY_FUNCTION+5+shift
|
|
|
100 |
bind F1+Space KEY_FUNCTION+6+shift
|
|
|
101 |
bind F1+Dot8 KEY_FUNCTION+7+shift
|
|
|
102 |
bind F1+F4 KEY_FUNCTION+9+meta
|
|
|
103 |
|
|
|
104 |
map Space SPACE
|
|
|
105 |
map Dot1 dot1
|
|
|
106 |
map Dot2 dot2
|
|
|
107 |
map Dot3 dot3
|
|
|
108 |
map Dot4 dot4
|
|
|
109 |
map Dot5 dot5
|
|
|
110 |
map Dot6 dot6
|
|
|
111 |
|
|
|
112 |
bind Space+Dot7+Dot4 PASSDOTS+dot4
|
|
|
113 |
bind Space+Dot7+Dot2+Dot4+Dot6 PASSDOTS+dot2+dot4+dot6
|
|
|
114 |
bind Space+Dot7+Dot1+Dot2+Dot5+Dot6 PASSDOTS+dot1+dot2+dot5+dot6
|
|
|
115 |
bind Space+Dot7+Dot2+Dot3+Dot4+Dot5+Dot6 PASSDOTS+dot2+dot3+dot4+dot5+dot6
|
|
|
116 |
bind Space+Dot7+Dot4+Dot5 PASSDOTS+dot4+dot5
|
|
|
117 |
|
|
|
118 |
beginVariables
|
|
|
119 |
assign keys
|
|
|
120 |
assign flags
|
|
|
121 |
include letters.kti
|
|
|
122 |
endVariables
|
|
|
123 |
|
|
|
124 |
beginVariables
|
|
|
125 |
assign keys Space+Dot7+
|
|
|
126 |
assign flags +shift
|
|
|
127 |
include letters.kti
|
|
|
128 |
endVariables
|
|
|
129 |
|
|
|
130 |
beginVariables
|
|
|
131 |
assign keys F1+Dot7+
|
|
|
132 |
assign flags +shift+meta
|
|
|
133 |
include letters.kti
|
|
|
134 |
endVariables
|
|
|
135 |
|
|
|
136 |
beginVariables
|
|
|
137 |
assign keys Dot7+
|
|
|
138 |
assign flags +meta
|
|
|
139 |
include letters.kti
|
|
|
140 |
endVariables
|
|
|
141 |
|
|
|
142 |
beginVariables
|
|
|
143 |
assign keys Dot8+
|
|
|
144 |
assign flags +control
|
|
|
145 |
include letters.kti
|
|
|
146 |
endVariables
|
|
|
147 |
|
|
|
148 |
beginVariables
|
|
|
149 |
assign keys F1+
|
|
|
150 |
assign flags +gui
|
|
|
151 |
include letters.kti
|
|
|
152 |
endVariables
|
|
|
153 |
|
|
|
154 |
hide off
|