if { $showNodeLabels == 0} {
.c itemconfigure $label -state hidden
}
+ # XXX Invisible pseudo-node labels
+ global invisible
+ if { $invisible == 1 && [getNodeMirror $node] != "" } {
+ .c itemconfigure $label -state hidden
+ }
return
}
-fill $defLinkColor -width $defLinkWidth \
-tags "link $link $lnode1 $lnode2" \
-arrow both]
+ # XXX Invisible pseudo-liks
+ global invisible
+ if { $invisible == 1 && [getLinkMirror $link] != "" } {
+ .c itemconfigure $link -state hidden
+ }
.c raise $newlink background
set newlink [.c create line 0 0 0 0 \
-fill white -width [expr $defLinkWidth * 3 ] \
menu .button3menu.shell -tearoff 0
menu .button3menu.ethereal -tearoff 0
+#
+# Invisible pseudo links
+#
+set invisible -1
+bind . <Control-i> {
+ global invisible
+ set invisible [expr $invisible * -1]
+ redrawAll
+}
#
# Done with initialization, draw an empty canvas