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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
/*
* Copyright 2004 Peter Osterlund <petero2@telia.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "eventcomm.h"
#include "synproto.h"
#include <xisb.h>
#define SYNAPTICS_PRIVATE
#include "synaptics.h"
#include <xf86.h>
#define SYSCALL(call) while (((call) == -1) && (errno == EINTR))
/*****************************************************************************
* Function Definitions
****************************************************************************/
static void
EventDeviceOnHook(LocalDevicePtr local)
{
/* Try to grab the event device so that data don't leak to /dev/input/mice */
int ret;
SYSCALL(ret = ioctl(local->fd, EVIOCGRAB, (pointer)1));
if (ret < 0) {
xf86Msg(X_WARNING, "%s can't grab event device\n",
local->name, errno);
}
}
static void
EventDeviceOffHook(LocalDevicePtr local)
{
}
static Bool
EventQueryHardware(LocalDevicePtr local, struct synapticshw *synhw, Bool *hasGuest)
{
return TRUE;
}
static Bool
SynapticsReadEvent(SynapticsPrivate *priv, struct input_event *ev)
{
int i, c;
unsigned char *pBuf, u;
for (i = 0; i < sizeof(struct input_event); i++) {
if ((c = XisbRead(priv->buffer)) < 0)
return FALSE;
u = (unsigned char)c;
pBuf = (unsigned char *)ev;
pBuf[i] = u;
}
return TRUE;
}
static Bool
EventReadHwState(LocalDevicePtr local, SynapticsPrivate *priv,
struct SynapticsHwState *hwRet)
{
struct input_event ev;
Bool v;
struct SynapticsHwState *hw = &(priv->hwState);
while (SynapticsReadEvent(priv, &ev)) {
switch (ev.type) {
case EV_SYN:
switch (ev.code) {
case SYN_REPORT:
if (priv->oneFinger)
hw->numFingers = 1;
else if (priv->twoFingers)
hw->numFingers = 2;
else if (priv->threeFingers)
hw->numFingers = 3;
else
hw->numFingers = 0;
*hwRet = *hw;
return TRUE;
}
case EV_KEY:
v = (ev.value ? TRUE : FALSE);
switch (ev.code) {
case BTN_LEFT:
hw->left = v;
break;
case BTN_RIGHT:
hw->right = v;
break;
case BTN_MIDDLE:
hw->middle = v;
break;
case BTN_FORWARD:
hw->up = v;
break;
case BTN_BACK:
hw->down = v;
break;
case BTN_0:
hw->multi[0] = v;
break;
case BTN_1:
hw->multi[1] = v;
break;
case BTN_2:
hw->multi[2] = v;
break;
case BTN_3:
hw->multi[3] = v;
break;
case BTN_4:
hw->multi[4] = v;
break;
case BTN_5:
hw->multi[5] = v;
break;
case BTN_6:
hw->multi[6] = v;
break;
case BTN_7:
hw->multi[7] = v;
break;
case BTN_TOOL_FINGER:
priv->oneFinger = v;
break;
case BTN_TOOL_DOUBLETAP:
priv->twoFingers = v;
break;
case BTN_TOOL_TRIPLETAP:
priv->threeFingers = v;
break;
}
break;
case EV_ABS:
switch (ev.code) {
case ABS_X:
hw->x = ev.value;
break;
case ABS_Y:
hw->y = ev.value;
break;
case ABS_PRESSURE:
hw->z = ev.value;
break;
case ABS_TOOL_WIDTH:
hw->fingerWidth = ev.value;
break;
}
break;
}
}
return FALSE;
}
struct SynapticsProtocolOperations event_proto_operations = {
EventDeviceOnHook,
EventDeviceOffHook,
EventQueryHardware,
EventReadHwState
};
|