]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGObjectView.h
2f6e14ded6de95ef8ba5d200384951546a9581d9
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGObjectView.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::vtkGObjectView : abstract black-box interface. 
36 */
37
38 /****
39 * Design and Developpement of BBTK GEditor
40 * Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
41 * RaC - 2010
42 ****/
43
44 #ifndef __vtkGObjectView_h__
45 #define __vtkGObjectView_h__
46
47 //Includes same project
48 #include "GlobalConstants.h"
49 #include "GObjectModel.h"
50 #include "Observer.h"
51
52 //Includes creaMaracasVisu
53 #include <wxVtkBaseView.h>
54 #include <vtkInteractorStyleBaseView.h>
55
56 //Includes vtk
57 #include <vtkRenderer.h>
58 #include "vtkConeSource.h"
59 #include "vtkPolyDataMapper.h"
60 #include "vtkActor.h"
61
62
63 //Includes std
64 #include <iostream>
65
66
67 namespace bbtk
68 {
69
70         class vtkGObjectView : public Observer
71         {
72
73         public: 
74
75                 //Constructors
76                 vtkGObjectView();
77                 ~vtkGObjectView();
78                 
79                 //Public methods
80
81                 void setModel(GObjectModel *model);
82                 void setBaseView(wxVtkBaseView* baseView);
83                 void initVtkObjects();
84                 
85                 void setStartDragging(bool param);
86
87                 void setState(int state);
88                 int getState();
89
90                 // Method to force a vtk refresh to the list of controllers of the wxVtkBaseView
91                 void setRefreshWaiting();
92                 
93                 virtual bool isPointInside(int X,int Y);
94                 virtual void moveObject(int X, int Y);
95
96                 virtual void removeFromScene();
97
98                 virtual void update(int idController,int command);              
99                 
100         private:
101
102                 //Private Attributes
103                 bool _isStartDragging;
104
105                 //Makes a difference between the first point clicked and the new position, in order to move the selected objects
106                 double dragDifX;
107                 double dragDifY;
108
109
110                 //Private Methods
111                 
112         protected:
113
114                 //Protected Attributes
115                 
116                 wxVtkBaseView           * _baseView;
117                 GObjectModel            * _model;
118                 vtkActor                        * _borderObjectActor;
119                 vtkActor                        * _fillObjectActor;
120                 vtkPolyDataMapper       * _fillPolyMapper;
121                 vtkPolyDataMapper       * _borderPolyMapper;
122
123                 vtkPoints                       *_pts;
124
125                 // State of the object (See GlobalConstants.h)
126                 int  _state;
127                 
128                 //Protected Methods
129                 virtual void createVtkObjects();
130                 virtual void addVtkActors();
131                 virtual void removeVtkActors();
132                 virtual void updateColors();
133         };
134
135
136 }
137 // namespace bbtk
138 #endif
139