1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun * X server support of the XINPUT extension for xquartz
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * This is currently a copy of Xi/stubs.c, but eventually this
5*4882a593Smuzhiyun * should include more complete XINPUT support.
6*4882a593Smuzhiyun */
7*4882a593Smuzhiyun
8*4882a593Smuzhiyun /************************************************************
9*4882a593Smuzhiyun
10*4882a593Smuzhiyun Copyright 1989, 1998 The Open Group
11*4882a593Smuzhiyun
12*4882a593Smuzhiyun Permission to use, copy, modify, distribute, and sell this software and its
13*4882a593Smuzhiyun documentation for any purpose is hereby granted without fee, provided that
14*4882a593Smuzhiyun the above copyright notice appear in all copies and that both that
15*4882a593Smuzhiyun copyright notice and this permission notice appear in supporting
16*4882a593Smuzhiyun documentation.
17*4882a593Smuzhiyun
18*4882a593Smuzhiyun The above copyright notice and this permission notice shall be included in
19*4882a593Smuzhiyun all copies or substantial portions of the Software.
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22*4882a593Smuzhiyun IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23*4882a593Smuzhiyun FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24*4882a593Smuzhiyun OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
25*4882a593Smuzhiyun AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26*4882a593Smuzhiyun CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27*4882a593Smuzhiyun
28*4882a593Smuzhiyun Except as contained in this notice, the name of The Open Group shall not be
29*4882a593Smuzhiyun used in advertising or otherwise to promote the sale, use or other dealings
30*4882a593Smuzhiyun in this Software without prior written authorization from The Open Group.
31*4882a593Smuzhiyun
32*4882a593Smuzhiyun Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
33*4882a593Smuzhiyun
34*4882a593Smuzhiyun All Rights Reserved
35*4882a593Smuzhiyun
36*4882a593Smuzhiyun Permission to use, copy, modify, and distribute this software and its
37*4882a593Smuzhiyun documentation for any purpose and without fee is hereby granted,
38*4882a593Smuzhiyun provided that the above copyright notice appear in all copies and that
39*4882a593Smuzhiyun both that copyright notice and this permission notice appear in
40*4882a593Smuzhiyun supporting documentation, and that the name of Hewlett-Packard not be
41*4882a593Smuzhiyun used in advertising or publicity pertaining to distribution of the
42*4882a593Smuzhiyun software without specific, written prior permission.
43*4882a593Smuzhiyun
44*4882a593Smuzhiyun HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
45*4882a593Smuzhiyun ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
46*4882a593Smuzhiyun HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
47*4882a593Smuzhiyun ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
48*4882a593Smuzhiyun WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
49*4882a593Smuzhiyun ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
50*4882a593Smuzhiyun SOFTWARE.
51*4882a593Smuzhiyun
52*4882a593Smuzhiyun ********************************************************/
53*4882a593Smuzhiyun
54*4882a593Smuzhiyun #ifdef HAVE_DIX_CONFIG_H
55*4882a593Smuzhiyun #include <dix-config.h>
56*4882a593Smuzhiyun #endif
57*4882a593Smuzhiyun
58*4882a593Smuzhiyun #include <X11/X.h>
59*4882a593Smuzhiyun #include <X11/Xproto.h>
60*4882a593Smuzhiyun #include "inputstr.h"
61*4882a593Smuzhiyun #include <X11/extensions/XI.h>
62*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>
63*4882a593Smuzhiyun #include "XIstubs.h"
64*4882a593Smuzhiyun #include "darwin.h"
65*4882a593Smuzhiyun
66*4882a593Smuzhiyun /****************************************************************************
67*4882a593Smuzhiyun *
68*4882a593Smuzhiyun * Caller: ProcXSetDeviceMode
69*4882a593Smuzhiyun *
70*4882a593Smuzhiyun * Change the mode of an extension device.
71*4882a593Smuzhiyun * This function is used to change the mode of a device from reporting
72*4882a593Smuzhiyun * relative motion to reporting absolute positional information, and
73*4882a593Smuzhiyun * vice versa.
74*4882a593Smuzhiyun * The default implementation below is that no such devices are supported.
75*4882a593Smuzhiyun *
76*4882a593Smuzhiyun */
77*4882a593Smuzhiyun
78*4882a593Smuzhiyun int
SetDeviceMode(ClientPtr client,DeviceIntPtr dev,int mode)79*4882a593Smuzhiyun SetDeviceMode(ClientPtr client, DeviceIntPtr dev, int mode)
80*4882a593Smuzhiyun {
81*4882a593Smuzhiyun DEBUG_LOG("SetDeviceMode(%p, %p, %d)\n", client, dev, mode);
82*4882a593Smuzhiyun return BadMatch;
83*4882a593Smuzhiyun }
84*4882a593Smuzhiyun
85*4882a593Smuzhiyun /****************************************************************************
86*4882a593Smuzhiyun *
87*4882a593Smuzhiyun * Caller: ProcXSetDeviceValuators
88*4882a593Smuzhiyun *
89*4882a593Smuzhiyun * Set the value of valuators on an extension input device.
90*4882a593Smuzhiyun * This function is used to set the initial value of valuators on
91*4882a593Smuzhiyun * those input devices that are capable of reporting either relative
92*4882a593Smuzhiyun * motion or an absolute position, and allow an initial position to be set.
93*4882a593Smuzhiyun * The default implementation below is that no such devices are supported.
94*4882a593Smuzhiyun *
95*4882a593Smuzhiyun */
96*4882a593Smuzhiyun
97*4882a593Smuzhiyun int
SetDeviceValuators(ClientPtr client,DeviceIntPtr dev,int * valuators,int first_valuator,int num_valuators)98*4882a593Smuzhiyun SetDeviceValuators(ClientPtr client, DeviceIntPtr dev,
99*4882a593Smuzhiyun int *valuators, int first_valuator, int num_valuators)
100*4882a593Smuzhiyun {
101*4882a593Smuzhiyun DEBUG_LOG("SetDeviceValuators(%p, %p, %p, %d, %d)\n", client,
102*4882a593Smuzhiyun dev, valuators, first_valuator, num_valuators);
103*4882a593Smuzhiyun return BadMatch;
104*4882a593Smuzhiyun }
105*4882a593Smuzhiyun
106*4882a593Smuzhiyun /****************************************************************************
107*4882a593Smuzhiyun *
108*4882a593Smuzhiyun * Caller: ProcXChangeDeviceControl
109*4882a593Smuzhiyun *
110*4882a593Smuzhiyun * Change the specified device controls on an extension input device.
111*4882a593Smuzhiyun *
112*4882a593Smuzhiyun */
113*4882a593Smuzhiyun
114*4882a593Smuzhiyun int
ChangeDeviceControl(ClientPtr client,DeviceIntPtr dev,xDeviceCtl * control)115*4882a593Smuzhiyun ChangeDeviceControl(ClientPtr client, DeviceIntPtr dev,
116*4882a593Smuzhiyun xDeviceCtl * control)
117*4882a593Smuzhiyun {
118*4882a593Smuzhiyun
119*4882a593Smuzhiyun DEBUG_LOG("ChangeDeviceControl(%p, %p, %p)\n", client, dev, control);
120*4882a593Smuzhiyun return BadMatch;
121*4882a593Smuzhiyun }
122*4882a593Smuzhiyun
123*4882a593Smuzhiyun /****************************************************************************
124*4882a593Smuzhiyun *
125*4882a593Smuzhiyun * Caller: configAddDevice (and others)
126*4882a593Smuzhiyun *
127*4882a593Smuzhiyun * Add a new device with the specified options.
128*4882a593Smuzhiyun *
129*4882a593Smuzhiyun */
130*4882a593Smuzhiyun int
NewInputDeviceRequest(InputOption * options,InputAttributes * attrs,DeviceIntPtr * pdev)131*4882a593Smuzhiyun NewInputDeviceRequest(InputOption *options, InputAttributes *attrs,
132*4882a593Smuzhiyun DeviceIntPtr *pdev)
133*4882a593Smuzhiyun {
134*4882a593Smuzhiyun DEBUG_LOG("NewInputDeviceRequest(%p, %p)\n", options, pdev);
135*4882a593Smuzhiyun return BadValue;
136*4882a593Smuzhiyun }
137*4882a593Smuzhiyun
138*4882a593Smuzhiyun /****************************************************************************
139*4882a593Smuzhiyun *
140*4882a593Smuzhiyun * Caller: configRemoveDevice (and others)
141*4882a593Smuzhiyun *
142*4882a593Smuzhiyun * Remove the specified device previously added.
143*4882a593Smuzhiyun *
144*4882a593Smuzhiyun */
145*4882a593Smuzhiyun void
DeleteInputDeviceRequest(DeviceIntPtr dev)146*4882a593Smuzhiyun DeleteInputDeviceRequest(DeviceIntPtr dev)
147*4882a593Smuzhiyun {
148*4882a593Smuzhiyun DEBUG_LOG("DeleteInputDeviceRequest(%p)\n", dev);
149*4882a593Smuzhiyun }
150*4882a593Smuzhiyun
151*4882a593Smuzhiyun /****************************************************************************
152*4882a593Smuzhiyun *
153*4882a593Smuzhiyun * Caller: configRemoveDevice (and others)
154*4882a593Smuzhiyun *
155*4882a593Smuzhiyun * Remove any traces of the input device specified in config_info.
156*4882a593Smuzhiyun * This is only necessary if the ddx keeps information around beyond
157*4882a593Smuzhiyun * the NewInputDeviceRequest/DeleteInputDeviceRequest
158*4882a593Smuzhiyun *
159*4882a593Smuzhiyun */
160*4882a593Smuzhiyun void
RemoveInputDeviceTraces(const char * config_info)161*4882a593Smuzhiyun RemoveInputDeviceTraces(const char *config_info)
162*4882a593Smuzhiyun {
163*4882a593Smuzhiyun DEBUG_LOG("RemoveInputDeviceTraces(%s)\n", config_info);
164*4882a593Smuzhiyun }
165