]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGPortView.cxx
Organizing code, the state now is in the view and the general render was simplified...
[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 idObservable,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                 _pts->SetPoint(0, xInic, yInic, zInic );
66                 _pts->SetPoint(1, xInic, yFin, zInic );
67                 _pts->SetPoint(2, xFin, yFin, zFin );
68                 _pts->SetPoint(3, xFin, yInic, zFin );
69                 
70                 setRefreshWaiting();
71         }
72
73         //=========================================================================
74
75         void vtkGPortView::createVtkObjects() //virtual
76         {
77                 _pts = vtkPoints::New();        
78                 vtkCellArray *lines = vtkCellArray::New();
79                 vtkPolyData *_pd = vtkPolyData::New();
80                 vtkPolyDataMapper* _bboxMapper=vtkPolyDataMapper::New();
81                 _objectActor=vtkActor::New();
82                 
83                 _pts->SetNumberOfPoints(4);
84
85                 double xInic, yInic,zInic,xFin, yFin,zFin;
86
87                 _model->getInicPoint(xInic,yInic,zInic);
88                 _model->getFinalPoint(xFin, yFin,zFin);
89
90                 // RaC In the actual version, zInic=zFin=900
91                 _pts->SetPoint(0, xInic, yInic, zInic );
92                 _pts->SetPoint(1, xInic, yFin, zInic );
93                 _pts->SetPoint(2, xFin, yFin, zFin );
94                 _pts->SetPoint(3, xFin, yInic, zFin );
95                                 
96                 lines->InsertNextCell(5);
97                 lines->InsertCellPoint(0);
98                 lines->InsertCellPoint(1);
99                 lines->InsertCellPoint(2);
100                 lines->InsertCellPoint(3);
101                 lines->InsertCellPoint(0);
102                         
103                 _pd->SetPoints( _pts );
104                 _pd->SetLines( lines );
105
106                 _bboxMapper->SetInput(_pd);
107                 _objectActor->SetMapper(_bboxMapper);
108
109                 updateColors();
110
111
112         }
113
114         //=========================================================================
115
116         void vtkGPortView::updateColors()
117         {
118                 _objectActor->GetProperty()->SetColor(BOXCONTOUR_NH_R,BOXCONTOUR_NH_G,BOXCONTOUR_NH_B);
119
120                 if(_state==HIGHLIGHTED)
121                 {
122                         _objectActor->GetProperty()->SetColor(0.8,0.2,0.5);
123                 }
124                 else
125                 {
126                         _objectActor->GetProperty()->SetColor(0.3,0.2,0.2);
127                 }
128         }
129
130         //=========================================================================
131
132
133 }  // EO namespace bbtk
134
135 // EOF
136