VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/mipointer.h@ 107044

Last change on this file since 107044 was 51223, checked in by vboxsync, 11 years ago

Additions/x11/x11include: added header files for X.Org Server 1.0 and 1.1.

  • Property svn:eol-style set to native
File size: 4.2 KB
Line 
1/*
2 * mipointer.h
3 *
4 */
5
6/* $Xorg: mipointer.h,v 1.4 2001/02/09 02:05:21 xorgcvs Exp $ */
7
8/*
9
10Copyright 1989, 1998 The Open Group
11
12Permission to use, copy, modify, distribute, and sell this software and its
13documentation for any purpose is hereby granted without fee, provided that
14the above copyright notice appear in all copies and that both that
15copyright notice and this permission notice appear in supporting
16documentation.
17
18The above copyright notice and this permission notice shall be included in
19all copies or substantial portions of the Software.
20
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
25AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28Except as contained in this notice, the name of The Open Group shall not be
29used in advertising or otherwise to promote the sale, use or other dealings
30in this Software without prior written authorization from The Open Group.
31*/
32/* $XFree86: xc/programs/Xserver/mi/mipointer.h,v 3.8 2001/08/06 20:51:19 dawes Exp $ */
33
34#ifndef MIPOINTER_H
35#define MIPOINTER_H
36
37#include "cursor.h"
38#include "input.h"
39
40typedef struct _miPointerSpriteFuncRec {
41 Bool (*RealizeCursor)(
42 ScreenPtr /* pScr */,
43 CursorPtr /* pCurs */
44 );
45 Bool (*UnrealizeCursor)(
46 ScreenPtr /* pScr */,
47 CursorPtr /* pCurs */
48 );
49 void (*SetCursor)(
50 ScreenPtr /* pScr */,
51 CursorPtr /* pCurs */,
52 int /* x */,
53 int /* y */
54 );
55 void (*MoveCursor)(
56 ScreenPtr /* pScr */,
57 int /* x */,
58 int /* y */
59 );
60} miPointerSpriteFuncRec, *miPointerSpriteFuncPtr;
61
62typedef struct _miPointerScreenFuncRec {
63 Bool (*CursorOffScreen)(
64 ScreenPtr* /* ppScr */,
65 int* /* px */,
66 int* /* py */
67 );
68 void (*CrossScreen)(
69 ScreenPtr /* pScr */,
70 int /* entering */
71 );
72 void (*WarpCursor)(
73 ScreenPtr /* pScr */,
74 int /* x */,
75 int /* y */
76 );
77 void (*EnqueueEvent)(
78 xEventPtr /* event */
79 );
80 void (*NewEventScreen)(
81 ScreenPtr /* pScr */,
82 Bool /* fromDIX */
83 );
84} miPointerScreenFuncRec, *miPointerScreenFuncPtr;
85
86extern Bool miDCInitialize(
87 ScreenPtr /*pScreen*/,
88 miPointerScreenFuncPtr /*screenFuncs*/
89);
90
91extern Bool miPointerInitialize(
92 ScreenPtr /*pScreen*/,
93 miPointerSpriteFuncPtr /*spriteFuncs*/,
94 miPointerScreenFuncPtr /*screenFuncs*/,
95 Bool /*waitForUpdate*/
96);
97
98extern void miPointerWarpCursor(
99 ScreenPtr /*pScreen*/,
100 int /*x*/,
101 int /*y*/
102);
103
104extern int miPointerGetMotionBufferSize(
105 void
106);
107
108extern int miPointerGetMotionEvents(
109 DeviceIntPtr /*pPtr*/,
110 xTimecoord * /*coords*/,
111 unsigned long /*start*/,
112 unsigned long /*stop*/,
113 ScreenPtr /*pScreen*/
114);
115
116extern void miPointerUpdate(
117 void
118);
119
120extern void miPointerDeltaCursor(
121 int /*dx*/,
122 int /*dy*/,
123 unsigned long /*time*/
124);
125
126extern void miPointerAbsoluteCursor(
127 int /*x*/,
128 int /*y*/,
129 unsigned long /*time*/
130);
131
132extern void miPointerPosition(
133 int * /*x*/,
134 int * /*y*/
135);
136
137#undef miRegisterPointerDevice
138extern void miRegisterPointerDevice(
139 ScreenPtr /*pScreen*/,
140 DevicePtr /*pDevice*/
141);
142
143extern void miPointerSetNewScreen(
144 int, /*screen_no*/
145 int, /*x*/
146 int /*y*/
147);
148extern ScreenPtr miPointerCurrentScreen(
149 void
150);
151
152#define miRegisterPointerDevice(pScreen,pDevice) \
153 _miRegisterPointerDevice(pScreen,pDevice)
154
155extern void _miRegisterPointerDevice(
156 ScreenPtr /*pScreen*/,
157 DeviceIntPtr /*pDevice*/
158);
159
160extern int miPointerScreenIndex;
161
162#endif /* MIPOINTER_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette