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

通讯编程

开发平台:

Visual C++

  1. # plot.tcl --
  2. #
  3. # This demonstration script creates a canvas widget showing a 2-D
  4. # plot with data points that can be dragged with the mouse.
  5. #
  6. # RCS: @(#) $Id: plot.tcl,v 1.3 2001/06/14 10:56:58 dkf Exp $
  7. if {![info exists widgetDemo]} {
  8.     error "This script should be run from the "widget" demo."
  9. }
  10. set w .plot
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Plot Demonstration"
  14. wm iconname $w "Plot"
  15. positionWindow $w
  16. set c $w.c
  17. label $w.msg -font $font -wraplength 4i -justify left -text "This window displays a canvas widget containing a simple 2-dimensional plot.  You can doctor the data by dragging any of the points with mouse button 1."
  18. pack $w.msg -side top
  19. frame $w.buttons
  20. pack $w.buttons -side bottom -fill x -pady 2m
  21. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  22. button $w.buttons.code -text "See Code" -command "showCode $w"
  23. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  24. canvas $c -relief raised -width 450 -height 300
  25. pack $w.c -side top -fill x
  26. set plotFont {Helvetica 18}
  27. $c create line 100 250 400 250 -width 2
  28. $c create line 100 250 100 50 -width 2
  29. $c create text 225 20 -text "A Simple Plot" -font $plotFont -fill brown
  30. for {set i 0} {$i <= 10} {incr i} {
  31.     set x [expr {100 + ($i*30)}]
  32.     $c create line $x 250 $x 245 -width 2
  33.     $c create text $x 254 -text [expr {10*$i}] -anchor n -font $plotFont
  34. }
  35. for {set i 0} {$i <= 5} {incr i} {
  36.     set y [expr {250 - ($i*40)}]
  37.     $c create line 100 $y 105 $y -width 2
  38.     $c create text 96 $y -text [expr {$i*50}].0 -anchor e -font $plotFont
  39. }
  40. foreach point {
  41.     {12 56} {20 94} {33 98} {32 120} {61 180} {75 160} {98 223}
  42. } {
  43.     set x [expr {100 + (3*[lindex $point 0])}]
  44.     set y [expr {250 - (4*[lindex $point 1])/5}]
  45.     set item [$c create oval [expr {$x-6}] [expr {$y-6}] 
  46.     [expr {$x+6}] [expr {$y+6}] -width 1 -outline black 
  47.     -fill SkyBlue2]
  48.     $c addtag point withtag $item
  49. }
  50. $c bind point <Any-Enter> "$c itemconfig current -fill red"
  51. $c bind point <Any-Leave> "$c itemconfig current -fill SkyBlue2"
  52. $c bind point <1> "plotDown $c %x %y"
  53. $c bind point <ButtonRelease-1> "$c dtag selected"
  54. bind $c <B1-Motion> "plotMove $c %x %y"
  55. set plot(lastX) 0
  56. set plot(lastY) 0
  57. # plotDown --
  58. # This procedure is invoked when the mouse is pressed over one of the
  59. # data points.  It sets up state to allow the point to be dragged.
  60. #
  61. # Arguments:
  62. # w - The canvas window.
  63. # x, y - The coordinates of the mouse press.
  64. proc plotDown {w x y} {
  65.     global plot
  66.     $w dtag selected
  67.     $w addtag selected withtag current
  68.     $w raise current
  69.     set plot(lastX) $x
  70.     set plot(lastY) $y
  71. }
  72. # plotMove --
  73. # This procedure is invoked during mouse motion events.  It drags the
  74. # current item.
  75. #
  76. # Arguments:
  77. # w - The canvas window.
  78. # x, y - The coordinates of the mouse.
  79. proc plotMove {w x y} {
  80.     global plot
  81.     $w move selected [expr {$x-$plot(lastX)}] [expr {$y-$plot(lastY)}]
  82.     set plot(lastX) $x
  83.     set plot(lastY) $y
  84. }