]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsVtkGUIEditorGraphic/vtkGPortView.cxx
*** empty log message ***
[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()
55         {
56                 //paint();
57                 if(_model->getState()==HIGHLIGHTED)
58                 {
59                         _objectActor->GetProperty()->SetColor(0.0,0.2,0.5);
60                 }
61                 else
62                 {
63                         _objectActor->GetProperty()->SetColor(0.3,0.2,0.2);
64                 }
65                 _baseView->GetRenderer()->Render();
66         }
67
68         //=========================================================================
69
70         void vtkGPortView::createVtkObjects() //virtual
71         {
72                 vtkPoints *_pts = vtkPoints::New();     
73                 vtkCellArray *lines = vtkCellArray::New();
74                 vtkPolyData *_pd = vtkPolyData::New();
75                 vtkPolyDataMapper* _bboxMapper=vtkPolyDataMapper::New();
76                 _objectActor=vtkActor::New();
77                 
78                 _pts->SetNumberOfPoints(4);
79
80                 double xInic, yInic,zInic,xFin, yFin,zFin;
81                 _model->getInicPoint(xInic,yInic,zInic);
82                 _model->getFinalPoint(xFin, yFin,zFin);
83
84                 _pts->SetPoint(0, xInic, yInic, 0 );
85                 _pts->SetPoint(1, xInic, yFin, 0 );
86                 _pts->SetPoint(2, xFin, yFin, 0 );
87                 _pts->SetPoint(3, xFin, yInic, 0 );
88                                 
89                 lines->InsertNextCell(5);
90                 lines->InsertCellPoint(0);
91                 lines->InsertCellPoint(1);
92                 lines->InsertCellPoint(2);
93                 lines->InsertCellPoint(3);
94                 lines->InsertCellPoint(0);
95                         
96                 _pd->SetPoints( _pts );
97                 _pd->SetLines( lines );
98
99                 _bboxMapper->SetInput(_pd);
100                 _objectActor->SetMapper(_bboxMapper);
101
102                 _objectActor->GetProperty()->SetColor(0.8,0.0,0.0);
103
104         }
105
106         //=========================================================================
107
108
109 }  // EO namespace bbtk
110
111 // EOF
112