diff options
author | ericm <ericm@noemail.net> | 2000-05-17 21:17:18 (GMT) |
---|---|---|
committer | ericm <ericm@noemail.net> | 2000-05-17 21:17:18 (GMT) |
commit | b4382d4c3d29dfc624f6d65d0f9584ffccfb6048 (patch) | |
tree | cc806cc6c8cbd3daf45e4f418ada919e3ab812e0 /doc/SetOptions.3 | |
parent | e7b13274eef463557cc8783d89d66081f0575b08 (diff) | |
download | tk-b4382d4c3d29dfc624f6d65d0f9584ffccfb6048.zip tk-b4382d4c3d29dfc624f6d65d0f9584ffccfb6048.tar.gz tk-b4382d4c3d29dfc624f6d65d0f9584ffccfb6048.tar.bz2 |
* doc/SetOptions.3: Added information about TK_OPTION_NULL_OK with
TK_OPTION_RELIEF.
* win/tkWinButton.c: Removed bits about TK_RELIEF_LINK.
* tests/button.test: Added tests for -overrelief; removed tests
for -relief link.
* mac/tkMacButton.c: Removed bits about TK_RELIEF_LINK.
* generic/tkOldConfig.c: Removed bits about TK_RELIEF_LINK.
* generic/tkConfig.c: Removed bits about TK_RELIEF_LINK; added
support for TK_OPTION_NULL_OK for TK_OPTION_RELIEF.
* library/button.tcl: Added binding support for -overrelief.
* generic/tk3d.c (Tk_GetRelief): Added branch for TK_RELIEF_NULL.
* generic/tkButton.c: Added -overrelief option; removed
Enter/Leave EventProc masks and handlers.
* generic/tk.h: Added TK_RELIEF_NULL definition, removed
TK_RELIEF_LINK.
* mac/tkMacDefault.h (DEF_BUTTON_OVER_RELIEF):
* win/tkWinDefault.h (DEF_BUTTON_OVER_RELIEF):
* unix/tkUnixDefault.h (DEF_BUTTON_OVER_RELIEF): Added default
value for the -overrelief option.
FossilOrigin-Name: 107c0be19713ca6aedb57383ae53c62d430c9280
Diffstat (limited to 'doc/SetOptions.3')
-rw-r--r-- | doc/SetOptions.3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/SetOptions.3 b/doc/SetOptions.3 index 4a6a1a4..8393085 100644 --- a/doc/SetOptions.3 +++ b/doc/SetOptions.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: SetOptions.3,v 1.2 1999/04/16 01:51:08 stanton Exp $ +'\" RCS: @(#) $Id: SetOptions.3,v 1.3 2000/05/17 21:17:19 ericm Exp $ '\" .so man.macros .TH Tk_SetOptions 3 8.1 Tk "Tk Library Procedures" @@ -411,7 +411,9 @@ See \fBOBJOFFSET VS. INTERNALOFFSET\fR below for details. \fBTK_OPTION_RELIEF\fR The value must be standard relief such as \fBraised\fR. The internal form is an integer relief value such as -TK_RELIEF_RAISED. +TK_RELIEF_RAISED. This option type supports the TK_OPTION_NULL_OK +flag; if the empty string is specified as the value for the option, +the integer relief value is set to TK_RELIEF_NULL. .TP \fBTK_OPTION_STRING\fR The value may be any string. The internal form is a (char *) pointer |