]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGObjectView.cxx
Implemented deleting of boxes from the scene....
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGObjectView.cxx
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 *  \file 
33 *  \brief Class bbtk::vtkGObjectView 
34 */
35
36
37 #include "vtkGObjectView.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44         vtkGObjectView::vtkGObjectView()
45         {
46                 _baseView=NULL;
47                 _borderObjectActor=NULL;
48                 _fillObjectActor=NULL;
49                 _isStartDragging=false;
50                 
51                 _state = NOTHING_HAPPENS;
52         }
53
54         //=========================================================================
55         vtkGObjectView::~vtkGObjectView()
56         {
57         }
58         //=========================================================================
59
60         void vtkGObjectView::update(int idController,int command)//virtual
61         {
62                 //virtual
63         }
64
65         //=========================================================================
66         
67         void vtkGObjectView::setModel(GObjectModel *model)
68         {
69                 _model=model;
70         }
71
72         //=========================================================================
73         
74         void vtkGObjectView::setBaseView(wxVtkBaseView* baseView)
75         {
76                 _baseView=baseView;
77         }
78
79         //=========================================================================
80
81         void vtkGObjectView::initVtkObjects()
82         {
83                 createVtkObjects();
84                 addVtkActors();
85         }
86
87         //=========================================================================
88
89         void vtkGObjectView::createVtkObjects() //virtual
90         {
91                 //virtual
92         }
93
94         //=========================================================================
95
96         void vtkGObjectView::updateColors() //virtual
97         {
98                 //virtual
99         }
100
101         //=========================================================================
102
103         void vtkGObjectView::addVtkActors()//virtual
104         {
105                 _baseView->GetRenderer()->AddActor(_borderObjectActor);
106                 _baseView->GetRenderer()->AddActor(_fillObjectActor);
107                 _baseView->GetRenderer()->Render();
108         }
109
110         //=========================================================================
111
112         void vtkGObjectView::removeVtkActors()//virtual
113         {
114                 _baseView->GetRenderer()->RemoveActor(_borderObjectActor);
115                 _baseView->GetRenderer()->RemoveActor(_fillObjectActor);
116                 _baseView->GetRenderer()->Render();
117         }
118
119         //=========================================================================
120
121         bool vtkGObjectView::isPointInside(int X,int Y) //virtual
122         {
123                 // RaC In the actual version, always z=900
124                 double xx=X,yy=Y,zz=900;
125                 _baseView->TransCoordScreenToWorld(xx,yy,zz);
126                 return _model->isPointInside(xx,yy,zz);
127         }
128
129         //=========================================================================
130
131         void vtkGObjectView::moveObject(int X,int Y) //virtual
132         {               
133                 // RaC In the actual version, always z=900
134                 double xx=X,yy=Y,zz=900;
135                 _baseView->TransCoordScreenToWorld(xx,yy,zz);
136
137                 if(_isStartDragging)
138                 {
139                         _isStartDragging=false;
140                         
141                         double xInic,yInic,zInic;
142                         _model->getInicPoint(xInic,yInic,zInic);                        
143                         dragDifX=xx-xInic;
144                         dragDifY=yy-yInic;      
145                 }
146                 _model->move(xx-dragDifX,yy-dragDifY,zz);
147
148         }
149
150         //=========================================================================
151
152         void vtkGObjectView::setStartDragging(bool param)
153         {
154                 _isStartDragging=param;
155                 dragDifX=0;
156                 dragDifX=0;
157         }
158
159         //=========================================================================
160
161         void vtkGObjectView::setState(int state)
162         {
163                 _state = state;
164         }
165
166         //=========================================================================
167
168         int vtkGObjectView::getState()
169         {
170                 return _state;
171         }
172
173         //=========================================================================
174
175         void vtkGObjectView::setRefreshWaiting()
176         {
177                 ((vtkInteractorStyleBaseView*)_baseView->GetInteractorStyleBaseView())->SetRefresh_waiting();
178         }
179
180         //=========================================================================
181         
182         void vtkGObjectView::removeFromScene()
183         {
184                 removeVtkActors();
185                 setRefreshWaiting();
186         }
187
188         //=========================================================================
189
190
191 }  // EO namespace bbtk
192
193 // EOF
194