Ignore:
Timestamp:
Jun 11, 2005, 9:56:37 PM (19 years ago)
Author:
mmc
Message:

Added a capability to MainWin? to syncCutBuffer with the
application. The VNC Java client uses the cutbuffer
instead of the selection for Copy/Paste? to desktop, and
this mechanism keeps the two in sync so Copy/Paste? works
properly. Also, added Cut/Copy/Paste? menus to the right
mouse button of various widgets.

Fixed 3D plotting to work with the vtkCutter so it works
better. Also, added support for 3D meshes in addition
to clouds. Meshes store connectivity, so they are better
at representing holes in data. Fixed the 3D plotter so
that rotate is more intuitive, and added lights so you can
see your data better at any angle.

Fixed the loader so that it can load elements with the ""
value, and so that it doesn't duplicate entries found
more than once by *.xml pattern matching.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/analyzer.tcl

    r13 r17  
    379379        }
    380380
    381         if {"" != $label} {
     381        set hidden [$xmlobj get output.$item.hide]
     382        set hidden [expr {"" != $hidden && $hidden}]
     383
     384        if {"" != $label && !$hidden} {
    382385            set haveresults 1
    383386        }
     
    396399            }
    397400
    398             if {"" != $label} {
     401            set hidden [$xmlobj get output.$item.hide]
     402            set hidden [expr {"" != $hidden && $hidden}]
     403
     404            if {"" != $label && !$hidden} {
    399405                if {![info exists _label2page($label)]} {
    400406                    set name "page[incr _pages]"
Note: See TracChangeset for help on using the changeset viewer.