]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGBlackBoxView.cxx
First prototype works. Basic boxes construction, evenct handling and colors represent...
[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()
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                 _baseView->GetRenWin()->Render();
78         }
79
80         //=========================================================================
81
82         void vtkGBlackBoxView::createVtkObjects() //virtual
83         {
84                 vtkPoints *_pts = vtkPoints::New();     
85                 vtkCellArray *lines = vtkCellArray::New();
86                 vtkPolyData *_pd = vtkPolyData::New();
87                 vtkPolyDataMapper* _bboxMapper=vtkPolyDataMapper::New();
88                 _objectActor=vtkActor::New();
89                 
90                 _pts->SetNumberOfPoints(4);
91
92                 double xInic, yInic,zInic,xFin, yFin,zFin;
93                 _model->getInicPoint(xInic,yInic,zInic);
94                 _model->getFinalPoint(xFin, yFin,zFin);
95
96                 _pts->SetPoint(0, xInic, yInic, 0 );
97                 _pts->SetPoint(1, xInic, yFin, 0 );
98                 _pts->SetPoint(2, xFin, yFin, 0 );
99                 _pts->SetPoint(3, xFin, yInic, 0 );
100                                 
101                 lines->InsertNextCell(5);
102                 lines->InsertCellPoint(0);
103                 lines->InsertCellPoint(1);
104                 lines->InsertCellPoint(2);
105                 lines->InsertCellPoint(3);
106                 lines->InsertCellPoint(0);
107                         
108                 _pd->SetPoints( _pts );
109                 _pd->SetLines( lines );
110
111                 _bboxMapper->SetInput(_pd);
112                 _objectActor->SetMapper(_bboxMapper);
113
114                 _objectActor->GetProperty()->SetColor(BOXCONTOUR_NH_R,BOXCONTOUR_NH_G,BOXCONTOUR_NH_B);
115
116         }
117
118         //=========================================================================
119
120
121 }  // EO namespace bbtk
122
123 // EOF
124