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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: PassivGraI.h,v 1.4 2001/02/09 02:03:56 xorgcvs Exp $
  3. */
  4. /********************************************************
  5. Copyright 1988 by Hewlett-Packard Company
  6. Copyright 1987, 1988, 1989 by Digital Equipment Corporation, Maynard
  7. Permission to use, copy, modify, and distribute this software 
  8. and its documentation for any purpose and without fee is hereby 
  9. granted, provided that the above copyright notice appear in all 
  10. copies and that both that copyright notice and this permission 
  11. notice appear in supporting documentation, and that the names of 
  12. Hewlett-Packard or Digital not be used in advertising or 
  13. publicity pertaining to distribution of the software without specific, 
  14. written prior permission.
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22. ********************************************************/
  23. /*
  24. Copyright 1987, 1988, 1989, 1998  The Open Group
  25. Permission to use, copy, modify, distribute, and sell this software and its
  26. documentation for any purpose is hereby granted without fee, provided that
  27. the above copyright notice appear in all copies and that both that
  28. copyright notice and this permission notice appear in supporting
  29. documentation.
  30. The above copyright notice and this permission notice shall be included in
  31. all copies or substantial portions of the Software.
  32. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  33. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  34. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  35. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  36. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  37. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  38. Except as contained in this notice, the name of The Open Group shall not be
  39. used in advertising or otherwise to promote the sale, use or other dealings
  40. in this Software without prior written authorization from The Open Group.
  41. */
  42. /* $XFree86: xc/lib/Xt/PassivGraI.h,v 1.3 2001/12/14 19:56:27 dawes Exp $ */
  43. #ifndef _PDI_h_
  44. #define _PDI_h_
  45. #define KEYBOARD TRUE
  46. #define POINTER  FALSE
  47. typedef enum {
  48.     XtNoServerGrab, 
  49.     XtPassiveServerGrab,
  50.     XtActiveServerGrab,
  51.     XtPseudoPassiveServerGrab,
  52.     XtPseudoActiveServerGrab
  53. }XtServerGrabType;
  54. typedef struct _XtServerGrabRec {
  55.     struct _XtServerGrabRec  *next;
  56.     Widget widget;
  57.     unsigned int ownerEvents:1;
  58.     unsigned int pointerMode:1;
  59.     unsigned int keyboardMode:1;
  60.     unsigned int hasExt:1;
  61.     unsigned int confineToIsWidgetWin:1;
  62.     KeyCode keybut;
  63.     unsigned short modifiers;
  64.     unsigned short eventMask;
  65. } XtServerGrabRec, *XtServerGrabPtr;
  66. typedef struct _XtGrabExtRec {
  67.     Mask *pKeyButMask;
  68.     Mask *pModifiersMask;
  69.     Window confineTo;
  70.     Cursor cursor;
  71. } XtServerGrabExtRec, *XtServerGrabExtPtr;
  72. #define GRABEXT(p) ((XtServerGrabExtPtr)((p)+1))
  73. typedef struct _XtDeviceRec{
  74.     XtServerGrabRec grab;  /* need copy in order to protect
  75.    during grab */
  76.     XtServerGrabType grabType;
  77. }XtDeviceRec, *XtDevice;
  78. #define XtMyAncestor 0
  79. #define XtMyDescendant 1
  80. #define XtMyCousin 2
  81. #define XtMySelf 3
  82. #define XtUnrelated 4
  83. typedef char XtGeneology; /* do not use an enum makes PerWidgetInput larger */
  84. typedef struct {
  85.     Widget focusKid;
  86.     XtServerGrabPtr keyList, ptrList;
  87.     Widget queryEventDescendant;
  88.     unsigned int map_handler_added:1;
  89.     unsigned int realize_handler_added:1;
  90.     unsigned int active_handler_added:1;
  91.     unsigned int haveFocus:1;
  92.     XtGeneology focalPoint;
  93. }XtPerWidgetInputRec, *XtPerWidgetInput;
  94. typedef struct XtPerDisplayInputRec{
  95.     XtGrabList  grabList;
  96.     XtDeviceRec keyboard, pointer;
  97.     KeyCode activatingKey;
  98.     Widget  *trace;
  99.     int traceDepth, traceMax;
  100.     Widget  focusWidget;
  101. }XtPerDisplayInputRec, *XtPerDisplayInput;
  102. #define IsServerGrab(g) ((g == XtPassiveServerGrab) ||
  103.  (g == XtActiveServerGrab))
  104. #define IsAnyGrab(g) ((g == XtPassiveServerGrab) ||
  105.       (g == XtActiveServerGrab)  ||
  106.       (g == XtPseudoPassiveServerGrab))
  107. #define IsEitherPassiveGrab(g) ((g == XtPassiveServerGrab) ||
  108. (g == XtPseudoPassiveServerGrab))
  109. #define IsPseudoGrab(g) ((g == XtPseudoPassiveServerGrab))
  110. extern void _XtDestroyServerGrabs(
  111.     Widget /* w */,
  112.     XtPointer /* pwi */, /*XtPerWidgetInput*/
  113.     XtPointer /* call_data */
  114. );
  115. extern XtPerWidgetInput _XtGetPerWidgetInput(
  116.     Widget /* widget */,
  117.     _XtBoolean /* create */
  118. );
  119. extern XtServerGrabPtr _XtCheckServerGrabsOnWidget(
  120.     XEvent* /* event */,
  121.     Widget /* widget */,
  122.     _XtBoolean /* isKeyboard */
  123. );
  124. /*
  125. extern XtGrabList* _XtGetGrabList( XtPerDisplayInput );
  126. */
  127. #define _XtGetGrabList(pdi) (&(pdi)->grabList)
  128. extern void _XtFreePerWidgetInput(
  129.     Widget /* w */,
  130.     XtPerWidgetInput /* pwi */
  131. );
  132. extern Widget _XtProcessKeyboardEvent(
  133.     XKeyEvent* /* event */,
  134.     Widget /* widget */,
  135.     XtPerDisplayInput /* pdi */
  136. );
  137. extern Widget _XtProcessPointerEvent(
  138.     XButtonEvent* /* event */,
  139.     Widget /* widget */,
  140.     XtPerDisplayInput /* pdi */
  141. );
  142. extern void _XtRegisterPassiveGrabs(
  143.     Widget /* widget */
  144. );
  145. extern void _XtClearAncestorCache(
  146.     Widget /* widget */
  147. );
  148. #endif /* _PDI_h_ */