chiark / gitweb /
Button zones: Remove inexplicable pad_with/2 offset
[xf86-input-mtrack.git] / src / mtouch.c
1 /***************************************************************************
2  *
3  * Multitouch X driver
4  * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
5  * Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  **************************************************************************/
22
23 #include "mtouch.h"
24
25 static const int use_grab = 0;
26
27 int mtouch_configure(struct MTouch* mt, int fd)
28 {
29         mt->fd = fd;
30         int rc = read_capabilities(&mt->caps, mt->fd);
31         if (rc < 0)
32                 return rc;
33         output_capabilities(&mt->caps);
34         return 0;
35 }
36
37
38 int mtouch_open(struct MTouch* mt, int fd)
39 {
40         int ret;
41         mt->fd = fd;
42         ret = mtdev_open(&mt->dev, mt->fd);
43         if (ret)
44                 goto error;
45         mconfig_init(&mt->cfg, &mt->caps);
46         hwstate_init(&mt->hs, &mt->caps);
47         mtstate_init(&mt->state);
48         gestures_init(mt);
49         if (use_grab) {
50                 SYSCALL(ret = ioctl(fd, EVIOCGRAB, 1));
51                 if (ret)
52                         goto close;
53         }
54         return 0;
55  close:
56         mtdev_close(&mt->dev);
57  error:
58         return ret;
59 }
60
61
62 int mtouch_close(struct MTouch* mt)
63 {
64         int ret;
65         if (use_grab) {
66                 SYSCALL(ret = ioctl(mt->fd, EVIOCGRAB, 0));
67                 if (ret)
68                         xf86Msg(X_WARNING, "mtouch: ungrab failed\n");
69         }
70         mtdev_close(&mt->dev);
71         return 0;
72 }
73
74 int mtouch_read(struct MTouch* mt)
75 {
76         int ret = hwstate_modify(&mt->hs, &mt->dev, mt->fd, &mt->caps);
77         if (ret <= 0)
78                 return ret;
79         mtstate_extract(&mt->state, &mt->cfg, &mt->hs, &mt->caps);
80         gestures_extract(mt);
81         return 1;
82 }
83
84 int mtouch_delayed(struct MTouch* mt)
85 {
86         return gestures_delayed(mt);
87 }
88