source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/vrippack-0.31/lib/linux/tk8.4/demos/entry2.tcl @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 2.3 KB
Line 
1# entry2.tcl --
2#
3# This demonstration script is the same as the entry1.tcl script
4# except that it creates scrollbars for the entries.
5#
6# RCS: @(#) $Id: entry2.tcl,v 1.2 1998/09/14 18:23:28 stanton Exp $
7
8if {![info exists widgetDemo]} {
9    error "This script should be run from the \"widget\" demo."
10}
11
12set w .entry2
13catch {destroy $w}
14toplevel $w
15wm title $w "Entry Demonstration (with scrollbars)"
16wm iconname $w "entry2"
17positionWindow $w
18
19label $w.msg -font $font -wraplength 5i -justify left -text "Three different entries are displayed below, with a scrollbar for each entry.  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 with the scrollbars, or by dragging with mouse button2 pressed."
20pack $w.msg -side top
21
22frame $w.buttons
23pack $w.buttons -side bottom -fill x -pady 2m
24button $w.buttons.dismiss -text Dismiss -command "destroy $w"
25button $w.buttons.code -text "See Code" -command "showCode $w"
26pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
27
28frame $w.frame -borderwidth 10
29pack $w.frame -side top -fill x -expand 1
30
31entry $w.frame.e1 -xscrollcommand "$w.frame.s1 set"
32scrollbar $w.frame.s1 -relief sunken -orient horiz -command \
33        "$w.frame.e1 xview"
34frame $w.frame.spacer1 -width 20 -height 10
35entry $w.frame.e2 -xscrollcommand "$w.frame.s2 set"
36scrollbar $w.frame.s2 -relief sunken -orient horiz -command \
37        "$w.frame.e2 xview"
38frame $w.frame.spacer2 -width 20 -height 10
39entry $w.frame.e3 -xscrollcommand "$w.frame.s3 set"
40scrollbar $w.frame.s3 -relief sunken -orient horiz -command \
41        "$w.frame.e3 xview"
42pack $w.frame.e1 $w.frame.s1 $w.frame.spacer1 $w.frame.e2 $w.frame.s2 \
43        $w.frame.spacer2 $w.frame.e3 $w.frame.s3 -side top -fill x
44
45$w.frame.e1 insert 0 "Initial value"
46$w.frame.e2 insert end "This entry contains a long value, much too long "
47$w.frame.e2 insert end "to fit in the window at one time, so long in fact "
48$w.frame.e2 insert end "that you'll have to scan or scroll to see the end."
Note: See TracBrowser for help on using the repository browser.