]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGObjectView.cxx
7ed876b3b8640cc05d1cb3ff78a09e5c817e6356
[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         bool vtkGObjectView::isPointInside(int X,int Y) //virtual
113         {
114                 // RaC In the actual version, always z=900
115                 double xx=X,yy=Y,zz=900;
116                 _baseView->TransCoordScreenToWorld(xx,yy,zz);
117                 return _model->isPointInside(xx,yy,zz);
118         }
119
120         //=========================================================================
121
122         void vtkGObjectView::moveObject(int X,int Y) //virtual
123         {               
124                 // RaC In the actual version, always z=900
125                 double xx=X,yy=Y,zz=900;
126                 _baseView->TransCoordScreenToWorld(xx,yy,zz);
127
128                 if(_isStartDragging)
129                 {
130                         _isStartDragging=false;
131                         
132                         double xInic,yInic,zInic;
133                         _model->getInicPoint(xInic,yInic,zInic);                        
134                         dragDifX=xx-xInic;
135                         dragDifY=yy-yInic;      
136                 }
137                 _model->move(xx-dragDifX,yy-dragDifY,zz);
138
139         }
140
141         //=========================================================================
142
143         void vtkGObjectView::setStartDragging(bool param)
144         {
145                 _isStartDragging=param;
146                 dragDifX=0;
147                 dragDifX=0;
148         }
149
150         //=========================================================================
151
152         void vtkGObjectView::setState(int state)
153         {
154                 _state = state;
155         }
156
157         //=========================================================================
158
159         int vtkGObjectView::getState()
160         {
161                 return _state;
162         }
163
164         //=========================================================================
165
166         void vtkGObjectView::setRefreshWaiting()
167         {
168                 ((vtkInteractorStyleBaseView*)_baseView->GetInteractorStyleBaseView())->SetRefresh_waiting();
169         }
170
171         //=========================================================================
172
173
174 }  // EO namespace bbtk
175
176 // EOF
177