GetPixmap.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: GetPixmap.3,v 1.2 1998/09/14 18:22:50 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_GetPixmap 3 4.0 Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_GetPixmap, Tk_FreePixmap - allocate and free pixmaps
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. Pixmap
  20. fBTk_GetPixmap(fIdisplay, d, width, height, depthfB)fR
  21. .sp
  22. fBTk_FreePixmap(fIdisplay, pixmapfB)fR
  23. .SH ARGUMENTS
  24. .AS "Drawable" *pixelPtr
  25. .AP Display *display in
  26. X display for the pixmap.
  27. .AP Drawable d in
  28. Pixmap or window where the new pixmap will be used for drawing.
  29. .AP "int" width in
  30. Width of pixmap.
  31. .AP "int" height in
  32. Height of pixmap.
  33. .AP "int" depth in
  34. Number of bits per pixel in pixmap.
  35. .AP Pixmap pixmap in
  36. Pixmap to destroy.
  37. .BE
  38. .SH DESCRIPTION
  39. .PP
  40. These procedures are identical to the Xlib procedures fBXCreatePixmapfR
  41. and fBXFreePixmapfR, except that they have extra code to manage X
  42. resource identifiers so that identifiers for deleted pixmaps can be
  43. reused in the future.
  44. It is important for Tk applications to use these procedures rather
  45. than fBXCreatePixmapfR and fBXFreePixmapfR;  otherwise long-running
  46. applications may run out of resource identifiers.
  47. .PP
  48. fBTk_GetPixmapfR creates a pixmap suitable for drawing in fIdfR,
  49. with dimensions given by fIwidthfR, fIheightfR, and fIdepthfR,
  50. and returns its identifier.
  51. fBTk_FreePixmapfR destroys the pixmap given by fIpixmapfR and makes
  52. its resource identifier available for reuse.
  53. .SH KEYWORDS
  54. pixmap, resource identifier