17 KiB
| title |
|---|
| Keyboards - Keyman Core API |
A keyboard is a set of rules and transforms in a Processor specific format for transforming key events into action items. The keyboard is parsed and loaded by the processsor and made available in an immutable fashion for use with any number of state objects.
km_core_keyboard_attrs struct
Provides read-only information about a keyboard.
typedef struct {
/** Processor specific version string. */
km_core_cu const * version_string;
/** Keyman keyboard ID string. */
km_core_cu const * id;
/** Set of default values for any options included in the keyboard. */
km_core_option_item const * default_options;
} km_core_keyboard_attrs;
km_core_keyboard_key struct
Describes a single key and modifier combination that a keyboard handles, for use by the Platform layer. This is used when the Platform layer must know in advance which keys are used by a given keyboard.
typedef struct {
/** A virtual key. */
km_core_virtual_key key;
/** A [km_core_modifier_state] bitmask. */
uint32_t modifier_flag;
} km_core_keyboard_key;
#define KM_CORE_KEYBOARD_KEY_LIST_END { 0, 0 }
km_core_keyboard_imx struct
Describes a single Input Method eXtension library and entry point.
typedef struct {
/** The fully-qualified path and filename of the dynamically loaded library
* file. */
km_core_cu const * library_name;
/** The entry point for the IMX. */
km_core_cu const * function_name;
/** unique identifier used to call this function */
uint32_t imx_id;
} km_core_keyboard_imx;
#define KM_CORE_KEYBOARD_IMX_END { 0, 0, 0 }
km_core_keyboard_load_from_blob function
Parse and load keyboard from the supplied blob and a pointer to the loaded keyboard into the out paramter.
Parameters
kb_name
a string with the name of the keyboard.
blob
a byte array containing the content of a KMX/KMX+ file.
blob_size
a size_t variable with the size of the blob in bytes.
keyboard
A pointer to result variable: A pointer to the opaque keyboard object returned by the Processor. This memory must be freed with a call to km_core_keyboard_dispose.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_NO_MEM- In the event an internal memory allocation fails.
KM_CORE_STATUS_IO_ERROR- In the event the keyboard file is unparseable for any reason
KM_CORE_STATUS_INVALID_ARGUMENT- In the event
keyboardis null. KM_CORE_STATUS_OS_ERROR- Bit 31 (high bit) set, bits 0-30 are an OS-specific error code.
KMN_API
km_core_status km_core_keyboard_load_from_blob(
const km_core_path_name kb_name,
const void* blob,
const size_t blob_size,
km_core_keyboard** keyboard
);
km_core_keyboard_dispose function
Free the allocated memory belonging to an opaque keyboard object previously returned by km_core_keyboard_load_from_blob.
Parameters
keyboard
A pointer to the opaque keyboard object to be disposed of.
KMN_API
void
km_core_keyboard_dispose(
km_core_keyboard const* keyboard
);
km_core_keyboard_get_attrs function
Returns the const internal attributes of the keyboard. This structure is valid for the lifetime of the opaque keyboard object. Do not modify the returned data.
Parameters
keyboard
A pointer to the opaque keyboard object to be queried.
out
A pointer to the result: A pointer to a km_core_keyboard_attrs structure.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_INVALID_ARGUMENT- If non-optional parameters are null.
KMN_API
km_core_status
km_core_keyboard_get_attrs(
km_core_keyboard const *keyboard,
km_core_keyboard_attrs const **out
);
km_core_keyboard_get_key_list function
Returns the unordered full set of modifier+virtual keys that are handled by the keyboard. The matching dispose call needs to be called to free the memory.
Parameters
keyboard
A pointer to the opaque keyboard object to be queried.
out
A pointer to an array of km_core_keyboard_key structures,
terminated by KM_CORE_KEYBOARD_KEY_LIST_END.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_INVALID_ARGUMENT- If non-optional parameters are null.
KMN_API
km_core_status
km_core_keyboard_get_key_list(
km_core_keyboard const *keyboard,
km_core_keyboard_key **out
);
km_core_keyboard_key_list_dispose function
Free the allocated memory belonging to a keyboard key list previously returned by km_core_keyboard_get_key_list.
Parameters
key_list
A pointer to the keyboard key list to be disposed of.
KMN_API
void
km_core_keyboard_key_list_dispose(
km_core_keyboard_key *key_list
);
km_core_keyboard_get_imx_list function
Returns the list of IMX libraries and function names that are referenced by the keyboard. The matching dispose call needs to be called to free the memory.
Parameters
keyboard
A pointer to the keyboard
imx_list
A pointer to a variable that will contain a pointer to the IMX list.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_INVALID_ARGUMENT- If non-optional parameters are null.
KMN_API
km_core_status
km_core_keyboard_get_imx_list(
km_core_keyboard const *keyboard,
km_core_keyboard_imx **imx_list
);
km_core_keyboard_imx_list_dispose function
Disposes of the IMX list.
Parameters
imx_list
A pointer to the IMX list.
KMN_API
void
km_core_keyboard_imx_list_dispose(
km_core_keyboard_imx *imx_list
);
km_core_state_imx_register_callback function
Register the IMX callback endpoint for the client.
Parameters
state
A pointer to the opaque state object
imx_callback
Pointer to a function that implements the IMX callback
callback_object
An opaque pointer that can be used to pass context information to the callback function, usually it is a user-defined data structure.
KMN_API
void
km_core_state_imx_register_callback(
km_core_state *state,
km_core_keyboard_imx_platform imx_callback,
void *callback_object
);
km_core_state_imx_deregister_callback function
De-register IMX callback endpoint for the client.
Parameters
state
A pointer to the opaque state object
KMN_API
void
km_core_state_imx_deregister_callback(
km_core_state *state
);
km_core_state_create function
Create a keyboard processor state object, maintaining state for the keyboard in the environment passed.
Parameters
keyboard
A pointer to the opaque keyboard object this object will hold state for.
env
The array of km_core_option_item key/value pairs used to
initialise the environment, terminated by
KM_CORE_OPTIONS_END.
out
A pointer to result variable: A pointer to the opaque state
object returned by the Processor, initalised to maintain
state for keyboard. This must be disposed of by a call to
km_core_state_dispose.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_NO_MEM- In the event memory is unavailable to allocate a state object.
KM_CORE_STATUS_INVALID_ARGUMENT- In the event the
keyboardoroutpointer are null.
KMN_API
km_core_status
km_core_state_create(
km_core_keyboard const *keyboard,
km_core_option_item const *env,
km_core_state **out
);
km_core_state_clone function
Clone an existing opaque state object.
Parameters
state
A pointer to the opaque state object to be cloned.
out
A pointer to result variable: A pointer to the opaque state
object returned by the Processor, cloned from the existing
object state. This must be disposed of by a call to
km_core_state_dispose.
Returns
One of the following values:
KM_CORE_STATUS_OK- On success.
KM_CORE_STATUS_NO_MEM- In the event memory is unavailable to allocate a state object.
KM_CORE_STATUS_INVALID_ARGUMENT- In the event the
stateoroutpointer are null.
KMN_API
km_core_status
km_core_state_clone(
km_core_state const *state,
km_core_state **out
);
km_core_state_dispose function
Free the allocated resources belonging to a km_core_state object previously returned by km_core_state_create or km_core_state_clone. After this all pointers previously returned by any km_core_state family of calls will become invalid.
Parameters
state
A pointer to the opaque state object to be disposed.
KMN_API
void
km_core_state_dispose(
km_core_state const *state
);
km_core_debug_context_type enum
As of version 17, the cached context is an internal property of the state, not exposed to the consumer of the API -- apart from the Keyman Developer Keyboard Debugger. However, for other debug purposes, it is helpful to be able to examine the cached context, so a debug-formatted version of the context is made available with km_core_state_context_debug. This is not intended to be parsed for reading the context for other purposes, and the format may change.
The three context types are: cached, intermediate, and app.
typedef enum {
/** the internal context used by Core, which may be normalized and may contain
* markers. This is set via [km_core_state_context_set_if_needed], and will
* be modified during keystroke event processing. */
KM_CORE_DEBUG_CONTEXT_CACHED = 0,
/** internal context used by IMX, only valid during keystroke event
* processing. */
KM_CORE_DEBUG_CONTEXT_INTERMEDIATE = 1,
/** an exact copy of the current context passed in to
* [km_core_state_context_set_if_needed], which is used to verify the precise
* text manipulations required when emitted changes. This input context is in
* "NFU" -- normalization form unknown, and may be mixed normalization so may
* require fixups when it is manipulated by keyboard processors that support
* normalization, such as the LDML keyboard processor. */
KM_CORE_DEBUG_CONTEXT_APP = 2
} km_core_debug_context_type;
km_core_state_context_debug function
Returns a debug formatted string of the context from the state.
Parameters
state
A pointer to the opaque state object to be queried.
context_type
The type of context to retrieve from the state.
Returns
A pointer to a km_core_cu UTF-16 string. Must be disposed of by a call to km_core_cu_dispose.
KMN_API
km_core_cu *
km_core_state_context_debug(
const km_core_state *state,
km_core_debug_context_type context_type
);
km_core_cu_dispose function
Free the allocated memory belonging to a km_core_cu array previously
returned by km_core_state_context_debug. May be nullptr.
Parameters
cp
A pointer to the start of the km_core_cu array to be disposed of.
KMN_API
void
km_core_cu_dispose(
km_core_cu *cp
);