/usr/lib/grass64/etc/gm/gm.tcl is in grass-gui 6.4.3-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | ##########################################################################
#
# gm.tcl
#
# Primary tcltk script for GIS Manager: GUI for GRASS 6
# Author: Michael Barton (Arizona State University)
# Based in part on Display Manager for GRASS 5.7 by Radim Blazek (ITC-IRST)
# and tcltkgrass for GRASS 5.7 by Michael Barton (Arizona State University)--
# with contributions by Glynn Clements, Markus Neteler, Lorenzo Moretti,
# Florian Goessmann, and others
#
# March 2006
#
# COPYRIGHT: (C) 1999 - 2006 by the GRASS Development Team
#
# This program is free software under the GNU General Public
# License (>=v2). Read the file COPYING that comes with GRASS
# for details.
#
##########################################################################
lappend auto_path [file join "$env(GISBASE)" "bwidget"]
package require -exact BWidget 1.2.1
# Load up all the gis.m layers and things.
# pkgIndex.tcl only loads the files when they are first called.
lappend auto_path [file join "$env(GISBASE)" "etc" "gm"]
package require -exact GisM 1.0
# path to GIS Manager files
set gmpath [file join "$env(GISBASE)" "etc" "gm"]
# Load GUI stuff required for error reporting etc.
source [file join "$env(GISBASE)" "etc" "gui.tcl"]
# Load common procedure library
source [file join "$gmpath" "gmlib.tcl"]
# gisenv errors are fatal.
if {[catch {set env(GISDBASE) [exec g.gisenv get=GISDBASE]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
if {[catch {set env(LOCATION_NAME) [exec g.gisenv get=LOCATION_NAME]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
if {[catch {set env(MAPSET) [exec g.gisenv get=MAPSET]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
if {[catch {set gisdbase [exec g.gisenv get=GISDBASE]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
if {[catch {set location_name [exec g.gisenv get=LOCATION_NAME]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
if {[catch {set mapset [exec g.gisenv get=MAPSET]} error]} {
GmLib::errmsg $error
puts $error
exit 1
}
# if any of those is empty, there's no reason to continue. it's a failure.
if { $gisdbase=={} || $location_name=={} || $mapset=={} } {
GmLib::errmsg [G_msg "GISDBASE or LOCATION_NAME or MAPSET is empty. \
This is a fatal error. gis.m can not work without proper settings."]
exit 1
}
# path to icons for GIS Manager
set iconpath [file join "$env(GISBASE)" "etc" "gui" "icons" "grass"]
global iconpath
global gmpath
set keycontrol "Control"
set tmenu "1"
set keyctrl "Ctrl"
set execom "execute"
set msg 0
set mon 1
if {![catch {set env(HOSTTYPE)}]} {
set HOSTTYPE $env(HOSTTYPE)
} else {
set HOSTTYPE ""
}
# add for OSX aqua
if {![catch {set env(osxaqua)}]} {
set osxaqua $env(osxaqua)
} else {
set osxaqua "0"
}
if { $osxaqua == "1"} {
set keycontrol "Command"
set tmenu "0"
set keyctrl "Command"
set execom "spawn"
}
if {![catch {set env(OS)}] && $env(OS) == "Windows_NT"} {
set mingw "1"
set devnull "NUL:"
} else {
set mingw "0"
set devnull "/dev/null"
}
#fetch GRASS Version number:
catch {set fp [open [file join "$env(GISBASE)" "etc" "VERSIONNUMBER"] r]}
set GRASSVERSION [read -nonewline $fp]
if {[catch {close $fp} error]} {
GmLib::errmsg $error
}
#source $env(GISBASE)/etc/gui.tcl
# gui.tcl also sources these:
# $env(GISBASE)/etc/gtcltk/gmsg.tcl
# $env(GISBASE)/etc/gtcltk/options.tcl
# $env(GISBASE)/etc/gtcltk/select.tcl
# $env(GISBASE)/etc/gtcltk/gronsole.tcl
# Load a console user interface
source [file join "$gmpath" "runandoutput.tcl"]
namespace eval Gm {
variable gm_mainframe
variable status
variable array tree ;# mon
variable rcfile
variable moncount
variable prgtext
variable mainwindow
variable dfont
variable selectedfont
variable encoding
global array filename ;# mon
variable last_directory ;# last save/load dir for reuse
}
set Gm::prgtext ""
global prgindic
global max_prgindic
set max_prgindic 20
if { $tcl_platform(platform) == "windows" } {
append regexp .* $env(GISBASE) {[^;]*}
regsub -- $regexp $env(PATH) "&;$env(GISBASE)/etc/gui/scripts" env(PATH)
} else {
append regexp .* $env(GISBASE) {[^:]*}
regsub -- $regexp $env(PATH) "&:$env(GISBASE)/etc/gui/scripts" env(PATH)
}
###############################################################################
# Deprecated
# Use guarantee_xmon and any run command instead.
proc Gm::xmon { type cmd } {
guarantee_xmon
if { $type == "term" } {
term_panel $cmd
} else {
run_panel $cmd
}
return
}
###############################################################################
proc Gm::create { } {
variable mainwindow
variable prgtext
variable gm_mainframe
variable tree
variable moncount
variable dfont
variable ecoding
global gmpath
global mon
global tree_pane
global options
global pgs
global prgindic
global keycontrol
global env
# set display rendering environment for PNG/PPM output
set env(GRASS_RENDER_IMMEDIATE) "TRUE"
# set default font
if {[catch {set env(GRASS_FONT)}]} {set env(GRASS_FONT) "romans"}
set Gm::dfont ""
set Gm::encoding "ISO-8859-1"
set moncount 1
set Gm::prgtext [G_msg "Loading GIS Manager"]
set prgindic -1
_create_intro
update
source $gmpath/gmmenu.tcl
set Gm::prgtext [G_msg "Creating MainFrame..."]
set gm_mainframe [MainFrame .mainframe \
-menu $descmenu \
-textvariable Gm::status \
-progressvar Gm::prgindic ]
set mainwindow [$gm_mainframe getframe]
# toolbar 1 & 2 creation
set tb1 [$gm_mainframe addtoolbar]
GmToolBar1::create $tb1
set tb2 [$gm_mainframe addtoolbar]
GmToolBar2::create $tb2
set pw1 [PanedWindow $mainwindow.pw1 -side left -pad 0 -width 10 ]
# tree
set treemon [expr {$mon + 1}]
set tree_pane [$pw1 add -minsize 50 -weight 1]
set pgs [PagesManager $tree_pane.pgs]
pack $pgs -expand yes -fill both
# options
set options_pane [$pw1 add -minsize 50 -weight 1]
set options_sw [ScrolledWindow $options_pane.sw -relief flat -borderwidth 1]
set options_sf [ScrollableFrame $options_sw.sf]
$options_sf configure -height 145 -width 460
$options_sw setwidget $options_sf
set options [$options_sf getframe]
pack $options_sw -fill both -expand yes
# Scroll the options window with the mouse
bind_scroll $options_sf
pack $pw1 -side top -expand yes -fill both -anchor n
# finish up
set Gm::prgtext [G_msg "Done"]
set Gm::status [G_msg "Welcome to GRASS GIS"]
$gm_mainframe showstatusbar status
pack $gm_mainframe -fill both -expand yes
Gm::startmon
bind .mainframe <Destroy> {
if {"%W" == ".mainframe"} {
Gm::cleanup}
}
if { [info exists env(HOME)] } {
set Gm::last_directory $env(HOME)
} else {
set Gm::last_directory [pwd]
}
}
###############################################################################
# start new display monitor and increment canvas monitor number
proc Gm::startmon { } {
variable mainwindow
variable moncount
variable tree
global mon
set mon $moncount
incr moncount 1
#create initial display canvas and layer tree
MapCanvas::create
GmTree::create $mon
wm title .mapcan($mon) [format [G_msg "Map Display %d"] $mon]
wm withdraw .mapcan($mon)
wm deiconify .mapcan($mon)
}
###############################################################################
proc Gm::_create_intro { } {
variable prgtext
global gmpath
global GRASSVERSION
global location_name
global max_prgindic
global prg
set top [toplevel .intro -relief raised -borderwidth 2]
wm withdraw $top
wm overrideredirect $top 1
set ximg [label $top.x -image [image create photo -file "$gmpath/intro.gif"] ]
set frame [frame $ximg.f -background white]
set lab1 [label $frame.lab1 \
-text [format [G_msg "GRASS%s GIS Manager - %s"] $GRASSVERSION $location_name] \
-background white -foreground black -font introfont]
set lab2 [label $frame.lab2 -textvariable Gm::prgtext -background white]
set prg [ProgressBar $frame.prg -width 50 -height 15 -background white \
-variable Gm::prgindic -maximum $max_prgindic]
pack $lab1 $prg -side left -fill both -expand yes
pack $lab2 -side right -expand yes
place $frame -x 0 -y 0 -anchor nw
pack $ximg
BWidget::place $top 0 0 center
wm deiconify $top
}
###############################################################################
# nviz
proc Gm::nviz { } {
global osxaqua
global HOSTTYPE
set cmd "nviz"
if { $HOSTTYPE == "macintosh" || $HOSTTYPE == "powermac" || $HOSTTYPE == "powerpc" || $HOSTTYPE == "intel-pc"} {
if { $osxaqua == "1"} {
spawn $cmd
} else {
term $cmd
}
} else {
spawn $cmd
}
}
###############################################################################
# d.nviz: set up NVIZ flight path (not much use without a backdrop?)
proc Gm::fly { } {
guarantee_xmon
exec d.nviz -i --ui &
}
###############################################################################
# xganim
proc Gm::xganim { } {
exec xganim --ui &
}
###############################################################################
# help
proc Gm::help { } {
set cmd [list g.manual --ui]
term $cmd
}
###############################################################################
# sets default display font
proc Gm::defaultfont { source } {
global env iconpath
global fontlist
variable dfont
variable selectedfont
variable encoding
# create a dialog with selector for stroke font and true type font, and
# text entry for character encoding
toplevel .dispfont
wm title .dispfont [G_msg "Select GRASS display font"]
if {[catch {set rawlist [exec d.font --q -L]} error]} {
GmLib::errmsg $error "d.font error"
}
set rawlist [split $rawlist "\n"]
foreach item $rawlist {
set fontinfo [split $item "|"]
lappend fontlist $fontinfo
}
# Case-insensitive search on font long name, removing duplicates
set fontlist [lsort -dictionary -unique -index 1 $fontlist]
set row [ frame .dispfont.fontlb ]
Label $row.a -text [G_msg "Font: "]
set fontlb [ listbox $row.b -bg white -width 30 \
-yscrollcommand "$row.vscrollbar set"]
scrollbar $row.vscrollbar -width 12 \
-command "$row.b yview" \
-relief {sunken}
foreach item $fontlist {
$fontlb insert end [lindex $item 1]
}
# If $Gm::dfont is empty then it hasn't been set by a layer module
# before calling this procedure, so we should read the current
# default font from the GRASS_FONT environment variable
if {$Gm::dfont == ""} {
if {![catch {set env(GRASS_FONT)}] && $env(GRASS_FONT) != ""} {
set Gm::dfont $env(GRASS_FONT)
}
}
set selectedfont $Gm::dfont
if {$Gm::dfont != ""} {
set fontindex 0
foreach item $fontlist {
if { $Gm::dfont eq [lindex $item 0] } {
$fontlb selection set $fontindex
$fontlb see $fontindex
break
}
incr fontindex
}
}
pack $row.vscrollbar -side right -fill y
pack $row.b -side right
pack $row.a -side right -anchor n
pack $row -side top -fill both -expand yes -pady 3 -padx 5
set row [ frame .dispfont.fontopt3 ]
Label $row.a -text [G_msg "Character encoding: "]
Entry $row.b -width 20 -text "$Gm::encoding" \
-textvariable Gm::encoding
pack $row.b $row.a -side right -anchor e
pack $row -side top -fill both -expand yes -pady 3 -padx 5
set row [ frame .dispfont.buttons ]
Button $row.ok -text [G_msg "OK"] -width 8 -bd 1 \
-command "Gm::setfont $source; destroy .dispfont"
pack $row.ok -side left -fill x -expand 0
button $row.cancel -text [G_msg "Cancel"] -width 8 -bd 1 \
-command "destroy .dispfont"
pack $row.cancel -side right -fill x -expand 0
pack $row -side bottom -pady 3 -padx 5 -expand 0 -fill x
bind $fontlb <<ListboxSelect>> {
set Gm::selectedfont [lindex [lindex $fontlist [%W curselection]] 0]
}
};
proc Gm::setfont { source } {
global env
variable dfont
variable selectedfont
variable encoding
# Set GRASS environmental variables for default display font and
# character encoding
if { $encoding != "" && $encoding != "ISO-8859-1"} {
set env(GRASS_ENCODING) $encoding
}
set dfont $selectedfont
if { $source == "menu" && $dfont != "" } {
set env(GRASS_FONT) $dfont
set dfont ""
}
};
###############################################################################
proc Gm::cleanup { } {
global mon
global tmpdir
global legfile
variable moncount
set mappid $MapCanvas::mappid
# delete all map display ppm files
cd $tmpdir
set deletefile $mappid
append deletefile ".*"
foreach file [glob -nocomplain $deletefile] {
catch {file delete $file}
}
if {[info exists legfile] && [file exists $legfile]} {catch {file delete -force $legfile}}
unset mon
};
# Provides remote exit call. Used by GRASS exit to close all session's gis.m instances.
# Argument session_id is exit caller's GIS_LOCK variable.
proc Gm::remoteExit { session_id } {
global env
if {$env(GIS_LOCK) == $session_id} Gm::quit
}
# Provides exit from gis.m. May also do some clean-up, save-settings et.al.
proc Gm::quit { {full_exit false} } {
global env
if { $full_exit } {
if { [catch {set spid $env(GRASS_SHELL_PID)}] == 0 } {
set leave [tk_dialog .leave [G_msg "End current GRASS session"] \
[G_msg "Do you really want to terminate current\
GRASS session?\n\nThis action will close all sessions gis.m instances.\n\nIf You have running some \
GRASS module from comandline, GRASS will terminate after it\
finishes to run."] warning 1 [G_msg "Terminate current GRASS session"] [G_msg "Cancel"]]
if { $leave == 0 } {
exec kill -SIGQUIT $env(GRASS_SHELL_PID)
} else {
return
}
} else {
tk_messageBox -type ok -title [G_msg "Not supported"] -message \
[G_msg "We sorry. Your shell does not support this feature. \n\
You have to type 'exit' in terminal manually."]
}
}
# It's unsafe to call exit during Destroy event
after idle [list destroy .]
}
###############################################################################
proc main {argc argv} {
variable gm_mainframe
global auto_path
global GRASSVERSION
global location_name
global mapset
global keycontrol
global filename
global mon
wm withdraw .
wm title . [format [G_msg "GRASS%s GIS Manager - %s %s"] $GRASSVERSION $location_name $mapset]
bind . <$keycontrol-Key-o> {
Gm::OpenFileBox
}
bind . <$keycontrol-Key-n> {
GmTree::new
}
bind . <$keycontrol-Key-s> {
Gm::SaveFileBox
}
bind . <$keycontrol-Key-q> {
Gm::quit
}
bind . <$keycontrol-Key-w> {
GmTree::FileClose {}
}
Gm::create
BWidget::place . 0 0 at 400 100
wm deiconify .
raise .mainframe
focus -force .
destroy .intro
if { $argc > 1 } {
foreach i $argv {
if { [regexp -- {\.grc$} $i] || [regexp -- {\.dmrc$} $i] || [regexp -- {\.dm$} $i] } {
set filename($mon) [lindex $argv 0]
GmTree::load $filename($mon)
}
}
}
}
wm protocol . WM_DELETE_WINDOW {
Gm::quit
}
main $argc $argv
wm geom . [wm geom .]
|