msgbox.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # msgbox.tcl --
  2. #
  3. # This demonstration script creates message boxes of various type
  4. #
  5. # RCS: @(#) $Id: msgbox.tcl,v 1.2 1998/09/14 18:23:29 stanton Exp $
  6. if {![info exists widgetDemo]} {
  7.     error "This script should be run from the "widget" demo."
  8. }
  9. set w .msgbox
  10. catch {destroy $w}
  11. toplevel $w
  12. wm title $w "Message Box Demonstration"
  13. wm iconname $w "messagebox"
  14. positionWindow $w
  15. 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."
  16. pack $w.msg -side top
  17. frame $w.buttons
  18. pack $w.buttons -side bottom -fill x -pady 2m
  19. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  20. button $w.buttons.code -text "See Code" -command "showCode $w"
  21. button $w.buttons.vars -text "Message Box"  
  22.     -command "showMessageBox $w"
  23. pack $w.buttons.dismiss $w.buttons.code $w.buttons.vars -side left -expand 1
  24. frame $w.left 
  25. frame $w.right
  26. pack $w.left $w.right -side left -expand yes -fill y  -pady .5c -padx .5c
  27. label $w.left.label -text "Icon"
  28. frame $w.left.sep -relief ridge -bd 1 -height 2
  29. pack $w.left.label -side top
  30. pack $w.left.sep -side top -fill x -expand no
  31. set msgboxIcon info
  32. foreach i {error info question warning} {
  33.     radiobutton $w.left.b$i -text $i -variable msgboxIcon 
  34. -relief flat -value $i -width 16 -anchor w
  35.     pack $w.left.b$i  -side top -pady 2 -anchor w -fill x
  36. }
  37. label $w.right.label -text "Type"
  38. frame $w.right.sep -relief ridge -bd 1 -height 2
  39. pack $w.right.label -side top
  40. pack $w.right.sep -side top -fill x -expand no
  41. set msgboxType ok
  42. foreach t {abortretryignore ok okcancel retrycancel yesno yesnocancel} {
  43.     radiobutton $w.right.$t -text $t -variable msgboxType 
  44. -relief flat -value $t -width 16 -anchor w
  45.     pack $w.right.$t -side top -pady 2 -anchor w -fill x
  46. }
  47. proc showMessageBox {w} {
  48.     global msgboxIcon msgboxType
  49.     set button [tk_messageBox -icon $msgboxIcon -type $msgboxType 
  50. -title Message -parent $w
  51. -message "This is a "$msgboxType" type messagebox with the "$msgboxIcon" icon"]
  52.     
  53.     tk_messageBox -icon info -message "You have selected "$button"" -type ok
  54. -parent $w
  55. }