]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs
df5545a3ebf385a0227d1a5c53b514ecd17ad92f
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / boxes / commandMenu.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.2 BBS BlackBox Script (Complex Box)
3 # - /Users/davila/Creatis/All3/creatools_source/creaMiniTools/bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs
4 # ----------------------------------
5
6 include std
7 include itkvtk
8 include wx
9 include std
10
11 define CommandMenu creaMiniTools
12
13 author "Author ??"
14 description "Description ??"
15
16 category "<VOID>"
17
18 new CommandButton Box00
19   set Box00.Label "bbEditor"
20
21 new CommandButton Box01
22   set Box01.Label "bbi"
23
24 new CommandButton Box02
25   set Box02.Label "bbStudio"
26
27 new CommandButton Box03
28   set Box03.Label "Create New Project"
29
30 new ExecSystemCommand Box04
31   set Box04.In "creaNewProject &"
32
33 new ExecSystemCommand Box05
34   set Box05.In "bbi &"
35
36 new ExecSystemCommand Box06
37   set Box06.In "bbStudio &"
38
39 new ExecSystemCommand Box07
40   set Box07.In "bbEditor &"
41
42 new LayoutLine Box09
43   set Box09.WinTitle "bbg/bbs"
44
45 new LayoutTab Box10
46   set Box10.WinTitle "DevelTools"
47
48 new LayoutLine Box11
49   set Box11.WinTitle "C++"
50
51 new CommandButton Box12
52   set Box12.Label "Create Package BBTK"
53
54 new CommandButton Box13
55   set Box13.Label "Create Box BBTK"
56
57 new ExecSystemCommand Box14
58   set Box14.In "bbi toolsbbtk/appli/GUICreatePackage.bbs &"
59
60 new ExecSystemCommand Box15
61   set Box15.In "bbi toolsbbtk/appli/GUICreateBlackBox.bbs &"
62
63
64 connect Box01.BoxChange Box05.BoxExecute
65 connect Box03.BoxChange Box04.BoxExecute
66 connect Box02.BoxChange Box06.BoxExecute
67 connect Box01.Widget Box09.Widget3
68 connect Box00.BoxChange Box07.BoxExecute
69 connect Box00.Widget Box09.Widget1
70 connect Box02.Widget Box09.Widget2
71 connect Box09.Widget Box10.Widget1
72 connect Box11.Widget Box10.Widget2
73 connect Box03.Widget Box11.Widget1
74 connect Box12.Widget Box11.Widget2
75 connect Box13.Widget Box11.Widget3
76 connect Box12.BoxChange Box14.BoxExecute
77 connect Box13.BoxChange Box15.BoxExecute
78
79
80 # Complex input ports
81
82 # Complex output ports
83 output CommandMenu Box10.Widget " "
84
85 endefine