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 |
title Braille Memo Pocket
|
|
|
20 |
|
|
|
21 |
note The six round keys along the top are a braille keyboard.
|
|
|
22 |
note * From left to right, their names are: Dot3, Dot2, Dot1, Dot4, Dot5, Dot6.
|
|
|
23 |
note The two keys to the left of Dot3, from top to bottom, are named: Control, Alt.
|
|
|
24 |
note The two keys to the right of Dot6, from top to bottom, are named: Select, Read.
|
|
|
25 |
note The three keys below Dot1 and Dot4, from left to right, are named: Dot7, Extension, Dot8.
|
|
|
26 |
note At the bottom left is a group of four keys arranged in a cross.
|
|
|
27 |
note * Starting with the leftmost key and moving clockwise, their names are:
|
|
|
28 |
note * ArrowLeft, ArrowUp, ArrowRight, ArrowDown.
|
|
|
29 |
note A driver implementation constraint requires that some of the bindings
|
|
|
30 |
note * refer to the ArrowLeft and ArrowRight keys as PanLeft and PanRight.
|
|
|
31 |
note Some keys are entered by pressing a set of keys simultaneously:
|
|
|
32 |
note + Return: Dot7
|
|
|
33 |
note + Space: Dot8
|
|
|
34 |
note + ArrowUp: Extension + Dot1
|
|
|
35 |
note + ArrowDown: Extension + Dot4
|
|
|
36 |
note + ArrowLeft: Extension + Dot2
|
|
|
37 |
note + ArrowRight: Extension + Dot5
|
|
|
38 |
note + Insert: Extension + Dot3
|
|
|
39 |
note + Change: Extension + Dot6
|
|
|
40 |
note + Backspace: Extension + Dot7
|
|
|
41 |
note + Delete: Extension + Dot8
|
|
|
42 |
note + Escape: Extension + ArrowUp
|
|
|
43 |
note + Info: Extension + ArrowDown
|
|
|
44 |
note + Backward: Extension + ArrowRight + Dot1
|
|
|
45 |
note + Forward: Extension + ArrowRight + Dot4
|
|
|
46 |
note + ScrollLeft: Extension + ArrowRight + Dot2
|
|
|
47 |
note + ScrollRight: Extension + ArrowRight + Dot5
|
|
|
48 |
note + OK: Extension + ArrowRight + Dot7
|
|
|
49 |
note + Set: Extension + ArrowRight + Dot8
|
|
|
50 |
|
|
|
51 |
bind ArrowUp+ArrowDown CSRJMP_VERT
|
|
|
52 |
bind PanLeft+PanRight RETURN
|
|
|
53 |
|
|
|
54 |
include common.kti
|
|
|
55 |
context default
|
|
|
56 |
|
|
|
57 |
bind ArrowUp+ArrowLeft CSRVIS
|
|
|
58 |
bind ArrowUp+ArrowRight ATTRVIS
|
|
|
59 |
|
|
|
60 |
bind ArrowDown+ArrowLeft CSRTRK
|
|
|
61 |
bind ArrowDown+ArrowRight SIXDOTS
|
|
|
62 |
|
|
|
63 |
bind Extension KEY_TAB
|
|
|
64 |
bind Extension+RoutingKey KEY_FUNCTION
|