home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09962.iso / vrml / cp2b2x.exe / DATA.Z / entry1.tcl < prev    next >
Text File  |  1996-04-23  |  2KB  |  33 lines

  1. # entry1.tcl --
  2. #
  3. # This demonstration script creates several entry widgets without
  4. # scrollbars.
  5. #
  6. # @(#) entry1.tcl 1.1 95/05/26 15:56:29
  7.  
  8. set w .entry1
  9. catch {destroy $w}
  10. toplevel $w
  11. wm title $w "Entry Demonstration (no scrollbars)"
  12. wm iconname $w "entry1"
  13. positionWindow $w
  14.  
  15. label $w.msg -font $font -wraplength 5i -justify left -text "Three different entries are displayed below.  You can add characters by pointing, clicking and typing.  The normal Motif editing characters are supported, along with many Emacs bindings.  For example, Backspace and Control-h delete the character to the left of the insertion cursor and Delete and Control-d delete the chararacter to the right of the insertion cursor.  For entries that are too large to fit in the window all at once, you can scan through the entries by dragging with mouse button2 pressed."
  16. pack $w.msg -side top
  17.  
  18. frame $w.buttons
  19. pack  $w.buttons -side bottom -expand y -fill x -pady 2m
  20. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  21. button $w.buttons.code -text "See Code" -command "showCode $w"
  22. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  23.  
  24. entry $w.e1 -relief sunken
  25. entry $w.e2 -relief sunken
  26. entry $w.e3 -relief sunken
  27. pack $w.e1 $w.e2 $w.e3 -side top -pady 5 -padx 10 -fill x
  28.  
  29. $w.e1 insert 0 "Initial value"
  30. $w.e2 insert end "This entry contains a long value, much too long "
  31. $w.e2 insert end "to fit in the window at one time, so long in fact "
  32. $w.e2 insert end "that you'll have to scan or scroll to see the end."
  33.