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

通讯编程

开发平台:

Visual C++

  1. # twind.tcl --
  2. #
  3. # This demonstration script creates a text widget with a bunch of
  4. # embedded windows.
  5. #
  6. # RCS: @(#) $Id: twind.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 .twind
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Text Demonstration - Embedded Windows"
  14. wm iconname $w "Embedded Windows"
  15. positionWindow $w
  16. frame $w.buttons
  17. pack $w.buttons -side bottom -fill x -pady 2m
  18. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  19. button $w.buttons.code -text "See Code" -command "showCode $w"
  20. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  21. frame $w.f -highlightthickness 2 -borderwidth 2 -relief sunken
  22. set t $w.f.text
  23. text $t -yscrollcommand "$w.scroll set" -setgrid true -font $font -width 70 
  24. -height 35 -wrap word -highlightthickness 0 -borderwidth 0
  25. pack $t -expand  yes -fill both
  26. scrollbar $w.scroll -command "$t yview"
  27. pack $w.scroll -side right -fill y
  28. pack $w.f -expand yes -fill both
  29. $t tag configure center -justify center -spacing1 5m -spacing3 5m
  30. $t tag configure buttons -lmargin1 1c -lmargin2 1c -rmargin 1c 
  31. -spacing1 3m -spacing2 0 -spacing3 0
  32. button $t.on -text "Turn On" -command "textWindOn $w" 
  33. -cursor top_left_arrow
  34. button $t.off -text "Turn Off" -command "textWindOff $w" 
  35. -cursor top_left_arrow
  36. button $t.click -text "Click Here" -command "textWindPlot $t" 
  37. -cursor top_left_arrow
  38. button $t.delete -text "Delete" -command "textWindDel $w" 
  39. -cursor top_left_arrow
  40. $t insert end "A text widget can contain other widgets embedded "
  41. $t insert end "it.  These are called "embedded windows", "
  42. $t insert end "and they can consist of arbitrary widgets.  "
  43. $t insert end "For example, here are two embedded button "
  44. $t insert end "widgets.  You can click on the first button to "
  45. $t window create end -window $t.on
  46. $t insert end " horizontal scrolling, which also turns off "
  47. $t insert end "word wrapping.  Or, you can click on the second "
  48. $t insert end "button ton"
  49. $t window create end -window $t.off
  50. $t insert end " horizontal scrolling and turn back on word wrapping.nn"
  51. $t insert end "Or, here is another example.  If you "
  52. $t window create end -window $t.click
  53. $t insert end " a canvas displaying an x-y plot will appear right here."
  54. $t mark set plot insert
  55. $t mark gravity plot left
  56. $t insert end "  You can drag the data points around with the mouse, "
  57. $t insert end "or you can click here to "
  58. $t window create end -window $t.delete
  59. $t insert end " the plot again.nn"
  60. $t insert end "You may also find it useful to put embedded windows in "
  61. $t insert end "a text without any actual text.  In this case the "
  62. $t insert end "text widget acts like a geometry manager.  For "
  63. $t insert end "example, here is a collection of buttons laid out "
  64. $t insert end "neatly into rows by the text widget.  These buttons "
  65. $t insert end "can be used to change the background color of the "
  66. $t insert end "text widget ("Default" restores the color to "
  67. $t insert end "its default).  If you click on the button labeled "
  68. $t insert end ""Short", it changes to a longer string so that "
  69. $t insert end "you can see how the text widget automatically "
  70. $t insert end "changes the layout.  Click on the button again "
  71. $t insert end "to restore the short string.n"
  72. button $t.default -text Default -command "embDefBg $t" 
  73. -cursor top_left_arrow
  74. $t window create end -window $t.default -padx 3
  75. global embToggle
  76. set embToggle Short
  77. checkbutton $t.toggle -textvariable embToggle -indicatoron 0 
  78. -variable embToggle -onvalue "A much longer string" 
  79. -offvalue "Short" -cursor top_left_arrow -pady 5 -padx 2
  80. $t window create end -window $t.toggle -padx 3 -pady 2
  81. set i 1
  82. foreach color {AntiqueWhite3 Bisque1 Bisque2 Bisque3 Bisque4
  83. SlateBlue3 RoyalBlue1 SteelBlue2 DeepSkyBlue3 LightBlue1
  84. DarkSlateGray1 Aquamarine2 DarkSeaGreen2 SeaGreen1
  85. Yellow1 IndianRed1 IndianRed2 Tan1 Tan4} {
  86.     button $t.color$i -text $color -cursor top_left_arrow -command 
  87.     "$t configure -bg $color"
  88.     $t window create end -window $t.color$i -padx 3 -pady 2
  89.     incr i
  90. }
  91. $t tag add buttons $t.default end
  92. proc textWindOn w {
  93.     catch {destroy $w.scroll2}
  94.     set t $w.f.text
  95.     scrollbar $w.scroll2 -orient horizontal -command "$t xview"
  96.     pack $w.scroll2 -after $w.buttons -side bottom -fill x
  97.     $t configure -xscrollcommand "$w.scroll2 set" -wrap none
  98. }
  99. proc textWindOff w {
  100.     catch {destroy $w.scroll2}
  101.     set t $w.f.text
  102.     $t configure -xscrollcommand {} -wrap word
  103. }
  104. proc textWindPlot t {
  105.     set c $t.c
  106.     if {[winfo exists $c]} {
  107. return
  108.     }
  109.     canvas $c -relief sunken -width 450 -height 300 -cursor top_left_arrow
  110.     set font {Helvetica 18}
  111.     $c create line 100 250 400 250 -width 2
  112.     $c create line 100 250 100 50 -width 2
  113.     $c create text 225 20 -text "A Simple Plot" -font $font -fill brown
  114.     
  115.     for {set i 0} {$i <= 10} {incr i} {
  116. set x [expr {100 + ($i*30)}]
  117. $c create line $x 250 $x 245 -width 2
  118. $c create text $x 254 -text [expr {10*$i}] -anchor n -font $font
  119.     }
  120.     for {set i 0} {$i <= 5} {incr i} {
  121. set y [expr {250 - ($i*40)}]
  122. $c create line 100 $y 105 $y -width 2
  123. $c create text 96 $y -text [expr {$i*50}].0 -anchor e -font $font
  124.     }
  125.     
  126.     foreach point {
  127. {12 56} {20 94} {33 98} {32 120} {61 180} {75 160} {98 223}
  128.     } {
  129. set x [expr {100 + (3*[lindex $point 0])}]
  130. set y [expr {250 - (4*[lindex $point 1])/5}]
  131. set item [$c create oval [expr {$x-6}] [expr {$y-6}] 
  132. [expr {$x+6}] [expr {$y+6}] -width 1 -outline black 
  133. -fill SkyBlue2]
  134. $c addtag point withtag $item
  135.     }
  136.     $c bind point <Any-Enter> "$c itemconfig current -fill red"
  137.     $c bind point <Any-Leave> "$c itemconfig current -fill SkyBlue2"
  138.     $c bind point <1> "embPlotDown $c %x %y"
  139.     $c bind point <ButtonRelease-1> "$c dtag selected"
  140.     bind $c <B1-Motion> "embPlotMove $c %x %y"
  141.     while {[string first [$t get plot] " tn"] >= 0} {
  142. $t delete plot
  143.     }
  144.     $t insert plot "n"
  145.     $t window create plot -window $c
  146.     $t tag add center plot
  147.     $t insert plot "n"
  148. }
  149. set embPlot(lastX) 0
  150. set embPlot(lastY) 0
  151. proc embPlotDown {w x y} {
  152.     global embPlot
  153.     $w dtag selected
  154.     $w addtag selected withtag current
  155.     $w raise current
  156.     set embPlot(lastX) $x
  157.     set embPlot(lastY) $y
  158. }
  159. proc embPlotMove {w x y} {
  160.     global embPlot
  161.     $w move selected [expr {$x-$embPlot(lastX)}] [expr {$y-$embPlot(lastY)}]
  162.     set embPlot(lastX) $x
  163.     set embPlot(lastY) $y
  164. }
  165. proc textWindDel w {
  166.     set t $w.f.text
  167.     if {[winfo exists $t.c]} {
  168. $t delete $t.c
  169. while {[string first [$t get plot] " tn"] >= 0} {
  170.     $t delete plot
  171. }
  172. $t insert plot "  "
  173.     }
  174. }
  175. proc embDefBg t {
  176.     $t configure -background [lindex [$t configure -background] 3]
  177. }