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 There are four thumb keys on the front. From left to right, they are:
|
|
|
20 |
note * Previous, Back, Advance, Next.
|
|
|
21 |
|
|
|
22 |
####################
|
|
|
23 |
# Default Bindings #
|
|
|
24 |
####################
|
|
|
25 |
|
|
|
26 |
bind Back+Advance HOME
|
|
|
27 |
bind Back LNUP
|
|
|
28 |
bind Advance LNDN
|
|
|
29 |
bind Previous FWINLT
|
|
|
30 |
bind Next FWINRT
|
|
|
31 |
|
|
|
32 |
bind Previous+Back TOP_LEFT
|
|
|
33 |
bind Previous+Advance BOT_LEFT
|
|
|
34 |
bind Next+Back PRDIFLN
|
|
|
35 |
bind Next+Advance NXDIFLN
|
|
|
36 |
|
|
|
37 |
bind Previous+RoutingKey CLIP_NEW
|
|
|
38 |
bind Back+RoutingKey CLIP_ADD
|
|
|
39 |
bind Advance+RoutingKey COPY_RECT
|
|
|
40 |
bind Next+RoutingKey COPY_LINE
|
|
|
41 |
bind Previous+Next PASTE
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
#################
|
|
|
45 |
# Menu Bindings #
|
|
|
46 |
#################
|
|
|
47 |
|
|
|
48 |
context menu
|
|
|
49 |
|
|
|
50 |
bind Previous FWINLT
|
|
|
51 |
bind Next FWINRT
|
|
|
52 |
bind Back MENU_PREV_ITEM
|
|
|
53 |
bind Advance MENU_NEXT_ITEM
|
|
|
54 |
bind Previous+Back MENU_FIRST_ITEM
|
|
|
55 |
bind Previous+Advance MENU_LAST_ITEM
|
|
|
56 |
bind Next+Back MENU_PREV_SETTING
|
|
|
57 |
bind Next+Advance MENU_NEXT_SETTING
|
|
|
58 |
bind Back+Advance PREFMENU
|
|
|
59 |
bind Back+Advance+Previous PREFLOAD
|
|
|
60 |
bind Back+Advance+Next PREFSAVE
|
|
|
61 |
|