]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGComplexBoxPortView.cxx
d240428b8a1f5558583e0d52c2e2b9119de23cb2
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGComplexBoxPortView.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24 */
25
26
27 /*=========================================================================                                                                               
28 Program:   bbtk
29 Module:    $RCSfile$
30 Language:  C++
31 Date:      $Date$
32 Version:   $Revision$
33 =========================================================================*/
34
35 /* ---------------------------------------------------------------------
36
37  * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
38  * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
39  *
40  *  This software is governed by the CeCILL-B license under French law and 
41  *  abiding by the rules of distribution of free software. You can  use, 
42  *  modify and/ or redistribute the software under the terms of the CeCILL-B 
43  *  license as circulated by CEA, CNRS and INRIA at the following URL 
44  *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
45  *  or in the file LICENSE.txt.
46  *
47  *  As a counterpart to the access to the source code and  rights to copy,
48  *  modify and redistribute granted by the license, users are provided only
49  *  with a limited warranty  and the software's author,  the holder of the
50  *  economic rights,  and the successive licensors  have only  limited
51  *  liability. 
52  *
53  *  The fact that you are presently reading this means that you have had
54  *  knowledge of the CeCILL-B license and that you accept its terms.
55  * ------------------------------------------------------------------------ */
56
57 /**
58  *  \file 
59  *  \brief Class bbtk::vtkGComplexBoxPortView 
60  */
61
62
63 #include "vtkGComplexBoxPortView.h"
64
65 namespace bbtk {
66
67
68     //=========================================================================
69
70     vtkGComplexBoxPortView::vtkGComplexBoxPortView( ) {
71     }
72
73     //=========================================================================
74
75     vtkGComplexBoxPortView::~vtkGComplexBoxPortView( ) {
76     }
77
78     //=========================================================================
79
80     void vtkGComplexBoxPortView::update( int idController , int command ) {
81         updateColors( ) ;
82
83         double xInic , yInic , zInic , xFin , yFin , zFin ;
84         _model->getInicPoint( xInic , yInic , zInic ) ;
85         _model->getFinalPoint( xFin , yFin , zFin ) ;
86
87         // RaC In the actual version, zInic=zFin=GPOSITION_Z
88
89         _pts->SetPoint( 0 , xInic , yInic , zInic ) ;
90         _pts->SetPoint( 1 , xInic , yFin , zInic ) ;
91         _pts->SetPoint( 2 , xFin , yFin , zFin ) ;
92         _pts->SetPoint( 3 , xFin , yInic , zFin ) ;
93
94         updatePorts( ) ;
95
96         _borderPolyMapper->Modified( ) ;
97         _fillPolyMapper->Modified( ) ;
98         //-----------
99
100         //-----------
101         setRefreshWaiting( ) ;
102     }
103
104     //=========================================================================
105
106     void vtkGComplexBoxPortView::createVtkObjects( ) //virtual
107     {
108
109         //------------
110         _pts = vtkPoints::New( ) ;
111         vtkCellArray *lines = vtkCellArray::New( ) ;
112         vtkPolyData *_pd = vtkPolyData::New( ) ;
113         _borderPolyMapper = vtkPolyDataMapper::New( ) ;
114         _borderObjectActor = vtkActor::New( ) ;
115
116         _pts->SetNumberOfPoints( 4 ) ;
117
118         double xInic , yInic , zInic , xFin , yFin , zFin ;
119         _model->getInicPoint( xInic , yInic , zInic ) ;
120         _model->getFinalPoint( xFin , yFin , zFin ) ;
121
122         // RaC In the actual version, zInic=zFin=GPOSITION_Z
123
124         //EED           _pts->SetPoint(0, xInic, yInic, zInic );
125         //EED           _pts->SetPoint(1, xInic, yFin, zInic );
126         //EED           _pts->SetPoint(2, xFin, yFin, zFin );
127         //EED           _pts->SetPoint(3, xFin, yInic, zFin );
128
129
130         _pts->SetPoint( 0 , -1000 , -1000 , -1000 ) ;
131         _pts->SetPoint( 1 , xInic , yFin , zInic ) ;
132         _pts->SetPoint( 2 , 1000 , 1000 , 1000 ) ;
133         _pts->SetPoint( 3 , xFin , yInic , zFin ) ;
134
135
136         lines->InsertNextCell( 5 ) ;
137         lines->InsertCellPoint( 0 ) ;
138         lines->InsertCellPoint( 1 ) ;
139         lines->InsertCellPoint( 2 ) ;
140         lines->InsertCellPoint( 3 ) ;
141         lines->InsertCellPoint( 0 ) ;
142
143         _pd->SetPoints( _pts ) ;
144         _pd->SetLines( lines ) ;
145
146         _borderPolyMapper->SetInput( _pd ) ;
147         _borderObjectActor->SetMapper( _borderPolyMapper ) ;
148         _borderPolyMapper->Modified( ) ;
149
150
151         ///************************* FILL *************************
152
153         vtkCellArray *strip = vtkCellArray::New( ) ;
154         vtkPolyData *pdFill = vtkPolyData::New( ) ;
155         _fillPolyMapper = vtkPolyDataMapper::New( ) ;
156         _fillObjectActor = vtkActor::New( ) ;
157
158         // RaC In the actual version, zInic=zFin=GPOSITION_Z
159
160         strip->InsertNextCell( 5 ) ;
161         strip->InsertCellPoint( 0 ) ;
162         strip->InsertCellPoint( 1 ) ;
163         strip->InsertCellPoint( 2 ) ;
164         strip->InsertCellPoint( 0 ) ;
165         strip->InsertCellPoint( 3 ) ;
166
167         pdFill->SetPoints( _pts ) ;
168         pdFill->SetStrips( strip ) ;
169
170         _fillPolyMapper->SetInput( pdFill ) ;
171         _fillObjectActor->SetMapper( _fillPolyMapper ) ;
172         _fillPolyMapper->Modified( ) ;
173
174         ///************************* FILL *************************
175
176     }
177
178     //=========================================================================
179
180     void vtkGComplexBoxPortView::addVtkActors( )//virtual
181     {
182         _baseView->GetRenderer( )->AddActor( _borderObjectActor ) ;
183         vtkGObjectView::addVtkActors( ) ;
184     }
185
186     //=========================================================================
187
188     void vtkGComplexBoxPortView::removeVtkActors( )//virtual
189     {
190         _baseView->GetRenderer( )->RemoveActor( _borderObjectActor ) ;
191         vtkGObjectView::removeVtkActors( ) ;
192     }
193
194     //=========================================================================
195
196     void vtkGComplexBoxPortView::updateColors( ) {
197         _fillObjectActor->GetProperty( )->SetAmbient( 0.6 ) ;
198
199         if ( _state == NOTHING_HAPPENS ) {
200             _borderObjectActor->GetProperty( )->SetLineWidth( 1 ) ;
201
202
203             GComplexBoxPortModel *portModel = ( GComplexBoxPortModel* ) _model ;
204             if ( portModel->getComplexPortType( ) == GCOMPLEXINPUTPORT ) {
205                 _fillObjectActor->GetProperty( )->SetColor( COMPLEXINPUTPORTFILL_NH_R , COMPLEXINPUTPORTFILL_NH_G , COMPLEXINPUTPORTFILL_NH_B ) ;
206                 _borderObjectActor->GetProperty( )->SetColor( COMPLEXINPUTPORTBORDER_NH_R , COMPLEXINPUTPORTBORDER_NH_G , COMPLEXINPUTPORTBORDER_NH_B ) ;
207             } else if ( portModel->getComplexPortType( ) == GCOMPLEXOUTPUTPORT ) {
208                 _fillObjectActor->GetProperty( )->SetColor( COMPLEXOUTPUTPORTFILL_NH_R , COMPLEXOUTPUTPORTFILL_NH_G , COMPLEXOUTPUTPORTFILL_NH_B ) ;
209                 _borderObjectActor->GetProperty( )->SetColor( COMPLEXOUTPUTPORTBORDER_NH_R , COMPLEXOUTPUTPORTBORDER_NH_G , COMPLEXOUTPUTPORTBORDER_NH_B ) ;
210             }
211
212         } else if ( _state == HIGHLIGHTED ) {
213             _borderObjectActor->GetProperty( )->SetLineWidth( 2 ) ;
214
215             _borderObjectActor->GetProperty( )->SetColor( BOXBORDER_HIGHLIGHTED_R , BOXBORDER_HIGHLIGHTED_G , BOXBORDER_HIGHLIGHTED_B ) ;
216             _fillObjectActor->GetProperty( )->SetColor( BOXFILL_HIGHLIGHTED_R , BOXFILL_HIGHLIGHTED_G , BOXFILL_HIGHLIGHTED_B ) ;
217         } else if ( _state == DRAG ) {
218             _borderObjectActor->GetProperty( )->SetLineWidth( 1.2 ) ;
219             _borderObjectActor->GetProperty( )->SetColor( BOXBORDER_DRAG_R , BOXBORDER_DRAG_G , BOXBORDER_DRAG_B ) ;
220             _fillObjectActor->GetProperty( )->SetColor( BOXFILL_DRAG_R , BOXFILL_DRAG_G , BOXFILL_DRAG_B ) ;
221         } else if ( _state == SELECTED ) {
222             _borderObjectActor->GetProperty( )->SetLineWidth( 2 ) ;
223             _borderObjectActor->GetProperty( )->SetColor( BOXBORDER_SELECTED_R , BOXBORDER_SELECTED_G , BOXBORDER_SELECTED_B ) ;
224             _fillObjectActor->GetProperty( )->SetColor( BOXFILL_SELECTED_R , BOXFILL_SELECTED_G , BOXFILL_SELECTED_B ) ;
225         }
226     }
227
228     //=========================================================================
229
230
231 } // EO namespace bbtk
232
233 // EOF
234