summaryrefslogtreecommitdiffstats
path: root/library/demos/button.tcl
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-10-15 21:06:16 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-10-15 21:06:16 (GMT)
commitabcf21eecbc0627f16250c70fc56ff58348c68a8 (patch)
tree316082a042e1ef2c5c60073e8be3a90025095d61 /library/demos/button.tcl
parentb2f828793e2d7f586496d46cdbad418983a474dc (diff)
downloadtk-abcf21eecbc0627f16250c70fc56ff58348c68a8.zip
tk-abcf21eecbc0627f16250c70fc56ff58348c68a8.tar.gz
tk-abcf21eecbc0627f16250c70fc56ff58348c68a8.tar.bz2
GOOBE work on the widget demo, plus a new demo of text widget peering.
Diffstat (limited to 'library/demos/button.tcl')
-rw-r--r--library/demos/button.tcl16
1 files changed, 2 insertions, 14 deletions
diff --git a/library/demos/button.tcl b/library/demos/button.tcl
index 1fbef8d..5833fd0 100644
--- a/library/demos/button.tcl
+++ b/library/demos/button.tcl
@@ -3,7 +3,7 @@
# This demonstration script creates a toplevel window containing
# several button widgets.
#
-# RCS: @(#) $Id: button.tcl,v 1.6 2007/05/30 13:23:49 das Exp $
+# RCS: @(#) $Id: button.tcl,v 1.7 2007/10/15 21:06:16 dkf Exp $
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
@@ -22,22 +22,10 @@ label $w.msg -font $font -wraplength 4i -justify left -text "If you click on any
pack $w.msg -side top
## See Code / Dismiss buttons
-set btns [addSeeDismiss $w.buttons $w]
-pack $btns -side bottom -fill x
+pack [addSeeDismiss $w.buttons $w] -side bottom -fill x
proc colorrefresh {w col} {
$w configure -bg $col
- $w.buttons configure -bg $col
- if {[tk windowingsystem] eq "aqua"} {
- # set highlightbackground of all buttons in $w
- set l [list $w]
- while {[llength $l]} {
- set l [concat [lassign $l b] [winfo children $b]]
- if {[winfo class $b] eq "Button"} {
- $b configure -highlightbackground $col
- }
- }
- }
}
button $w.b1 -text "Peach Puff" -width 10 \