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 (at) 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 { 52 static KeySym keyboard_mapping = NoSymbol; 53 54 info->keyboard = 1; 55 info->keyClass = 1; 56 info->keySyms.minKeyCode = 8; 57 info->keySyms.maxKeyCode = 8; 58 info->keySyms.mapWidth = 1; 59 info->keySyms.map = &keyboard_mapping; 60 info->freemap = 0; 61 info->focusClass = 1; 62 info->kbdFeedbackClass = 1; 63 info->force = 1; 64 } 65 66 /** Return information about the dummy mouse device specified in \a pDev 67 * into the structure pointed to by \a info. They mouse has 3 buttons 68 * and two axes. */ 69 void dmxDummyMouGetInfo(DevicePtr pDev, DMXLocalInitInfoPtr info) 70 { 71 info->buttonClass = 1; 72 info->numButtons = 3; 73 info->map[0] = 1; 74 info->map[1] = 2; 75 info->map[2] = 3; 76 info->valuatorClass = 1; 77 info->numRelAxes = 2; 78 info->minval[0] = 0; 79 info->minval[1] = 0; 80 info->maxval[0] = 0; 81 info->maxval[1] = 0; 82 info->res[0] = 1; 83 info->minres[0] = 0; 84 info->maxres[0] = 1; 85 info->ptrFeedbackClass = 1; 86 } 87