]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGBlackBoxView.cxx
5c36d4b2ab66fc3462b71f45ade703a68d4c11e2
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsVtkGUIEditorGraphic / vtkGBlackBoxView.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::vtkGBlackBoxView 
34 */
35
36
37 #include "vtkGBlackBoxView.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44         vtkGBlackBoxView::vtkGBlackBoxView()
45         {                       
46         }
47
48         //=========================================================================
49         vtkGBlackBoxView::~vtkGBlackBoxView()
50         {
51         }
52
53         //=========================================================================
54         void vtkGBlackBoxView::update(int command)
55         {
56                 if(_model->getState()==NOTHING_HAPPENS)
57                 {
58                         _objectActor->GetProperty()->SetLineWidth(1);
59                         _objectActor->GetProperty()->SetColor(BOXCONTOUR_NH_R,BOXCONTOUR_NH_G,BOXCONTOUR_NH_B);
60                 }
61                 else if(_model->getState()==HIGHLIGHTED)
62                 {
63                         _objectActor->GetProperty()->SetLineWidth(2);
64                         _objectActor->GetProperty()->SetColor(BOXCONTOUR_HIGHLIGHTED_R,BOXCONTOUR_HIGHLIGHTED_G,BOXCONTOUR_HIGHLIGHTED_B);
65                 }
66                 else if(_model->getState()==DRAG)
67                 {
68                         _objectActor->GetProperty()->SetLineWidth(1.2);
69                         _objectActor->GetProperty()->SetColor(BOXCONTOUR_DRAG_R,BOXCONTOUR_DRAG_G,BOXCONTOUR_DRAG_B);
70                 }
71                 else if(_model->getState()==SELECTED)
72                 {
73                         _objectActor->GetProperty()->SetLineWidth(2);
74                         _objectActor->GetProperty()->SetColor(BOXCONTOUR_SELECTED_R,BOXCONTOUR_SELECTED_G,BOXCONTOUR_SELECTED_B);
75                 }
76
77                 double xInic, yInic,zInic,xFin, yFin,zFin;
78                 _model->getInicPoint(xInic,yInic,zInic);
79                 _model->getFinalPoint(xFin, yFin,zFin);
80
81                 _pts->SetPoint(0, xInic, yInic, 0 );
82                 _pts->SetPoint(1, xInic, yFin, 0 );
83                 _pts->SetPoint(2, xFin, yFin, 0 );
84                 _pts->SetPoint(3, xFin, yInic, 0 );
85
86                 _baseView->GetRenWin()->Render();
87         }
88
89         //=========================================================================
90
91         void vtkGBlackBoxView::createVtkObjects() //virtual
92         {
93                 _pts = vtkPoints::New();        
94                 vtkCellArray *lines = vtkCellArray::New();
95                 vtkPolyData *_pd = vtkPolyData::New();
96                 vtkPolyDataMapper* _bboxMapper=vtkPolyDataMapper::New();
97                 _objectActor=vtkActor::New();
98                 
99                 _pts->SetNumberOfPoints(4);
100
101                 double xInic, yInic,zInic,xFin, yFin,zFin;
102                 _model->getInicPoint(xInic,yInic,zInic);
103                 _model->getFinalPoint(xFin, yFin,zFin);
104
105                 _pts->SetPoint(0, xInic, yInic, 0 );
106                 _pts->SetPoint(1, xInic, yFin, 0 );
107                 _pts->SetPoint(2, xFin, yFin, 0 );
108                 _pts->SetPoint(3, xFin, yInic, 0 );
109                                 
110                 lines->InsertNextCell(5);
111                 lines->InsertCellPoint(0);
112                 lines->InsertCellPoint(1);
113                 lines->InsertCellPoint(2);
114                 lines->InsertCellPoint(3);
115                 lines->InsertCellPoint(0);
116                         
117                 _pd->SetPoints( _pts );
118                 _pd->SetLines( lines );
119
120                 _bboxMapper->SetInput(_pd);
121                 _objectActor->SetMapper(_bboxMapper);
122
123                 _objectActor->GetProperty()->SetColor(BOXCONTOUR_NH_R,BOXCONTOUR_NH_G,BOXCONTOUR_NH_B);
124
125         }
126
127         //=========================================================================
128
129
130 }  // EO namespace bbtk
131
132 // EOF
133