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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86: xc/include/extensions/shape.h,v 1.3 2001/12/14 19:53:29 dawes 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. ********************************************************/
  21. /* $Xorg: shape.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  22. #ifndef _SHAPE_H_
  23. #define _SHAPE_H_
  24. #include <X11/Xfuncproto.h>
  25. #define X_ShapeQueryVersion 0
  26. #define X_ShapeRectangles 1
  27. #define X_ShapeMask 2
  28. #define X_ShapeCombine 3
  29. #define X_ShapeOffset 4
  30. #define X_ShapeQueryExtents 5
  31. #define X_ShapeSelectInput 6
  32. #define X_ShapeInputSelected 7
  33. #define X_ShapeGetRectangles 8
  34. #define ShapeSet 0
  35. #define ShapeUnion 1
  36. #define ShapeIntersect 2
  37. #define ShapeSubtract 3
  38. #define ShapeInvert 4
  39. #define ShapeBounding 0
  40. #define ShapeClip 1
  41. #define ShapeInput 2
  42. #define ShapeNotifyMask (1L << 0)
  43. #define ShapeNotify 0
  44. #define ShapeNumberEvents (ShapeNotify + 1)
  45. #ifndef _SHAPE_SERVER_
  46. #include <X11/Xutil.h>
  47. typedef struct {
  48.     int type;     /* of event */
  49.     unsigned long serial;   /* # of last request processed by server */
  50.     Bool send_event;     /* true if this came frome a SendEvent request */
  51.     Display *display;     /* Display the event was read from */
  52.     Window window;     /* window of event */
  53.     int kind;     /* ShapeBounding or ShapeClip */
  54.     int x, y;     /* extents of new region */
  55.     unsigned width, height;
  56.     Time time;     /* server timestamp when region changed */
  57.     Bool shaped;     /* true if the region exists */
  58. } XShapeEvent;
  59. _XFUNCPROTOBEGIN
  60. extern Bool XShapeQueryExtension (
  61.     Display* /* display */,
  62.     int* /* event_base */,
  63.     int* /* error_base */
  64. );
  65. extern Status XShapeQueryVersion (
  66.     Display* /* display */,
  67.     int* /* major_version */,
  68.     int* /* minor_version */
  69. );
  70. extern void XShapeCombineRegion (
  71.     Display* /* display */,
  72.     Window /* dest */,
  73.     int /* dest_kind */,
  74.     int /* x_off */,
  75.     int /* y_off */,
  76.     Region /* region */,
  77.     int /* op */
  78. );
  79. extern void XShapeCombineRectangles (
  80.     Display* /* display */,
  81.     Window /* dest */,
  82.     int /* dest_kind */,
  83.     int /* x_off */,
  84.     int /* y_off */,
  85.     XRectangle* /* rectangles */,
  86.     int /* n_rects */,
  87.     int /* op */,
  88.     int /* ordering */
  89. );
  90. extern void XShapeCombineMask (
  91.     Display* /* display */,
  92.     Window /* dest */,
  93.     int /* dest_kind */,
  94.     int /* x_off */,
  95.     int /* y_off */,
  96.     Pixmap /* src */,
  97.     int /* op */
  98. );
  99. extern void XShapeCombineShape (
  100.     Display* /* display */,
  101.     Window /* dest */,
  102.     int /* dest_kind */,
  103.     int /* x_off */,
  104.     int /* y_off */,
  105.     Window /* src */,
  106.     int /* src_kind */,
  107.     int /* op */
  108. );
  109. extern void XShapeOffsetShape (
  110.     Display* /* display */,
  111.     Window /* dest */,
  112.     int /* dest_kind */,
  113.     int /* x_off */,
  114.     int /* y_off */
  115. );
  116. extern Status XShapeQueryExtents (
  117.     Display* /* display */,
  118.     Window /* window */,
  119.     Bool* /* bounding_shaped */,
  120.     int* /* x_bounding */,
  121.     int* /* y_bounding */,
  122.     unsigned int* /* w_bounding */,
  123.     unsigned int* /* h_bounding */,
  124.     Bool* /* clip_shaped */,
  125.     int* /* x_clip */,
  126.     int* /* y_clip */,
  127.     unsigned int* /* w_clip */,
  128.     unsigned int* /* h_clip */
  129. );
  130. extern void XShapeSelectInput (
  131.     Display* /* display */,
  132.     Window /* window */,
  133.     unsigned long /* mask */
  134. );
  135. extern unsigned long XShapeInputSelected (
  136.     Display* /* display */,
  137.     Window /* window */
  138. );
  139. extern XRectangle *XShapeGetRectangles (
  140.     Display* /* display */,
  141.     Window /* window */,
  142.     int /* kind */,
  143.     int* /* count */,
  144.     int* /* ordering */
  145. );
  146. _XFUNCPROTOEND
  147. #endif /* _SHAPE_SERVER_ */
  148. #endif /* _SHAPE_H_ */