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 |
# This key subtable is for all FreedomScientific Focus displays.
|
|
|
20 |
|
|
|
21 |
note There are two Nav controls - one at each side of the top.
|
|
|
22 |
note * Each has three actions: Up, Down, and Press.
|
|
|
23 |
note * On some models, a Nav control is a wheel which can be both rolled and pressed.
|
|
|
24 |
note * On others, it's an up/down rocker along with a separate pressable button.
|
|
|
25 |
note The Selector keys are at either end of the front edge.
|
|
|
26 |
note * On older models, they're known as GDF (General Display Function) keys.
|
|
|
27 |
note The Advance keys are just inside the rockers and outside the shift keys.
|
|
|
28 |
|
|
|
29 |
assign navKeyType Nav
|
|
|
30 |
include common.kti
|
|
|
31 |
|
|
|
32 |
assign chord Space+
|
|
|
33 |
include ../chords.kti
|
|
|
34 |
|
|
|
35 |
map Dot1 DOT1
|
|
|
36 |
map Dot2 DOT2
|
|
|
37 |
map Dot3 DOT3
|
|
|
38 |
map Dot4 DOT4
|
|
|
39 |
map Dot5 DOT5
|
|
|
40 |
map Dot6 DOT6
|
|
|
41 |
map Dot7 DOT7
|
|
|
42 |
map Dot8 DOT8
|
|
|
43 |
|
|
|
44 |
map Space SPACE
|
|
|
45 |
map LeftShift CONTROL
|
|
|
46 |
map RightShift META
|
|
|
47 |
|
|
|
48 |
bind Space+LeftShift KEY_BACKSPACE
|
|
|
49 |
bind Space+RightShift KEY_ENTER
|
|
|
50 |
|
|
|
51 |
bind Space+!RoutingKey KEY_FUNCTION
|
|
|
52 |
bind RightShift+!RoutingKey SWITCHVT
|
|
|
53 |
|
|
|
54 |
bind !NavrowKey DESCCHAR
|
|
|
55 |
bind LeftAdvance+!NavrowKey PRINDENT
|
|
|
56 |
bind RightAdvance+!NavrowKey NXINDENT
|
|
|
57 |
bind LeftSelector+!NavrowKey SETLEFT
|