]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsKernelEditorGraphic/wxVtkSceneManager.h
38552dbe7fe0e3ff0860a1168fb190097becddaa
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / wxVtkSceneManager.h
1 /*=========================================================================                                                                               
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31
32
33 /**
34 *  \file 
35 *  \brief Class bbtk::BlackBox : abstract black-box interface. 
36 */
37
38 /**
39 * \class bbtk::wxVtkSceneManager
40 * \brief 
41 */
42
43 #ifndef __wxVtkSceneManager_h__
44 #define __wxVtkSceneManager_h__
45
46 //Includes same project
47 #include "GObjectsMVCFactory.h"
48 #include "Observer.h"
49 #include "GPortModel.h"
50 #include "vtkGPortView.h"
51 #include "GConnectorView.h"
52
53 //Includes bbtk
54 #include <bbtkBlackBoxInputDescriptor.h>
55 #include <bbtkBlackBoxDescriptor.h>
56
57 //Includes creaMaracasVisu
58 #include <wxVtk3DBaseView.h>
59 #include <InteractorStyleMaracas.h>
60 #include <vtkInteractorStyleBaseView2D.h>
61 #include <manualContourControler.h>
62 #include <manualContourModel.h>
63
64 //Includes vtk
65 #include <vtkRenderWindow.h>
66 #include <vtkRenderWindowInteractor.h>
67 #include <vtkRenderer.h>
68 #include <vtkInteractorStyleImage.h>
69
70 #include <vtkVectorText.h>
71 #include <vtkLinearExtrusionFilter.h>
72
73 //Includes std
74 #include <iostream>
75 #include <map>
76
77
78 namespace bbtk
79 {
80
81         class wxVtkSceneManager : public InteractorStyleMaracas , public Observer
82         {
83         public: 
84                 wxVtkSceneManager(wxDropTarget *parent, wxVtk3DBaseView *baseView, int id);
85                 ~wxVtkSceneManager();
86
87                 void configureBaseView();
88                 void createGBlackBox(int x, int y,std::string packageName, std::string boxName);
89                 void createGPort(int portType, int posinBox,GBlackBoxModel *blackBox);
90                 void createGInputPort(int portType, int posinBox,GBlackBoxModel *blackBox, BlackBoxInputDescriptor *desc);
91                 void createGOutputPort(int portType, int posinBox,GBlackBoxModel *blackBox, BlackBoxOutputDescriptor *desc);
92                 void createGConnector(GPortModel* startPort);
93
94                 void registerController(InteractorStyleMaracas *param);
95
96                 vtkRenderWindow* getRenderWindow();
97                 vtkRenderer* getRenderer();
98
99                 void disconnectDrop();
100                 
101                 virtual bool OnMouseMove();
102
103                 virtual void update(int idController,int command);
104                 
105         private:
106
107                 int _id;
108                 wxVtk3DBaseView *_baseView;
109
110                 std::vector<GObjectController*> _objects;
111                 std::map<int,GObjectController*> _controllers;
112
113         protected:
114
115         };
116
117
118 }
119 // namespace bbtk
120 #endif
121