]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGPortView.cxx
40e9478051cc50b9554afee148347d130c6375fb
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGPortView.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::vtkGPortView 
34 */
35
36
37 #include "vtkGPortView.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44         vtkGPortView::vtkGPortView()
45         {               
46         }
47
48         //=========================================================================
49         vtkGPortView::~vtkGPortView()
50         {
51         }
52
53         //=========================================================================
54         void vtkGPortView::update(int idController,int command)
55         {
56                 updateColors();
57                 
58                 double xInic, yInic,zInic,xFin, yFin,zFin;
59
60                 _model->getInicPoint(xInic,yInic,zInic);
61                 _model->getFinalPoint(xFin, yFin,zFin);
62
63                 // RaC In the actual version, zInic=zFin=900
64
65                 double mid = (xInic+xFin)/2;
66
67                 _pts->SetPoint(0, xInic, yInic, zInic );
68                 _pts->SetPoint(1, mid, yFin, zInic );
69                 _pts->SetPoint(2, xFin, yInic, zFin );
70
71                 _fillPolyMapper->Modified();
72                 
73                 //-----------
74                 setRefreshWaiting();
75         }
76
77         //=========================================================================
78
79         void vtkGPortView::createVtkObjects() //virtual
80         {
81                 _pts = vtkPoints::New();        
82                 _pts->SetNumberOfPoints(3);
83
84                 double xInic, yInic,zInic,xFin, yFin,zFin;
85
86                 _model->getInicPoint(xInic,yInic,zInic);
87                 _model->getFinalPoint(xFin, yFin,zFin);
88
89                 // RaC In the actual version, zInic=zFin=900
90
91                 double mid = (xInic+xFin)/2;
92
93 //EED           _pts->SetPoint(0, xInic, yInic, zInic );
94 //EED           _pts->SetPoint(1, mid, yFin, zInic );
95 //EED           _pts->SetPoint(2, xFin, yInic, zFin );                          
96
97                 _pts->SetPoint(0, -1000, -1000, -1000 );
98                 _pts->SetPoint(1, mid, yFin, zInic );
99                 _pts->SetPoint(2, 1000, 1000, 1000 );                           
100                 
101                 
102                 ///************************* FILL *************************
103
104                 vtkCellArray *strip = vtkCellArray::New();
105                 vtkPolyData *pdFill = vtkPolyData::New();
106                 _fillPolyMapper=vtkPolyDataMapper::New();
107                 _fillObjectActor=vtkActor::New();
108
109                 // RaC In the actual version, zInic=zFin=900
110
111                 strip->InsertNextCell(3);
112                 strip->InsertCellPoint(0);
113                 strip->InsertCellPoint(1);
114                 strip->InsertCellPoint(2);
115                         
116                 pdFill->SetPoints( _pts );
117                 pdFill->SetStrips( strip );
118
119                 _fillPolyMapper->SetInput(pdFill);
120                 _fillObjectActor->SetMapper(_fillPolyMapper);
121                 _fillPolyMapper->Modified();
122
123                 ///************************* FILL *************************
124
125                 updateColors();
126
127
128         }
129
130         //=========================================================================
131
132         void vtkGPortView::updateColors()
133         {
134                 _fillObjectActor->GetProperty()->SetColor(0.45,0.45,0.45);
135
136                 if(_state==HIGHLIGHTED)
137                 {
138                         _fillObjectActor->GetProperty()->SetColor( 0 , 0 , 1 );
139                 } else {
140                         GPortModel* portm = (GPortModel*)_model;
141                         if(portm->isConnected())
142                         {
143                                 _fillObjectActor->GetProperty()->SetColor(0.15,0.15,0.15);
144                         }
145                         else if(portm->isValueSet())
146                         {
147                                 _fillObjectActor->GetProperty()->SetColor(0.55,0.25,0.25);
148                         } else {
149                                 _fillObjectActor->GetProperty()->SetColor(0.45,0.45,0.45);
150                         }
151                 }
152         }
153
154         //=========================================================================
155
156
157 }  // EO namespace bbtk
158
159 // EOF
160