| 1 |
< |
# SCCSid "$SunId$ LBL" |
| 1 |
> |
# RCSid: $Id$ |
| 2 |
|
# |
| 3 |
< |
# Usage: getfile [-win w] [-perm] [-glob pattern] [-view proc] [-send proc] |
| 3 |
> |
# Usage: getfile [-win w] [-grab] [-perm] [-glob pattern] [-view proc] [-send proc] |
| 4 |
|
# |
| 5 |
|
# Create a dialog box (in window w if given) to get file name. |
| 6 |
+ |
# If -grab option is given, then getfile does a local grab on its window. |
| 7 |
|
# Normally, a single file name and return as value. |
| 8 |
|
# If perm switch is given, keep window up for multiple file entries. |
| 9 |
|
# If pattern is given, start with list of all the specified files, |
| 20 |
|
# Set defaults |
| 21 |
|
set w .fpwin |
| 22 |
|
set topwin 1 |
| 23 |
+ |
set dograb 0 |
| 24 |
|
set curdir . |
| 25 |
|
set curpat * |
| 26 |
+ |
set curfile {} |
| 27 |
|
set transient 1 |
| 28 |
|
# Get options |
| 29 |
|
while {[llength $args]} { |
| 33 |
|
set topwin 0 |
| 34 |
|
set args [lreplace $args 1 1] |
| 35 |
|
} |
| 36 |
+ |
-grab { |
| 37 |
+ |
set dograb 1 |
| 38 |
+ |
} |
| 39 |
|
-perm* { |
| 40 |
|
set transient 0 |
| 41 |
|
} |
| 61 |
|
# Create widgets |
| 62 |
|
catch {destroy $w} |
| 63 |
|
if $topwin { |
| 64 |
< |
toplevel $w -geometry 400x410 |
| 64 |
> |
toplevel $w -width 400 -height 410 |
| 65 |
|
wm title $w "File Picker" |
| 66 |
|
wm iconname $w "Files" |
| 67 |
|
wm minsize $w 400 300 |
| 68 |
|
} else { |
| 69 |
< |
frame $w -geometry 400x410 |
| 69 |
> |
frame $w -width 400 -height 410 |
| 70 |
|
pack $w |
| 71 |
|
} |
| 72 |
+ |
if $dograb { grab $w } |
| 73 |
+ |
$w configure -cursor top_left_arrow |
| 74 |
|
label $w.dt -text Directory: |
| 75 |
< |
place $w.dt -relx .0625 -rely .03125 -relwidth .15625 -relheight .0625 |
| 75 |
> |
place $w.dt -relx .025 -rely .03125 |
| 76 |
|
helplink $w.dt file directory intro |
| 77 |
|
button $w.ls -text List -command "update_dir $w" |
| 78 |
< |
place $w.ls -relx .0625 -rely .125 -relwidth .125 -relheight .0625 |
| 78 |
> |
place $w.ls -relx .025 -rely .125 -relwidth .15 -relheight .0625 |
| 79 |
|
helplink $w.ls file directory list |
| 80 |
|
entry $w.de -textvariable curdir -relief sunken |
| 81 |
|
place $w.de -relx .25 -rely .03125 -relwidth .6875 -relheight .0625 |
| 103 |
|
} else { |
| 104 |
|
bind $w.fm.fl <Double-Button-1> "set_curfile $w" |
| 105 |
|
label $w.fl -text File: |
| 106 |
< |
place $w.fl -relx .10625 -rely .875 \ |
| 99 |
< |
-relwidth .10625 -relheight .0625 |
| 106 |
> |
place $w.fl -relx .10625 -rely .875 |
| 107 |
|
entry $w.fn -relief sunken -textvariable curfile |
| 108 |
|
place $w.fn -relx .25 -rely .875 \ |
| 109 |
|
-relwidth .6875 -relheight .0625 |
| 117 |
|
} |
| 118 |
|
if {$transient != [info exists sendproc]} { |
| 119 |
|
button $w.ok -text OK -command "destroy $w" |
| 120 |
< |
place $w.ok -relx .0625 -rely .28125 \ |
| 121 |
< |
-relwidth .125 -relheight .0625 |
| 120 |
> |
place $w.ok -relx .025 -rely .28125 \ |
| 121 |
> |
-relwidth .15 -relheight .0625 |
| 122 |
|
} |
| 123 |
|
if {$transient || [info exists sendproc]} { |
| 124 |
|
button $w.cancel -text Cancel \ |
| 125 |
|
-command "destroy $w; unset curdir" |
| 126 |
< |
place $w.cancel -relx .0625 -rely .375 \ |
| 127 |
< |
-relwidth .125 -relheight .0625 |
| 126 |
> |
place $w.cancel -relx .025 -rely .375 \ |
| 127 |
> |
-relwidth .15 -relheight .0625 |
| 128 |
|
} |
| 129 |
|
if [info exists viewproc] { |
| 130 |
|
button $w.vi -text View -state disabled \ |
| 131 |
|
-command "$viewproc \[$w.fm.fl get \[$w.fm.fl curselection\]\]" |
| 132 |
< |
place $w.vi -relx .0625 -rely .46875 \ |
| 133 |
< |
-relwidth .125 -relheight .0625 |
| 132 |
> |
place $w.vi -relx .025 -rely .46875 \ |
| 133 |
> |
-relwidth .15 -relheight .0625 |
| 134 |
|
bind $w.fm.fl <ButtonRelease-1> "+chk_select $w" |
| 135 |
|
helplink $w.vi file file view |
| 136 |
|
} |
| 161 |
|
|
| 162 |
|
proc update_dir w { # Update working directory |
| 163 |
|
global curdir curpat |
| 164 |
< |
if {"$curpat" == ""} { |
| 164 |
> |
if {"$curpat" == {}} { |
| 165 |
|
set curpat * |
| 166 |
|
} |
| 167 |
|
if {"$curdir" == {}} {set curdir {~}} |
| 173 |
|
$w.de config -foreground $oldcol |
| 174 |
|
} |
| 175 |
|
set curdir [pwd] |
| 176 |
+ |
set offset [expr [string length $curdir] - 32] |
| 177 |
+ |
if {$offset > 0} { |
| 178 |
+ |
$w.de view [expr $offset + \ |
| 179 |
+ |
[string first / [string range $curdir $offset end]] \ |
| 180 |
+ |
+ 1] |
| 181 |
+ |
} |
| 182 |
|
$w.fm.fl delete 0 end |
| 183 |
|
set ls ../ |
| 184 |
< |
foreach f [glob *] { |
| 184 |
> |
foreach f [glob -nocomplain *] { |
| 185 |
|
if [file isdirectory $f] { |
| 186 |
|
lappend ls $f/ |
| 187 |
|
} |
| 195 |
|
} |
| 196 |
|
|
| 197 |
|
|
| 198 |
< |
proc set_curfile {w {sp ""}} { # change current file selection |
| 198 |
> |
proc set_curfile {w {sp {}}} { # change current file selection |
| 199 |
|
global curdir curfile |
| 200 |
|
set f [$w.fm.fl get [$w.fm.fl curselection]] |
| 201 |
|
if [string match */ $f] { |
| 203 |
|
update_dir $w |
| 204 |
|
} else { |
| 205 |
|
set curfile $f |
| 206 |
< |
if {"$sp" > ""} { |
| 206 |
> |
if {"$sp" != {}} { |
| 207 |
|
$sp $curdir/$curfile |
| 208 |
|
} |
| 209 |
|
} |
| 212 |
|
|
| 213 |
|
proc chk_select w { # check if current selection is file |
| 214 |
|
set s [$w.fm.fl curselection] |
| 215 |
< |
if {"$s" > "" && [file isfile [$w.fm.fl get $s]]} { |
| 215 |
> |
if {"$s" != {} && [file isfile [$w.fm.fl get $s]]} { |
| 216 |
|
$w.vi configure -state normal |
| 217 |
|
} else { |
| 218 |
|
$w.vi configure -state disabled |