]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/bbs/appli/exampleScreenShot.bbs
34ea539763f02dcaed9905b51ad2583bf50330cf
[creaVtk.git] / bbtk_creaVtk_PKG / bbs / appli / exampleScreenShot.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script
3 # - /tmpEED/creaTools/creatools_source/creaVtk/bbtk_creaVtk_PKG/bbs/appli/exampleScreenShot.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include creaVtk
12 include vtk
13 include creaMaracasVisu
14 include wx
15
16 author "Author ??"
17 description "Description ??"
18 category "<VOID>"
19
20 new creaVtk:ScreenShot Box00
21   set Box00.FileName "ScreenShot.png"
22
23 new vtk:LoadHola Box01
24
25 new creaMaracasVisu:ViewerNV Box02
26
27 new wx:LayoutSplit Box03
28   set Box03.Orientation "H"
29
30 new wx:CommandButton Box04
31   set Box04.Label "ScreenShot"
32
33
34 connect Box01.Out Box02.In
35
36 connect Box02.Renderer1 Box00.vtkRenderer
37
38 connect Box02.Widget Box03.Widget2
39
40 connect Box04.Widget Box03.Widget1
41
42 connect Box04.BoxChange Box00.BoxExecute
43
44
45
46 # Complex input ports
47 exec Box03