XTest.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: XTest.h,v 1.5 2001/02/09 02:03:24 xorgcvs Exp $ */
  2. /*
  3. Copyright 1992, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/include/extensions/XTest.h,v 3.3 2001/12/14 19:53:28 dawes Exp $ */
  22. #ifndef _XTEST_H_
  23. #define _XTEST_H_
  24. #include <X11/Xfuncproto.h>
  25. #define X_XTestGetVersion 0
  26. #define X_XTestCompareCursor 1
  27. #define X_XTestFakeInput 2
  28. #define X_XTestGrabControl 3
  29. #define XTestNumberEvents 0
  30. #define XTestNumberErrors 0
  31. #define XTestMajorVersion 2
  32. #define XTestMinorVersion 2
  33. #define XTestExtensionName "XTEST"
  34. #ifndef _XTEST_SERVER_
  35. #include <X11/extensions/XInput.h>
  36. _XFUNCPROTOBEGIN
  37. Bool XTestQueryExtension(
  38.     Display* /* dpy */,
  39.     int* /* event_basep */,
  40.     int* /* error_basep */,
  41.     int* /* majorp */,
  42.     int* /* minorp */
  43. );
  44. Bool XTestCompareCursorWithWindow(
  45.     Display* /* dpy */,
  46.     Window /* window */,
  47.     Cursor /* cursor */
  48. );
  49. Bool XTestCompareCurrentCursorWithWindow(
  50.     Display* /* dpy */,
  51.     Window /* window */
  52. );
  53. extern int XTestFakeKeyEvent(
  54.     Display* /* dpy */,
  55.     unsigned int /* keycode */,
  56.     Bool /* is_press */,
  57.     unsigned long /* delay */
  58. );
  59. extern int XTestFakeButtonEvent(
  60.     Display* /* dpy */,
  61.     unsigned int /* button */,
  62.     Bool /* is_press */,
  63.     unsigned long /* delay */
  64. );
  65. extern int XTestFakeMotionEvent(
  66.     Display* /* dpy */,
  67.     int /* screen */,
  68.     int /* x */,
  69.     int /* y */,
  70.     unsigned long /* delay */
  71. );
  72. extern int XTestFakeRelativeMotionEvent(
  73.     Display* /* dpy */,
  74.     int /* x */,
  75.     int /* y */,
  76.     unsigned long /* delay */
  77. );
  78. extern int XTestFakeDeviceKeyEvent(
  79.     Display* /* dpy */,
  80.     XDevice* /* dev */,
  81.     unsigned int /* keycode */,
  82.     Bool /* is_press */,
  83.     int* /* axes */,
  84.     int /* n_axes */,
  85.     unsigned long /* delay */
  86. );
  87. extern int XTestFakeDeviceButtonEvent(
  88.     Display* /* dpy */,
  89.     XDevice* /* dev */,
  90.     unsigned int /* button */,
  91.     Bool /* is_press */,
  92.     int* /* axes */,
  93.     int /* n_axes */,
  94.     unsigned long /* delay */
  95. );
  96. extern int XTestFakeProximityEvent(
  97.     Display* /* dpy */,
  98.     XDevice* /* dev */,
  99.     Bool /* in_prox */,
  100.     int* /* axes */,
  101.     int /* n_axes */,
  102.     unsigned long /* delay */
  103. );
  104. extern int XTestFakeDeviceMotionEvent(
  105.     Display* /* dpy */,
  106.     XDevice* /* dev */,
  107.     Bool /* is_relative */,
  108.     int /* first_axis */,
  109.     int* /* axes */,
  110.     int /* n_axes */,
  111.     unsigned long /* delay */
  112. );
  113. extern int XTestGrabControl(
  114.     Display* /* dpy */,
  115.     Bool /* impervious */
  116. );
  117. void XTestSetGContextOfGC(
  118.     GC /* gc */,
  119.     GContext /* gid */
  120. );
  121. void XTestSetVisualIDOfVisual(
  122.     Visual* /* visual */,
  123.     VisualID /* visualid */
  124. );
  125. Status XTestDiscard(
  126.     Display* /* dpy */
  127. );
  128. _XFUNCPROTOEND
  129. #endif /* _XTEST_SERVER_ */
  130. #endif