diff options
author | dkf <dkf@noemail.net> | 2007-10-29 16:04:10 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2007-10-29 16:04:10 (GMT) |
commit | 4608ded75d542c786aae5d6f4b86bd1bd8e3f0be (patch) | |
tree | f1b13d0b63bdcb785dc2718534eb209b9796d50b /doc/labelframe.n | |
parent | b61148e3f8da053b11e21cf1fa21423086dd6810 (diff) | |
download | tk-4608ded75d542c786aae5d6f4b86bd1bd8e3f0be.zip tk-4608ded75d542c786aae5d6f4b86bd1bd8e3f0be.tar.gz tk-4608ded75d542c786aae5d6f4b86bd1bd8e3f0be.tar.bz2 |
Lots more GOOBE stuff. Now works with 'make html'!
FossilOrigin-Name: 6373cd0cf2deb3038f42488bf9ad272b2d9aed9e
Diffstat (limited to 'doc/labelframe.n')
-rw-r--r-- | doc/labelframe.n | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/labelframe.n b/doc/labelframe.n index 09ec0b9..9b2112b 100644 --- a/doc/labelframe.n +++ b/doc/labelframe.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: labelframe.n,v 1.5 2007/10/26 20:13:23 dgp Exp $ +'\" RCS: @(#) $Id: labelframe.n,v 1.6 2007/10/29 16:04:13 dkf Exp $ '\" .so man.macros .TH labelframe n 8.4 Tk "Tk Built-In Commands" @@ -143,10 +143,10 @@ This shows how to build part of a GUI for a hamburger vendor. The the kinds of things that the choices are being made over. .PP .CS -grid [\fBlabelframe\fR .burger -text "Burger"] \\ - [\fBlabelframe\fR .bun -text "Bun"] -sticky news -grid [\fBlabelframe\fR .cheese -text "Cheese Option"] \\ - [\fBlabelframe\fR .pickle -text "Pickle Option"] -sticky news +grid [\fBlabelframe\fR .burger \-text "Burger"] \e + [\fBlabelframe\fR .bun \-text "Bun"] \-sticky news +grid [\fBlabelframe\fR .cheese \-text "Cheese Option"] \e + [\fBlabelframe\fR .pickle \-text "Pickle Option"] \-sticky news foreach {type name val} { burger Beef beef burger Lamb lamb @@ -160,7 +160,7 @@ foreach {type name val} { cheese Cheddar cheddar cheese Edam edam cheese Brie brie - cheese Gruy\\u00e8re gruyere + cheese Gruy\eu00e8re gruyere cheese "Monterey Jack" jack pickle None none @@ -168,9 +168,9 @@ foreach {type name val} { pickle Onions onion pickle Chili chili } { - set w [radiobutton .$type.$val -text $name -anchor w \\ - -variable $type -value $val] - pack $w -side top -fill x + set w [radiobutton .$type.$val \-text $name \-anchor w \e + \-variable $type \-value $val] + pack $w \-side top \-fill x } set burger beef set bun white |