# ---------------------------------- # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box) # - /home/davila/Creatis/creaTools/creatools_source/creaVtk/bbtk_creaVtk_PKG/bbs/boxes/StreamLineVisu_Interface.bbs # ---------------------------------- include std include itkvtk include wx include std define StreamLineVisu_Interface creaVtk author "Author ??" description "Description ??" category "" new LayoutLine Box01 set Box01.Orientation "V" new Slider Box03 set Box03.In "100" set Box03.Label "true" set Box03.Max "100" set Box03.Min "0" set Box03.ReactiveOnTrack "true" set Box03.Title "Opacity" new RadioButton Box04 set Box04.In "2" set Box04.In0 "Tube" set Box04.In1 "Ribbon" set Box04.In2 "Line" set Box04.Title "Form" new CheckBox Box06 set Box06.In "false" set Box06.ReactiveOnKeystroke "true" set Box06.Title "Active" new MultipleInputs Box07 set Box07.BoxProcessMode "Reactive" new Div Box08 set Box08.In2 "100" new Slider Box09 set Box09.ChangeResolution "true" set Box09.In "40" set Box09.Label "true" set Box09.Max "500" set Box09.Min "0" set Box09.ReactiveOnTrack "true" set Box09.Title "ScaleFactor" new Div Box10 set Box10.In2 "100" new LayoutLine Box12 set Box12.Orientation "H" set Box12.WinTitle "StreamLine" new LayoutTab Box16 new LayoutLine Box14 set Box14.Orientation "H" connect Box06.BoxChange Box07.In2 connect Box04.BoxChange Box07.In4 connect Box03.BoxChange Box07.In6 connect Box03.Out Box08.In1 connect Box09.Out Box10.In1 connect Box09.BoxChange Box07.In7 connect Box01.Widget Box12.Widget1 connect Box06.Widget Box01.Widget1 connect Box12.Widget Box16.Widget1 connect Box03.Widget Box14.Widget1 connect Box09.Widget Box14.Widget2 connect Box14.Widget Box01.Widget2 connect Box04.Widget Box12.Widget2 # Complex input ports input title Box12.WinTitle " " # Complex output ports output ActivePlane Box06.Out " " output TypeStreamLine Box04.Out " " output boxChange Box07.BoxChange " " output Opacity Box08.Out " " output ScaleFactor Box10.Out " " output widget Box16.Widget " " message endefine