1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
global map_browser
global src_boot
#set src_boot $env(GISBASE)
proc grass_ls {element {mapset .}} {
set dir [grass_element_name $element $mapset]
if {[file isdir $dir]} {
return [exec ls $dir]
}
return {}
}
proc grass_element_name {element {mapset .}} {
return [grass_file_name $element {} $mapset]
}
proc grass_file_name {element name {mapset .}} {
global src_boot
if {[string compare $mapset .] == 0} {
set mapset [exec $src_boot/bin/g.gisenv MAPSET]
}
return [exec $src_boot/bin/g.gisenv GISDBASE]/[exec $src_boot/bin/g.gisenv LOCATION_NAME]/$mapset/$element/$name
}
proc grass_location {} {
return [grass_element_name {} /]
}
proc g.gisenv {name} {
global src_boot
return [exec $src_boot/bin/g.gisenv $name]
}
proc grass_mapset_list {} {
global src_boot
set list {}
set location [grass_location]
foreach name [exec $src_boot/bin/g.mapsets -p] {
if {[file isdir $location/$name]} {
lappend list $name
}
}
return $list
}
proc set_map_browser_filename {w name} {
global ScriptState
set file_name ${name}@[get_map_browser_mapset $w]
$w.filename delete 0 end
if {[string length $name] > 0} {
$w.filename insert 0 ${name}@[get_map_browser_mapset $w]
set_selection_from_map_browser_filename $w
if $ScriptState then {
Nv_script_add_string "catch \{send \$ProcessName \{$w.filename delete 0 end\}\}"
Nv_script_add_string "if \$Nv_mapLoopMode then \{"
Nv_script_add_string "catch \{send \$ProcessName \"$w.filename insert 0 \$Nv_mapLoopFile\"\}"
Nv_script_add_string "\} else \{"
Nv_script_add_string "catch \{send \$ProcessName \{$w.filename insert 0 \"$file_name\"\}\}"
Nv_script_add_string "\}"
Nv_script_add_string "catch \{send \$ProcessName \{set_selection_from_map_browser_filename $w\}\}"
}
}
}
proc map_browser_list_mapset {w} {
set mapset [get_map_browser_mapset $w]
set element [get_map_browser_element $w]
$w.main.files.f.list delete 0 end
update
if {[string length $mapset] == 0} {return}
if {[string length $element] == 0} {return}
foreach name [grass_ls $element $mapset] {
$w.main.files.f.list insert end $name
}
}
proc get_map_browser_element {w} {
if {[catch {$w.element.entry get} element]} { return {} }
if {![string compare $element Raster]} {
set element cell
} elseif {![string compare $element Vector]} {
set element vector
} elseif {![string compare $element Surface]} {
set element cell
} elseif {![string compare $element Site]} {
set element site_lists
} elseif {![string compare $element Region]} {
set element windows
} elseif {![string compare $element Labels]} {
set element paint/labels
} elseif {![string compare $element Icons]} {
set element icons
} elseif {![string compare $element G3D]} {
set element grid3
}
return $element
}
proc set_map_browser_element {w name} {
$w.element.entry delete 0 end
$w.element.entry insert 0 $name
map_browser_list_mapset $w
}
proc get_map_browser_mapset {w} {
global map_browser
if {[info exists map_browser($w,mapset)]} {
return $map_browser($w,mapset)
}
return {}
}
proc set_map_browser_mapset {w name} {
global map_browser
set map_browser($w,mapset) $name
map_browser_list_mapset $w
}
proc set_selection_from_map_browser_filename { w } {
$w.filename selection from 0
$w.filename selection to end
}
proc create_map_browser {{w .map_browser} {type all} {mode 0}} {
global map_browser
toplevel $w
tkwait visibility $w
puts "BROWSER: $w TYPE: $type MODE: $mode"
entry $w.filename -bd 2 -relief sunken
bind $w.filename <Return> "set_selection_from_map_browser_filename $w"
frame $w.main
frame $w.main.mapsets
label $w.main.mapsets.label -text MAPSETS
frame $w.main.mapsets.f
listbox $w.main.mapsets.f.list -bd 2 -relief sunken \
-exportselection no \
-selectbackground LightYellow1 \
-yscroll "$w.main.mapsets.f.scroll set" \
-xscroll "$w.main.mapsets.f.scrollx set" \
-selectmode single
scrollbar $w.main.mapsets.f.scroll \
-command "$w.main.mapsets.f.list yview"
scrollbar $w.main.mapsets.f.scrollx \
-command "$w.main.mapsets.f.list xview" \
-orient horizontal
bind $w.main.mapsets.f.list <ButtonRelease-1> \
"map_browser_select_mapset %W %y $w"
frame $w.main.files
label $w.main.files.label -text FILES
frame $w.main.files.f
listbox $w.main.files.f.list -bd 2 -relief sunken \
-exportselection no \
-selectbackground LightYellow1 \
-yscroll "$w.main.files.f.scroll set" \
-xscroll "$w.main.files.f.scrollx set" \
-selectmode single
scrollbar $w.main.files.f.scroll \
-command "$w.main.files.f.list yview"
scrollbar $w.main.files.f.scrollx \
-command "$w.main.files.f.list xview" \
-orient horizontal
bind $w.main.files.f.list <ButtonRelease-1> \
"map_browser_select_file %W %y $w"
frame $w.element
entry $w.element.entry -bd 2 -relief sunken
bind $w.element.entry <Return> "map_browser_list_mapset $w"
if { ![string compare rast $type]} {
set name Raster
} elseif { ![string compare vect $type]} {
set name Vector
} elseif { ![string compare site $type]} {
set name Site
} elseif { ![string compare surf $type]} {
set name Surface
} elseif { ![string compare 3d.view $type]} {
set name 3d.view
} elseif {![string compare vol $type]} {
set name G3D
}
if [string compare $type all] {
label $w.element.menu -text "Map Type:" -relief raised
} else {
set name ""
menubutton $w.element.menu -text {Map Type} -menu $w.element.menu.m -relief raised
menu $w.element.menu.m
$w.element.menu.m add command \
-label {Raster} -command "set_map_browser_element $w Raster"
$w.element.menu.m add command \
-label {Vector} -command "set_map_browser_element $w Vector"
$w.element.menu.m add command \
-label {Site} -command "set_map_browser_element $w Site"
$w.element.menu.m add command \
-label {Surf} -command "set_map_browser_element $w Surf"
$w.element.menu.m add command \
-label {3d.view} -command "set_map_browser_element $w 3d.view"
$w.element.menu.m add command \
-label {Regions} -command "set_map_browser_element $w windows"
$w.element.menu.m add command \
-label {Labels} -command "set_map_browser_element $w\
paint/labels"
$w.element.menu.m add command \
-label {Icons} -command "set_map_browser_element $w icons"
}
button $w.accept -text Accept -command "mapBrowser_accept_cmd $w"
button $w.cancel -text Cancel -command "mapBrowser_cancel_cmd $w"
pack $w.filename -side top -expand yes -fill x
pack $w.main -side top -expand yes -fill both
pack $w.main.mapsets -side left -expand yes -fill both
pack $w.main.mapsets.label -side top
pack $w.main.mapsets.f.scrollx -side bottom -expand no -fill x
pack $w.main.mapsets.f -side top -expand yes -fill both
pack $w.main.mapsets.f.list -side left -expand yes -fill both
pack $w.main.mapsets.f.scroll -side left -expand no -fill y
pack $w.main.files -side left -expand yes -fill both
pack $w.main.files.label -side top
pack $w.main.files.f.scrollx -side bottom -expand no -fill x
pack $w.main.files.f -side top -expand yes -fill both
pack $w.main.files.f.list -side left -expand yes -fill both
pack $w.main.files.f.scroll -side left -expand no -fill y
pack $w.element -side top -expand yes -fill x
pack $w.element.menu -side left
pack $w.element.entry -side left -expand yes -fill x
pack $w.accept $w.cancel -side left -expand 1
foreach mapset [grass_mapset_list] {
$w.main.mapsets.f.list insert end $mapset
}
set_map_browser_element $w $name
set_map_browser_mapset $w {}
wm title $w "Map Browser"
wm protocol $w WM_DELETE_WINDOW "destroy $w"
if {$mode} {grab $w}
tkwait window $w
return $map_browser($w,Answer)
}
proc mapBrowser_accept_cmd {w} {
global map_browser
# Make sure a file has been selected first
set temp [$w.filename get]
if {$temp != ""} then {
set map_browser($w,Answer) [$w.filename get]
destroy $w
} else {
return
}
}
proc mapBrowser_cancel_cmd {w} {
global map_browser
set map_browser($w,Answer) -1
destroy $w
}
proc map_browser_select_file {W y w} {
set near [ $W nearest $y ]
$W selection set $near $near
eval set_map_browser_filename $w {[$W get $near]}
}
proc map_browser_select_mapset {W y w} {
set near [ $W nearest $y ]
$W selection set $near $near
eval set_map_browser_mapset $w {[$W get $near]}
}
|