libkeymap 2.4.0
Library to manage the Linux keymaps
kmap.h
Go to the documentation of this file.
1
5#ifndef LK_KMAP_H
6#define LK_KMAP_H
7
8#include <keymap/context.h>
9
10#ifndef __GNUC__
11#undef __attribute__
12#define __attribute__(x) /*NOTHING*/
13#endif
14
15int lk_add_map(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)));
16int lk_map_exists(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)));
17
18int lk_get_keys_total(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)));
19
20int lk_add_key(struct lk_ctx *ctx, int k_table, int k_index, int keycode) __attribute__((nonnull(1)));
21int lk_del_key(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)));
22int lk_get_key(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)));
23int lk_key_exists(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)));
24
25/* Functions for key string manipulations */
26int lk_get_func(struct lk_ctx *ctx, struct kbsentry *kbs) __attribute__((nonnull(1, 2)));
27int lk_add_func(struct lk_ctx *ctx, struct kbsentry *kbs) __attribute__((nonnull(1, 2)));
28int lk_del_func(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)));
29int lk_func_exists(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)));
30
31/* Functions for manipulations with diacritical table */
32int lk_get_diacr(struct lk_ctx *ctx, int index, struct lk_kbdiacr *dcr) __attribute__((nonnull(1, 3)));
33int lk_add_diacr(struct lk_ctx *ctx, int index, struct lk_kbdiacr *dcr) __attribute__((nonnull(1, 3)));
34int lk_del_diacr(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)));
35int lk_diacr_exists(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)));
36int lk_append_diacr(struct lk_ctx *ctx, struct lk_kbdiacr *dcr) __attribute__((nonnull(1, 2)));
37int lk_append_compose(struct lk_ctx *ctx, struct lk_kbdiacr *dcr) __attribute__((nonnull(1, 2)));
38
39int lk_add_constants(struct lk_ctx *ctx) __attribute__((nonnull(1)));
40
41#include <kbdfile.h>
42
43int lk_parse_keymap(struct lk_ctx *ctx, struct kbdfile *f) __attribute__((nonnull(1, 2)));
44int lk_load_keymap(struct lk_ctx *ctx, int fd, int kbd_mode) __attribute__((nonnull(1)));
45
46#endif /* LK_KMAP_H */
Header contains flags, keywords and context structure.
int int lk_add_func(struct lk_ctx *ctx, struct kbsentry *kbs) __attribute__((nonnull(1
int int int lk_add_constants(struct lk_ctx *ctx) __attribute__((nonnull(1)))
int int lk_load_keymap(struct lk_ctx *ctx, int fd, int kbd_mode) __attribute__((nonnull(1)))
int lk_diacr_exists(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)))
int lk_add_key(struct lk_ctx *ctx, int k_table, int k_index, int keycode) __attribute__((nonnull(1)))
int int lk_append_compose(struct lk_ctx *ctx, struct lk_kbdiacr *dcr) __attribute__((nonnull(1
int int lk_add_diacr(struct lk_ctx *ctx, int index, struct lk_kbdiacr *dcr) __attribute__((nonnull(1
int lk_func_exists(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)))
int int int lk_del_func(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)))
int lk_del_key(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)))
int lk_parse_keymap(struct lk_ctx *ctx, struct kbdfile *f) __attribute__((nonnull(1
#define __attribute__(x)
Definition: kmap.h:12
int lk_get_func(struct lk_ctx *ctx, struct kbsentry *kbs) __attribute__((nonnull(1
int lk_get_key(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)))
int lk_map_exists(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)))
int lk_get_keys_total(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)))
int int int lk_del_diacr(struct lk_ctx *ctx, int index) __attribute__((nonnull(1)))
int lk_get_diacr(struct lk_ctx *ctx, int index, struct lk_kbdiacr *dcr) __attribute__((nonnull(1
int lk_append_diacr(struct lk_ctx *ctx, struct lk_kbdiacr *dcr) __attribute__((nonnull(1
int lk_add_map(struct lk_ctx *ctx, int k_table) __attribute__((nonnull(1)))
int lk_key_exists(struct lk_ctx *ctx, int k_table, int k_index) __attribute__((nonnull(1)))
Copy of struct kbdiacruc.
Definition: context.h:36