GetCapStyl.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: GetCapStyl.3,v 1.3 2002/08/05 04:30:38 dgp Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_GetCapStyle 3 "" Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_GetCapStyle, Tk_NameOfCapStyle - translate between strings and cap styles
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. int
  20. fBTk_GetCapStyle(fIinterp, string, capPtrfB)fR
  21. .sp
  22. CONST char *
  23. fBTk_NameOfCapStyle(fIcapfB)fR
  24. .SH ARGUMENTS
  25. .AS "Tcl_Interp" *capPtr
  26. .AP Tcl_Interp *interp in
  27. Interpreter to use for error reporting.
  28. .AP "CONST char" *string in
  29. String containing name of cap style: one of ```butt'', ``projecting'',
  30. or ``round''.
  31. .AP int *capPtr out
  32. Pointer to location in which to store X cap style corresponding to
  33. fIstringfR.
  34. .AP int cap in
  35. Cap style: one of fBCapButtfR, fBCapProjectingfR, or fBCapRoundfR.
  36. .BE
  37. .SH DESCRIPTION
  38. .PP
  39. fBTk_GetCapStylefR places in fI*capPtrfR the X cap style
  40. corresponding to fIstringfR.
  41. This will be one of the values
  42. fBCapButtfR, fBCapProjectingfR, or fBCapRoundfR.
  43. Cap styles are typically used in X graphics contexts to indicate
  44. how the end-points of lines should be capped.
  45. See the X documentation for information on what each style
  46. implies.
  47. .PP
  48. Under normal circumstances the return value is fBTCL_OKfR and
  49. fIinterpfR is unused.
  50. If fIstringfR doesn't contain a valid cap style
  51. or an abbreviation of one of these names, then an error message is
  52. stored in fIinterp->resultfR, fBTCL_ERRORfR is returned, and
  53. fI*capPtrfR is unmodified.
  54. .PP
  55. fBTk_NameOfCapStylefR is the logical inverse of fBTk_GetCapStylefR.
  56. Given a cap style such as fBCapButtfR it returns a
  57. statically-allocated string corresponding to fIcapfR.
  58. If fIcapfR isn't a legal cap style, then
  59. ``unknown cap style'' is returned.
  60. .SH KEYWORDS
  61. butt, cap style, projecting, round