Changeset 5099


Ignore:
Timestamp:
Mar 8, 2015, 3:16:27 AM (9 years ago)
Author:
ldelgass
Message:

whitespace

File:
1 edited

Legend:

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

    r5098 r5099  
    193193    $_dispatcher register !play
    194194    $_dispatcher dispatch $this !play "[itcl::code $this flow next]; list"
    195    
     195
    196196    # Draw legend event
    197197    $_dispatcher register !goto
     
    234234        $this-qy                $_view(-qy)
    235235        $this-qz                $_view(-qz)
    236         $this-zoom              $_view(-zoom)   
     236        $this-zoom              $_view(-zoom)
    237237        $this-xpan              $_view(-xpan)
    238238        $this-ypan              $_view(-ypan)
     
    364364        0,0 $itk_component(3dview) -fill both -reqwidth $w \
    365365        1,0 $itk_component(legend) -fill x
    366     blt::table configure $itk_component(plotarea) r1 -resize none   
     366    blt::table configure $itk_component(plotarea) r1 -resize none
    367367    # Create flow controls...
    368368
     
    11101110# Called automatically whenever something changes that affects the data
    11111111# in the widget.  Clears any existing data and rebuilds the widget to
    1112 # display new data. 
     1112# display new data.
    11131113#
    11141114itcl::body Rappture::FlowvisViewer::Rebuild {} {
     
    11231123    # Turn on buffering of commands to the server.  We don't want to
    11241124    # be preempted by a server disconnect/reconnect (which automatically
    1125     # generates a new call to Rebuild). 
     1125    # generates a new call to Rebuild).
    11261126    StartBufferingCommands
    11271127
     
    26672667        append cmd " -corner1 {$info(corner1)} "
    26682668        append cmd " -corner2 {$info(corner2)}\n"
    2669     }   
     2669    }
    26702670    append cmd "$tag data follows $nbytes $extents\n"
    26712671    return $cmd
     
    28572857    # We wait here for either
    28582858    #  1) the png to be delivered or
    2859     #  2) timeout or 
     2859    #  2) timeout or
    28602860    #  3) user cancels the operation.
    28612861    tkwait variable $var
     
    29092909    grab set $inner
    29102910    focus $inner.cancel
    2911    
     2911
    29122912    flow duration
    29132913    flow speed
     
    29212921    set start [clock seconds]
    29222922    SendCmd "flow video $token -width $w -height $h -numframes $nframes "
    2923    
     2923
    29242924    $popup activate $widget below
    29252925    update idletasks
     
    29272927    # We wait here until
    29282928    #  1. the movie is delivered or
    2929     #  2. we've timed out or 
     2929    #  2. we've timed out or
    29302930    #  3. the user has canceled the operation.b
    29312931    tkwait variable $var
Note: See TracChangeset for help on using the changeset viewer.