# ---------------------------------- # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box) # - /home/davila/Creatis/All-Vtk_5-10-1/creatools_source/creaMaracasVisu/bbtk/bbs/boxes/ContourControlPoints_Interface.bbs # ---------------------------------- include std include itkvtk include wx include std define ContourControlPoints_Interface creaMaracasVisu author "Author ??" description "Description ??" category "" new CheckBox Box00 set Box00.In "false" set Box00.ReactiveOnKeystroke "1" set Box00.Title "Active" set Box00.WinTitle "hola" new LayoutLine Box01 set Box01.WinTitle "Manual Ruler" new CheckBox Box02 set Box02.In "true" set Box02.ReactiveOnKeystroke "1" set Box02.Title "Close/Open" set Box02.WinTitle "hola" new CheckBox Box04 set Box04.In "true" set Box04.ReactiveOnKeystroke "1" set Box04.Title "Visible" set Box04.WinTitle "hola" new MultipleInputs Box10 set Box10.BoxProcessMode "Reactive" connect Box00.Widget Box01.Widget1 connect Box02.Widget Box01.Widget2 connect Box04.Widget Box01.Widget3 connect Box00.BoxChange Box10.In1 connect Box02.BoxChange Box10.In2 connect Box04.BoxChange Box10.In3 # Complex input ports # Complex output ports output Active Box00.Out " " output Widget Box01.Widget " " output OpenClose Box02.Out " " output Visible Box04.Out " " output BoxChange Box10.Out " " endefine