]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/appli/imageWriterExample.bbs
no message
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / appli / imageWriterExample.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.2 BBS BlackBox Script
3 # - /Users/davila/Creatis/All3/creatools_source/creaMiniTools/bbtk_package_creaMiniTools/bbs/appli/imageWriterExample.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include creaMaracasVisu
12 include wx
13 include vtk
14 include creaImageIO
15
16 author "Author ??"
17 description "Description ??"
18 category "<VOID>"
19
20 new ViewerNV Box03
21
22 new CommandButton Box04
23   set Box04.Label "Save   (Don't forget the .mhd extension)"
24
25 new MetaImageWriter Box05
26
27 new FileSelector Box06
28   set Box06.OpenSave "Save"
29
30 new LayoutSplit Box07
31   set Box07.Proportion 85
32
33 new ImagesChooserDialogBox Box08
34
35
36 connect Box06.Out Box05.Filename
37 connect Box03.Widget Box07.Widget1
38 connect Box04.Widget Box07.Widget2
39 connect Box04.BoxChange Box05.BoxExecute
40 connect Box08.Out Box03.In
41 connect Box08.Out Box05.In
42
43 exec Box07