diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-08-22 22:44:14 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-08-22 22:44:14 (GMT) |
commit | 692965d98c95bc29633660474c8fc34b3abbd092 (patch) | |
tree | 9660f5070a3ea6ce4ce829240ff9bf16c2e1fe1e /library/demos/msgbox.tcl | |
parent | 96371ea01bec52dfda6c5451136e4e4af7d9bd5e (diff) | |
download | tk-692965d98c95bc29633660474c8fc34b3abbd092.zip tk-692965d98c95bc29633660474c8fc34b3abbd092.tar.gz tk-692965d98c95bc29633660474c8fc34b3abbd092.tar.bz2 |
Brought tk_messageBox demo into line with the newer look-and-feel for the demos.
Diffstat (limited to 'library/demos/msgbox.tcl')
-rw-r--r-- | library/demos/msgbox.tcl | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/library/demos/msgbox.tcl b/library/demos/msgbox.tcl index 4af68dc..837205a 100644 --- a/library/demos/msgbox.tcl +++ b/library/demos/msgbox.tcl @@ -2,7 +2,7 @@ # # This demonstration script creates message boxes of various type # -# RCS: @(#) $Id: msgbox.tcl,v 1.2 1998/09/14 18:23:29 stanton Exp $ +# RCS: @(#) $Id: msgbox.tcl,v 1.3 2003/08/22 22:44:15 dkf Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." @@ -18,13 +18,10 @@ positionWindow $w label $w.msg -font $font -wraplength 4i -justify left -text "Choose the icon and type option of the message box. Then press the \"Message Box\" button to see the message box." pack $w.msg -side top -frame $w.buttons -pack $w.buttons -side bottom -fill x -pady 2m -button $w.buttons.dismiss -text Dismiss -command "destroy $w" -button $w.buttons.code -text "See Code" -command "showCode $w" -button $w.buttons.vars -text "Message Box" \ - -command "showMessageBox $w" -pack $w.buttons.dismiss $w.buttons.code $w.buttons.vars -side left -expand 1 +pack [addSeeDismiss $w.buttons $w {} { + button $w.buttons.vars -text "Message Box" -command "showMessageBox $w" +}] -side bottom -fill x +#pack $w.buttons.dismiss $w.buttons.code $w.buttons.vars -side left -expand 1 frame $w.left frame $w.right |