summaryrefslogtreecommitdiff
path: root/mtdev/iobuf.c
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-06-16 18:48:53 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-06-16 18:54:52 +0200
commit21a363a2486a713434e890fc1f6b86a180755230 (patch)
treeca788ccf7c8269c5cbd41350463fa478aa499903 /mtdev/iobuf.c
parent523d193b089111849873d9de0ec1bf29f4176fbc (diff)
Add tapping logic
This patch adds tap-to-click, tap-and-hold for dragging, two-finger and three-finger taps. Turned on by default for touch screens only; switch on in gestures.c. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'mtdev/iobuf.c')
-rw-r--r--mtdev/iobuf.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mtdev/iobuf.c b/mtdev/iobuf.c
index 8e367b8..65c33f6 100644
--- a/mtdev/iobuf.c
+++ b/mtdev/iobuf.c
@@ -20,6 +20,7 @@
20 **************************************************************************/ 20 **************************************************************************/
21 21
22#include <mtdev-iobuf.h> 22#include <mtdev-iobuf.h>
23#include <sys/poll.h>
23 24
24void init_iobuf(struct IOBuffer *buf) 25void init_iobuf(struct IOBuffer *buf)
25{ 26{
@@ -52,3 +53,11 @@ const struct input_event *get_iobuf_event(struct IOBuffer *buf, int fd)
52 buf->at += EVENT_SIZE; 53 buf->at += EVENT_SIZE;
53 return ev; 54 return ev;
54} 55}
56
57int poll_iobuf(struct IOBuffer *buf, int fd, int ms)
58{
59 struct pollfd fds = { fd, POLLIN, 0 };
60 if (buf->top != buf->at)
61 return 1;
62 return poll(&fds, 1, ms);
63}