123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- ###############################################################
- # georecttool.tcl - toolbar file for georectify canvas, GRASS GIS Manager
- # June 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 GRToolBar {
- variable toolbar
- variable grmaptools
- }
- ###############################################################################
- proc GRToolBar::create { tb } {
- variable grmaptools
- variable toolbar
- global gmpath
- global bgcolor
- global tk_version
- global iconpath
-
- set selcolor #88aa88
- set grmaptools "selector"
- set toolbar $tb
- # DISPLAY AND MONITOR SELECTION
- set bbox1 [ButtonBox $toolbar.bbox1 -spacing 0 ]
-
- # display
- $bbox1 add -image [image create photo -file "$iconpath/gui-display.gif"] \
- -command "GRMap::request_redraw 1" \
- -highlightthickness 0 -takefocus 0 -relief link -borderwidth 1 \
- -highlightbackground $bgcolor -activebackground $bgcolor\
- -helptext [G_msg "Display active layers"]
- # erase
- $bbox1 add -image [image create photo -file "$iconpath/gui-erase.gif"] \
- -command "GRMap::erase" \
- -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
- # selector
- if {$tk_version < 8.4 } {
- set selector [radiobutton $tb.selector \
- -image [image create photo -file "$iconpath/gui-gcpset.gif"] \
- -command "GRMap::stoptool; GRMap::selector" \
- -variable grmaptools -value selector -relief flat \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- } else {
- set selector [radiobutton $tb.selector \
- -image [image create photo -file "$iconpath/gui-gcpset.gif"] \
- -command "GRMap::stoptool; GRMap::selector" \
- -variable grmaptools -value selector \
- -relief flat -offrelief flat -overrelief raised \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- }
- DynamicHelp::register $selector balloon [G_msg "Set ground control points"]
- # zoom in
- if {$tk_version < 8.4 } {
- set zoomin [radiobutton $tb.zoomin \
- -image [image create photo -file "$iconpath/gui-zoom_in.gif"] \
- -command "GRMap::stoptool; GRMap::zoombind 1" \
- -variable grmaptools -value zoomin -relief flat \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- } else {
- set zoomin [radiobutton $tb.zoomin \
- -image [image create photo -file "$iconpath/gui-zoom_in.gif"] \
- -command "GRMap::stoptool; GRMap::zoombind 1" \
- -variable grmaptools -value zoomin \
- -relief flat -offrelief flat -overrelief raised \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -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 "GRMap::stoptool; GRMap::zoombind -1" \
- -variable grmaptools -value zoomout -relief flat \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- } else {
- set zoomout [radiobutton $tb.zoomout \
- -image [image create photo -file "$iconpath/gui-zoom_out.gif"] \
- -command "GRMap::stoptool; GRMap::zoombind -1" \
- -variable grmaptools -value zoomout \
- -relief flat -offrelief flat -overrelief raised \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -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 "GRMap::stoptool; GRMap::panbind" \
- -variable grmaptools -value pan -relief flat \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- } else {
- set pan [radiobutton $tb.pan \
- -image [image create photo -file "$iconpath/gui-pan.gif"] \
- -command "GRMap::stoptool; GRMap::panbind" \
- -variable grmaptools -value pan \
- -relief flat -offrelief flat -overrelief raised \
- -borderwidth 1 -indicatoron false -bg $bgcolor -selectcolor $selcolor \
- -activebackground $bgcolor -highlightbackground $bgcolor ]
- }
- DynamicHelp::register $pan balloon [G_msg "Pan"]
- pack $selector $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 "GRMap::zoom_back" \
- -highlightthickness 0 -takefocus 0 -relief link -borderwidth 1\
- -highlightbackground $bgcolor -activebackground $bgcolor \
- -helptext [G_msg "Return to previous zoom"]
- # zoom to map
- $bbox2 add -image [image create photo -file "$iconpath/gui-zoom_map.gif"] \
- -command {GRMap::zoom_map} \
- -highlightthickness 0 -takefocus 0 -relief link -borderwidth 1\
- -highlightbackground $bgcolor -activebackground $bgcolor \
- -helptext [G_msg "Zoom to map"]
- pack $bbox2 -side left -anchor w
- }
- ###############################################################################
- # changes button on keypress
- proc GRToolBar::changebutton { rbname } {
- variable grmaptools
-
- set grmaptools $rbname
- }
|