diff options
author | drh <drh@sqlite.org> | 2002-08-28 01:08:06 (GMT) |
---|---|---|
committer | drh <drh@sqlite.org> | 2002-08-28 01:08:06 (GMT) |
commit | 62d94160aed093a9505d60181a1509e69bd02bb6 (patch) | |
tree | 5960f61fed46a9f73cf486909c92874ca51c7171 /doc | |
parent | cba98af9a6ea332576939b71f74b5ffbdb4c61f3 (diff) | |
download | tk-62d94160aed093a9505d60181a1509e69bd02bb6.zip tk-62d94160aed093a9505d60181a1509e69bd02bb6.tar.gz tk-62d94160aed093a9505d60181a1509e69bd02bb6.tar.bz2 |
Fix for bug #582457: make radio and checkbuttons work like Windows whenmacosx_8_4_premerge_2002_08_31_trunkmacosx_8_4_merge_2002_08_30_trunk
-relief is sunken, -offrelief is flat, and -overrelief is raised.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/checkbutton.n | 10 | ||||
-rw-r--r-- | doc/radiobutton.n | 11 |
2 files changed, 17 insertions, 4 deletions
diff --git a/doc/checkbutton.n b/doc/checkbutton.n index 9f762bd..9e83699 100644 --- a/doc/checkbutton.n +++ b/doc/checkbutton.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: checkbutton.n,v 1.5 2002/06/17 10:54:29 drh Exp $ +'\" RCS: @(#) $Id: checkbutton.n,v 1.6 2002/08/28 01:08:06 drh Exp $ '\" .so man.macros .TH checkbutton n 4.4 Tk "Tk Built-In Commands" @@ -46,7 +46,13 @@ selected and raised otherwise. .VS 8.4 .OP \-offrelief offRelief OffRelief Specifies the relief for the checkbutton when the indicator is not drawn and -the checkbutton is off. The default value is "raised". +the checkbutton is off. The default value is "raised". By setting this option +to "flat" and setting -indicatoron to false and -overrelief to raised, +the effect is achieved +of having a flat button that raises on mouse-over and which is +depressed when activated. This is the behavior typically exhibited by +the Bold, Italic, and Underline checkbuttons on the toolbar of a +word-processor, for example. .VE 8.4 .OP \-offvalue offValue Value Specifies value to store in the button's associated variable whenever diff --git a/doc/radiobutton.n b/doc/radiobutton.n index 5c3b17a..2cc08e2 100644 --- a/doc/radiobutton.n +++ b/doc/radiobutton.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: radiobutton.n,v 1.5 2002/06/17 10:54:29 drh Exp $ +'\" RCS: @(#) $Id: radiobutton.n,v 1.6 2002/08/28 01:08:06 drh Exp $ '\" .so man.macros .TH radiobutton n 4.4 Tk "Tk Built-In Commands" @@ -56,7 +56,14 @@ displaying when the widget is selected. .VS 8.4 .OP \-offrelief offRelief OffRelief Specifies the relief for the checkbutton when the indicator is not drawn and -the checkbutton is off. The default value is "raised". +the checkbutton is off. The default value is "raised". By setting this option +to "flat" and setting -indicatoron to false and -overrelief to raised, +the effect is achieved +of having a flat button that raises on mouse-over and which is +depressed when activated. This is the behavior typically exhibited by +the Align-Left, Align-Right, and Center radiobuttons on the toolbar of a +word-processor, for example. + .VE 8.4 .VS 8.4 .OP \-overrelief overRelief OverRelief |