]> Creatis software - creaWT.git/blob - wt/bbtk_wt_PKG/bbs/appli/exampleComboBox.bbs
2536 BBTK Feature New Normal wt-version Package
[creaWT.git] / wt / bbtk_wt_PKG / bbs / appli / exampleComboBox.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box)
3 # - /home/gonzalez/Documents/CREATOOLS/wt_library/wt/bbtk_wt_PKG/bbs/appli/exampleComboBox.bbs
4 # ----------------------------------
5
6 include std
7 include itkvtk
8 include wt
9
10 define ComplexBoxName PackageName
11
12 author "Author ??"
13 description "Description ??"
14
15 category "<VOID>"
16
17 new ComboBox Box00
18   set Box00.In "'uno' 'dos' 'tres'"
19
20 new OutputText Box01
21
22 new OutputText Box02
23
24 new LayoutLine Box03
25
26
27 connect Box00.Out Box02.In
28 connect Box00.OutString Box01.In
29 connect Box00.BoxChange Box02.BoxExecute
30 connect Box00.BoxChange Box01.BoxExecute
31 connect Box02.Widget Box03.Widget1
32 connect Box01.Widget Box03.Widget2
33 connect Box00.Widget Box03.Widget3
34
35 # Complex input ports
36
37 # Complex output ports
38
39 message    
40 exec Box03
41
42 endefine