]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/appli/manualPaint.bbs
no message
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / appli / manualPaint.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.2 BBS BlackBox Script
3 # - /Users/davila/Creatis/All2/creatools_install/share/bbtk/bbs/minitools/appli/manualPaint.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include creaMaracasVisu
12 include creaImageIO
13 include wx
14 include vtk
15
16 author "Author ??"
17 description "Description ??"
18 category "<VOID>"
19
20 new ManualPaint Box00
21   set Box00.BoxProcessMode "Always"
22
23 new ImagesChooserDialogBox Box01
24
25 new LayoutSplit Box02
26   set Box02.Orientation H
27
28 new CommandButton Box03
29   set Box03.Label "Save Image"
30
31 new MetaImageWriter Box04
32
33 new FileSelector Box05
34
35 new ViewerNV Box06
36
37 new LayoutSplit Box07
38   set Box07.Orientation V
39
40
41 connect Box01.Out Box06.In
42 connect Box00.Widget Box07.Widget1
43 connect Box03.Widget Box07.Widget2
44 connect Box06.Widget Box02.Widget2
45 connect Box07.Widget Box02.Widget1
46 connect Box03.BoxChange Box04.BoxExecute
47 connect Box05.Out Box04.Filename
48 connect Box01.Out Box04.In
49 connect Box01.Out Box00.In
50 connect Box06.BoxChange Box00.BoxExecute
51 connect Box06.wxVtkBaseView2 Box00.WxVtkBaseView1
52 connect Box06.wxVtkBaseView3 Box00.WxVtkBaseView2
53 connect Box06.wxVtkBaseView4 Box00.WxVtkBaseView3
54
55 exec Box02