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

通讯编程

开发平台:

Visual C++

  1. # dialog.tcl --
  2. #
  3. # This file defines the procedure tk_dialog, which creates a dialog
  4. # box containing a bitmap, a message, and one or more buttons.
  5. #
  6. # RCS: @(#) $Id: dialog.tcl,v 1.14.2.5 2007/05/30 06:37:03 das Exp $
  7. #
  8. # Copyright (c) 1992-1993 The Regents of the University of California.
  9. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. #
  15. # ::tk_dialog:
  16. #
  17. # This procedure displays a dialog box, waits for a button in the dialog
  18. # to be invoked, then returns the index of the selected button.  If the
  19. # dialog somehow gets destroyed, -1 is returned.
  20. #
  21. # Arguments:
  22. # w - Window to use for dialog top-level.
  23. # title - Title to display in dialog's decorative frame.
  24. # text - Message to display in dialog.
  25. # bitmap - Bitmap to display in dialog (empty string means none).
  26. # default - Index of button that is to display the default ring
  27. # (-1 means none).
  28. # args - One or more strings to display in buttons across the
  29. # bottom of the dialog box.
  30. proc ::tk_dialog {w title text bitmap default args} {
  31.     global tcl_platform
  32.     variable ::tk::Priv
  33.     # Check that $default was properly given
  34.     if {[string is integer -strict $default]} {
  35. if {$default >= [llength $args]} {
  36.     return -code error "default button index greater than number of
  37.     buttons specified for tk_dialog"
  38. }
  39.       # Never call if -strict option is omitted in previous test !
  40.     } elseif {"" eq $default} {
  41. set default -1
  42.     } else {
  43. set default [lsearch -exact $args $default]
  44.     }
  45.     set windowingsystem [tk windowingsystem]
  46.     if {$tcl_platform(platform) eq "macintosh" || $windowingsystem eq "aqua"} {
  47. option add *Dialog*background systemDialogBackgroundActive widgetDefault
  48. option add *Dialog*Button.highlightBackground 
  49. systemDialogBackgroundActive widgetDefault
  50.     }
  51.     # 1. Create the top-level window and divide it into top
  52.     # and bottom parts.
  53.     destroy $w
  54.     toplevel $w -class Dialog
  55.     wm title $w $title
  56.     wm iconname $w Dialog
  57.     wm protocol $w WM_DELETE_WINDOW { }
  58.     # Dialog boxes should be transient with respect to their parent,
  59.     # so that they will always stay on top of their parent window.  However,
  60.     # some window managers will create the window as withdrawn if the parent
  61.     # window is withdrawn or iconified.  Combined with the grab we put on the
  62.     # window, this can hang the entire application.  Therefore we only make
  63.     # the dialog transient if the parent is viewable.
  64.     #
  65.     if {[winfo viewable [winfo toplevel [winfo parent $w]]] } {
  66. wm transient $w [winfo toplevel [winfo parent $w]]
  67.     }
  68.     if {$tcl_platform(platform) eq "macintosh" || $windowingsystem eq "aqua"} {
  69. ::tk::unsupported::MacWindowStyle style $w moveableModal {}
  70.     }
  71.     frame $w.bot
  72.     frame $w.top
  73.     if {$windowingsystem eq "x11"} {
  74. $w.bot configure -relief raised -bd 1
  75. $w.top configure -relief raised -bd 1
  76.     }
  77.     pack $w.bot -side bottom -fill both
  78.     pack $w.top -side top -fill both -expand 1
  79.     # 2. Fill the top part with bitmap and message (use the option
  80.     # database for -wraplength and -font so that they can be
  81.     # overridden by the caller).
  82.     option add *Dialog.msg.wrapLength 3i widgetDefault
  83.     if {$tcl_platform(platform) eq "macintosh" || $windowingsystem eq "aqua"} {
  84. option add *Dialog.msg.font system widgetDefault
  85.     } else {
  86. option add *Dialog.msg.font {Times 12} widgetDefault
  87.     }
  88.     label $w.msg -justify left -text $text
  89.     pack $w.msg -in $w.top -side right -expand 1 -fill both -padx 3m -pady 3m
  90.     if {$bitmap ne ""} {
  91. if {($tcl_platform(platform) eq "macintosh"
  92.      || $windowingsystem eq "aqua") && ($bitmap eq "error")} {
  93.     set bitmap "stop"
  94. }
  95. label $w.bitmap -bitmap $bitmap
  96. pack $w.bitmap -in $w.top -side left -padx 3m -pady 3m
  97.     }
  98.     # 3. Create a row of buttons at the bottom of the dialog.
  99.     set i 0
  100.     foreach but $args {
  101. button $w.button$i -text $but -command [list set ::tk::Priv(button) $i]
  102. if {$i == $default} {
  103.     $w.button$i configure -default active
  104. } else {
  105.     $w.button$i configure -default normal
  106. }
  107. grid $w.button$i -in $w.bot -column $i -row 0 -sticky ew 
  108. -padx 10 -pady 4
  109. grid columnconfigure $w.bot $i
  110. # We boost the size of some Mac buttons for l&f
  111. if {$tcl_platform(platform) eq "macintosh" || $windowingsystem eq "aqua"} {
  112.     set tmp [string tolower $but]
  113.     if {$tmp eq "ok" || $tmp eq "cancel"} {
  114. grid columnconfigure $w.bot $i -minsize 90
  115.     }
  116.     grid configure $w.button$i -pady 7
  117. }
  118. incr i
  119.     }
  120.     # 4. Create a binding for <Return> on the dialog if there is a
  121.     # default button.
  122.     if {$default >= 0} {
  123. bind $w <Return> "
  124. [list $w.button$default] configure -state active -relief sunken
  125. update idletasks
  126. after 100
  127. set ::tk::Priv(button) $default
  128. "
  129.     }
  130.     # 5. Create a <Destroy> binding for the window that sets the
  131.     # button variable to -1;  this is needed in case something happens
  132.     # that destroys the window, such as its parent window being destroyed.
  133.     bind $w <Destroy> {set ::tk::Priv(button) -1}
  134.     # 6. Withdraw the window, then update all the geometry information
  135.     # so we know how big it wants to be, then center the window in the
  136.     # display and de-iconify it.
  137.     wm withdraw $w
  138.     update idletasks
  139.     set x [expr {[winfo screenwidth $w]/2 - [winfo reqwidth $w]/2 
  140.     - [winfo vrootx [winfo parent $w]]}]
  141.     set y [expr {[winfo screenheight $w]/2 - [winfo reqheight $w]/2 
  142.     - [winfo vrooty [winfo parent $w]]}]
  143.     # Make sure that the window is on the screen and set the maximum
  144.     # size of the window is the size of the screen.  That'll let things
  145.     # fail fairly gracefully when very large messages are used. [Bug 827535]
  146.     if {$x < 0} {
  147. set x 0
  148.     }
  149.     if {$y < 0} {
  150. set y 0
  151.     }
  152.     wm maxsize $w [winfo screenwidth $w] [winfo screenheight $w]
  153.     wm geometry $w +$x+$y
  154.     wm deiconify $w
  155.     tkwait visibility $w
  156.     # 7. Set a grab and claim the focus too.
  157.     set oldFocus [focus]
  158.     set oldGrab [grab current $w]
  159.     if {$oldGrab ne ""} {
  160. set grabStatus [grab status $oldGrab]
  161.     }
  162.     grab $w
  163.     if {$default >= 0} {
  164. focus $w.button$default
  165.     } else {
  166. focus $w
  167.     }
  168.     # 8. Wait for the user to respond, then restore the focus and
  169.     # return the index of the selected button.  Restore the focus
  170.     # before deleting the window, since otherwise the window manager
  171.     # may take the focus away so we can't redirect it.  Finally,
  172.     # restore any grab that was in effect.
  173.     vwait ::tk::Priv(button)
  174.     catch {focus $oldFocus}
  175.     catch {
  176. # It's possible that the window has already been destroyed,
  177. # hence this "catch".  Delete the Destroy handler so that
  178. # Priv(button) doesn't get reset by it.
  179. bind $w <Destroy> {}
  180. destroy $w
  181.     }
  182.     if {$oldGrab ne ""} {
  183. if {$grabStatus ne "global"} {
  184.     grab $oldGrab
  185. } else {
  186.     grab -global $oldGrab
  187. }
  188.     }
  189.     return $Priv(button)
  190. }