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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Drawing.h,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */
  2. /*
  3.  
  4. Copyright 1988, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21. */
  22. /* $XFree86: xc/lib/Xmu/Drawing.h,v 1.6 2001/12/14 19:55:42 dawes Exp $ */
  23. /*
  24.  * The interfaces described by this header file are for miscellaneous utilities
  25.  * and are not part of the Xlib standard.
  26.  */
  27. #ifndef _XMU_DRAWING_H_
  28. #define _XMU_DRAWING_H_
  29. #include <X11/Xlib.h>
  30. #include <X11/Xfuncproto.h>
  31. #include <stdio.h>
  32. #if ! defined(_XtIntrinsic_h) && ! defined(PIXEL_ALREADY_TYPEDEFED)
  33. typedef unsigned long Pixel;
  34. #endif
  35. _XFUNCPROTOBEGIN
  36. void XmuDrawRoundedRectangle
  37. (
  38.  Display *dpy,
  39.  Drawable   draw,
  40.  GC  gc,
  41.  int x,
  42.  int y,
  43.  int w,
  44.  int h,
  45.  int ew,
  46.  int eh
  47.  );
  48. void XmuFillRoundedRectangle
  49. (
  50.  Display *dpy,
  51.  Drawable  draw,
  52.  GC  gc,
  53.  int x,
  54.  int y,
  55.  int w,
  56.  int h,
  57.  int ew,
  58.  int eh
  59.  );
  60. void XmuDrawLogo
  61. (
  62.  Display *dpy,
  63.  Drawable  drawable,
  64.  GC gcFore,
  65.  GC gcBack,
  66.  int x,
  67.  int y,
  68.  unsigned int width,
  69.  unsigned int height
  70.  );
  71. Pixmap XmuCreatePixmapFromBitmap
  72. (
  73.  Display *dpy,
  74.  Drawable  d,
  75.  Pixmap  bitmap,
  76.  unsigned int width,
  77.  unsigned int height,
  78.  unsigned int depth,
  79.  unsigned long fore,
  80.  unsigned long back
  81. );
  82. Pixmap XmuCreateStippledPixmap
  83. (
  84.  Screen *screen,
  85.  Pixel fore,
  86.  Pixel back,
  87.  unsigned int depth
  88.  );
  89. void XmuReleaseStippledPixmap
  90. (
  91.  Screen *screen,
  92.  Pixmap  pixmap
  93.  );
  94. Pixmap XmuLocateBitmapFile
  95. (
  96.  Screen *screen,
  97.  _Xconst char *name,
  98.  char *srcname_return,
  99.  int  srcnamelen,
  100.  int *width_return,
  101.  int *height_return,
  102.  int *xhot_return,
  103.  int *yhot_return
  104.  );
  105. Pixmap XmuLocatePixmapFile
  106. (
  107.  Screen *screen,
  108.  _Xconst char *name,
  109.  unsigned long fore,
  110.  unsigned long back,
  111.  unsigned int depth,
  112.  char *srcname_return,
  113.  int  srcnamelen,
  114.  int *width_return,
  115.  int *height_return,
  116.  int *xhot_return,
  117.  int *yhot_return
  118.  );
  119. int XmuReadBitmapData
  120. (
  121.  FILE *fstream,
  122.  unsigned int *width_return,
  123.  unsigned int *height_return,
  124.  unsigned char **datap_return,
  125.  int *xhot_return,
  126.  int *yhot_return
  127. );
  128. int XmuReadBitmapDataFromFile
  129. (
  130.  _Xconst char *filename,
  131.  unsigned int *width_return,
  132.  unsigned int *height_return,
  133.  unsigned char **datap_return,
  134.  int *xhot_return,
  135.  int *yhot_return
  136.  );
  137. _XFUNCPROTOEND
  138. #endif /* _XMU_DRAWING_H_ */