ADD_SUBDIRECTORY(install)
ADD_SUBDIRECTORY(bbtk_package_creaMiniTools)
+ADD_SUBDIRECTORY(bbtk_package_creaMiniToolsBase)
#==================================
+++ /dev/null
-# ----------------------------------
-# - BBTKGEditor v 1.2 BBG BlackBox Diagram file
-# - /Users/davila/Creatis/All2/creatools_install/share/bbtk/bbs/creaMiniTools/boxes/SaveMHD-Button.bbg
-# ----------------------------------
-
-APP_START
-CATEGORY:read/write widget
-DESCRIPTION:Button that saves the input vtkImageData as a MHD file
-AUTHOR:info-team at creatis.insa-lyon.fr
-COMPLEXBOX:TRUE
-COMPLEXBOXNAME:SaveMHD-Button
-PACKAGENAME:creaMiniTools
-COMPLEXINPUTS:1
-COMPLEX_PORT
-In
--75.009417:12.908981:900.000000
-FIN_COMPLEX_PORT
-COMPLEXOUTPUTS:1
-COMPLEX_PORT
-Widget
--111.247984:-117.548664:900.000000
-FIN_COMPLEX_PORT
-BOXES:3
-BOX
-wx:CommandButton:Box00
-ISEXEC:FALSE
--121.090405:-23.795441:900.000000
--75.515405:-33.795441:900.000000
-PORT
-Label:"Save Image"
-PORT
-WinTitle:"Save Img."
-FIN_BOX
-BOX
-vtk:MetaImageWriter:Box01
-ISEXEC:FALSE
--102.332504:-77.410838:900.000000
--56.757504:-87.410838:900.000000
-FIN_BOX
-BOX
-wx:FileSelector:Box02
-ISEXEC:FALSE
--101.873769:-42.126046:900.000000
--56.298769:-52.126046:900.000000
-PORT
-OpenSave:Save
-FIN_BOX
-CONNECTIONS:4
-CONNECTION
-Box00:BoxChange:Box01:BoxExecute
-NumberOfControlPoints:0
-CONNECTION
-Box02:Out:Box01:Filename
-NumberOfControlPoints:0
-CONNECTION
-Box00:Widget:Widget:Widget
-NumberOfControlPoints:0
-CONNECTION
-In:In:Box01:In
-NumberOfControlPoints:1
--43.197277:-54.220032:900.000000
-APP_END
+++ /dev/null
-# ----------------------------------
-# - BBTKGEditor v 1.2 BBS BlackBox Script (Complex Box)
-# - /Users/davila/Creatis/All2/creatools_install/share/bbtk/bbs/creaMiniTools/boxes/SaveMHD-Button.bbs
-# ----------------------------------
-
-include std
-include itkvtk
-include wx
-include vtk
-
-define SaveMHD-Button creaMiniTools
-
-author "info-team at creatis.insa-lyon.fr"
-description "Button that saves the input vtkImageData as a MHD file"
-
-category "read/write widget"
-
-new CommandButton Box00
- set Box00.Label "Save Image"
- set Box00.WinTitle "Save Img."
-
-new MetaImageWriter Box01
-
-new FileSelector Box02
- set Box02.OpenSave Save
-
-
-connect Box00.BoxChange Box01.BoxExecute
-connect Box02.Out Box01.Filename
-
-
-# Complex input ports
-input In Box01.In " "
-
-# Complex output ports
-output Widget Box00.Widget " "
-
-endefine