]> Creatis software - bbtk.git/blobdiff - packages/wxvtk/bbs/boxes/bbSimpleIsoSurfaceViewer.bbs
no message
[bbtk.git] / packages / wxvtk / bbs / boxes / bbSimpleIsoSurfaceViewer.bbs
index 5d38329391aeede7bd2004f48df984f84728c2f8..7d617f3ea7f741d4db5e900db13c6df8e2f825f9 100644 (file)
@@ -3,9 +3,9 @@ load wx
 load wxvtk 
 load vtk
 
-include wxvtk/boxes/bbIsoSurfaceWithControls
+include wxvtk/boxes/bbIsoSurfaceWidget
 
-define SimpleIsoSurfaceViewer
+define SimpleIsoSurfaceViewer wxvtk
 
  description "Simple viewer of an iso-surface of an image"
  author "laurent.guigues@creatis.insa-lyon.fr"
@@ -14,13 +14,13 @@ define SimpleIsoSurfaceViewer
  new LayoutSplit main
  new Viewer3D viewer
 
- new IsoSurfaceWithControls surface
+ new IsoSurfaceWidget surface
 
  set surface.Isovalue 10
  set surface.Title "Surface"
  set surface.Vertical 0
 
- connect viewer.Widget main.Widget1
+ connect viewer.Widget  main.Widget1
  connect surface.Widget main.Widget2 
 
  # WE NEED A MultipleInputs BOX TO CONNECT BOTH 
@@ -29,19 +29,20 @@ define SimpleIsoSurfaceViewer
  new MultipleInputs refresh
 
   
- connect surface.Out viewer.In1
+ connect surface.Out       viewer.In1
  connect surface.BoxChange refresh.In1
- connect refresh.Out viewer.BoxExecute
+ connect refresh.Out       viewer.BoxExecute
 
  set main.Proportion 80
 
- input In surface.In "Input image"
output Widget main.Widget "Widget"
- input WinTitle main.WinTitle "Title of the window"
- input WinWidth main.WinWidth "Width of the window"
- input WinHeight main.WinHeight "Height of the window"
- input BoxExecute refresh.In2 "Execute the box"
+ input In         surface.In     "Input image"
input WinDialog  main.WinDialog "Dialog mode"
+ input WinTitle   main.WinTitle  "Title of the window"
+ input WinWidth   main.WinWidth  "Width of the window"
+ input WinHeight  main.WinHeight "Height of the window"
+ input BoxExecute refresh.In2    "Execute the box"
 
+ output Widget main.Widget "Widget"
  # EXECUTING THE COMPLEX BOX EXECUTES the main
  exec main
 endefine