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

通讯编程

开发平台:

Visual C++

  1. # text.tcl --
  2. #
  3. # This demonstration script creates a text widget that describes
  4. # the basic editing functions.
  5. #
  6. # RCS: @(#) $Id: text.tcl,v 1.3 2001/11/15 11:55:26 dkf Exp $
  7. if {![info exists widgetDemo]} {
  8.     error "This script should be run from the "widget" demo."
  9. }
  10. set w .text
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Text Demonstration - Basic Facilities"
  14. wm iconname $w "text"
  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. text $w.text -relief sunken -bd 2 -yscrollcommand "$w.scroll set" -setgrid 1 
  22. -height 30 -undo 1 -autosep 1
  23. scrollbar $w.scroll -command "$w.text yview"
  24. pack $w.scroll -side right -fill y
  25. pack $w.text -expand yes -fill both
  26. $w.text insert 0.0 
  27. {This window is a text widget.  It displays one or more lines of text
  28. and allows you to edit the text.  Here is a summary of the things you
  29. can do to a text widget:
  30. 1. Scrolling. Use the scrollbar to adjust the view in the text window.
  31. 2. Scanning. Press mouse button 2 in the text window and drag up or down.
  32. This will drag the text at high speed to allow you to scan its contents.
  33. 3. Insert text. Press mouse button 1 to set the insertion cursor, then
  34. type text.  What you type will be added to the widget.
  35. 4. Select. Press mouse button 1 and drag to select a range of characters.
  36. Once you've released the button, you can adjust the selection by pressing
  37. button 1 with the shift key down.  This will reset the end of the
  38. selection nearest the mouse cursor and you can drag that end of the
  39. selection by dragging the mouse before releasing the mouse button.
  40. You can double-click to select whole words or triple-click to select
  41. whole lines.
  42. 5. Delete and replace. To delete text, select the characters you'd like
  43. to delete and type Backspace or Delete.  Alternatively, you can type new
  44. text, in which case it will replace the selected text.
  45. 6. Copy the selection. To copy the selection into this window, select
  46. what you want to copy (either here or in another application), then
  47. click button 2 to copy the selection to the point of the mouse cursor.
  48. 7. Edit.  Text widgets support the standard Motif editing characters
  49. plus many Emacs editing characters.  Backspace and Control-h erase the
  50. character to the left of the insertion cursor.  Delete and Control-d
  51. erase the character to the right of the insertion cursor.  Meta-backspace
  52. deletes the word to the left of the insertion cursor, and Meta-d deletes
  53. the word to the right of the insertion cursor.  Control-k deletes from
  54. the insertion cursor to the end of the line, or it deletes the newline
  55. character if that is the only thing left on the line.  Control-o opens
  56. a new line by inserting a newline character to the right of the insertion
  57. cursor.  Control-t transposes the two characters on either side of the
  58. insertion cursor.  Control-z undoes the last editing action performed,
  59. and }
  60. switch $tcl_platform(platform) {
  61.     "unix" - "macintosh" {
  62. $w.text insert end "Control-Shift-z"
  63.     }
  64.     "windows" {
  65. $w.text insert end "Control-y"
  66.     }
  67. }
  68. $w.text insert end { redoes undone edits.
  69. 7. Resize the window.  This widget has been configured with the "setGrid"
  70. option on, so that if you resize the window it will always resize to an
  71. even number of characters high and wide.  Also, if you make the window
  72. narrow you can see that long lines automatically wrap around onto
  73. additional lines so that all the information is always visible.}
  74. $w.text mark set insert 0.0