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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1996 Sun Microsystems, Inc.
  3. '"
  4. '" See the file "license.terms" for information on usage and redistribution
  5. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  6. '" 
  7. '" RCS: @(#) $Id: chooseColor.n,v 1.3 2002/10/02 21:12:41 hobbs Exp $
  8. '" 
  9. .so man.macros
  10. .TH tk_chooseColor n 4.2 Tk "Tk Built-In Commands"
  11. .BS
  12. '" Note:  do not modify the .SH NAME line immediately below!
  13. .SH NAME
  14. tk_chooseColor - pops up a dialog box for the user to select a color.
  15. .PP
  16. .SH SYNOPSIS
  17. fBtk_chooseColor fR?fIoption value ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. The procedure fBtk_chooseColorfR pops up a dialog box for the
  22. user to select a color. The following fIoption-valuefR pairs are
  23. possible as command line arguments:
  24. .TP
  25. fB-initialcolorfR fIcolorfR
  26. Specifies the color to display in the color dialog when it pops
  27. up. fIcolorfR must be in a form acceptable to the fBTk_GetColorfR
  28. function.
  29. .TP
  30. fB-parentfR fIwindowfR
  31. Makes fIwindowfR the logical parent of the color dialog. The color
  32. dialog is displayed on top of its parent window.
  33. .TP
  34. fB-titlefR fItitleStringfR
  35. Specifies a string to display as the title of the dialog box. If this
  36. option is not specified, then a default title will be displayed.
  37. .LP
  38. If the user selects a color, fBtk_chooseColorfR will return the
  39. name of the color in a form acceptable to fBTk_GetColorfR.  If the
  40. user cancels the operation, both commands will return the empty
  41. string.
  42. .SH EXAMPLE
  43. .CS
  44. button .b -bg [tk_chooseColor -initialcolor gray -title "Choose color"]
  45. .CE
  46. .SH KEYWORDS
  47. color selection dialog