xref: /OK3568_Linux_fs/external/xserver/hw/dmx/input/dmxdummy.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Copyright 2002 Red Hat Inc., Durham, North Carolina.
3  *
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation on the rights to use, copy, modify, merge,
10  * publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so,
12  * subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial
16  * portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21  * NON-INFRINGEMENT.  IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
22  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  */
27 
28 /*
29  * Authors:
30  *   Rickard E. (Rik) Faith <faith@redhat.com>
31  *
32  */
33 
34 /** \file
35  * Provide mouse and keyboard that are sufficient for starting the X
36  * server, but that don't actually provide any events.  This is useful
37  * for testing. */
38 
39 #ifdef HAVE_DMX_CONFIG_H
40 #include <dmx-config.h>
41 #endif
42 
43 #include "dmx.h"
44 #include "dmxinputinit.h"
45 #include "dmxdummy.h"
46 
47 /** Return information about the dummy keyboard device specified in \a pDev
48  * into the structure pointed to by \a info.  The keyboard is set up to
49  * have 1 valid key code that is \a NoSymbol */
50 void
dmxDummyKbdGetInfo(DevicePtr pDev,DMXLocalInitInfoPtr info)51 dmxDummyKbdGetInfo(DevicePtr pDev, DMXLocalInitInfoPtr info)
52 {
53     static KeySym keyboard_mapping = NoSymbol;
54 
55     info->keyboard = 1;
56     info->keyClass = 1;
57     info->keySyms.minKeyCode = 8;
58     info->keySyms.maxKeyCode = 8;
59     info->keySyms.mapWidth = 1;
60     info->keySyms.map = &keyboard_mapping;
61     info->freemap = 0;
62     info->focusClass = 1;
63     info->kbdFeedbackClass = 1;
64     info->force = 1;
65 }
66 
67 /** Return information about the dummy mouse device specified in \a pDev
68  * into the structure pointed to by \a info.  They mouse has 3 buttons
69  * and two axes. */
70 void
dmxDummyMouGetInfo(DevicePtr pDev,DMXLocalInitInfoPtr info)71 dmxDummyMouGetInfo(DevicePtr pDev, DMXLocalInitInfoPtr info)
72 {
73     info->buttonClass = 1;
74     info->numButtons = 3;
75     info->map[0] = 1;
76     info->map[1] = 2;
77     info->map[2] = 3;
78     info->valuatorClass = 1;
79     info->numRelAxes = 2;
80     info->minval[0] = 0;
81     info->minval[1] = 0;
82     info->maxval[0] = 0;
83     info->maxval[1] = 0;
84     info->res[0] = 1;
85     info->minres[0] = 0;
86     info->maxres[0] = 1;
87     info->ptrFeedbackClass = 1;
88 }
89