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
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
29 #ifdef HAVE_XWIN_CONFIG_H
30 #include <xwin-config.h>
34 # include "../../Xext/xf86miscproc.h"
36 #include "dixstruct.h"
40 * Local function prototypes
44 DISPATCH_PROC(winProcEstablishConnection
);
45 DISPATCH_PROC(winProcQueryTree
);
46 DISPATCH_PROC(winProcSetSelectionOwner
);
51 * Local global declarations
54 CARD32 g_c32LastInputEventTime
= 0;
58 * References to external symbols
62 extern int g_fdMessageQueue
;
64 extern Bool g_fXdmcpEnabled
;
66 extern winDispatchProcPtr winProcEstablishConnectionOrig
;
67 extern winDispatchProcPtr winProcQueryTreeOrig
;
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.
81 LegalModifier (unsigned int uiKey
, DeviceIntPtr pDevice
)
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.
93 ProcessInputEvents (void)
96 ErrorF ("ProcessInputEvents\n");
99 mieqProcessInputEvents ();
103 ErrorF ("ProcessInputEvents - returning\n");
109 TimeSinceLastInputEvent ()
111 if (g_c32LastInputEventTime
== 0)
112 g_c32LastInputEventTime
= GetTickCount ();
113 return GetTickCount () - g_c32LastInputEventTime
;
117 /* See Porting Layer Definition - p. 17 */
119 InitInput (int argc
, char *argv
[])
121 DeviceIntPtr pMouse
, pKeyboard
;
124 winDebug ("InitInput\n");
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
;
137 && ProcVector
[X_QueryTree
] != winProcQueryTree
)
139 winProcQueryTreeOrig
= ProcVector
[X_QueryTree
];
140 ProcVector
[X_QueryTree
] = winProcQueryTree
;
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
);
175 winDebug ("InitInput - returning\n");