]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/creaContoursFactory.h
*** empty log message ***
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / creaContoursFactory.h
1 #ifndef creaContoursFactory_h
2 #define creaContoursFactory_h
3
4 #include "manualContourControler.h"
5 #include "manualBaseModel.h"
6 #include "manualViewBaseContour.h"
7 #include "manualCircleControler.h"
8 #include "manualContourModelCircle.h"
9 #include "manualViewCircle.h"
10 #include "manualLineControler.h"
11 #include "manualContourModelLine.h"
12 #include "manualViewLine.h"
13 #include "manualRoiControler.h"
14 #include "manualViewRoi.h"
15 #include "manualContourModelRoi.h"
16 #include "manualViewBullEye.h"
17 #include "manualContourModelBullEye.h"
18 #include "manualViewPoints.h"
19 #include "manualRotationToolControler.h"
20 #include "manualContourModelRotationTool.h"
21 #include "manualViewRotationTool.h"
22 #include "manualContourModelPolygon.h"
23 #include "manualView3DContour.h"
24 #include "manualContour3V3DControler.h"
25
26
27 class creaMaracasVisu_EXPORT creaContoursFactory
28 {
29
30 //--------------------------- virtual ~manualBaseModel();------------------------
31 // PUBLIC METHODS & ATTS
32 //---------------------------------------------------
33
34         public:
35                 creaContoursFactory();
36                 virtual ~creaContoursFactory();
37
38                 /* Creates the controler of the contour given the number of the contour*/
39                 manualContourBaseControler* getContourControler(int typeContour);
40
41                 /* Creates the controler of the contour given the name of the contour*/
42                 manualContourBaseControler* getContourControler(std::string typeContour);
43
44                 /* Creates the model of the contour given the number of the contour*/
45                 manualBaseModel* getContourModel(int typeContour);
46
47                 /* Creates the model of the contour given the name of the contour*/
48                 manualBaseModel* getContourModel(std::string typeContour);
49
50                 /* Creates the viewer of the contour given the number of the contour*/
51                 manualViewBaseContour* getCountourView(int typeContour);
52
53                 /* Creates the viezer of the contour given the name of the contour*/
54                 manualViewBaseContour* getCountourView(std::string typeContour);                
55 };
56
57 #endif