Salome HOME
PR: mergefrom_PAL_OCC_21Oct04
[modules/kernel.git] / src / VTKViewer / VTKViewer_Prs.cxx
1 //  SALOME VTKViewer : build VTK viewer into Salome desktop
2 //
3 //  Copyright (C) 2004  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : VTKViewer_Prs.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28
29 #include "VTKViewer_Prs.h"
30
31 //==========================================================
32 /*!
33  *  VTKViewer_Prs::VTKViewer_Prs
34  *  Default constructor
35  */
36 //==========================================================
37 VTKViewer_Prs::VTKViewer_Prs() : myObjects( 0 )
38 {
39 }
40  
41 //==========================================================
42 /*!
43  *  VTKViewer_Prs::VTKViewer_Prs
44  *  tandard constructora
45  */
46 //==========================================================
47 VTKViewer_Prs::VTKViewer_Prs( const vtkActor* obj ) 
48
49   AddObject( obj ); 
50 }
51
52 //==========================================================
53 /*!
54  *  VTKViewer_Prs::~VTKViewer_Prs
55  *  Destructor
56  */
57 //==========================================================
58 VTKViewer_Prs:: ~VTKViewer_Prs() 
59
60   if ( myObjects ) myObjects->Delete(); 
61 }
62
63 //==========================================================
64 /*!
65  *  VTKViewer_Prs::GetObjects
66  *  Get actors list
67  */
68 //==========================================================
69 vtkActorCollection* VTKViewer_Prs::GetObjects() const 
70
71   return myObjects; 
72 }
73
74 //==========================================================
75 /*!
76  *  VTKViewer_Prs::AddObject
77  *  Add actor
78  */
79 //==========================================================
80 void VTKViewer_Prs::AddObject( const vtkActor* obj ) 
81
82   if ( !myObjects) 
83     myObjects = vtkActorCollection::New(); 
84   myObjects->AddItem( (vtkActor*)obj ); 
85 }
86   
87 //==========================================================
88 /*!
89  *  VTKViewer_Prs::IsNull
90  *  Return 0 if list of the actors is empty
91  *  [ Reimplemented from SALOME_Prs ]
92  */
93 //==========================================================
94 bool VTKViewer_Prs::IsNull() const 
95
96   return !myObjects || myObjects->GetNumberOfItems() <= 0; 
97 }