First import
[xorg_rtime.git] / xorg-server-1.4 / hw / xwin / InitInput.c
blob6a850cd4426b1c080a4297c7c09c455a56967985
1 /*
3 Copyright 1993, 1998 The Open Group
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
9 documentation.
11 The above copyright notice and this permission notice shall be included
12 in all copies or substantial portions of the Software.
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 OTHER DEALINGS IN THE SOFTWARE.
22 Except as contained in this notice, the name of The Open Group shall
23 not be used in advertising or otherwise to promote the sale, use or
24 other dealings in this Software without prior written authorization
25 from The Open Group.
29 #ifdef HAVE_XWIN_CONFIG_H
30 #include <xwin-config.h>
31 #endif
32 #include "win.h"
33 #ifdef XWIN_CLIPBOARD
34 # include "../../Xext/xf86miscproc.h"
35 #endif
36 #include "dixstruct.h"
40 * Local function prototypes
43 #ifdef XWIN_CLIPBOARD
44 DISPATCH_PROC(winProcEstablishConnection);
45 DISPATCH_PROC(winProcQueryTree);
46 DISPATCH_PROC(winProcSetSelectionOwner);
47 #endif
51 * Local global declarations
54 CARD32 g_c32LastInputEventTime = 0;
58 * References to external symbols
61 #ifdef HAS_DEVWINDOWS
62 extern int g_fdMessageQueue;
63 #endif
64 extern Bool g_fXdmcpEnabled;
65 #ifdef XWIN_CLIPBOARD
66 extern winDispatchProcPtr winProcEstablishConnectionOrig;
67 extern winDispatchProcPtr winProcQueryTreeOrig;
68 #endif
71 /* Called from dix/devices.c */
73 * All of our keys generate up and down transition notifications,
74 * so all of our keys can be used as modifiers.
76 * An example of a modifier is mapping the A key to the Control key.
77 * A has to be a legal modifier. I think.
80 Bool
81 LegalModifier (unsigned int uiKey, DeviceIntPtr pDevice)
83 return TRUE;
87 /* Called from dix/dispatch.c */
89 * Run through the Windows message queue(s) one more time.
90 * Tell mi to dequeue the events that we have sent it.
92 void
93 ProcessInputEvents (void)
95 #if 0
96 ErrorF ("ProcessInputEvents\n");
97 #endif
99 mieqProcessInputEvents ();
100 miPointerUpdate ();
102 #if 0
103 ErrorF ("ProcessInputEvents - returning\n");
104 #endif
109 TimeSinceLastInputEvent ()
111 if (g_c32LastInputEventTime == 0)
112 g_c32LastInputEventTime = GetTickCount ();
113 return GetTickCount () - g_c32LastInputEventTime;
117 /* See Porting Layer Definition - p. 17 */
118 void
119 InitInput (int argc, char *argv[])
121 DeviceIntPtr pMouse, pKeyboard;
123 #if CYGDEBUG
124 winDebug ("InitInput\n");
125 #endif
127 #ifdef XWIN_CLIPBOARD
129 * Wrap some functions at every generation of the server.
131 if (InitialVector[2] != winProcEstablishConnection)
133 winProcEstablishConnectionOrig = InitialVector[2];
134 InitialVector[2] = winProcEstablishConnection;
136 if (g_fXdmcpEnabled
137 && ProcVector[X_QueryTree] != winProcQueryTree)
139 winProcQueryTreeOrig = ProcVector[X_QueryTree];
140 ProcVector[X_QueryTree] = winProcQueryTree;
142 #endif
144 pMouse = AddInputDevice (winMouseProc, TRUE);
145 pKeyboard = AddInputDevice (winKeybdProc, TRUE);
147 RegisterPointerDevice (pMouse);
148 RegisterKeyboardDevice (pKeyboard);
150 miRegisterPointerDevice (screenInfo.screens[0], pMouse);
151 mieqInit ((DevicePtr)pKeyboard, (DevicePtr)pMouse);
153 /* Initialize the mode key states */
154 winInitializeModeKeyStates ();
156 #ifdef HAS_DEVWINDOWS
157 /* Only open the windows message queue device once */
158 if (g_fdMessageQueue == WIN_FD_INVALID)
160 /* Open a file descriptor for the Windows message queue */
161 g_fdMessageQueue = open (WIN_MSG_QUEUE_FNAME, O_RDONLY);
163 if (g_fdMessageQueue == -1)
165 FatalError ("InitInput - Failed opening %s\n",
166 WIN_MSG_QUEUE_FNAME);
169 /* Add the message queue as a device to wait for in WaitForSomething */
170 AddEnabledDevice (g_fdMessageQueue);
172 #endif
174 #if CYGDEBUG
175 winDebug ("InitInput - returning\n");
176 #endif