diff options
author | ericm <ericm> | 2000-04-24 19:00:13 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-04-24 19:00:13 (GMT) |
commit | 0ee05109607d9b4366039240f05a7d1d096f5d58 (patch) | |
tree | e644a0c4ef9595f25c6d2e93a218c33df5d1db9e /doc/AddOption.3 | |
parent | 5de78d21c1372cc6afdd12a2dc56b4909ad3a505 (diff) | |
download | tk-0ee05109607d9b4366039240f05a7d1d096f5d58.zip tk-0ee05109607d9b4366039240f05a7d1d096f5d58.tar.gz tk-0ee05109607d9b4366039240f05a7d1d096f5d58.tar.bz2 |
* unix/mkLinks:
* doc/AddOption.3: Man page for Tk_AddOption [Bug: 1854]
Diffstat (limited to 'doc/AddOption.3')
-rw-r--r-- | doc/AddOption.3 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/doc/AddOption.3 b/doc/AddOption.3 new file mode 100644 index 0000000..d6c7ca5 --- /dev/null +++ b/doc/AddOption.3 @@ -0,0 +1,60 @@ +'\" +'\" Copyright (c) 1998-2000 by Scriptics Corporation. +'\" All rights reserved. +'\" +'\" RCS: @(#) $Id: AddOption.3,v 1.1 2000/04/24 19:00:14 ericm Exp $ +'\" +'\" +.so man.macros +.TH Tk_AddOption 3 "" Tk "Tk Library Procedures" +.BS +.SH NAME +Tk_AddOption \- Add an option to the option database +.SH SYNOPSIS +.nf +\fB#include <tk.h>\fR +.sp +void +\fBTk_AddOption\fR(\fItkwin, name, value, priority\fR) +.SH ARGUMENTS +.AP Tk_Window tkwin in +Token for window. +.AP char *name in +Multi-element name of option. +.AP char *value in +Value of option. +.AP int priority in +Overall priority level to use for option. +.BE + +.SH DESCRIPTION +.PP +This procedure is invoked to add an option to the database +associated with \fItkwin\fR's main window. \fIName\fR +contains the option being specified and consists of names and/or +classes separated by asterisks or dots, in the usual X format. +\fIValue\fR contains the text string to associate with \fIname\fR; +this value will be returned in calls to \fBTk_GetOption\fR. +\fIPriority\fR specifies the priority of the value; when options are +queried using \fBTk_GetOption\fR, the value with the highest priority +is returned. \fIPriority\fR must be between 0 and TK_MAX_PRIO. Some +common priority values are: +.TP +20 +Used for default values hard-coded into widgets. +.TP +40 +Used for options specified in application-specific startup files. +.TP +60 +Used for options specified in user-specific defaults files, such as +\fB.Xdefaults\fR, resource databases loaded into the X server, or +user-specific startup files. +.TP +80 +Used for options specified interactively after the application starts +running. +.PP + +.SH KEYWORDS +class, name, option, add |