123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- ##########################################################################
- # labels.tcl - vector labels layer options file for GRASS GIS Manager
- # March 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 GmLabels {
- variable array opt # labels current options
- variable count 1
- variable array tree # mon
- variable array lfile # labels
- variable array lfilemask # labels
- variable optlist
- variable array dup # layer
- }
- proc GmLabels::create { tree parent } {
- variable opt
- variable count
- variable lfile
- variable lfilemask
- variable optlist
- variable dup
- global mon
- global iconpath
- set node "labels:$count"
- set frm [ frame .labelsicon$count]
- set check [checkbutton $frm.check \
- -variable GmLabels::opt($count,1,_check) \
- -height 1 -padx 0 -width 0]
- image create photo labels_ico -file "$iconpath/module-d.labels.gif"
- set ico [label $frm.ico -image labels_ico -bd 1 -relief raised]
-
- bind $ico <ButtonPress-1> "GmTree::selectn $tree $node"
- pack $check $ico -side left
- #insert new layer
- if {[$tree selection get] != "" } {
- set sellayer [$tree index [$tree selection get]]
- } else {
- set sellayer "end"
- }
- $tree insert $sellayer $parent $node \
- -text "labels $count" \
- -window $frm \
- -drawcross auto
- set opt($count,1,_check) 1
- set dup($count) 0
- set opt($count,1,map) ""
- set opt($count,1,opacity) 1.0
- set opt($count,1,minreg) ""
- set opt($count,1,maxreg) ""
- set opt($count,1,ignore_rot) 0
- set opt($count,1,mod) 1
- set optlist { _check map opacity minreg maxreg}
- foreach key $optlist {
- set opt($count,0,$key) $opt($count,1,$key)
- }
-
- # create files in tmp diretory for layer output
- set mappid [pid]
- if {[catch {set lfile($count) [exec g.tempfile pid=$mappid]} error]} {
- GmLib::errmsg $error [G_msg "Error creating tempfile"]
- }
- set lfilemask($count) $lfile($count)
- append lfile($count) ".ppm"
- append lfilemask($count) ".pgm"
-
- incr count
- return $node
- }
- proc GmLabels::set_option { node key value } {
- variable opt
-
- set id [GmTree::node_id $node]
- set opt($id,1,$key) $value
- }
- proc GmLabels::select_labels { id } {
- set m [GSelect paint/labels title [G_msg "Labels for vectors"] parent "."]
- if { $m != "" } {
- set GmLabels::opt($id,1,map) $m
- GmTree::autonamel $m
- }
- }
- # display labels options
- proc GmLabels::options { id frm } {
- variable opt
- global bgcolor
- global iconpath
- # Panel heading
- set row [ frame $frm.heading ]
- Label $row.a -text [G_msg "Display labels for vector objects (created with v.label)"] \
- -fg MediumBlue
- pack $row.a -side left
- pack $row -side top -fill both -expand yes
- #opacity
- set row [ frame $frm.opc]
- Label $row.a -text [G_msg "Opaque "]
- scale $row.b -from 1.0 -to 0.0 -showvalue 1 \
- -orient horizontal -length 300 -resolution 0.01 -fg "#656565"\
- -variable GmLabels::opt($id,1,opacity)
- Label $row.c -text [G_msg " Transparent"]
- pack $row.a $row.b $row.c -side left
- pack $row -side top -fill both -expand yes
-
- # labels name
- set row [ frame $frm.name ]
- Label $row.a -text [G_msg "Labels file:"]
- Button $row.b -image [image create photo -file "$iconpath/module-d.labels.gif"] \
- -highlightthickness 0 -takefocus 0 -relief raised -borderwidth 1 \
- -helptext [G_msg "labels file to display"] \
- -command "GmLabels::select_labels $id"
- Entry $row.c -width 40 -text "$opt($id,1,map)" \
- -textvariable GmLabels::opt($id,1,map)
- Label $row.d -text " "
- Button $row.e -text [G_msg "Help"] \
- -image [image create photo -file "$iconpath/gui-help.gif"] \
- -command "spawn g.manual --q d.labels" \
- -background $bgcolor \
- -helptext [G_msg "Help"]
- pack $row.a $row.b $row.c $row.d $row.e -side left
- pack $row -side top -fill both -expand yes
- # display only in limited region size range
- set row [ frame $frm.region ]
- Label $row.a -text [G_msg "Display constraints:"]
- LabelEntry $row.b -label [G_msg "min"] -textvariable GmLabels::opt($id,1,minreg) \
- -width 8
- LabelEntry $row.c -label [G_msg "max"] -textvariable GmLabels::opt($id,1,maxreg) \
- -width 8
- Label $row.d -text [G_msg "region size"]
- pack $row.a $row.b $row.c $row.d -side left
- pack $row -side top -fill both -expand yes
- # ignore rotation
- set row [ frame $frm.ignore_rot ]
- checkbutton $row.a -text [G_msg " ignore rotation setting and draw horizontally"] -variable \
- GmLabels::opt($id,1,ignore_rot)
- pack $row.a -side left
- pack $row -side top -fill both -expand yes
- # launch v.label
- set row [ frame $frm.vlabel ]
- Label $row.a -text [G_msg "Launch v.label to create labels file"]
- Button $row.b -text [G_msg "v.label"] \
- -command "execute v.label"
- pack $row.a $row.b -side left
- pack $row -side top -fill both -expand yes
- }
- proc GmLabels::save { tree depth node } {
- variable opt
- variable optlist
-
- set id [GmTree::node_id $node]
- foreach key $optlist {
- GmTree::rc_write $depth "$key $opt($id,1,$key)"
- }
- }
- proc GmLabels::display { node mod } {
- global mon
- variable optlist
- variable lfile
- variable lfilemask
- variable opt
- variable tree
- variable dup
- variable count
-
- set tree($mon) $GmTree::tree($mon)
- set id [GmTree::node_id $node]
-
- # If we are told dirty (for zoom) force dirty
- # Don't remove a dirty from a previous unrendered zoom
- if {$mod} {set opt($id,1,mod) 1}
- if { ! ( $opt($id,1,_check) ) } { return }
- if { $opt($id,1,map) == "" } { return }
- set cmd "d.labels labels=$opt($id,1,map)"
- if { $opt($id,1,minreg) != "" } {
- append cmd " minreg=$opt($id,1,minreg)"
- }
- if { $opt($id,1,maxreg) != "" } {
- append cmd " maxreg=$opt($id,1,maxreg)"
- }
- # Decide whether to run, run command, and copy files to temp
- GmCommonLayer::display_command [namespace current] $id $cmd
- }
- proc GmLabels::query { node } {
- puts "Query not supported for Paint labels layer"
- }
- proc GmLabels::duplicate { tree parent node id } {
- variable optlist
- variable lfile
- variable lfilemask
- variable opt
- variable count
- variable dup
- global iconpath
- set node "labels:$count"
- set dup($count) 1
- set frm [ frame .labelsicon$count]
- set check [checkbutton $frm.check \
- -variable GmLabels::opt($count,1,_check) \
- -height 1 -padx 0 -width 0]
- image create photo labels_ico -file "$iconpath/module-d.labels.gif"
- set ico [label $frm.ico -image labels_ico -bd 1 -relief raised]
- bind $ico <ButtonPress-1> "GmTree::selectn $tree $node"
- pack $check $ico -side left
-
- #insert new layer
- if {[$tree selection get] != "" } {
- set sellayer [$tree index [$tree selection get]]
- } else {
- set sellayer "end"
- }
- if { $opt($id,1,map) == ""} {
- $tree insert $sellayer $parent $node \
- -text "labels $count" \
- -window $frm \
- -drawcross auto
- } else {
- $tree insert $sellayer $parent $node \
- -text "$opt($id,1,map)" \
- -window $frm \
- -drawcross auto
- }
- set opt($count,1,opacity) $opt($id,1,opacity)
- set optlist { _check map minreg maxreg}
- foreach key $optlist {
- set opt($count,1,$key) $opt($id,1,$key)
- set opt($count,0,$key) $opt($count,1,$key)
- }
-
- set id $count
-
- # create files in tmp directory for layer output
- set mappid [pid]
- if {[catch {set lfile($count) [exec g.tempfile pid=$mappid]} error]} {
- GmLib::errmsg $error [G_msg "Error creating tempfile"]
- }
- set lfilemask($count) $lfile($count)
- append lfile($count) ".ppm"
- append lfilemask($count) ".pgm"
- incr count
- return $node
- }
|