]> Creatis software - bbtk.git/blob - packages/toolsbbtk/bbs/boxes/imageVtkPropertiesWidget.bbs
5272b3b4761f58735f769c5270f9fadabb7a542e
[bbtk.git] / packages / toolsbbtk / bbs / boxes / imageVtkPropertiesWidget.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box)
3 # - /home/davila/Creatis/creaTools/creatools_source/bbtk/packages/toolsbbtk/bbs/boxes/imageVtkPropertiesWidget.bbs
4 # ----------------------------------
5
6 include std
7 include itkvtk
8 include wx
9 include vtk
10
11 define ImageVtkPropertiesWidget toolsbbtk
12
13 author "Author ??"
14 description "Description ??"
15
16 category "<VOID>"
17
18 new OutputText Box02
19   set Box02.Title "Dimensions"
20
21 new OutputText Box17
22   set Box17.Title "Size"
23
24 new OutputText Box20
25   set Box20.Title "Spacing"
26
27 new OutputText Box22
28   set Box22.Title "TypeName"
29
30 new OutputText Box26
31   set Box26.Title "Min Max"
32
33 new ImageVtkProperties Box09
34
35 new OutputText Box10
36   set Box10.Title "Components"
37
38 new LayoutLine Box11
39   set Box11.WinTitle "Image properties"
40
41 new OutputText Box13
42   set Box13.Title "Name"
43
44
45 connect Box09.Components Box10.In
46 connect Box09.MinMax Box26.In
47 connect Box09.Size Box17.In
48 connect Box09.Spacing Box20.In
49 connect Box09.TypeName Box22.In
50 connect Box02.Widget Box11.Widget1
51 connect Box10.Widget Box11.Widget2
52 connect Box17.Widget Box11.Widget3
53 connect Box20.Widget Box11.Widget4
54 connect Box22.Widget Box11.Widget5
55 connect Box26.Widget Box11.Widget6
56 connect Box09.Dimension Box02.In
57 connect Box13.Widget Box11.Widget7
58
59 # Complex input ports
60 input in Box09.In " "
61 input FileName Box13.In " "
62
63 # Complex output ports
64 output widget Box11.Widget " "
65 output Dimensions Box09.Dimension " "
66 output MinMax Box09.MinMax " "
67 output Size Box09.Size " "
68 output Spacing Box09.Spacing " "
69 output TypeName Box09.TypeName " "
70
71
72 endefine