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 outer key on the left, identified by three horizontal bars, is subnamed F1.
|
|
|
20 |
note * The inner key on the left, identified by one horizontal bar, is subnamed F2.
|
|
|
21 |
note * The inner key on the right, identified by one vertical bar, is subnamed F3.
|
|
|
22 |
note * The outer key on the right, identified by three vertical bars, is subnamed F4.
|
|
|
23 |
note * The keys in the middle form a five-way directional pad:
|
|
|
24 |
note + The round key in the middle is subnamed Enter.
|
|
|
25 |
note + The short, thin keys that form a square around it are subnamed Left, Right, Up, and Down.
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
####################
|
|
|
29 |
# Default Bindings #
|
|
|
30 |
####################
|
|
|
31 |
|
|
|
32 |
bind SmartpadLeft KEY_CURSOR_LEFT
|
|
|
33 |
bind SmartpadRight KEY_CURSOR_RIGHT
|
|
|
34 |
bind SmartpadUp KEY_CURSOR_UP
|
|
|
35 |
bind SmartpadDown KEY_CURSOR_DOWN
|
|
|
36 |
bind SmartpadEnter PASTE
|
|
|
37 |
|
|
|
38 |
bind SmartpadF2 TIME
|
|
|
39 |
|
|
|
40 |
bind SmartpadF1+SmartpadLeft SWITCHVT_PREV
|
|
|
41 |
bind SmartpadF1+SmartpadRight SWITCHVT_NEXT
|
|
|
42 |
bind SmartpadF1+SmartpadEnter KEY_INSERT
|
|
|
43 |
bind SmartpadF1+!RoutingKey1 SWITCHVT
|
|
|
44 |
|
|
|
45 |
bind SmartpadF2+SmartpadUp KEY_PAGE_UP
|
|
|
46 |
bind SmartpadF2+SmartpadDown KEY_PAGE_DOWN
|
|
|
47 |
bind SmartpadF2+SmartpadLeft KEY_HOME
|
|
|
48 |
bind SmartpadF2+SmartpadRight KEY_END
|
|
|
49 |
bind SmartpadF2+SmartpadEnter KEY_DELETE
|
|
|
50 |
bind SmartpadF2+!RoutingKey1 KEY_FUNCTION
|
|
|
51 |
|
|
|
52 |
bind SmartpadF3+SmartpadF4 MUTE
|
|
|
53 |
|
|
|
54 |
bind SmartpadF3+SmartpadRight SAY_LINE
|
|
|
55 |
bind SmartpadF3+SmartpadUp SAY_ABOVE
|
|
|
56 |
bind SmartpadF3+SmartpadDown SAY_BELOW
|
|
|
57 |
bind SmartpadF3+SmartpadEnter SPKHOME
|
|
|
58 |
|
|
|
59 |
bind SmartpadF4+SmartpadLeft SAY_SLOWER
|
|
|
60 |
bind SmartpadF4+SmartpadRight SAY_FASTER
|
|
|
61 |
bind SmartpadF4+SmartpadDown SAY_SOFTER
|
|
|
62 |
bind SmartpadF4+SmartpadUp SAY_LOUDER
|
|
|
63 |
bind SmartpadF4+SmartpadEnter AUTOSPEAK
|
|
|
64 |
|
|
|
65 |
bind SmartpadF1+SmartpadF2+SmartpadEnter RESTARTBRL
|
|
|
66 |
bind SmartpadF3+SmartpadF4+SmartpadEnter RESTARTSPEECH
|
|
|
67 |
|
|
|
68 |
|
|
|
69 |
#################
|
|
|
70 |
# Menu Bindings #
|
|
|
71 |
#################
|
|
|
72 |
|
|
|
73 |
context menu
|
|
|
74 |
|
|
|
75 |
bind SmartpadF1 PREFMENU
|
|
|
76 |
bind SmartpadF2 MENU_PREV_LEVEL
|
|
|
77 |
bind SmartpadF4 PREFLOAD
|
|
|
78 |
|
|
|
79 |
bind SmartpadUp MENU_PREV_ITEM
|
|
|
80 |
bind SmartpadDown MENU_NEXT_ITEM
|
|
|
81 |
bind SmartpadLeft MENU_PREV_SETTING
|
|
|
82 |
bind SmartpadRight MENU_NEXT_SETTING
|
|
|
83 |
bind SmartpadEnter PREFSAVE
|
|
|
84 |
|
|
|
85 |
|