]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/boxes/commandMenu.bbs
d552ae3ab1ded5475076dd389b3c91749214ac85
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / boxes / commandMenu.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.2 BBS BlackBox Script (Complex Box)
3 # - /Users/davila/Creatis/All2/creatools_install/share/bbtk/bbs/creaMiniTools/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 DevelTools
44
45
46 connect Box01.BoxChange Box05.BoxExecute
47 connect Box03.BoxChange Box04.BoxExecute
48 connect Box02.BoxChange Box06.BoxExecute
49 connect Box01.Widget Box09.Widget3
50 connect Box03.Widget Box09.Widget4
51 connect Box00.BoxChange Box07.BoxExecute
52 connect Box00.Widget Box09.Widget1
53 connect Box02.Widget Box09.Widget2
54
55
56 # Complex input ports
57
58 # Complex output ports
59 output CommandMenu Box09.Widget " "
60
61 endefine