]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/creaContoursFactory.h
b5ab354a2b471b75b73c5e78bcaeb350c4295cc7
[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
24 class creaMaracasVisu_EXPORT creaContoursFactory
25 {
26
27 //--------------------------- virtual ~manualBaseModel();------------------------
28 // PUBLIC METHODS & ATTS
29 //---------------------------------------------------
30
31         public:
32                 creaContoursFactory();
33                 virtual ~creaContoursFactory();
34
35                 /* Creates the controler of the contour given the number of the contour*/
36                 manualContourBaseControler* getContourControler(int typeContour);
37
38                 /* Creates the controler of the contour given the name of the contour*/
39                 manualContourBaseControler* getContourControler(std::string typeContour);
40
41                 /* Creates the model of the contour given the number of the contour*/
42                 manualBaseModel* getContourModel(int typeContour);
43
44                 /* Creates the model of the contour given the name of the contour*/
45                 manualBaseModel* getContourModel(std::string typeContour);
46
47                 /* Creates the viewer of the contour given the number of the contour*/
48                 manualViewBaseContour* getCountourView(int typeContour);
49
50                 /* Creates the viezer of the contour given the name of the contour*/
51                 manualViewBaseContour* getCountourView(std::string typeContour);                
52 };
53
54 #endif