Changeset 4759 for branches/1.3
- Timestamp:
- Nov 21, 2014, 5:38:56 PM (5 years ago)
- Location:
- branches/1.3
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/gui/scripts/flowvisviewer.tcl
r4750 r4759 2308 2308 entry $inner.${tag} -font "Arial 9" -bg white \ 2309 2309 -textvariable [itcl::scope _settings($this-$tag)] 2310 bind $inner.${tag} <KeyPress-Return> \ 2310 bind $inner.${tag} <Return> \ 2311 [itcl::code $this camera set ${tag}] 2312 bind $inner.${tag} <KP_Enter> \ 2311 2313 [itcl::code $this camera set ${tag}] 2312 2314 blt::table $inner \ -
branches/1.3/gui/scripts/vtkglyphviewer.tcl
r4750 r4759 1759 1759 entry $inner.${tag} -font "Arial 9" -bg white \ 1760 1760 -textvariable [itcl::scope _view($tag)] 1761 bind $inner.${tag} <KeyPress-Return> \ 1761 bind $inner.${tag} <Return> \ 1762 [itcl::code $this camera set ${tag}] 1763 bind $inner.${tag} <KP_Enter> \ 1762 1764 [itcl::code $this camera set ${tag}] 1763 1765 blt::table $inner \ -
branches/1.3/gui/scripts/vtkheightmapviewer.tcl
r4750 r4759 1071 1071 1072 1072 if {$axis == "z" && [$_first hints ${axis}units] == ""} { 1073 set units [lindex $_fields($_curFldName) 1] 1073 if {$_curFldName != ""} { 1074 set units [lindex $_fields($_curFldName) 1] 1075 } 1074 1076 } else { 1075 1077 set units [$_first hints ${axis}units] … … 1716 1718 if { $_currentColormap != "" } { 1717 1719 set cmap $_currentColormap 1718 SendCmd "legend $cmap scalar $_curFldName {} $w $h 0" 1720 #SendCmd "legend $cmap scalar $_curFldName {} $w $h 0" 1721 SendCmd "legend2 $cmap $w $h" 1719 1722 } 1720 1723 } -
branches/1.3/gui/scripts/vtkimageviewer.tcl
r4750 r4759 1030 1030 1031 1031 if {$axis == "z" && [$_first hints ${axis}units] == ""} { 1032 set units [lindex $_fields($_curFldName) 1] 1032 if {$_curFldName != ""} { 1033 set units [lindex $_fields($_curFldName) 1] 1034 } 1033 1035 } else { 1034 1036 set units [$_first hints ${axis}units] … … 1552 1554 # Set the legend on the first image dataset. 1553 1555 if { $_currentColormap != "" && $_currentColormap != "none" } { 1554 SendCmd "legend $_currentColormap scalar $_curFldName {} $w $h 0" 1556 #SendCmd "legend $_currentColormap scalar $_curFldName {} $w $h 0" 1557 SendCmd "legend2 $_currentColormap $w $h" 1555 1558 } 1556 1559 } -
branches/1.3/gui/scripts/vtkisosurfaceviewer.tcl
r4750 r4759 1840 1840 entry $inner.${tag} -font "Arial 9" -bg white \ 1841 1841 -textvariable [itcl::scope _view(-$tag)] 1842 bind $inner.${tag} <KeyPress-Return> \ 1843 [itcl::code $this camera set ${tag}] 1842 bind $inner.${tag} <Return> \ 1843 [itcl::code $this camera set -${tag}] 1844 bind $inner.${tag} <KP_Enter> \ 1845 [itcl::code $this camera set -${tag}] 1844 1846 blt::table $inner \ 1845 1847 $row,0 $inner.${tag}label -anchor e -pady 2 \ -
branches/1.3/gui/scripts/vtkmeshviewer.tcl
r4750 r4759 1443 1443 entry $inner.${tag} -font "Arial 9" -bg white \ 1444 1444 -textvariable [itcl::scope _view($tag)] 1445 bind $inner.${tag} <KeyPress-Return> \ 1445 bind $inner.${tag} <Return> \ 1446 [itcl::code $this camera set ${tag}] 1447 bind $inner.${tag} <KP_Enter> \ 1446 1448 [itcl::code $this camera set ${tag}] 1447 1449 blt::table $inner \ -
branches/1.3/gui/scripts/vtkstreamlinesviewer.tcl
r4750 r4759 1870 1870 entry $inner.${tag} -font "Arial 9" -bg white \ 1871 1871 -textvariable [itcl::scope _view($tag)] 1872 bind $inner.${tag} <KeyPress-Return> \ 1872 bind $inner.${tag} <Return> \ 1873 [itcl::code $this camera set ${tag}] 1874 bind $inner.${tag} <KP_Enter> \ 1873 1875 [itcl::code $this camera set ${tag}] 1874 1876 blt::table $inner \ -
branches/1.3/gui/scripts/vtksurfaceviewer.tcl
r4750 r4759 1752 1752 entry $inner.${tag} -font "Arial 9" -bg white \ 1753 1753 -textvariable [itcl::scope _view($tag)] 1754 bind $inner.${tag} <KeyPress-Return> \ 1754 bind $inner.${tag} <Return> \ 1755 [itcl::code $this camera set ${tag}] 1756 bind $inner.${tag} <KP_Enter> \ 1755 1757 [itcl::code $this camera set ${tag}] 1756 1758 blt::table $inner \ -
branches/1.3/gui/scripts/vtkviewer.tcl
r4750 r4759 2224 2224 entry $inner.${tag} -font "Arial 9" -bg white \ 2225 2225 -textvariable [itcl::scope _view($tag)] 2226 bind $inner.${tag} <KeyPress-Return> \ 2226 bind $inner.${tag} <Return> \ 2227 [itcl::code $this camera set ${tag}] 2228 bind $inner.${tag} <KP_Enter> \ 2227 2229 [itcl::code $this camera set ${tag}] 2228 2230 blt::table $inner \
Note: See TracChangeset
for help on using the changeset viewer.