]> Creatis software - creaWT.git/blob - wt/bbtk_wt_PKG/bbs/appli/exampleRadioButton.bbs
72fd69a187aff4b134311de974242ec87baf4c52
[creaWT.git] / wt / bbtk_wt_PKG / bbs / appli / exampleRadioButton.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/exampleRadioButton.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 RadioButton Box00
18   set Box00.In1 "0"
19   set Box00.In2 "1"
20   set Box00.In3 "2"
21   set Box00.In4 "3"
22   set Box00.In5 "4"
23   set Box00.Title "example"
24
25 new OutputText Box01
26
27 new LayoutLine Box02
28
29
30 connect Box00.Widget Box02.Widget1
31 connect Box01.Widget Box02.Widget2
32 connect Box00.BoxChange Box01.BoxExecute
33 connect Box00.Out Box01.In
34
35 # Complex input ports
36
37 # Complex output ports
38
39 message    
40 exec Box02
41
42 endefine