]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuILPDwithImage._h_
7b9e126698bf0fb2b0a7b18e64e171ea15dc8e66
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuILPDwithImage._h_
1 #ifdef _USE_WXWIDGETS_
2 #ifndef __bbmaracasvisuILPDwithImage_h_INCLUDED__
3 #define __bbmaracasvisuILPDwithImage_h_INCLUDED__
4 #include "bbtkWxBlackBox.h"
5
6 namespace bbmaracasvisu
7 {
8
9 class /*BBTK_EXPORT*/ ILPDwithImage
10  : 
11    public bbtk::WxBlackBox
12 {
13   BBTK_BLACK_BOX_INTERFACE(ILPDwithImage,bbtk::WxBlackBox);
14 //==================================================================
15 /// User callback called in the box contructor
16 virtual void bbUserConstructor();
17 /// User callback called in the box copy constructor
18 virtual void bbUserCopyConstructor();
19 /// User callback called in the box destructor
20 virtual void bbUserDestructor();
21 //==================================================================
22   BBTK_DECLARE_OUTPUT(LstFileName,std::vector <std::string>);
23   BBTK_DECLARE_OUTPUT(Type,int);
24   BBTK_PROCESS(Process);
25   void Process();
26   BBTK_CREATE_WIDGET(CreateWidget);
27   void CreateWidget();
28
29 private:
30         std::vector <std::string> lstStringFileNameTMP;
31
32
33 };
34
35 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ILPDwithImage,bbtk::WxBlackBox);
36 BBTK_NAME("ILPDwithImage");
37 BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr");
38 BBTK_DESCRIPTION("Interface list patient DICOM with Image");
39 BBTK_CATEGORY("read/write");
40   BBTK_OUTPUT(ILPDwithImage,LstFileName,"List of files names", std::vector <std::string> ,"");
41   BBTK_OUTPUT(ILPDwithImage,Type,"Type of image (default -999) -999=Unkown -1=lst-ILPD  0=Maracas-Raw  100=Maracas-Dicom  200=Maracas-lstRaw 300=Maracas-lstAsciiRaw",int,"");
42 BBTK_END_DESCRIBE_BLACK_BOX(ILPDwithImage);
43 }
44 // EO namespace bbmaracasvisu
45
46 #endif // __bbmaracasvisuILPDwithImage_h_INCLUDED__
47 #endif // _USE_WXWIDGETS_
48