Changeset 4533
- Timestamp:
- Jul 17, 2014 11:48:21 AM (9 years ago)
- Location:
- branches/1.3
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3/gui/scripts/vtkheightmapviewer.tcl
r4449 r4533 1421 1421 set bool $_settings($what) 1422 1422 set numColors [expr $_settings(-numisolines) + 1] 1423 # FIXME: don't use StartBufferingCommands1424 1423 StartBufferingCommands 1425 1424 if {$bool} { … … 1920 1919 Rappture::Combobox $inner.colormap -width 10 -editable no 1921 1920 } 1922 1923 1921 $inner.colormap choices insert end [GetColormapList -includeNone] 1924 1922 $itk_component(colormap) value $_settings(-colormap) … … 2294 2292 AdjustSetting -stretchtofit 2295 2293 } 2296 2297 2294 if { $_currentNumIsolines != $style(-levels) } { 2298 2295 set _currentNumIsolines $style(-levels) -
branches/1.3/gui/scripts/vtkisosurfaceviewer.tcl
r4512 r4533 1359 1359 SendCmd "axis labels all $bool" 1360 1360 } 1361 "-xgrid" - "-ygrid" - "-zgrid" {1362 set axis [string tolower [string range $what 1 1]]1363 set bool $_settings($what)1364 SendCmd "axis grid $axis $bool"1365 }1366 1361 "-axismode" { 1367 1362 set mode [$itk_component(axisMode) value] … … 1552 1547 SendCmd "cutplane slice ${axis} ${pos}" 1553 1548 set _cutplanePending 0 1549 } 1550 "-xgrid" - "-ygrid" - "-zgrid" { 1551 set axis [string tolower [string range $what 1 1]] 1552 set bool $_settings($what) 1553 SendCmd "axis grid $axis $bool" 1554 1554 } 1555 1555 default { -
branches/1.3/tester/scripts/Makefile.in
r3471 r4533 18 18 19 19 FILES = \ 20 $(srcdir)/auto.tcl \ 20 21 $(srcdir)/main.tcl \ 21 22 $(srcdir)/legend.tcl \ -
branches/1.3/tester/scripts/main.tcl
r3177 r4533 17 17 # USAGE: tester.tcl ?-tool tool.xml? ?-testdir tests? 18 18 # ====================================================================== 19 # AUTHOR :Ben Rafferty, Purdue University19 # AUTHORS: Michael McLennan, Ben Rafferty, Purdue University 20 20 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 21 21 # … … 136 136 set installdir [file dirname [file normalize $params(-tool)]] 137 137 set xmlobj [Rappture::library $params(-tool)] 138 set ToolObj [Rappture::Tool ::#auto $xmlobj $installdir] 138 set TaskObj [Rappture::Task ::#auto $xmlobj $installdir] 139 140 # tasks in the tester run quietly and discard results 141 $TaskObj configure -jobstats "" -resultdir "" 142 139 143 set DiffShow "" ;# used to track which diff objects are being displayed 140 144 … … 296 300 set testtree [.pw pane 0].tree 297 301 foreach file [glob -nocomplain -directory $params(-testdir) *.xml] { 298 set testobj [Rappture::Tester::Test ::#auto $T oolObj $file]302 set testobj [Rappture::Tester::Test ::#auto $TaskObj $file] 299 303 if {[$testobj getTestInfo test.label] eq ""} { 300 304 puts stderr "ERROR: Missing test label in $file"
Note: See TracChangeset
for help on using the changeset viewer.