blob: a720fe1f3cc84f87bacb70b575489c30785ee24c (
plain)
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
|
#ifndef IMV_BINDS_H
#define IMV_BINDS_H
#include <SDL2/SDL.h>
struct imv_binds;
struct list;
enum bind_result {
BIND_SUCCESS,
BIND_INVALID_KEYS,
BIND_INVALID_COMMAND,
BIND_CONFLICTS,
};
/* Create an imv_binds instance */
struct imv_binds *imv_binds_create(void);
/* Clean up an imv_binds instance */
void imv_binds_free(struct imv_binds *binds);
/* Create a key binding */
enum bind_result imv_binds_add(struct imv_binds *binds, const struct list *keys, const char *cmd);
/* Remove all key bindings */
void imv_binds_clear(struct imv_binds *binds);
/* Fetch the list of keys pressed so far */
const struct list *imv_bind_input_buffer(struct imv_binds *binds);
/* Abort the current input key sequence */
void imv_bind_clear_input(struct imv_binds *binds);
/* Handle an input event, if a bind is triggered, return its command */
struct list *imv_bind_handle_event(struct imv_binds *binds, const SDL_Event *event);
/* Convert a string (such as from a config) to a key list */
struct list *imv_bind_parse_keys(const char *keys);
/* Convert a key list to a string */
size_t imv_bind_print_keylist(const struct list *keys, char *buf, size_t len);
#endif
|