]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/bbtk_mySamplePackage_PKG/bbs/appli/Sample_BoxVtkPipeline.bbs
6c535994dc2638e773913d8d219ae41a620beeaf
[crea.git] / appli / creaNewProject / NewProject / bbtk_mySamplePackage_PKG / bbs / appli / Sample_BoxVtkPipeline.bbs
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
7 #  This software is governed by the CeCILL-B license under French law and 
8 #  abiding by the rules of distribution of free software. You can  use, 
9 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
10 #  license as circulated by CEA, CNRS and INRIA at the following URL 
11 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
12 #  or in the file LICENSE.txt.
13 #
14 #  As a counterpart to the access to the source code and  rights to copy,
15 #  modify and redistribute granted by the license, users are provided only
16 #  with a limited warranty  and the software's author,  the holder of the
17 #  economic rights,  and the successive licensors  have only  limited
18 #  liability. 
19 #
20 #  The fact that you are presently reading this means that you have had
21 #  knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------ */ 
23
24 # ----------------------------------
25 # - BBTKGEditor v 1.2 BBS BlackBox Script
26 # - /Users/davila/Creatis/All2/creatools_source/crea/appli/creaNewProject/NewProject/bbtk_mySamplePackage_PKG/bbs/appli/Sample_BoxVtkPipeline.bbs
27 # ----------------------------------
28
29 # BBTK GEditor Script
30 # ----------------------
31
32 include std
33 include itkvtk
34 include mySamplePackage
35 include vtk
36 include creaMaracasVisu
37 include wx
38
39 author "Author ??"
40 description "Description ??"
41 category "<VOID>"
42
43 new mySampleBoxWithVTK Box00
44   set Box00.Lower 1000
45   set Box00.Upper 2000
46
47 new LoadHola Box01
48
49 new ViewerNV Box02
50   set Box02.nTypeView "0"
51
52 new ViewerNV Box03
53   set Box03.nTypeView "0"
54
55 new LayoutSplit Box04
56   set Box04.Orientation H
57
58
59 connect Box01.Out Box00.In
60 connect Box00.Out Box03.In
61 connect Box02.Widget Box04.Widget1
62 connect Box03.Widget Box04.Widget2
63 connect Box01.Out Box02.In
64
65 exec Box04