]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs
Feature #1769 Add licence terms for all files.
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / boxes / commandMenu.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.3 BBS BlackBox Script (Complex Box)
28 # - /home/daniel/creatis/All/creatools_source/creaMiniTools/bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs
29 # ----------------------------------
30
31 include std
32 include itkvtk
33 include wx
34 include std
35
36 define CommandMenu creaMiniTools
37
38 author "Author ??"
39 description "Description ??"
40
41 category "<VOID>"
42
43 new CommandButton Box00
44   set Box00.Label "bbEditor"
45
46 new CommandButton Box01
47   set Box01.Label "bbi"
48
49 new CommandButton Box02
50   set Box02.Label "bbStudio"
51
52 new CommandButton Box03
53   set Box03.Label "Create New Project"
54
55 new ExecSystemCommand Box04
56   set Box04.In "creaNewProject &"
57
58 new ExecSystemCommand Box05
59   set Box05.In "bbi &"
60
61 new ExecSystemCommand Box06
62   set Box06.In "bbStudio &"
63
64 new ExecSystemCommand Box07
65   set Box07.In "bbEditor &"
66
67 new LayoutLine Box09
68   set Box09.Orientation H
69   set Box09.WinTitle "bbg/bbs"
70
71 new LayoutTab Box10
72
73 new LayoutLine Box11
74   set Box11.Orientation H
75   set Box11.WinTitle "C++"
76
77 new CommandButton Box12
78   set Box12.Label "Create Package BBTK"
79
80 new CommandButton Box13
81   set Box13.Label "Create Box BBTK"
82
83 new ExecSystemCommand Box14
84   set Box14.In "bbi toolsbbtk/appli/GUICreatePackage.bbs &"
85
86 new ExecSystemCommand Box15
87   set Box15.In "bbi toolsbbtk/appli/GUICreateBlackBox.bbs &"
88
89 new LayoutLine Box16
90
91 new LayoutLine Box17
92
93 new LayoutLine Box18
94
95 new LayoutLine Box19
96
97 new LayoutLine Box20
98
99 new LayoutLine Box21
100
101 new LayoutLine Box22
102   set Box22.Orientation H
103   set Box22.WinTitle "DevelTools"
104
105 new LayoutTab Box23
106
107 new CommandButton Box24
108   set Box24.Label "Plug Package"
109
110 new ExecSystemCommand Box25
111   set Box25.In "bbi toolsbbtk/appli/GUIPlugPackage.bbs &"
112
113
114 connect Box01.BoxChange Box05.BoxExecute
115 connect Box03.BoxChange Box04.BoxExecute
116 connect Box02.BoxChange Box06.BoxExecute
117 connect Box00.BoxChange Box07.BoxExecute
118 connect Box09.Widget Box10.Widget1
119 connect Box12.BoxChange Box14.BoxExecute
120 connect Box13.BoxChange Box15.BoxExecute
121 connect Box01.Widget Box17.Widget3
122 connect Box02.Widget Box17.Widget2
123 connect Box00.Widget Box17.Widget1
124 connect Box17.Widget Box09.Widget2
125 connect Box21.Widget Box11.Widget2
126 connect Box13.Widget Box21.Widget3
127 connect Box12.Widget Box21.Widget2
128 connect Box03.Widget Box21.Widget1
129 connect Box11.Widget Box23.Widget1
130 connect Box10.Widget Box22.Widget1
131 connect Box23.Widget Box22.Widget2
132 connect Box24.Widget Box21.Widget4
133 connect Box24.BoxChange Box25.BoxExecute
134
135
136 # Complex input ports
137
138 # Complex output ports
139 output CommandMenu Box22.Widget " "
140
141 endefine