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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1998-2000 by Scriptics Corporation.
  3. '" All rights reserved.
  4. '" 
  5. '" RCS: @(#) $Id: AddOption.3,v 1.2 2002/01/25 21:09:36 dgp Exp $
  6. '" 
  7. '"
  8. .so man.macros
  9. .TH Tk_AddOption 3 "" Tk "Tk Library Procedures"
  10. .BS
  11. .SH NAME
  12. Tk_AddOption - Add an option to the option database
  13. .SH SYNOPSIS
  14. .nf
  15. fB#include <tk.h>fR
  16. .sp
  17. void
  18. fBTk_AddOptionfR(fItkwin, name, value, priorityfR)
  19. .SH ARGUMENTS
  20. .AP Tk_Window tkwin in
  21. Token for window.
  22. .AP "CONST char" *name in
  23. Multi-element name of option.
  24. .AP "CONST char" *value in
  25. Value of option.
  26. .AP int priority in
  27. Overall priority level to use for option.
  28. .BE
  29. .SH DESCRIPTION
  30. .PP
  31. This procedure is invoked to add an option to the database
  32. associated with fItkwinfR's main window.  fINamefR
  33. contains the option being specified and consists of names and/or
  34. classes separated by asterisks or dots, in the usual X format.
  35. fIValuefR contains the text string to associate with fInamefR;
  36. this value will be returned in calls to fBTk_GetOptionfR.
  37. fIPriorityfR specifies the priority of the value; when options are
  38. queried using fBTk_GetOptionfR, the value with the highest priority
  39. is returned.  fIPriorityfR must be between 0 and TK_MAX_PRIO.  Some
  40. common priority values are:
  41. .TP
  42. 20
  43. Used for default values hard-coded into widgets.
  44. .TP
  45. 40
  46. Used for options specified in application-specific startup files.
  47. .TP
  48. 60
  49. Used for options specified in user-specific defaults files, such as
  50. fB.XdefaultsfR, resource databases loaded into the X server, or
  51. user-specific startup files.
  52. .TP
  53. 80
  54. Used for options specified interactively after the application starts
  55. running.
  56. .PP
  57. .SH KEYWORDS
  58. class, name, option, add