/usr/include/kmfl/kmfl.h is in libkmflcomp-dev 0.9.10-1.
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | /* kmfl.h
* Copyright (C) 2005 SIL International and Tavultesoft Pty Ltd
*
* This file is part of KMFL compiler.
*
* KMFL compiler is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* KMFL compiler is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with KMFL compiler; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
// KMFL.H: Header for compiler and interpreter for Keyboard Mapping for Linux
#ifndef KMFL_H
#define KMFL_H
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#define FILE_VERSION "1"
#define BASE_VERSION "320"
#define LAST_VERSION "700"
// Undefine some Windows constants so we can use them (even on Windows)
#ifdef UNDEFINED
#undef UNDEFINED
#endif
#ifdef SS_BITMAP
#undef SS_BITMAP
#endif
// Keyboard flags
#define KF_ANSI 0
#define KF_UNICODE 1
#define KF_POSITIONAL 0
#define KF_MNEMONIC 1
// State bit assignments
#define KS_LSHIFT 1
#define KS_CAPS 2
#define KS_LCTRL 4
#define KS_LALT 8
#define KS_RSHIFT 16
#define KS_NCAPS 32
#define KS_RCTRL 64
#define KS_RALT 128
#define KS_SHIFT (KS_LSHIFT|KS_RSHIFT)
#define KS_CTRL (KS_LCTRL|KS_RCTRL)
#define KS_ALT (KS_LALT|KS_RALT)
// Group flags
#define GF_USEKEYS 1
// Various constants
#define UNDEFINED (-1) // redefine this value for our own use
#define NAMELEN 64 // maximum length of names for stores, groups or deadkeys
#define MAX_HISTORY 128 // number of output (32-bit) characters remembered
#define MAX_OUTPUT 128 // maximum length of output allowed from any one key event
#define MAX_KEYBOARDS 64 // maximum number of keyboards that can be loaded
#define MAX_INSTANCES 255 // maximum number of keyboard instances that can be supported
#define VERSION_ZERO 1000 // lowest valid version
// Variable types and structures
#ifdef _WIN32
typedef unsigned int UINT; // 32-bit unsigned integer (general purpose)
#else
typedef u_int32_t UINT;
#endif
typedef int32_t INT;
typedef u_int8_t BYTE;
typedef UINT ITEM; // 32-bit unsigned integer for UTF-32 or control values
typedef UINT OFFSET; // 32-bit unsigned integer used as table offsets
#define ITEMSIZE (sizeof(ITEM))
// Rule (and store) item types (high-order byte of ITEMs)
enum {ITEM_CHAR=0,ITEM_KEYSYM,ITEM_ANY,ITEM_INDEX,ITEM_OUTS,ITEM_DEADKEY,ITEM_CONTEXT,ITEM_NUL,ITEM_RETURN,
ITEM_BEEP,ITEM_USE,ITEM_MATCH,ITEM_NOMATCH,ITEM_PLUS,ITEM_CALL, ITEM_NOTANY};
// Macros to determine an item type and build an item from item type and value
#define ITEM_TYPE(x) (((x)>>24)&0xff)
#define MAKE_ITEM(t,x) (((t)<<24)|((x)&0xffffff))
#define MAKE_PARAMETER_ITEM(t,i,x) (((t)<<24)|(((i)&0xff)<<16)|((x)&0xffff))
// Enumerate special stores with reserved names (prefixed by &)
enum TAG_SS {SS_UNDEFINED=-1,SS_NAME,SS_VERSION,SS_HOTKEY,SS_LANGUAGE,SS_LAYOUT,SS_COPYRIGHT,
SS_MESSAGE,SS_BITMAP,SS_MNEMONIC,SS_ETHNOLOGUE,SS_CAPSOFF,SS_CAPSON,SS_CAPSFREE,SS_AUTHOR};
// The following compiled keyboard structures and types are used by both the compiler
// and the interpreter
// Unnamed stores
struct _xstore {
UINT len; // number of items in store
OFFSET items; // offset to store text (from start of string table)
};
typedef struct _xstore XSTORE;
// Interpreter rule structure
struct _xrule {
UINT ilen; // input rule length (items)
UINT olen; // output rule length (items)
OFFSET lhs; // offset to input (match) rule (from start of string table)
OFFSET rhs; // offset to output (process) rule (from start of string table)
};
typedef struct _xrule XRULE;
// Unnamed groups (each group header is followed by its rules, so the rules are not included)
struct _xgroup {
UINT flags; // group flags
UINT nrules; // number of rules in group
UINT rule1; // (absolute) rule number of first rule of group
UINT mrlen; // length of match rule (rhs)
UINT nmrlen; // length of nomatch rule (rhs)
OFFSET match; // offset to match (rhs) rule (from start of string table)
OFFSET nomatch; // offset to nomatch (rhs) rule (from start of string table)
};
typedef struct _xgroup XGROUP;
// Compiled keyboard structure
struct _xkeyboard {
char id[4]; // always KMFL
char version[4]; // keyboard version(3) and file version(1)
char name[NAMELEN+1]; // utf8 version of keyboard name
UINT mode:1; // Keyboard Flags: Unicode (0) or ANSI (1)
UINT layout:1; // positional(0) or mnemonic(1)
UINT capson:1; // caps on only
UINT capsoff:1; // caps always off
UINT capsfree:1; // shift frees caps
UINT usedll:1; // use external library (to be implemented)
UINT hotkey; // shift state + keysym for hotkey
UINT group1; // index of first group used
UINT nstores; // number of defined stores
UINT ngroups; // number of groups
};
typedef struct _xkeyboard XKEYBOARD;
// Keyboard mapping server instance
struct _kmsi {
void *connection; // instance identification passed by server
char kbd_name[NAMELEN+1]; // name of currently attached keyboard
int keyboard_number; // the keyboard slot
XKEYBOARD *keyboard; // pointer to valid keyboard structure
XGROUP *groups; // pointer to list of groups in loaded keyboard
XRULE *rules; // pointer to list of rules in loaded keyboard
XSTORE *stores; // pointer to list of stores in loaded keyboard
ITEM *strings; // pointer to (32-bit) string table in loaded keyboard
ITEM *history; // (32-bit) character output history
UINT nhistory; // valid history count
ITEM output_queue[MAX_OUTPUT];
UINT noutput_queue;
struct _kmsi *next; // link to next instance
struct _kmsi *last; // link to previous instance
};
typedef struct _kmsi KMSI;
#ifdef __cplusplus
}
#endif
#endif /* *** end of KMFL.H *** */
|