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

通讯编程

开发平台:

Visual C++

  1. # vscale.tcl --
  2. #
  3. # This demonstration script shows an example with a vertical scale.
  4. #
  5. # RCS: @(#) $Id: vscale.tcl,v 1.3 2001/06/14 10:56:58 dkf Exp $
  6. if {![info exists widgetDemo]} {
  7.     error "This script should be run from the "widget" demo."
  8. }
  9. set w .vscale
  10. catch {destroy $w}
  11. toplevel $w
  12. wm title $w "Vertical Scale Demonstration"
  13. wm iconname $w "vscale"
  14. positionWindow $w
  15. label $w.msg -font $font -wraplength 3.5i -justify left -text "An arrow and a vertical scale are displayed below.  If you click or drag mouse button 1 in the scale, you can change the size of the arrow."
  16. pack $w.msg -side top -padx .5c
  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. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  22. frame $w.frame -borderwidth 10
  23. pack $w.frame
  24. scale $w.frame.scale -orient vertical -length 284 -from 0 -to 250 
  25. -command "setHeight $w.frame.canvas" -tickinterval 50
  26. canvas $w.frame.canvas -width 50 -height 50 -bd 0 -highlightthickness 0
  27. $w.frame.canvas create polygon 0 0 1 1 2 2 -fill SeaGreen3 -tags poly
  28. $w.frame.canvas create line 0 0 1 1 2 2 0 0 -fill black -tags line
  29. frame $w.frame.right -borderwidth 15
  30. pack $w.frame.scale -side left -anchor ne
  31. pack $w.frame.canvas -side left -anchor nw -fill y
  32. $w.frame.scale set 75
  33. proc setHeight {w height} {
  34.     incr height 21
  35.     set y2 [expr {$height - 30}]
  36.     if {$y2 < 21} {
  37. set y2 21
  38.     }
  39.     $w coords poly 15 20 35 20 35 $y2 45 $y2 25 $height 5 $y2 15 $y2 15 20
  40.     $w coords line 15 20 35 20 35 $y2 45 $y2 25 $height 5 $y2 15 $y2 15 20
  41. }