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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: xtestext1.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  2. /*
  3.  * xtestext1.h
  4.  *
  5.  * X11 Input Synthesis Extension include file
  6.  */
  7. /*
  8. Copyright 1986, 1987, 1988, 1998  The Open Group
  9. Permission to use, copy, modify, distribute, and sell this software and its
  10. documentation for any purpose is hereby granted without fee, provided that
  11. the above copyright notice appear in all copies and that both that
  12. copyright notice and this permission notice appear in supporting
  13. documentation.
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  19. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  20. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. Except as contained in this notice, the name of The Open Group shall not be
  23. used in advertising or otherwise to promote the sale, use or other dealings
  24. in this Software without prior written authorization from The Open Group.
  25. Copyright 1986, 1987, 1988 by Hewlett-Packard Corporation
  26. Permission to use, copy, modify, and distribute this
  27. software and its documentation for any purpose and without
  28. fee is hereby granted, provided that the above copyright
  29. notice appear in all copies and that both that copyright
  30. notice and this permission notice appear in supporting
  31. documentation, and that the name of Hewlett-Packard not be used in
  32. advertising or publicity pertaining to distribution of the
  33. software without specific, written prior permission.
  34. Hewlett-Packard makes no representations about the 
  35. suitability of this software for any purpose.  It is provided 
  36. "as is" without express or implied warranty.
  37. This software is not subject to any license of the American
  38. Telephone and Telegraph Company or of the Regents of the
  39. University of California.
  40. */
  41. /*
  42.  * the typedefs for CARD8, CARD16, and CARD32 are defined in Xmd.h
  43.  */
  44. /*
  45.  * used in the XTestPressButton and XTestPressKey functions
  46.  */
  47. #define XTestPRESS                      1 << 0
  48. #define XTestRELEASE                    1 << 1
  49. #define XTestSTROKE                     1 << 2
  50. /*
  51.  * When doing a key or button stroke, the number of milliseconds
  52.  * to delay between the press and the release of a key or button
  53.  * in the XTestPressButton and XTestPressKey functions.
  54.  */
  55. #define XTestSTROKE_DELAY_TIME 10
  56. /*
  57.  * used in the XTestGetInput function
  58.  */
  59. #define XTestEXCLUSIVE                  1 << 0
  60. #define XTestPACKED_ACTIONS             1 << 1
  61. #define XTestPACKED_MOTION              1 << 2
  62. /*
  63.  * used in the XTestFakeInput function
  64.  */
  65. #define XTestFAKE_ACK_NOT_NEEDED        0
  66. #define XTestFAKE_ACK_REQUEST           1
  67. /*
  68.  * used in the XTest extension initialization routine
  69.  */
  70. #define XTestEXTENSION_NAME             "XTestExtension1"
  71. #define XTestEVENT_COUNT                2
  72. /*
  73.  * XTest request type values 
  74.  *
  75.  * used in the XTest extension protocol requests
  76.  */
  77. #define X_TestFakeInput                  1
  78. #define X_TestGetInput                   2
  79. #define X_TestStopInput                  3
  80. #define X_TestReset                      4
  81. #define X_TestQueryInputSize             5
  82. /*
  83.  * This defines the maximum size of a list of input actions
  84.  * to be sent to the server.  It should always be a multiple of
  85.  * 4 so that the entire xTestFakeInputReq structure size is a
  86.  * multiple of 4.
  87.  */
  88. #define XTestMAX_ACTION_LIST_SIZE       64
  89. typedef struct {
  90.         CARD8   reqType;        /* always XTestReqCode             */
  91.         CARD8   XTestReqType;   /* always X_TestFakeInput           */
  92.         CARD16  length B16;     /* 2 + XTestMAX_ACTION_LIST_SIZE/4 */
  93.         CARD32  ack B32;
  94.         CARD8   action_list[XTestMAX_ACTION_LIST_SIZE];
  95. } xTestFakeInputReq;
  96. #define sz_xTestFakeInputReq (XTestMAX_ACTION_LIST_SIZE + 8)
  97. typedef struct {
  98.         CARD8   reqType;        /* always XTestReqCode  */
  99.         CARD8   XTestReqType;   /* always X_TestGetInput */
  100.         CARD16  length B16;     /* 2                    */
  101.         CARD32  mode B32;
  102. } xTestGetInputReq;
  103. #define sz_xTestGetInputReq 8
  104. typedef struct {
  105.         CARD8   reqType;        /* always XTestReqCode   */
  106.         CARD8   XTestReqType;   /* always X_TestStopInput */
  107.         CARD16  length B32;     /* 1                     */
  108. } xTestStopInputReq;
  109. #define sz_xTestStopInputReq 4
  110. typedef struct {
  111.         CARD8   reqType;        /* always XTestReqCode */
  112.         CARD8   XTestReqType;   /* always X_TestReset   */
  113.         CARD16  length B16;     /* 1                   */
  114. } xTestResetReq;
  115. #define sz_xTestResetReq 4
  116. typedef struct {
  117.         CARD8   reqType;        /* always XTestReqCode        */
  118.         CARD8   XTestReqType;   /* always X_TestQueryInputSize */
  119.         CARD16  length B16;     /* 1                          */
  120. } xTestQueryInputSizeReq;
  121. #define sz_xTestQueryInputSizeReq 4
  122. /*
  123.  * This is the definition of the reply for the xTestQueryInputSize
  124.  * request.  It should remain the same minimum size as other replies
  125.  * (32 bytes).
  126.  */
  127. typedef struct {
  128.         CARD8   type;           /* always X_Reply  */
  129.         CARD8   pad1;
  130.         CARD16  sequenceNumber B16;
  131.         CARD32  length B32;     /* always 0 */
  132.         CARD32  size_return B32;
  133.         CARD32  pad2 B32;
  134.         CARD32  pad3 B32;
  135.         CARD32  pad4 B32;
  136.         CARD32  pad5 B32;
  137.         CARD32  pad6 B32;
  138. } xTestQueryInputSizeReply;
  139. /*
  140.  * This is the definition for the input action wire event structure.
  141.  * This event is sent to the client when the server has one or
  142.  * more user input actions to report to the client.  It must
  143.  * remain the same size as all other wire events (32 bytes).
  144.  */
  145. #define XTestACTIONS_SIZE 28
  146. typedef struct {
  147.         CARD8   type;           /* always XTestInputActionType */
  148.         CARD8   pad00;
  149.         CARD16  sequenceNumber B16;
  150.         CARD8   actions[XTestACTIONS_SIZE];
  151. } xTestInputActionEvent;
  152. /*
  153.  * This is the definition for the xTestFakeAck wire event structure.
  154.  * This event is sent to the client when the server has completely
  155.  * processed its input action buffer, and is ready for more.
  156.  * It must remain the same size as all other wire events (32 bytes).
  157.  */
  158. typedef struct {
  159.         CARD8   type;           /* always XTestFakeAckType */
  160.         CARD8   pad00;
  161.         CARD16  sequenceNumber B16;
  162.         CARD32  pad02 B32;
  163.         CARD32  pad03 B32;
  164.         CARD32  pad04 B32;
  165.         CARD32  pad05 B32;
  166.         CARD32  pad06 B32;
  167.         CARD32  pad07 B32;
  168.         CARD32  pad08 B32;
  169. } xTestFakeAckEvent;
  170. /*
  171.  * The server side of this extension does not (and should not) have
  172.  * definitions for Display and Window.  The ifndef allows the server
  173.  * side of the extension to ignore the following typedefs.
  174.  */
  175. #ifndef XTestSERVER_SIDE
  176. /*
  177.  * This is the definition for the input action host format event structure.
  178.  * This is the form that a client using this extension will see when
  179.  * it receives an input action event.
  180.  */
  181. typedef struct {
  182.         int     type;           /* always XTestInputActionType */
  183. Display *display;
  184. Window  window;
  185.         CARD8   actions[XTestACTIONS_SIZE];
  186. } XTestInputActionEvent;
  187. /*
  188.  * This is the definition for the xTestFakeAck host format event structure.
  189.  * This is the form that a client using this extension will see when
  190.  * it receives an XTestFakeAck event.
  191.  */
  192. typedef struct {
  193.         int     type;           /* always XTestFakeAckType */
  194. Display *display;
  195. Window  window;
  196. } XTestFakeAckEvent;
  197. #endif
  198. /*
  199.  * This is the definition for the format of the header byte
  200.  * in the input action structures.
  201.  */
  202. #define XTestACTION_TYPE_MASK   0x03    /* bits 0 and 1          */
  203. #define XTestKEY_STATE_MASK     0x04    /* bit 2 (key action)    */
  204. #define XTestX_SIGN_BIT_MASK    0x04    /* bit 2 (motion action) */
  205. #define XTestY_SIGN_BIT_MASK    0x08    /* bit 3 (motion action) */
  206. #define XTestDEVICE_ID_MASK     0xf0    /* bits 4 through 7      */
  207. #define XTestMAX_DEVICE_ID 0x0f
  208. #define XTestPackDeviceID(x) (((x) & XTestMAX_DEVICE_ID) << 4)
  209. #define XTestUnpackDeviceID(x) (((x) & XTestDEVICE_ID_MASK) >> 4)
  210. /*
  211.  * These are the possible action types.
  212.  */
  213. #define XTestDELAY_ACTION       0
  214. #define XTestKEY_ACTION         1
  215. #define XTestMOTION_ACTION      2
  216. #define XTestJUMP_ACTION        3
  217. /*
  218.  * These are the definitions for key/button motion input actions.
  219.  */
  220. #define XTestKEY_UP             0x04
  221. #define XTestKEY_DOWN           0x00
  222. typedef struct {
  223.         CARD8   header;         /* which device, key up/down */
  224.         CARD8   keycode;        /* which key/button to move  */
  225.         CARD16  delay_time B16; /* how long to delay (in ms) */
  226. } XTestKeyInfo;
  227. /*
  228.  * This is the definition for pointer jump input actions.
  229.  */
  230. typedef struct {
  231.         CARD8   header;         /* which pointer             */
  232.         CARD8   pad1;           /* unused padding byte       */
  233.         CARD16  jumpx B16;      /* x coord to jump to        */
  234.         CARD16  jumpy B16;      /* y coord to jump to        */
  235.         CARD16  delay_time B16; /* how long to delay (in ms) */
  236. } XTestJumpInfo;
  237. /*
  238.  * These are the definitions for pointer relative motion input
  239.  * actions.
  240.  *
  241.  * The sign bits for the x and y relative motions are contained
  242.  * in the header byte.  The x and y relative motions are packed
  243.  * into one byte to make things fit in 32 bits.  If the relative
  244.  * motion range is larger than +/-15, use the pointer jump action.
  245.  */
  246. #define XTestMOTION_MAX            15
  247. #define XTestMOTION_MIN            -15
  248. #define XTestX_NEGATIVE            0x04
  249. #define XTestY_NEGATIVE            0x08
  250. #define XTestX_MOTION_MASK         0x0f
  251. #define XTestY_MOTION_MASK         0xf0
  252. #define XTestPackXMotionValue(x)   ((x) & XTestX_MOTION_MASK)
  253. #define XTestPackYMotionValue(x)   (((x) << 4) & XTestY_MOTION_MASK)
  254. #define XTestUnpackXMotionValue(x) ((x) & XTestX_MOTION_MASK)
  255. #define XTestUnpackYMotionValue(x) (((x) & XTestY_MOTION_MASK) >> 4)
  256. typedef struct {
  257.         CARD8   header;         /* which pointer             */
  258.         CARD8   motion_data;    /* x,y relative motion       */
  259.         CARD16  delay_time B16; /* how long to delay (in ms) */
  260. } XTestMotionInfo;
  261. /*
  262.  * These are the definitions for a long delay input action.  It is 
  263.  * used when more than XTestSHORT_DELAY_TIME milliseconds of delay
  264.  * (approximately one minute) is needed.
  265.  *
  266.  * The device ID for a delay is always set to XTestDELAY_DEVICE_ID.
  267.  * This guarantees that a header byte with a value of 0 is not
  268.  * a valid header, so it can be used as a flag to indicate that
  269.  * there are no more input actions in an XTestInputAction event.
  270.  */
  271. #define XTestSHORT_DELAY_TIME 0xffff
  272. #define XTestDELAY_DEVICE_ID    0x0f   
  273. typedef struct {
  274.         CARD8   header;         /* always XTestDELAY_DEVICE_ID */
  275.         CARD8   pad1;           /* unused padding byte         */
  276.         CARD16  pad2 B16;       /* unused padding word         */
  277.         CARD32  delay_time B32; /* how long to delay (in ms)   */
  278. } XTestDelayInfo;