]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniToolsBase/bbs/boxes/registrationMenu.bbs
Feature #1769 Add licence terms for all files.
[creaMiniTools.git] / bbtk_package_creaMiniToolsBase / bbs / boxes / registrationMenu.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 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 # ----------------------------------
27 # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box)
28 # - /Users/davila/Creatis/All5/creatools_source/creaMiniTools/bbtk_package_creaMiniToolsBase/bbs/boxes/registrationMenu.bbs
29 # ----------------------------------
30
31 include std
32 include itkvtk
33 include wx
34 include std
35
36 define RegistrationMenu creaMiniToolsBase
37
38 author "Author ??"
39 description "Description ??"
40
41 category "<VOID>"
42
43 new CommandButton Box00
44   set Box00.Label "Registration 2D"
45
46 new CommandButton Box01
47   set Box01.Label "Registration 3D 1 Point"
48
49 new CommandButton Box02
50   set Box02.Label "Registration 3D 2 Points"
51
52 new CommandButton Box03
53   set Box03.Label "Registration 3D 3 Points"
54
55 new ExecSystemCommand Box04
56   set Box04.In "bbi PackRecalage/appli/Recalage2D.bbs &"
57
58 new ExecSystemCommand Box05
59   set Box05.In "bbi PackRecalage/appli/ExampleRecalage3D1Point.bbs &"
60
61 new ExecSystemCommand Box06
62   set Box06.In "bbi PackRecalage/appli/ExampleRecalage3D2Points.bbs &"
63
64 new ExecSystemCommand Box07
65   set Box07.In "bbi PackRecalage/appli/ExampleRecalage3D3Points.bbs &"
66
67 new CommandButton Box10
68   set Box10.Label "Registration 3D"
69
70 new ExecSystemCommand Box11
71   set Box11.In "bbi PackRecalage/appli/ExampleReSlice3D.bbs &"
72
73 new LayoutTab Box13
74   set Box13.WinTitle "1 Image"
75
76 new LayoutTab Box14
77
78 new LayoutLine Box15
79   set Box15.Orientation "H"
80   set Box15.WinTitle "Registration"
81
82 new LayoutLine Box16
83   set Box16.WinTitle "1 Image"
84
85 new LayoutLine Box17
86   set Box17.WinTitle "2 Images"
87
88
89 connect Box00.BoxChange Box04.BoxExecute
90 connect Box01.BoxChange Box05.BoxExecute
91 connect Box02.BoxChange Box06.BoxExecute
92 connect Box03.BoxChange Box07.BoxExecute
93 connect Box10.BoxChange Box11.BoxExecute
94 connect Box14.Widget Box15.Widget1
95 connect Box13.Widget Box15.Widget2
96 connect Box16.Widget Box14.Widget1
97 connect Box02.Widget Box17.Widget2
98 connect Box03.Widget Box17.Widget3
99 connect Box17.Widget Box13.Widget1
100 connect Box10.Widget Box16.Widget2
101 connect Box01.Widget Box17.Widget1
102 connect Box00.Widget Box16.Widget1
103
104 # Complex input ports
105
106 # Complex output ports
107 output widget Box15.Widget " "
108
109
110 endefine