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

通讯编程

开发平台:

Visual C++

  1. # ctext.tcl --
  2. #
  3. # This demonstration script creates a canvas widget with a text
  4. # item that can be edited and reconfigured in various ways.
  5. #
  6. # RCS: @(#) $Id: ctext.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 .ctext
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Canvas Text Demonstration"
  14. wm iconname $w "Text"
  15. positionWindow $w
  16. set c $w.c
  17. label $w.msg -font $font -wraplength 5i -justify left -text "This window displays a string of text to demonstrate the text facilities of canvas widgets.  You can click in the boxes to adjust the position of the text relative to its positioning point or change its justification.  The text also supports the following simple bindings for editing:
  18.   1. You can point, click, and type.
  19.   2. You can also select with button 1.
  20.   3. You can copy the selection to the mouse position with button 2.
  21.   4. Backspace and Control+h delete the selection if there is one;
  22.      otherwise they delete the character just before the insertion cursor.
  23.   5. Delete deletes the selection if there is one; otherwise it deletes
  24.      the character just after the insertion cursor."
  25. pack $w.msg -side top
  26. frame $w.buttons
  27. pack $w.buttons -side bottom -fill x -pady 2m
  28. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  29. button $w.buttons.code -text "See Code" -command "showCode $w"
  30. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  31. canvas $c -relief flat -borderwidth 0 -width 500 -height 350
  32. pack $w.c -side top -expand yes -fill both
  33. set textFont {Helvetica 24}
  34. $c create rectangle 245 195 255 205 -outline black -fill red
  35. # First, create the text item and give it bindings so it can be edited.
  36. $c addtag text withtag [$c create text 250 200 -text "This is just a string of text to demonstrate the text facilities of canvas widgets. Bindings have been been defined to support editing (see above)." -width 440 -anchor n -font {Helvetica 24} -justify left]
  37. $c bind text <1> "textB1Press $c %x %y"
  38. $c bind text <B1-Motion> "textB1Move $c %x %y"
  39. $c bind text <Shift-1> "$c select adjust current @%x,%y"
  40. $c bind text <Shift-B1-Motion> "textB1Move $c %x %y"
  41. $c bind text <KeyPress> "textInsert $c %A"
  42. $c bind text <Return> "textInsert $c \n"
  43. $c bind text <Control-h> "textBs $c"
  44. $c bind text <BackSpace> "textBs $c"
  45. $c bind text <Delete> "textDel $c"
  46. $c bind text <2> "textPaste $c @%x,%y" 
  47. # Next, create some items that allow the text's anchor position
  48. # to be edited.
  49. proc mkTextConfig {w x y option value color} {
  50.     set item [$w create rect $x $y [expr {$x+30}] [expr {$y+30}] 
  51.     -outline black -fill $color -width 1]
  52.     $w bind $item <1> "$w itemconf text $option $value"
  53.     $w addtag config withtag $item
  54. }
  55. set x 50
  56. set y 50
  57. set color LightSkyBlue1
  58. mkTextConfig $c $x $y -anchor se $color
  59. mkTextConfig $c [expr {$x+30}] [expr {$y   }] -anchor s      $color
  60. mkTextConfig $c [expr {$x+60}] [expr {$y   }] -anchor sw     $color
  61. mkTextConfig $c [expr {$x   }] [expr {$y+30}] -anchor e      $color
  62. mkTextConfig $c [expr {$x+30}] [expr {$y+30}] -anchor center $color
  63. mkTextConfig $c [expr {$x+60}] [expr {$y+30}] -anchor w      $color
  64. mkTextConfig $c [expr {$x   }] [expr {$y+60}] -anchor ne     $color
  65. mkTextConfig $c [expr {$x+30}] [expr {$y+60}] -anchor n      $color
  66. mkTextConfig $c [expr {$x+60}] [expr {$y+60}] -anchor nw     $color
  67. set item [$c create rect 
  68. [expr {$x+40}] [expr {$y+40}] [expr {$x+50}] [expr {$y+50}] 
  69. -outline black -fill red]
  70. $c bind $item <1> "$c itemconf text -anchor center"
  71. $c create text [expr {$x+45}] [expr {$y-5}] 
  72. -text {Text Position}  -anchor s  -font {Times 24}  -fill brown
  73. # Lastly, create some items that allow the text's justification to be
  74. # changed.
  75. set x 350
  76. set y 50
  77. set color SeaGreen2
  78. mkTextConfig $c $x $y -justify left $color
  79. mkTextConfig $c [expr {$x+30}] $y -justify center $color
  80. mkTextConfig $c [expr {$x+60}] $y -justify right $color
  81. $c create text [expr {$x+45}] [expr {$y-5}] 
  82. -text {Justification}  -anchor s  -font {Times 24}  -fill brown
  83. $c bind config <Enter> "textEnter $c"
  84. $c bind config <Leave> "$c itemconf current -fill $textConfigFill"
  85. set textConfigFill {}
  86. proc textEnter {w} {
  87.     global textConfigFill
  88.     set textConfigFill [lindex [$w itemconfig current -fill] 4]
  89.     $w itemconfig current -fill black
  90. }
  91. proc textInsert {w string} {
  92.     if {$string == ""} {
  93. return
  94.     }
  95.     catch {$w dchars text sel.first sel.last}
  96.     $w insert text insert $string
  97. }
  98. proc textPaste {w pos} {
  99.     catch {
  100. $w insert text $pos [selection get]
  101.     }
  102. }
  103. proc textB1Press {w x y} {
  104.     $w icursor current @$x,$y
  105.     $w focus current
  106.     focus $w
  107.     $w select from current @$x,$y
  108. }
  109. proc textB1Move {w x y} {
  110.     $w select to current @$x,$y
  111. }
  112. proc textBs {w} {
  113.     if {![catch {$w dchars text sel.first sel.last}]} {
  114. return
  115.     }
  116.     set char [expr {[$w index text insert] - 1}]
  117.     if {$char >= 0} {$w dchar text $char}
  118. }
  119. proc textDel {w} {
  120.     if {![catch {$w dchars text sel.first sel.last}]} {
  121. return
  122.     }
  123.     $w dchars text insert
  124. }