/usr/include/brltty/brldefs-al.h is in libbrlapi-dev 5.5-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | /*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2017 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU Lesser General Public License, as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any
* later version. Please see the file LICENSE-LGPL for details.
*
* Web Page: http://brltty.com/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#ifndef BRLTTY_INCLUDED_AL_BRLDEFS
#define BRLTTY_INCLUDED_AL_BRLDEFS
#define AL_KEYS_OPERATION 14
#define AL_KEYS_STATUS 6
#define AL_KEYS_SATELLITE 6
#define AL_KEYS_ETOUCH 4
#define AL_KEYS_SMARTPAD 9
#define AL_KEYS_THUMB 5
#define AL_KEYS_FEATUREPACK 14
typedef enum {
AL_KEY_OPERATION = 1,
AL_KEY_STATUS1 = AL_KEY_OPERATION + AL_KEYS_OPERATION,
AL_KEY_STATUS2 = AL_KEY_STATUS1 + AL_KEYS_STATUS,
AL_KEY_LEFT_PAD = AL_KEY_STATUS2 + AL_KEYS_STATUS,
AL_KEY_RIGHT_PAD = AL_KEY_LEFT_PAD + AL_KEYS_SATELLITE,
AL_KEY_ETOUCH = AL_KEY_RIGHT_PAD + AL_KEYS_SATELLITE,
AL_KEY_SMARTPAD = AL_KEY_ETOUCH + AL_KEYS_ETOUCH,
AL_KEY_THUMB = AL_KEY_SMARTPAD + AL_KEYS_SMARTPAD,
AL_KEY_FEATUREPACK = AL_KEY_THUMB + AL_KEYS_THUMB,
AL_KEY_Prog = AL_KEY_OPERATION,
AL_KEY_Home,
AL_KEY_Cursor,
AL_KEY_Up,
AL_KEY_Left,
AL_KEY_Right,
AL_KEY_Down,
AL_KEY_Cursor2,
AL_KEY_Home2,
AL_KEY_Prog2,
AL_KEY_LeftTumblerLeft,
AL_KEY_LeftTumblerRight,
AL_KEY_RightTumblerLeft,
AL_KEY_RightTumblerRight,
AL_KEY_LeftPadF1 = AL_KEY_LEFT_PAD,
AL_KEY_LeftPadUp,
AL_KEY_LeftPadLeft,
AL_KEY_LeftPadDown,
AL_KEY_LeftPadRight,
AL_KEY_LeftPadF2,
AL_KEY_RightPadF1 = AL_KEY_RIGHT_PAD,
AL_KEY_RightPadUp,
AL_KEY_RightPadLeft,
AL_KEY_RightPadDown,
AL_KEY_RightPadRight,
AL_KEY_RightPadF2,
AL_KEY_ETouchLeftRear = AL_KEY_ETOUCH,
AL_KEY_ETouchLeftFront,
AL_KEY_ETouchRightRear,
AL_KEY_ETouchRightFront,
AL_KEY_SmartpadF1 = AL_KEY_SMARTPAD,
AL_KEY_SmartpadF2,
AL_KEY_SmartpadLeft,
AL_KEY_SmartpadEnter,
AL_KEY_SmartpadUp,
AL_KEY_SmartpadDown,
AL_KEY_SmartpadRight,
AL_KEY_SmartpadF3,
AL_KEY_SmartpadF4,
AL_KEY_Dot1 = AL_KEY_FEATUREPACK + 1,
AL_KEY_Dot2,
AL_KEY_Dot3,
AL_KEY_Dot4,
AL_KEY_Dot5,
AL_KEY_Dot6,
AL_KEY_Dot7,
AL_KEY_Dot8,
AL_KEY_Control,
AL_KEY_Windows,
AL_KEY_Space,
AL_KEY_Alt,
AL_KEY_Enter,
AL_KEY_RELEASE = 0X80
} AL_NavigationKey;
typedef enum {
AL_GRP_NavigationKeys = 0,
AL_GRP_RoutingKeys1,
AL_GRP_RoutingKeys2
} AL_KeyGroup;
#endif /* BRLTTY_INCLUDED_AL_BRLDEFS */
|