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 joysticks are the small, round, five-way (left, right, up, down, press) controls to the left and right of the cursor routing keys.
|
|
|
20 |
|
|
|
21 |
bind RightJoystickPress HOME
|
|
|
22 |
bind RightJoystickLeft FWINLT
|
|
|
23 |
bind RightJoystickRight FWINRT
|
|
|
24 |
bind RightJoystickUp LNUP
|
|
|
25 |
bind RightJoystickDown LNDN
|
|
|
26 |
|
|
|
27 |
bind LeftJoystickLeft PRPROMPT
|
|
|
28 |
bind LeftJoystickRight NXPROMPT
|
|
|
29 |
bind LeftJoystickUp TOP_LEFT
|
|
|
30 |
bind LeftJoystickDown BOT_LEFT
|
|
|
31 |
|
|
|
32 |
bind LeftJoystickDown+RightJoystickLeft CONTEXT+CLIP_NEW
|
|
|
33 |
bind LeftJoystickDown+RightJoystickUp CONTEXT+CLIP_ADD
|
|
|
34 |
bind LeftJoystickDown+RightJoystickDown CONTEXT+COPY_RECT
|
|
|
35 |
bind LeftJoystickDown+RightJoystickRight CONTEXT+COPY_LINE
|
|
|
36 |
bind LeftJoystickDown+RightJoystickPress PASTE
|
|
|
37 |
|
|
|
38 |
bind LeftJoystickLeft+RightJoystickPress SAY_LINE
|
|
|
39 |
bind LeftJoystickLeft+RightJoystickUp SAY_ABOVE
|
|
|
40 |
bind LeftJoystickLeft+RightJoystickDown SAY_BELOW
|
|
|
41 |
bind LeftJoystickLeft+RightJoystickLeft SAY_SOFTER
|
|
|
42 |
bind LeftJoystickLeft+RightJoystickRight SAY_LOUDER
|
|
|
43 |
|
|
|
44 |
bind LeftJoystickRight+RightJoystickUp LEARN
|
|
|
45 |
bind LeftJoystickRight+RightJoystickDown HELP
|
|
|
46 |
|
|
|
47 |
|
|
|
48 |
context CLIP_NEW
|
|
|
49 |
bind RoutingKey1 CLIP_NEW
|
|
|
50 |
|
|
|
51 |
|
|
|
52 |
context CLIP_ADD
|
|
|
53 |
bind RoutingKey1 CLIP_ADD
|
|
|
54 |
|
|
|
55 |
|
|
|
56 |
context COPY_RECT
|
|
|
57 |
bind RoutingKey1 COPY_RECT
|
|
|
58 |
|
|
|
59 |
|
|
|
60 |
context COPY_LINE
|
|
|
61 |
bind RoutingKey1 COPY_LINE
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
context default
|