]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/bbs/boxes/PlaneWidget_Interface.bbs
Fist Commit And Push
[creaVtk.git] / bbtk_creaVtk_PKG / bbs / boxes / PlaneWidget_Interface.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box)
3 # - /home/davila/Creatis/creaVtk/bbtk_creaVtk_PKG/bbs/boxes/PlaneWidget_Interface.bbs
4 # ----------------------------------
5
6 include std
7 include itkvtk
8 include wx
9 include std
10
11 define PlaneWidget_Interface creaVtk
12
13 author "Author ??"
14 description "Description ??"
15
16 category "<VOID>"
17
18 new CheckBox Box00
19   set Box00.In "false"
20   set Box00.Title "On/Off PlaneWidget"
21
22 new Slider Box01
23   set Box01.In "30"
24   set Box01.Label "true"
25   set Box01.Max "1"
26   set Box01.Min "100"
27   set Box01.ReactiveOnTrack "true"
28   set Box01.Title "Resolution"
29
30 new LayoutLine Box02
31   set Box02.WinTitle "Plane control"
32
33 new MultipleInputs Box03
34   set Box03.BoxProcessMode "Reactive"
35
36 new LayoutTab Box04
37
38
39 connect Box00.Widget Box02.Widget1
40 connect Box01.Widget Box02.Widget2
41 connect Box01.BoxChange Box03.In1
42 connect Box00.BoxChange Box03.In2
43 connect Box02.Widget Box04.Widget1
44
45 # Complex input ports
46
47 # Complex output ports
48 output Widget Box04.Widget " "
49 output Resolution Box01.Out " "
50 output Active Box00.Out " "
51 output boxChange Box03.BoxChange " "
52
53
54 endefine