# ---------------------------------- # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box) # - /home/davila/Creatis/creaVtk/bbtk_creaVtk_PKG/bbs/boxes/PlaneWidget_Interface.bbs # ---------------------------------- include std include itkvtk include wx include std define PlaneWidget_Interface creaVtk author "Author ??" description "Description ??" category "" new CheckBox Box00 set Box00.In "false" set Box00.Title "On/Off PlaneWidget" new Slider Box01 set Box01.In "30" set Box01.Label "true" set Box01.Max "1" set Box01.Min "100" set Box01.ReactiveOnTrack "true" set Box01.Title "Resolution" new LayoutLine Box02 set Box02.WinTitle "Plane control" new MultipleInputs Box03 set Box03.BoxProcessMode "Reactive" new LayoutTab Box04 connect Box00.Widget Box02.Widget1 connect Box01.Widget Box02.Widget2 connect Box01.BoxChange Box03.In1 connect Box00.BoxChange Box03.In2 connect Box02.Widget Box04.Widget1 # Complex input ports # Complex output ports output Widget Box04.Widget " " output Resolution Box01.Out " " output Active Box00.Out " " output boxChange Box03.BoxChange " " endefine