33 lines
1.5 KiB
Tcl
33 lines
1.5 KiB
Tcl
# entry1.tcl --
|
|
#
|
|
# This demonstration script creates several entry widgets without
|
|
# scrollbars.
|
|
#
|
|
# SCCS: @(#) entry1.tcl 1.3 96/02/16 10:49:44
|
|
|
|
set w .entry1
|
|
catch {destroy $w}
|
|
toplevel $w
|
|
wm title $w "Entry Demonstration (no scrollbars)"
|
|
wm iconname $w "entry1"
|
|
positionWindow $w
|
|
|
|
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."
|
|
pack $w.msg -side top
|
|
|
|
frame $w.buttons
|
|
pack $w.buttons -side bottom -fill x -pady 2m
|
|
button $w.buttons.dismiss -text Dismiss -command "destroy $w"
|
|
button $w.buttons.code -text "See Code" -command "showCode $w"
|
|
pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
|
|
|
|
entry $w.e1 -relief sunken
|
|
entry $w.e2 -relief sunken
|
|
entry $w.e3 -relief sunken
|
|
pack $w.e1 $w.e2 $w.e3 -side top -pady 5 -padx 10 -fill x
|
|
|
|
$w.e1 insert 0 "Initial value"
|
|
$w.e2 insert end "This entry contains a long value, much too long "
|
|
$w.e2 insert end "to fit in the window at one time, so long in fact "
|
|
$w.e2 insert end "that you'll have to scan or scroll to see the end."
|