/usr/lib/grass64/etc/gm/maptool.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 | ###############################################################
# maptool.tcl - toolbar file GRASS GIS Manager map display canvas
# January 2006 Michael Barton, Arizona State University
# 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.
###############################################################
namespace eval MapToolBar {
variable toolbar
variable array maptools
}
###############################################################################
proc MapToolBar::create { tb } {
global bgcolor
global mon
global env
global tk_version
global iconpath
variable toolbar
variable maptools
set selclr #88aa88
set toolbar $tb
set maptools($mon) "pointer"
# DISPLAY AND MONITOR SELECTION
set bbox1 [ButtonBox $toolbar.bbox1 -spacing 0 ]
# display
$bbox1 add -image [image create photo -file "$iconpath/gui-display.gif"] \
-command "MapCanvas::request_redraw $mon 0" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor\
-helptext [G_msg "Display active layers"]
# re-render all layers
$bbox1 add -image [image create photo -file "$iconpath/gui-redraw.gif"] \
-command "MapCanvas::request_redraw $mon 1" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor \
-helptext [G_msg "Redraw all layers"]
$bbox1 add -image [image create photo -file "$iconpath/module-nviz.gif"] \
-command {GmGroup::nvdisplay "root"} \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor\
-helptext [G_msg "Start NVIZ using active layers in current region"]
$bbox1 add -image [image create photo -file "$iconpath/module-d.nviz.gif"] \
-command "MapCanvas::dnviz $mon" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor\
-helptext [G_msg "Create flythough path for NVIZ"]
# erase
$bbox1 add -image [image create photo -file "$iconpath/gui-erase.gif"] \
-command "MapCanvas::erase $mon" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor\
-helptext [G_msg "Erase to white"]
pack $bbox1 -side left -anchor w
set sep1 [Separator $toolbar.sep1 -orient vertical -background $bgcolor ]
pack $sep1 -side left -fill y -padx 5 -anchor w
# DISPLAY TOOLS
# pointer
if {$tk_version < 8.4 } {
set pointer [radiobutton $tb.pointer \
-image [image create photo -file "$iconpath/gui-pointer.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::pointer $mon" \
-variable maptools($mon) -value pointer -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set pointer [radiobutton $tb.pointer \
-image [image create photo -file "$iconpath/gui-pointer.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::pointer $mon" \
-variable maptools($mon) -value pointer \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $pointer balloon [G_msg "Pointer"]
# zoom in
if {$tk_version < 8.4 } {
set zoomin [radiobutton $tb.zoomin \
-image [image create photo -file "$iconpath/gui-zoom_in.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::zoombind $mon 1" \
-variable maptools($mon) -value zoomin -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set zoomin [radiobutton $tb.zoomin \
-image [image create photo -file "$iconpath/gui-zoom_in.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::zoombind $mon 1" \
-variable maptools($mon) -value zoomin \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $zoomin balloon [G_msg "Zoom In"]
#zoom out
if {$tk_version < 8.4 } {
set zoomout [radiobutton $tb.zoomout \
-image [image create photo -file "$iconpath/gui-zoom_out.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::zoombind $mon -1" \
-variable maptools($mon) -value zoomout -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set zoomout [radiobutton $tb.zoomout \
-image [image create photo -file "$iconpath/gui-zoom_out.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::zoombind $mon -1" \
-variable maptools($mon) -value zoomout \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $zoomout balloon [G_msg "Zoom Out"]
# pan
if {$tk_version < 8.4 } {
set pan [radiobutton $tb.pan \
-image [image create photo -file "$iconpath/gui-pan.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::panbind $mon" \
-variable maptools($mon) -value pan -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set pan [radiobutton $tb.pan \
-image [image create photo -file "$iconpath/gui-pan.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::panbind $mon" \
-variable maptools($mon) -value pan \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $pan balloon [G_msg "Pan"]
pack $pointer $zoomin $zoomout $pan -side left -anchor w
set sep2 [Separator $toolbar.sep2 -orient vertical -background $bgcolor ]
pack $sep2 -side left -fill y -padx 5 -anchor w
set bbox2 [ButtonBox $toolbar.bbox2 -spacing 0 ]
# zoom.back
$bbox2 add -image [image create photo -file "$iconpath/gui-zoom_back.gif"] \
-command "MapCanvas::zoom_back $mon" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1\
-highlightbackground $bgcolor -activebackground $bgcolor \
-helptext [G_msg "Return to previous zoom"]
set mapzoom [menubutton $tb.mapzoom \
-image [image create photo -file "$iconpath/gui-mapzoom.gif"] \
-highlightthickness 0 -takefocus 0 -relief flat -borderwidth 0 \
-highlightbackground $bgcolor -activebackground honeydew \
-bg $bgcolor -width 32 -indicatoron 0 -direction below]
# DynamicHelp from Bwidgets 1.2.1 is buggy with menubuttons, at least on Mac
#DynamicHelp::register $mapzoom balloon [G_msg "Zoom to..."]
# menu zooming display
set zoommenu [menu $mapzoom.zm -type normal]
# Could use these images along with text if -compound worked in all platforms
# set zmimg [image create photo -file "$iconpath/gui-zoom_map.gif"]
# set zrimg [image create photo -file "$iconpath/gui-zoom_region.gif"]
# set zcimg [image create photo -file "$iconpath/gui-zoom_current.gif"]
# set zdimg [image create photo -file "$iconpath/gui-zoom_default.gif"]
$zoommenu add command \
-label [G_msg "Zoom display to selected map"] \
-command {MapCanvas::zoom_map $mon}
$zoommenu add command \
-label [G_msg "Zoom display to saved region"] \
-command {MapCanvas::zoom_region $mon}
$zoommenu add command \
-label [G_msg "Save display extents to named region"] \
-command {MapCanvas::save_region $mon}
$zoommenu add command \
-label [G_msg "Zoom display to computational region (set with g.region)"] \
-command {MapCanvas::zoom_current $mon}
$zoommenu add command \
-label [G_msg "Zoom display to default region"] \
-command {MapCanvas::zoom_default $mon}
$zoommenu add command \
-label [G_msg "Set computational region extents to match display"] \
-command {MapCanvas::set_wind $mon "" 0}
$mapzoom configure -menu $zoommenu
pack $bbox2 -side left -anchor w
pack $mapzoom -side left -anchor w -expand no -fill y
set sep3 [Separator $toolbar.sep3 -orient vertical -background $bgcolor ]
pack $sep3 -side left -fill y -padx 5 -anchor w
# query
if {$tk_version < 8.4 } {
set query [radiobutton $tb.query \
-image [image create photo -file "$iconpath/gui-query.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::querybind $mon" \
-variable maptools($mon) -value query -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set query [radiobutton $tb.query \
-image [image create photo -file "$iconpath/gui-query.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::querybind $mon" \
-variable maptools($mon) -value query \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $query balloon [G_msg "Query"]
# measure
if {$tk_version < 8.4 } {
set measure [radiobutton $tb.measure \
-image [image create photo -file "$iconpath/gui-measure.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::measurebind $mon"\
-variable maptools($mon) -value measure -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set measure [radiobutton $tb.measure \
-image [image create photo -file "$iconpath/gui-measure.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::measurebind $mon"\
-variable maptools($mon) -value measure \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $measure balloon [G_msg "Measure"]
set bbox3 [ButtonBox $toolbar.bbox3 -spacing 0 ]
$bbox3 add -image [image create photo -file "$iconpath/gui-profile.gif"] \
-command "MapCanvas::stoptool $mon; MapCanvas::startprofile $mon" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor \
-helptext [G_msg "Create profile of raster map"]
pack $query $measure -side left -anchor w
pack $bbox3 -side left -anchor w
set sep4 [Separator $toolbar.sep4 -orient vertical -background $bgcolor ]
pack $sep4 -side left -fill y -padx 5 -anchor w
# FILE & PRINT
set bbox4 [ButtonBox $toolbar.bbox4 -spacing 0 ]
$bbox4 add -image [image create photo -file "$iconpath/file-print.gif"] \
-command "MapCanvas::printcanvas $mon" \
-highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
-highlightbackground $bgcolor -activebackground $bgcolor \
-helptext [G_msg "Print raster & vector maps to eps file"]
set mapsave [menubutton $tb.mapsave \
-image [image create photo -file "$iconpath/gui-filesave.gif"] \
-highlightthickness 0 -takefocus 0 -relief flat -borderwidth 1 \
-highlightbackground $bgcolor -activebackground honeydew \
-bg $bgcolor -width 32 -indicatoron 0 -direction below]
# DynamicHelp from Bwidgets 1.2.1 is buggy with menubuttons, at least on Mac
#DynamicHelp::register $mapsave balloon [G_msg "Export display to graphics file"]
pack $mapsave -side left -anchor w -expand no -fill y
pack $bbox4 -side left -anchor w
# menu for saving display
set savefile [menu $mapsave.sf -type normal]
set jpgfile [menu $savefile.jpg -type normal]
$savefile add command -label "BMP*" -command {MapToolBar::savefile bmp 0}
$savefile add cascade -label "JPG*" -menu $jpgfile
$jpgfile add command -label [G_msg "low quality (50)"] \
-command {MapToolBar::savefile jpg 50}
$jpgfile add command -label [G_msg "mid quality (75)"] \
-command {MapToolBar::savefile jpg 75}
$jpgfile add command -label [G_msg "high quality (95)"] \
-command {MapToolBar::savefile jpg 95}
$jpgfile add command -label [G_msg "very high resolution (300% your current resolution)"] \
-command {MapToolBar::savefile jpg 300}
$savefile add command -label "PPM/PNM" -command {MapToolBar::savefile ppm 0}
$savefile add command -label "PNG" -command {MapToolBar::savefile png 0}
$savefile add command -label "TIF*" -command {MapToolBar::savefile tif 0}
$savefile add command -label [G_msg "(* requires gdal)"] -state disabled
$mapsave configure -menu $savefile
set sep5 [Separator $toolbar.sep5 -orient vertical ]
pack $sep5 -side left -fill y -padx 5 -anchor w
# Render modes
# Strict render mode
# Uses previous resolution and exact boundaries
if {$tk_version < 8.4 } {
set strictdraw [radiobutton $tb.strictdraw \
-command "MapCanvas::exploremode $mon 0" \
-variable MapToolBar::explore($mon) -value strict -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set strictdraw [radiobutton $tb.strictdraw \
-command "MapCanvas::exploremode $mon 0" \
-variable MapToolBar::explore($mon) -value strict \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $strictdraw balloon [G_msg "Constrain map to region geometry"]
icon_configure $strictdraw drawmode strict
# Explore render mode
# Uses resolution to match display and expanded boundaries to fill display
if {$tk_version < 8.4 } {
set exploredraw [radiobutton $tb.strictzoom \
-command "MapCanvas::exploremode $mon 1" \
-variable MapToolBar::explore($mon) -value explore -relief flat \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
} else {
set exploredraw [radiobutton $tb.strictzoom \
-command "MapCanvas::exploremode $mon 1" \
-variable MapToolBar::explore($mon) -value explore \
-relief flat -offrelief flat -overrelief raised \
-borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selclr \
-activebackground $bgcolor -highlightbackground $bgcolor ]
}
DynamicHelp::register $exploredraw balloon [G_msg "Map fills display window"]
icon_configure $exploredraw drawmode explore
# This does not actually set the mode
# it just starts visually in sync with the default
set MapToolBar::explore($mon) explore
pack $strictdraw $exploredraw -side left -anchor w
}
###############################################################################
# changes button on keypress
proc MapToolBar::changebutton { rbname } {
global mon
variable maptools
set maptools($mon) $rbname
}
###############################################################################
# procedures for saving files
# save png file
proc MapToolBar::savefile { type quality } {
global env
global mon
global tmpdir
set outfile($mon) $MapCanvas::outfile($mon)
set path [tk_getSaveFile -initialdir $Gm::last_directory \
-title "Save Mapcanvas contents to file" ]
set currdir [pwd]
cd $tmpdir
catch {file copy -force $outfile($mon) $path.ppm}
cd $currdir
set ext [file extension $path]
if { $path != "" } {
switch $type {
"bmp" {
if { [string equal -nocase {.bmp} $ext] } {
set saveto $path
} else {
set saveto $path.bmp
}
if { [catch {exec gdal_translate $path.ppm $saveto -of BMP} error ]} {
GmLib::errmsg $error [G_msg "Could not create BMP"]
}
catch {file delete $path.ppm}
}
"jpg" {
if { [string equal -nocase {.jpg} $ext] || [string equal -nocase {.jpeg} $ext]} {
set saveto $path
} else {
set saveto $path.jpg
}
if { $quality == 300 } {
if { [catch {exec gdal_translate $path.ppm $saveto -of JPEG -co QUALITY=95 -outsize 300% 300% } error ]} {
GmLib::errmsg $error [G_msg "Could not create JPG"]
}
catch {file delete $path.ppm}
} else {
if { [catch {exec gdal_translate $path.ppm $saveto -of JPEG -co QUALITY=$quality } error ]} {
GmLib::errmsg $error [G_msg "Could not create JPG"]
}
catch {file delete $path.ppm}
}
}
"png" {
if { [string equal -nocase {.png} $ext] } {
set saveto $path
} else {
set saveto $path.png
}
if { [catch {exec gdal_translate $path.ppm $saveto -of PNG} error ]} {
GmLib::errmsg $error [G_msg "Could not create PNG"]
}
catch {file delete $path.ppm}
}
"ppm" {
return
}
"tif" {
if { [string equal -nocase {.tif} $ext] || [string equal -nocase {.tiff} $ext] } {
set saveto $path
} else {
set saveto $path.tif
}
if { [catch {exec gdal_translate $path.ppm $saveto -of GTIFF} error ]} {
GmLib::errmsg $error [G_msg "Could not create TIF"]
}
catch {file delete $path.ppm}
}
}
set Gm::last_directory [file dirname $path] ;# update last path only when user saves something
}
return
}
|