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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: XInput.h,v 1.4 2001/02/09 02:03:23 xorgcvs Exp $ */
  2. /************************************************************
  3. Copyright 1989, 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. Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
  21. All Rights Reserved
  22. Permission to use, copy, modify, and distribute this software and its
  23. documentation for any purpose and without fee is hereby granted,
  24. provided that the above copyright notice appear in all copies and that
  25. both that copyright notice and this permission notice appear in
  26. supporting documentation, and that the name of Hewlett-Packard not be
  27. used in advertising or publicity pertaining to distribution of the
  28. software without specific, written prior permission.
  29. HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  30. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  31. HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  32. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  33. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  34. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  35. SOFTWARE.
  36. ********************************************************/
  37. /* $XFree86: xc/include/extensions/XInput.h,v 1.3 2001/12/14 19:53:28 dawes Exp $ */
  38. /* Definitions used by the library and client */
  39. #ifndef _XINPUT_H_
  40. #define _XINPUT_H_
  41. #include <X11/Xlib.h>
  42. #include <X11/extensions/XI.h>
  43. #define _deviceKeyPress 0
  44. #define _deviceKeyRelease 1
  45. #define _deviceButtonPress 0
  46. #define _deviceButtonRelease 1
  47. #define _deviceMotionNotify 0
  48. #define _deviceFocusIn 0
  49. #define _deviceFocusOut 1
  50. #define _proximityIn 0
  51. #define _proximityOut 1
  52. #define _deviceStateNotify 0
  53. #define _deviceMappingNotify 1
  54. #define _changeDeviceNotify 2
  55. #define FindTypeAndClass(d,type,_class,classid,offset) 
  56.     { int _i; XInputClassInfo *_ip; 
  57.     type = 0; _class = 0; 
  58.     for (_i=0, _ip= ((XDevice *) d)->classes; 
  59.  _i< ((XDevice *) d)->num_classes; 
  60.  _i++, _ip++) 
  61. if (_ip->input_class == classid) 
  62.     {type =  _ip->event_type_base + offset; 
  63.      _class =  ((XDevice *) d)->device_id << 8 | type;}}
  64. #define DeviceKeyPress(d,type,_class) 
  65.     FindTypeAndClass(d, type, _class, KeyClass, _deviceKeyPress)
  66. #define DeviceKeyRelease(d,type,_class) 
  67.     FindTypeAndClass(d, type, _class, KeyClass, _deviceKeyRelease)
  68. #define DeviceButtonPress(d,type,_class) 
  69.     FindTypeAndClass(d, type, _class, ButtonClass, _deviceButtonPress)
  70. #define DeviceButtonRelease(d,type,_class) 
  71.     FindTypeAndClass(d, type, _class, ButtonClass, _deviceButtonRelease)
  72. #define DeviceMotionNotify(d,type,_class) 
  73.     FindTypeAndClass(d, type, _class, ValuatorClass, _deviceMotionNotify)
  74. #define DeviceFocusIn(d,type,_class) 
  75.     FindTypeAndClass(d, type, _class, FocusClass, _deviceFocusIn)
  76. #define DeviceFocusOut(d,type,_class) 
  77.     FindTypeAndClass(d, type, _class, FocusClass, _deviceFocusOut)
  78. #define ProximityIn(d,type,_class) 
  79.     FindTypeAndClass(d, type, _class, ProximityClass, _proximityIn)
  80. #define ProximityOut(d,type,_class) 
  81.     FindTypeAndClass(d, type, _class, ProximityClass, _proximityOut)
  82. #define DeviceStateNotify(d,type,_class) 
  83.     FindTypeAndClass(d, type, _class, OtherClass, _deviceStateNotify)
  84. #define DeviceMappingNotify(d,type,_class) 
  85.     FindTypeAndClass(d, type, _class, OtherClass, _deviceMappingNotify)
  86. #define ChangeDeviceNotify(d,type,_class) 
  87.     FindTypeAndClass(d, type, _class, OtherClass, _changeDeviceNotify)
  88. #define DevicePointerMotionHint(d,type,_class) 
  89.     { _class =  ((XDevice *) d)->device_id << 8 | _devicePointerMotionHint;}
  90. #define DeviceButton1Motion(d,type,_class) 
  91.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButton1Motion;}
  92. #define DeviceButton2Motion(d,type,_class) 
  93.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButton2Motion;}
  94. #define DeviceButton3Motion(d,type,_class) 
  95.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButton3Motion;}
  96. #define DeviceButton4Motion(d,type, _class) 
  97.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButton4Motion;}
  98. #define DeviceButton5Motion(d,type,_class) 
  99.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButton5Motion;}
  100. #define DeviceButtonMotion(d,type, _class) 
  101.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButtonMotion;}
  102. #define DeviceOwnerGrabButton(d,type,_class) 
  103.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceOwnerGrabButton;}
  104. #define DeviceButtonPressGrab(d,type,_class) 
  105.     { _class =  ((XDevice *) d)->device_id << 8 | _deviceButtonGrab;}
  106. #define NoExtensionEvent(d,type,_class) 
  107.     { _class =  ((XDevice *) d)->device_id << 8 | _noExtensionEvent;}
  108. #define DevicePresence(dpy, type, _class)                       
  109.     {                                                           
  110.         extern int _XiGetDevicePresenceNotifyEvent(Display *);  
  111.         type = _XiGetDevicePresenceNotifyEvent(dpy);            
  112.         _class =  (0x10000 | _devicePresence);                  
  113.     }
  114. #define BadDevice(dpy,error) _xibaddevice(dpy, &error)
  115. #define BadClass(dpy,error) _xibadclass(dpy, &error)
  116. #define BadEvent(dpy,error) _xibadevent(dpy, &error)
  117. #define BadMode(dpy,error) _xibadmode(dpy, &error)
  118. #define DeviceBusy(dpy,error) _xidevicebusy(dpy, &error)
  119. /***************************************************************
  120.  *
  121.  * DeviceKey events.  These events are sent by input devices that
  122.  * support input class Keys.
  123.  * The location of the X pointer is reported in the coordinate
  124.  * fields of the x,y and x_root,y_root fields.
  125.  *
  126.  */
  127. typedef struct 
  128.     {
  129.     int            type;         /* of event */
  130.     unsigned long  serial;       /* # of last request processed */
  131.     Bool           send_event;   /* true if from SendEvent request */
  132.     Display        *display;     /* Display the event was read from */
  133.     Window         window;       /* "event" window reported relative to */
  134.     XID            deviceid;
  135.     Window         root;         /* root window event occured on */
  136.     Window         subwindow;    /* child window */
  137.     Time           time;         /* milliseconds */
  138.     int            x, y;         /* x, y coordinates in event window */
  139.     int            x_root;       /* coordinates relative to root */
  140.     int            y_root;       /* coordinates relative to root */
  141.     unsigned int   state;        /* key or button mask */
  142.     unsigned int   keycode;      /* detail */
  143.     Bool           same_screen;  /* same screen flag */
  144.     unsigned int   device_state; /* device key or button mask */
  145.     unsigned char  axes_count;
  146.     unsigned char  first_axis;
  147.     int            axis_data[6];
  148.     } XDeviceKeyEvent;
  149. typedef XDeviceKeyEvent XDeviceKeyPressedEvent;
  150. typedef XDeviceKeyEvent XDeviceKeyReleasedEvent;
  151. /*******************************************************************
  152.  *
  153.  * DeviceButton events.  These events are sent by extension devices
  154.  * that support input class Buttons.
  155.  *
  156.  */
  157. typedef struct {
  158.     int           type;         /* of event */
  159.     unsigned long serial;       /* # of last request processed by server */
  160.     Bool          send_event;   /* true if from a SendEvent request */
  161.     Display       *display;     /* Display the event was read from */
  162.     Window        window;       /* "event" window reported relative to */
  163.     XID           deviceid;
  164.     Window        root;         /* root window that the event occured on */
  165.     Window        subwindow;    /* child window */
  166.     Time          time;         /* milliseconds */
  167.     int           x, y;         /* x, y coordinates in event window */
  168.     int           x_root;       /* coordinates relative to root */
  169.     int           y_root;       /* coordinates relative to root */
  170.     unsigned int  state;        /* key or button mask */
  171.     unsigned int  button;       /* detail */
  172.     Bool          same_screen;  /* same screen flag */
  173.     unsigned int  device_state; /* device key or button mask */
  174.     unsigned char axes_count;
  175.     unsigned char first_axis;
  176.     int           axis_data[6];
  177.     } XDeviceButtonEvent;
  178. typedef XDeviceButtonEvent XDeviceButtonPressedEvent;
  179. typedef XDeviceButtonEvent XDeviceButtonReleasedEvent;
  180. /*******************************************************************
  181.  *
  182.  * DeviceMotionNotify event.  These events are sent by extension devices
  183.  * that support input class Valuators.
  184.  *
  185.  */
  186. typedef struct 
  187.     {
  188.     int           type;        /* of event */
  189.     unsigned long serial;      /* # of last request processed by server */
  190.     Bool          send_event;  /* true if from a SendEvent request */
  191.     Display       *display;    /* Display the event was read from */
  192.     Window        window;      /* "event" window reported relative to */
  193.     XID           deviceid;
  194.     Window        root;        /* root window that the event occured on */
  195.     Window        subwindow;   /* child window */
  196.     Time          time;        /* milliseconds */
  197.     int           x, y;        /* x, y coordinates in event window */
  198.     int           x_root;      /* coordinates relative to root */
  199.     int           y_root;      /* coordinates relative to root */
  200.     unsigned int  state;       /* key or button mask */
  201.     char          is_hint;     /* detail */
  202.     Bool          same_screen; /* same screen flag */
  203.     unsigned int  device_state; /* device key or button mask */
  204.     unsigned char axes_count;
  205.     unsigned char first_axis;
  206.     int           axis_data[6];
  207.     } XDeviceMotionEvent;
  208. /*******************************************************************
  209.  *
  210.  * DeviceFocusChange events.  These events are sent when the focus
  211.  * of an extension device that can be focused is changed.
  212.  *
  213.  */
  214. typedef struct 
  215.     {
  216.     int           type;       /* of event */
  217.     unsigned long serial;     /* # of last request processed by server */
  218.     Bool          send_event; /* true if from a SendEvent request */
  219.     Display       *display;   /* Display the event was read from */
  220.     Window        window;     /* "event" window reported relative to */
  221.     XID           deviceid;
  222.     int           mode;       /* NotifyNormal, NotifyGrab, NotifyUngrab */
  223.     int           detail;
  224. /*
  225.  * NotifyAncestor, NotifyVirtual, NotifyInferior, 
  226.  * NotifyNonLinear,NotifyNonLinearVirtual, NotifyPointer,
  227.  * NotifyPointerRoot, NotifyDetailNone 
  228.  */
  229.     Time                time;
  230.     } XDeviceFocusChangeEvent;
  231. typedef XDeviceFocusChangeEvent XDeviceFocusInEvent;
  232. typedef XDeviceFocusChangeEvent XDeviceFocusOutEvent;
  233. /*******************************************************************
  234.  *
  235.  * ProximityNotify events.  These events are sent by those absolute
  236.  * positioning devices that are capable of generating proximity information.
  237.  *
  238.  */
  239. typedef struct 
  240.     {
  241.     int             type;      /* ProximityIn or ProximityOut */        
  242.     unsigned long   serial;    /* # of last request processed by server */
  243.     Bool            send_event; /* true if this came from a SendEvent request */
  244.     Display         *display;  /* Display the event was read from */
  245.     Window          window;      
  246.     XID             deviceid;
  247.     Window          root;            
  248.     Window          subwindow;      
  249.     Time            time;            
  250.     int             x, y;            
  251.     int             x_root, y_root;  
  252.     unsigned int    state;           
  253.     Bool            same_screen;     
  254.     unsigned int    device_state; /* device key or button mask */
  255.     unsigned char   axes_count;
  256.     unsigned char   first_axis;
  257.     int             axis_data[6];
  258.     } XProximityNotifyEvent;
  259. typedef XProximityNotifyEvent XProximityInEvent;
  260. typedef XProximityNotifyEvent XProximityOutEvent;
  261. /*******************************************************************
  262.  *
  263.  * DeviceStateNotify events are generated on EnterWindow and FocusIn 
  264.  * for those clients who have selected DeviceState.
  265.  *
  266.  */
  267. typedef struct
  268.     {
  269. #if defined(__cplusplus) || defined(c_plusplus)
  270.     unsigned char c_class;
  271. #else
  272.     unsigned char class;
  273. #endif
  274.     unsigned char length;
  275.     } XInputClass;
  276. typedef struct {
  277.     int           type;
  278.     unsigned long serial;       /* # of last request processed by server */
  279.     Bool          send_event;   /* true if this came from a SendEvent request */
  280.     Display       *display;     /* Display the event was read from */
  281.     Window        window;
  282.     XID           deviceid;
  283.     Time          time;
  284.     int           num_classes;
  285.     char   data[64];
  286. } XDeviceStateNotifyEvent;
  287. typedef struct {
  288. #if defined(__cplusplus) || defined(c_plusplus)
  289.     unsigned char c_class;
  290. #else
  291.     unsigned char class;
  292. #endif
  293.     unsigned char length;
  294.     unsigned char num_valuators;
  295.     unsigned char mode;
  296.     int         valuators[6];
  297. } XValuatorStatus;
  298. typedef struct {
  299. #if defined(__cplusplus) || defined(c_plusplus)
  300.     unsigned char c_class;
  301. #else
  302.     unsigned char class;
  303. #endif
  304.     unsigned char length;
  305.     short num_keys;
  306.     char         keys[32];
  307. } XKeyStatus;
  308. typedef struct {
  309. #if defined(__cplusplus) || defined(c_plusplus)
  310.     unsigned char c_class;
  311. #else
  312.     unsigned char class;
  313. #endif
  314.     unsigned char length;
  315.     short num_buttons;
  316.     char         buttons[32];
  317. } XButtonStatus;
  318. /*******************************************************************
  319.  *
  320.  * DeviceMappingNotify event.  This event is sent when the key mapping,
  321.  * modifier mapping, or button mapping of an extension device is changed.
  322.  *
  323.  */
  324. typedef struct {
  325.     int           type;
  326.     unsigned long serial;       /* # of last request processed by server */
  327.     Bool          send_event;   /* true if this came from a SendEvent request */
  328.     Display       *display;     /* Display the event was read from */
  329.     Window        window;       /* unused */
  330.     XID           deviceid;
  331.     Time          time;
  332.     int           request;      /* one of MappingModifier, MappingKeyboard,
  333.                                     MappingPointer */
  334.     int           first_keycode;/* first keycode */
  335.     int           count;        /* defines range of change w. first_keycode*/
  336. } XDeviceMappingEvent;
  337. /*******************************************************************
  338.  *
  339.  * ChangeDeviceNotify event.  This event is sent when an 
  340.  * XChangeKeyboard or XChangePointer request is made.
  341.  *
  342.  */
  343. typedef struct {
  344.     int           type;
  345.     unsigned long serial;       /* # of last request processed by server */
  346.     Bool          send_event;   /* true if this came from a SendEvent request */
  347.     Display       *display;     /* Display the event was read from */
  348.     Window        window;       /* unused */
  349.     XID           deviceid;
  350.     Time          time;
  351.     int           request;      /* NewPointer or NewKeyboard */
  352. } XChangeDeviceNotifyEvent;
  353. /*******************************************************************
  354.  *
  355.  * DevicePresenceNotify event.  This event is sent when the list of
  356.  * input devices changes, in which case devchange will be false, and
  357.  * no information about the change will be contained in the event;
  358.  * the client should use XListInputDevices() to learn what has changed.
  359.  *
  360.  * If devchange is true, an attribute that the server believes is
  361.  * important has changed on a device, and the client should use
  362.  * XGetDeviceControl to examine the device.  If control is non-zero,
  363.  * then that control has changed meaningfully.
  364.  */
  365. typedef struct {
  366.     int           type;
  367.     unsigned long serial;       /* # of last request processed by server */
  368.     Bool          send_event;   /* true if this came from a SendEvent request */
  369.     Display       *display;     /* Display the event was read from */
  370.     Window        window;       /* unused */
  371.     Time          time;
  372.     Bool          devchange;
  373.     XID           deviceid;
  374.     XID           control;
  375. } XDevicePresenceNotifyEvent;
  376. /*******************************************************************
  377.  *
  378.  * Control structures for input devices that support input class
  379.  * Feedback.  These are used by the XGetFeedbackControl and 
  380.  * XChangeFeedbackControl functions.
  381.  *
  382.  */
  383. typedef struct {
  384. #if defined(__cplusplus) || defined(c_plusplus)
  385.      XID            c_class;
  386. #else
  387.      XID            class;
  388. #endif
  389.      int            length;
  390.      XID            id;
  391. } XFeedbackState;
  392. typedef struct {
  393. #if defined(__cplusplus) || defined(c_plusplus)
  394.     XID     c_class;
  395. #else
  396.     XID     class;
  397. #endif
  398.     int     length;
  399.     XID     id;
  400.     int     click;
  401.     int     percent;
  402.     int     pitch;
  403.     int     duration;
  404.     int     led_mask;
  405.     int     global_auto_repeat;
  406.     char    auto_repeats[32];
  407. } XKbdFeedbackState;
  408. typedef struct {
  409. #if defined(__cplusplus) || defined(c_plusplus)
  410.     XID     c_class;
  411. #else
  412.     XID     class;
  413. #endif
  414.     int     length;
  415.     XID     id;
  416.     int     accelNum;
  417.     int     accelDenom;
  418.     int     threshold;
  419. } XPtrFeedbackState;
  420. typedef struct {
  421. #if defined(__cplusplus) || defined(c_plusplus)
  422.     XID     c_class;
  423. #else
  424.     XID     class;
  425. #endif
  426.     int     length;
  427.     XID     id;
  428.     int     resolution;
  429.     int     minVal;
  430.     int     maxVal;
  431. } XIntegerFeedbackState;
  432. typedef struct {
  433. #if defined(__cplusplus) || defined(c_plusplus)
  434.     XID     c_class;
  435. #else
  436.     XID     class;
  437. #endif
  438.     int     length;
  439.     XID     id;
  440.     int     max_symbols;
  441.     int     num_syms_supported;
  442.     KeySym  *syms_supported;
  443. } XStringFeedbackState;
  444. typedef struct {
  445. #if defined(__cplusplus) || defined(c_plusplus)
  446.     XID     c_class;
  447. #else
  448.     XID     class;
  449. #endif
  450.     int     length;
  451.     XID     id;
  452.     int     percent;
  453.     int     pitch;
  454.     int     duration;
  455. } XBellFeedbackState;
  456. typedef struct {
  457. #if defined(__cplusplus) || defined(c_plusplus)
  458.     XID     c_class;
  459. #else
  460.     XID     class;
  461. #endif
  462.     int     length;
  463.     XID     id;
  464.     int     led_values;
  465.     int     led_mask;
  466. } XLedFeedbackState;
  467. typedef struct {
  468. #if defined(__cplusplus) || defined(c_plusplus)
  469.      XID            c_class;
  470. #else
  471.      XID            class;
  472. #endif
  473.      int            length;
  474.      XID     id;
  475. } XFeedbackControl;
  476. typedef struct {
  477. #if defined(__cplusplus) || defined(c_plusplus)
  478.     XID     c_class;
  479. #else
  480.     XID     class;
  481. #endif
  482.     int     length;
  483.     XID     id;
  484.     int     accelNum;
  485.     int     accelDenom;
  486.     int     threshold;
  487. } XPtrFeedbackControl;
  488. typedef struct {
  489. #if defined(__cplusplus) || defined(c_plusplus)
  490.     XID     c_class;
  491. #else
  492.     XID     class;
  493. #endif
  494.     int     length;
  495.     XID     id;
  496.     int     click;
  497.     int     percent;
  498.     int     pitch;
  499.     int     duration;
  500.     int     led_mask;
  501.     int     led_value;
  502.     int     key;
  503.     int     auto_repeat_mode;
  504. } XKbdFeedbackControl;
  505. typedef struct {
  506. #if defined(__cplusplus) || defined(c_plusplus)
  507.     XID     c_class;
  508. #else
  509.     XID     class;
  510. #endif
  511.     int     length;
  512.     XID     id;
  513.     int     num_keysyms;
  514.     KeySym  *syms_to_display;
  515. } XStringFeedbackControl;
  516. typedef struct {
  517. #if defined(__cplusplus) || defined(c_plusplus)
  518.     XID     c_class;
  519. #else
  520.     XID     class;
  521. #endif
  522.     int     length;
  523.     XID     id;
  524.     int     int_to_display;
  525. } XIntegerFeedbackControl;
  526. typedef struct {
  527. #if defined(__cplusplus) || defined(c_plusplus)
  528.     XID     c_class;
  529. #else
  530.     XID     class;
  531. #endif
  532.     int     length;
  533.     XID     id;
  534.     int     percent;
  535.     int     pitch;
  536.     int     duration;
  537. } XBellFeedbackControl;
  538. typedef struct {
  539. #if defined(__cplusplus) || defined(c_plusplus)
  540.     XID     c_class;
  541. #else
  542.     XID     class;
  543. #endif
  544.     int     length;
  545.     XID     id;
  546.     int     led_mask;
  547.     int     led_values;
  548. } XLedFeedbackControl;
  549. /*******************************************************************
  550.  *
  551.  * Device control structures.
  552.  *
  553.  */
  554. typedef struct {
  555.      XID            control;
  556.      int            length;
  557. } XDeviceControl;
  558. typedef struct {
  559.      XID            control;
  560.      int            length;
  561.      int            first_valuator;
  562.      int            num_valuators;
  563.      int            *resolutions;
  564. } XDeviceResolutionControl;
  565. typedef struct {
  566.      XID            control;
  567.      int            length;
  568.      int            num_valuators;
  569.      int            *resolutions;
  570.      int            *min_resolutions;
  571.      int            *max_resolutions;
  572. } XDeviceResolutionState;
  573. typedef struct {
  574.     XID             control;
  575.     int             length;
  576.     int             min_x;
  577.     int             max_x;
  578.     int             min_y;
  579.     int             max_y;
  580.     int             flip_x;
  581.     int             flip_y;
  582.     int             rotation;
  583.     int             button_threshold;
  584. } XDeviceAbsCalibControl, XDeviceAbsCalibState;
  585. typedef struct {
  586.     XID             control;
  587.     int             length;
  588.     int             offset_x;
  589.     int             offset_y;
  590.     int             width;
  591.     int             height;
  592.     int             screen;
  593.     XID             following;
  594. } XDeviceAbsAreaControl, XDeviceAbsAreaState;
  595. typedef struct {
  596.     XID             control;
  597.     int             length;
  598.     int             status;
  599. } XDeviceCoreControl;
  600. typedef struct {
  601.     XID             control;
  602.     int             length;
  603.     int             status;
  604.     int             iscore;
  605. } XDeviceCoreState;
  606. typedef struct {
  607.     XID             control;
  608.     int             length;
  609.     int             enable;
  610. } XDeviceEnableControl, XDeviceEnableState;
  611. /*******************************************************************
  612.  *
  613.  * An array of XDeviceList structures is returned by the 
  614.  * XListInputDevices function.  Each entry contains information
  615.  * about one input device.  Among that information is an array of 
  616.  * pointers to structures that describe the characteristics of 
  617.  * the input device.
  618.  *
  619.  */
  620. typedef struct _XAnyClassinfo *XAnyClassPtr;
  621. typedef struct _XAnyClassinfo {
  622. #if defined(__cplusplus) || defined(c_plusplus)
  623.     XID  c_class;
  624. #else
  625.     XID  class;
  626. #endif
  627.     int  length;
  628.     } XAnyClassInfo;
  629. typedef struct _XDeviceInfo *XDeviceInfoPtr;
  630. typedef struct _XDeviceInfo
  631.     {
  632.     XID                 id;        
  633.     Atom                type;
  634.     char                *name;
  635.     int                 num_classes;
  636.     int                 use;
  637.     XAnyClassPtr  inputclassinfo;
  638.     } XDeviceInfo;
  639. typedef struct _XKeyInfo *XKeyInfoPtr;
  640. typedef struct _XKeyInfo
  641.     {
  642. #if defined(__cplusplus) || defined(c_plusplus)
  643.     XID c_class;
  644. #else
  645.     XID class;
  646. #endif
  647.     int length;
  648.     unsigned short      min_keycode;
  649.     unsigned short      max_keycode;
  650.     unsigned short      num_keys;
  651.     } XKeyInfo;
  652. typedef struct _XButtonInfo *XButtonInfoPtr;
  653. typedef struct _XButtonInfo {
  654. #if defined(__cplusplus) || defined(c_plusplus)
  655.     XID c_class;
  656. #else
  657.     XID class;
  658. #endif
  659.     int length;
  660.     short  num_buttons;
  661.     } XButtonInfo;
  662. typedef struct _XAxisInfo *XAxisInfoPtr;
  663. typedef struct _XAxisInfo {
  664.     int  resolution;
  665.     int  min_value;
  666.     int  max_value;
  667.     } XAxisInfo;
  668. typedef struct _XValuatorInfo *XValuatorInfoPtr;
  669. typedef struct _XValuatorInfo
  670.     {
  671. #if defined(__cplusplus) || defined(c_plusplus)
  672.     XID c_class;
  673. #else
  674.     XID class;
  675. #endif
  676.     int length;
  677.     unsigned char       num_axes;
  678.     unsigned char       mode;
  679.     unsigned long       motion_buffer;
  680.     XAxisInfoPtr        axes;
  681.     } XValuatorInfo;
  682. /*******************************************************************
  683.  *
  684.  * An XDevice structure is returned by the XOpenDevice function.  
  685.  * It contains an array of pointers to XInputClassInfo structures.
  686.  * Each contains information about a class of input supported by the
  687.  * device, including a pointer to an array of data for each type of event
  688.  * the device reports.
  689.  *
  690.  */
  691. typedef struct {
  692.         unsigned char   input_class;
  693.         unsigned char   event_type_base;
  694. } XInputClassInfo;
  695. typedef struct {
  696.         XID                    device_id;
  697.         int                    num_classes;
  698.         XInputClassInfo        *classes;
  699. } XDevice;
  700. /*******************************************************************
  701.  *
  702.  * The following structure is used to return information for the 
  703.  * XGetSelectedExtensionEvents function.
  704.  *
  705.  */
  706. typedef struct {
  707.         XEventClass     event_type;
  708.         XID             device;
  709. } XEventList;
  710. /*******************************************************************
  711.  *
  712.  * The following structure is used to return motion history data from 
  713.  * an input device that supports the input class Valuators.
  714.  * This information is returned by the XGetDeviceMotionEvents function.
  715.  *
  716.  */
  717. typedef struct {
  718.         Time   time;
  719.         int    *data;
  720. } XDeviceTimeCoord;
  721. /*******************************************************************
  722.  *
  723.  * Device state structure.
  724.  * This is returned by the XQueryDeviceState request.
  725.  *
  726.  */
  727. typedef struct {
  728.         XID device_id;
  729.         int num_classes;
  730.         XInputClass *data;
  731. } XDeviceState;
  732. /*******************************************************************
  733.  *
  734.  * Note that the mode field is a bitfield that reports the Proximity
  735.  * status of the device as well as the mode.  The mode field should
  736.  * be OR'd with the mask DeviceMode and compared with the values
  737.  * Absolute and Relative to determine the mode, and should be OR'd
  738.  * with the mask ProximityState and compared with the values InProximity
  739.  * and OutOfProximity to determine the proximity state.
  740.  *
  741.  */
  742. typedef struct {
  743. #if defined(__cplusplus) || defined(c_plusplus)
  744.     unsigned char c_class;
  745. #else
  746.     unsigned char class;
  747. #endif
  748.     unsigned char length;
  749.     unsigned char num_valuators;
  750.     unsigned char mode;
  751.     int         *valuators;
  752. } XValuatorState;
  753. typedef struct {
  754. #if defined(__cplusplus) || defined(c_plusplus)
  755.     unsigned char c_class;
  756. #else
  757.     unsigned char class;
  758. #endif
  759.     unsigned char length;
  760.     short num_keys;
  761.     char         keys[32];
  762. } XKeyState;
  763. typedef struct {
  764. #if defined(__cplusplus) || defined(c_plusplus)
  765.     unsigned char c_class;
  766. #else
  767.     unsigned char class;
  768. #endif
  769.     unsigned char length;
  770.     short num_buttons;
  771.     char         buttons[32];
  772. } XButtonState;
  773. /*******************************************************************
  774.  *
  775.  * Function definitions.
  776.  *
  777.  */
  778. _XFUNCPROTOBEGIN
  779. extern int XChangeKeyboardDevice(
  780.     Display* /* display */,
  781.     XDevice* /* device */
  782. );
  783. extern int XChangePointerDevice(
  784.     Display* /* display */,
  785.     XDevice* /* device */,
  786.     int /* xaxis */,
  787.     int /* yaxis */
  788. );
  789. extern int XGrabDevice(
  790.     Display* /* display */,
  791.     XDevice* /* device */,
  792.     Window /* grab_window */,
  793.     Bool /* ownerEvents */,
  794.     int /* event count */,
  795.     XEventClass* /* event_list */,
  796.     int /* this_device_mode */,
  797.     int /* other_devices_mode */,
  798.     Time /* time */
  799. );
  800. extern int XUngrabDevice(
  801.     Display* /* display */,
  802.     XDevice* /* device */,
  803.     Time  /* time */
  804. );
  805. extern int XGrabDeviceKey(
  806.     Display* /* display */,
  807.     XDevice* /* device */,
  808.     unsigned int /* key */,
  809.     unsigned int /* modifiers */,
  810.     XDevice* /* modifier_device */,
  811.     Window /* grab_window */,
  812.     Bool /* owner_events */,
  813.     unsigned int /* event_count */,
  814.     XEventClass* /* event_list */,
  815.     int /* this_device_mode */,
  816.     int /* other_devices_mode */
  817. );
  818. extern int XUngrabDeviceKey(
  819.     Display* /* display */,
  820.     XDevice* /* device */,
  821.     unsigned int /* key */,
  822.     unsigned int /* modifiers */,
  823.     XDevice* /* modifier_dev */,
  824.     Window /* grab_window */
  825. );
  826. extern int XGrabDeviceButton(
  827.     Display* /* display */,
  828.     XDevice* /* device */,
  829.     unsigned int /* button */,
  830.     unsigned int /* modifiers */,
  831.     XDevice* /* modifier_device */,
  832.     Window /* grab_window */,
  833.     Bool /* owner_events */,
  834.     unsigned int /* event_count */,
  835.     XEventClass* /* event_list */,
  836.     int /* this_device_mode */,
  837.     int /* other_devices_mode */
  838. );
  839. extern int XUngrabDeviceButton(
  840.     Display* /* display */,
  841.     XDevice* /* device */,
  842.     unsigned int /* button */,
  843.     unsigned int /* modifiers */,
  844.     XDevice* /* modifier_dev */,
  845.     Window /* grab_window */
  846. );
  847. extern int XAllowDeviceEvents(
  848.     Display* /* display */,
  849.     XDevice* /* device */,
  850.     int /* event_mode */,
  851.     Time /* time */
  852. );
  853. extern int XGetDeviceFocus(
  854.     Display* /* display */,
  855.     XDevice* /* device */,
  856.     Window* /* focus */,
  857.     int* /* revert_to */,
  858.     Time* /* time */
  859. );
  860. extern int XSetDeviceFocus(
  861.     Display* /* display */,
  862.     XDevice* /* device */,
  863.     Window /* focus */,
  864.     int /* revert_to */,
  865.     Time /* time */
  866. );
  867. extern XFeedbackState *XGetFeedbackControl(
  868.     Display* /* display */,
  869.     XDevice* /* device */,
  870.     int* /* num_feedbacks */
  871. );
  872. extern void XFreeFeedbackList(
  873.     XFeedbackState* /* list */
  874. );
  875. extern int XChangeFeedbackControl(
  876.     Display* /* display */,
  877.     XDevice* /* device */,
  878.     unsigned long /* mask */,
  879.     XFeedbackControl* /* f */
  880. );
  881. extern int XDeviceBell(
  882.     Display* /* display */,
  883.     XDevice* /* device */,
  884.     XID /* feedbackclass */,
  885.     XID /* feedbackid */,
  886.     int /* percent */
  887. );
  888. extern KeySym *XGetDeviceKeyMapping(
  889.     Display* /* display */,
  890.     XDevice* /* device */,
  891. #if NeedWidePrototypes
  892.     unsigned int /* first */,
  893. #else
  894.     KeyCode /* first */,
  895. #endif
  896.     int /* keycount */,
  897.     int* /* syms_per_code */
  898. );
  899. extern int XChangeDeviceKeyMapping(
  900.     Display* /* display */,
  901.     XDevice* /* device */,
  902.     int /* first */,
  903.     int /* syms_per_code */,
  904.     KeySym* /* keysyms */,
  905.     int /* count */
  906. );
  907. extern XModifierKeymap *XGetDeviceModifierMapping(
  908.     Display* /* display */,
  909.     XDevice* /* device */
  910. );
  911. extern int XSetDeviceModifierMapping(
  912.     Display* /* display */,
  913.     XDevice* /* device */,
  914.     XModifierKeymap* /* modmap */
  915. );
  916. extern int XSetDeviceButtonMapping(
  917.     Display* /* display */,
  918.     XDevice* /* device */,
  919.     unsigned char* /* map[] */,
  920.     int /* nmap */
  921. );
  922. extern int XGetDeviceButtonMapping(
  923.     Display* /* display */,
  924.     XDevice* /* device */,
  925.     unsigned char* /* map[] */,
  926.     unsigned int /* nmap */
  927. );
  928. extern XDeviceState *XQueryDeviceState(
  929.     Display* /* display */,
  930.     XDevice* /* device */
  931. );
  932. extern void XFreeDeviceState(
  933.     XDeviceState* /* list */
  934. );
  935. extern XExtensionVersion *XGetExtensionVersion(
  936.     Display* /* display */,
  937.     _Xconst char* /* name */
  938. );
  939. extern XDeviceInfo *XListInputDevices(
  940.     Display* /* display */,
  941.     int* /* ndevices */
  942. );
  943. extern void XFreeDeviceList(
  944.     XDeviceInfo* /* list */
  945. );
  946. extern XDevice *XOpenDevice(
  947.     Display* /* display */,
  948.     XID /* id */
  949. );
  950. extern int XCloseDevice(
  951.     Display* /* display */,
  952.     XDevice* /* device */
  953. );
  954. extern int XSetDeviceMode(
  955.     Display* /* display */,
  956.     XDevice* /* device */,
  957.     int /* mode */
  958. );
  959. extern int XSetDeviceValuators(
  960.     Display* /* display */,
  961.     XDevice* /* device */,
  962.     int* /* valuators */,
  963.     int /* first_valuator */,
  964.     int /* num_valuators */
  965. );
  966. extern XDeviceControl *XGetDeviceControl(
  967.     Display* /* display */,
  968.     XDevice* /* device */,
  969.     int /* control */
  970. );
  971. extern int XChangeDeviceControl(
  972.     Display* /* display */,
  973.     XDevice* /* device */,
  974.     int /* control */,
  975.     XDeviceControl* /* d */
  976. );
  977. extern int XSelectExtensionEvent(
  978.     Display* /* display */,
  979.     Window /* w */,
  980.     XEventClass* /* event_list */,
  981.     int /* count */
  982. );
  983. extern int XGetSelectedExtensionEvents(
  984.     Display* /* display */,
  985.     Window /* w */,
  986.     int* /* this_client_count */,
  987.     XEventClass** /* this_client_list */,
  988.     int* /* all_clients_count */,
  989.     XEventClass** /* all_clients_list */
  990. );
  991. extern int XChangeDeviceDontPropagateList(
  992.     Display* /* display */,
  993.     Window /* window */,
  994.     int /* count */,
  995.     XEventClass* /* events */,
  996.     int /* mode */
  997. );
  998. extern XEventClass *XGetDeviceDontPropagateList(
  999.     Display* /* display */,
  1000.     Window /* window */,
  1001.     int* /* count */
  1002. );
  1003. extern Status XSendExtensionEvent(
  1004.     Display* /* display */,
  1005.     XDevice* /* device */,
  1006.     Window /* dest */,
  1007.     Bool /* prop */,
  1008.     int /* count */,
  1009.     XEventClass* /* list */,
  1010.     XEvent* /* event */
  1011. );
  1012. extern XDeviceTimeCoord *XGetDeviceMotionEvents(
  1013.     Display* /* display */,
  1014.     XDevice* /* device */,
  1015.     Time /* start */,
  1016.     Time /* stop */,
  1017.     int* /* nEvents */,
  1018.     int* /* mode */,
  1019.     int* /* axis_count */
  1020. );
  1021. extern void XFreeDeviceMotionEvents(
  1022.     XDeviceTimeCoord* /* events */
  1023. );
  1024. extern void XFreeDeviceControl(
  1025.     XDeviceControl* /* control */
  1026. );
  1027. _XFUNCPROTOEND
  1028. #endif /* _XINPUT_H_ */