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

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

Added original make3d

File size: 3.3 KB
Line 
1# image2.tcl --
2#
3# This demonstration script creates a simple collection of widgets
4# that allow you to select and view images in a Tk label.
5#
6# RCS: @(#) $Id: image2.tcl,v 1.6 2002/08/12 13:38:48 dkf Exp $
7
8if {![info exists widgetDemo]} {
9    error "This script should be run from the \"widget\" demo."
10}
11
12# loadDir --
13# This procedure reloads the directory listbox from the directory
14# named in the demo's entry.
15#
16# Arguments:
17# w -                   Name of the toplevel window of the demo.
18
19proc loadDir w {
20    global dirName
21
22    $w.f.list delete 0 end
23    foreach i [lsort [glob -directory $dirName *]] {
24        $w.f.list insert end [file tail $i]
25    }
26}
27
28# selectAndLoadDir --
29# This procedure pops up a dialog to ask for a directory to load into
30# the listobx and (if the user presses OK) reloads the directory
31# listbox from the directory named in the demo's entry.
32#
33# Arguments:
34# w -                   Name of the toplevel window of the demo.
35
36proc selectAndLoadDir w {
37    global dirName
38    set dir [tk_chooseDirectory -initialdir $dirName -parent $w -mustexist 1]
39    if {[string length $dir] != 0} {
40        set dirName $dir
41        loadDir $w
42    }
43}
44
45# loadImage --
46# Given the name of the toplevel window of the demo and the mouse
47# position, extracts the directory entry under the mouse and loads
48# that file into a photo image for display.
49#
50# Arguments:
51# w -                   Name of the toplevel window of the demo.
52# x, y-                 Mouse position within the listbox.
53
54proc loadImage {w x y} {
55    global dirName
56
57    set file [file join $dirName [$w.f.list get @$x,$y]]
58    image2a configure -file $file
59}
60
61set w .image2
62catch {destroy $w}
63toplevel $w
64wm title $w "Image Demonstration #2"
65wm iconname $w "Image2"
66positionWindow $w
67
68label $w.msg -font $font -wraplength 4i -justify left -text "This demonstration allows you to view images using a Tk \"photo\" image.  First type a directory name in the listbox, then type Return to load the directory into the listbox.  Then double-click on a file name in the listbox to see that image."
69pack $w.msg -side top
70
71frame $w.buttons
72pack $w.buttons -side bottom -fill x -pady 2m
73button $w.buttons.dismiss -text Dismiss -command "destroy $w"
74button $w.buttons.code -text "See Code" -command "showCode $w"
75pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
76
77frame $w.mid
78pack $w.mid -fill both -expand 1
79
80labelframe $w.dir -text "Directory:"
81set dirName [file join $tk_library demos images]
82entry $w.dir.e -width 30 -textvariable dirName
83button $w.dir.b -pady 0 -padx 2m -text "Select Dir." \
84        -command "selectAndLoadDir $w"
85bind $w.dir.e <Return> "loadDir $w"
86pack $w.dir.e -side left -fill both -padx 2m     -pady 2m -expand true
87pack $w.dir.b -side left -fill y    -padx {0 2m} -pady 2m
88labelframe $w.f -text "File:" -padx 2m -pady 2m
89
90listbox $w.f.list -width 20 -height 10 -yscrollcommand "$w.f.scroll set"
91scrollbar $w.f.scroll -command "$w.f.list yview"
92pack $w.f.list $w.f.scroll -side left -fill y -expand 1
93$w.f.list insert 0 earth.gif earthris.gif teapot.ppm
94bind $w.f.list <Double-1> "loadImage $w %x %y"
95
96catch {image delete image2a}
97image create photo image2a
98labelframe $w.image -text "Image:"
99label $w.image.image -image image2a
100pack $w.image.image -padx 2m -pady 2m
101
102grid $w.dir -        -sticky ew -padx 1m -pady 1m -in $w.mid
103grid $w.f   $w.image -sticky nw -padx 1m -pady 1m -in $w.mid
104grid columnconfigure $w.mid 1 -weight 1
Note: See TracBrowser for help on using the repository browser.