# ---------------------------------- # - BBTKGEditor v 1.2 BBS BlackBox Script (Complex Box) # - /Users/davila/Creatis/All3/creatools_source/bbtk/packages/toolsbbtk/bbs/boxes/imageVtkPropertiesWidget.bbs # ---------------------------------- include std include itkvtk include itk include wx define ImageVtkPropertiesWidget toolsbbtk author "Author ??" description "Description ??" category "" new ImageProperties Box00 new OutputText Box02 set Box02.Title "Dimension" new OutputText Box14 set Box14.Title "Index" new LayoutLine Box15 set Box15.WinTitle "Image Properties" new OutputText Box17 set Box17.Title "Size" new OutputText Box20 set Box20.Title "Spacing" new OutputText Box22 set Box22.Title "TypeName" new OutputText Box26 set Box26.Title "Min Max" connect Box00.Dimension Box02.In connect Box00.Index Box14.In connect Box00.Size Box17.In connect Box00.TypeName Box22.In connect Box00.MinMax Box26.In connect Box00.Spacing Box20.In connect Box02.Widget Box15.Widget1 connect Box14.Widget Box15.Widget2 connect Box17.Widget Box15.Widget3 connect Box20.Widget Box15.Widget4 connect Box22.Widget Box15.Widget5 connect Box26.Widget Box15.Widget6 # Complex input ports input in Box00.In " " # Complex output ports output widget Box15.Widget " " output Dimensions Box00.Dimension " " output Index Box00.Index " " output MinMax Box00.MinMax " " output Size Box00.Size " " output Spacing Box00.Spacing " " output TypeName Box00.TypeName " " endefine