# ---------------------------------- # - BBTKGEditor v 1.2 BBS BlackBox Script (Complex Box) # - /Users/davila/Creatis/All3/creatools_source/creaMiniTools/bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs # ---------------------------------- include std include itkvtk include wx include std define CommandMenu creaMiniTools author "Author ??" description "Description ??" category "" new CommandButton Box00 set Box00.Label "bbEditor" new CommandButton Box01 set Box01.Label "bbi" new CommandButton Box02 set Box02.Label "bbStudio" new CommandButton Box03 set Box03.Label "Create New Project" new ExecSystemCommand Box04 set Box04.In "creaNewProject &" new ExecSystemCommand Box05 set Box05.In "bbi &" new ExecSystemCommand Box06 set Box06.In "bbStudio &" new ExecSystemCommand Box07 set Box07.In "bbEditor &" new LayoutLine Box09 set Box09.WinTitle "bbg/bbs" new LayoutTab Box10 set Box10.WinTitle "DevelTools" new LayoutLine Box11 set Box11.WinTitle "C++" new CommandButton Box12 set Box12.Label "Create Package BBTK" new CommandButton Box13 set Box13.Label "Create Box BBTK" new ExecSystemCommand Box14 set Box14.In "bbi toolsbbtk/appli/GUICreatePackage.bbs &" new ExecSystemCommand Box15 set Box15.In "bbi toolsbbtk/appli/GUICreateBlackBox.bbs &" connect Box01.BoxChange Box05.BoxExecute connect Box03.BoxChange Box04.BoxExecute connect Box02.BoxChange Box06.BoxExecute connect Box01.Widget Box09.Widget3 connect Box00.BoxChange Box07.BoxExecute connect Box00.Widget Box09.Widget1 connect Box02.Widget Box09.Widget2 connect Box09.Widget Box10.Widget1 connect Box11.Widget Box10.Widget2 connect Box03.Widget Box11.Widget1 connect Box12.Widget Box11.Widget2 connect Box13.Widget Box11.Widget3 connect Box12.BoxChange Box14.BoxExecute connect Box13.BoxChange Box15.BoxExecute # Complex input ports # Complex output ports output CommandMenu Box10.Widget " " endefine