diff options
| author | Henrik Rydberg <rydberg@bitmath.org> | 2010-07-29 15:54:31 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-08-05 22:48:38 +0200 |
| commit | e0eb1015bf30fd0913db571b000ba6a83ea22660 (patch) | |
| tree | a3d62152066cfb8521c80806596a4fb0fe322014 /include/grail.h | |
| parent | b76660d71e2ea77752025089bd71deffad64e325 (diff) | |
Split the code into recognizer and inserter
Refactor code to make more room for gesture recognition. Also simplify
public headers.
Signed-off-by: Henrik Rydberg <rydberg@bitmath.org>
Diffstat (limited to 'include/grail.h')
| -rw-r--r-- | include/grail.h | 80 |
1 files changed, 63 insertions, 17 deletions
diff --git a/include/grail.h b/include/grail.h index c390e22..de202b5 100644 --- a/include/grail.h +++ b/include/grail.h | |||
| @@ -27,31 +27,82 @@ | |||
| 27 | 27 | ||
| 28 | #include <linux/input.h> | 28 | #include <linux/input.h> |
| 29 | 29 | ||
| 30 | #define DIM_GRAIL_PROP 8 | 30 | #define GRAIL_STATUS_BEGIN 0 |
| 31 | #define DIM_GRAIL_TYPE 64 | 31 | #define GRAIL_STATUS_UPDATE 1 |
| 32 | #define GRAIL_STATUS_END 2 | ||
| 32 | 33 | ||
| 34 | #define DIM_GRAIL_TYPE 64 | ||
| 35 | #define DIM_GRAIL_TYPE_BYTES (DIM_GRAIL_TYPE >> 3) | ||
| 36 | |||
| 37 | #define GRAIL_TYPE_MOVE 0 | ||
| 38 | #define GRAIL_TYPE_VSCROLL 1 | ||
| 39 | #define GRAIL_TYPE_HSCROLL 2 | ||
| 40 | #define GRAIL_TYPE_SCROLL 3 | ||
| 41 | |||
| 42 | #define DIM_GRAIL_PROP 8 | ||
| 43 | |||
| 44 | static const int GRAIL_NPROP[] = { | ||
| 45 | 2, /* MOVE */ | ||
| 46 | 1, /* VSCROLL */ | ||
| 47 | 1, /* HSCROLL */ | ||
| 48 | 2, /* SCROLL */ | ||
| 49 | }; | ||
| 50 | |||
| 51 | typedef unsigned char grail_mask_t; | ||
| 33 | typedef int grail_prop_t; | 52 | typedef int grail_prop_t; |
| 34 | typedef __u64 grail_time_t; | 53 | typedef __u64 grail_time_t; |
| 35 | typedef unsigned long grail_clientid_t; | 54 | |
| 55 | static inline void grail_set_mask(grail_mask_t *mask, int i) | ||
| 56 | { | ||
| 57 | mask[i >> 3] |= (1 << (i & 7)); | ||
| 58 | } | ||
| 59 | |||
| 60 | static inline void grail_clear_mask(grail_mask_t *mask, int i) | ||
| 61 | { | ||
| 62 | mask[i >> 3] &= ~(1 << (i & 7)); | ||
| 63 | } | ||
| 64 | |||
| 65 | static inline int grail_get_mask(const grail_mask_t *mask, int i) | ||
| 66 | { | ||
| 67 | return (mask[i >> 3] >> (i & 7)) & 1; | ||
| 68 | } | ||
| 69 | |||
| 70 | struct grail_coord { | ||
| 71 | int x, y; | ||
| 72 | }; | ||
| 73 | |||
| 74 | struct grail_client_id { | ||
| 75 | int client; | ||
| 76 | int root, event, child; | ||
| 77 | }; | ||
| 78 | |||
| 79 | struct grail_client_info { | ||
| 80 | struct grail_client_id id; | ||
| 81 | grail_mask_t mask[DIM_GRAIL_TYPE_BYTES]; | ||
| 82 | }; | ||
| 36 | 83 | ||
| 37 | struct grail_event { | 84 | struct grail_event { |
| 38 | int type; | 85 | int type; |
| 39 | int id; | 86 | int id; |
| 40 | int x; | 87 | int status; |
| 41 | int y; | 88 | struct grail_coord pos; |
| 42 | int status; | 89 | struct grail_client_id client_id; |
| 43 | grail_time_t time; | 90 | grail_time_t time; |
| 44 | grail_prop_t prop[DIM_GRAIL_PROP]; | 91 | grail_prop_t prop[DIM_GRAIL_PROP]; |
| 45 | }; | 92 | }; |
| 46 | 93 | ||
| 47 | struct grail { | 94 | struct grail { |
| 48 | int (*get_clients)(int x, int y, int screen, | 95 | int (*get_clients)(struct grail *ge, |
| 49 | grail_clientid_t *clients, int nclients); | 96 | struct grail_client_info *client, int max_clients, |
| 97 | const struct grail_coord *coords, int num_coords, | ||
| 98 | const grail_mask_t *types); | ||
| 50 | void (*event)(struct grail *ge, | 99 | void (*event)(struct grail *ge, |
| 51 | const struct input_event *ev); | 100 | const struct input_event *ev); |
| 52 | void (*gesture)(struct grail *ge, | 101 | void (*gesture)(struct grail *ge, |
| 53 | const struct grail_event *ev); | 102 | const struct grail_event *ev); |
| 54 | struct grail_impl *impl; | 103 | struct grail_impl *impl; |
| 104 | struct gesture_inserter *gin; | ||
| 105 | struct gesture_recognizer *gru; | ||
| 55 | void *priv; | 106 | void *priv; |
| 56 | }; | 107 | }; |
| 57 | 108 | ||
| @@ -60,9 +111,4 @@ int grail_idle(struct grail *ge, int fd, int ms); | |||
| 60 | int grail_pull(struct grail *ge, int fd); | 111 | int grail_pull(struct grail *ge, int fd); |
| 61 | void grail_close(struct grail *ge, int fd); | 112 | void grail_close(struct grail *ge, int fd); |
| 62 | 113 | ||
| 63 | void grail_add_client(struct grail *ge, grail_clientid_t id, | ||
| 64 | const int *types, const int *priority, int ntypes); | ||
| 65 | void grail_remove_client(struct grail *ge, grail_clientid_t id); | ||
| 66 | |||
| 67 | |||
| 68 | #endif | 114 | #endif |
