]> Creatis software - creaImageIO.git/blob - bbtk/src/bbcreaImageIOImagesChooserDialogBox.xml
*** empty log message ***
[creaImageIO.git] / bbtk / src / bbcreaImageIOImagesChooserDialogBox.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!--==========================================================================
3    STARTS THE DESCRIPTION OF THE BLACK BOX -->
4 <blackbox name="ImagesChooserDialogBox">
5   <!--========================================================================
6     THE BOX DOCUMENTATION -->
7   <author>cervenansky.frederic@creatis.insa-lyon.fr</author>
8   <description>
9     ImagesChooserDialogBox is a simple application to select file(s) or directory or data from Gimmick database and display them. It handles DICOM, jpg, tif, png, bmp and mhd.
10   </description>
11   <category>image;reader;dicom;</category>
12
13   <!--========================================================================
14     #include directives to be put in the .h generated
15     There must be one tag per file to include -->
16   <include>creaImageIOWxSimpleDlg.h</include>
17   <!--========================================================================
18     INPUTS/OUTPUTS DECLARATION -->
19
20   <input name="Title" type="std::string" description="Title of the dialog"/>
21   <typedef>
22     <PRE>
23       typedef std::vector<vtkImageData*> OutputImagesType;</PRE>
24   </typedef>
25
26   <output name="Out" type="OutputImagesType" description="The selected images"/>
27   
28   <!--========================================================================
29     PROCESS section -->
30
31   <process>
32     <PRE>
33       creaImageIO::WxSimpleDlg dlg(0,crea::std2wx(bbGetInputTitle()),"localdatabase_Descriptor.dscp","Local Database");
34       dlg.ShowModal();
35       bbSetOutputOut( dlg.getImagesSelected());
36     </PRE>
37   </process>
38
39   <!--======================================================================
40    CONSTRUCTORS / DESTRUCTORS (OPTIONAL) -->
41
42    
43   <defaultValues>
44   <PRE>
45
46   </PRE>
47   </defaultValues>
48
49    
50
51 </blackbox>
52