]> SALOME platform Git repositories - modules/kernel.git/blob - src/VTKViewer/VTKViewer_Trihedron.h
Salome HOME
PR: merge SalomePro 1_2d = mergefrom_BRANCH_MergeV1_2d
[modules/kernel.git] / src / VTKViewer / VTKViewer_Trihedron.h
1 //  SALOME VTKViewer : 
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : VTKViewer_Trihedron.h
25 //  Author : Alexey PETROV
26 //  Module : SALOME
27 //  $Header: 
28
29 #ifndef VTKViewer_Trihedron_H
30 #define VTKViewer_Trihedron_H
31
32 #include <vtkObject.h>
33
34 class vtkActorCollection;
35 class VTKViewer_Axis;
36 class vtkRenderer;
37
38 class VTKViewer_Trihedron : public vtkObject{
39  protected:
40   VTKViewer_Trihedron();
41   VTKViewer_Trihedron(const VTKViewer_Trihedron&);
42   virtual ~VTKViewer_Trihedron();
43  public:
44   vtkTypeMacro(VTKViewer_Trihedron,vtkObject);
45   static VTKViewer_Trihedron *New();
46   
47   virtual void SetSize(float theSize);
48   virtual float GetSize() { return mySize;}
49
50   enum TVisibility{eOff, eOn, eOnlyLineOn};
51   virtual void SetVisibility(TVisibility theVis);
52   virtual void VisibilityOff() { SetVisibility(eOff);}
53   virtual void VisibilityOn() { SetVisibility(eOn);}
54   virtual TVisibility GetVisibility();
55
56   virtual void AddToRender(vtkRenderer* theRenderer);
57   virtual void RemoveFromRender(vtkRenderer* theRenderer);
58
59   virtual int GetVisibleActorCount(vtkRenderer* theRenderer);
60   
61   virtual void  Render(vtkRenderer *theRenderer);
62   
63 protected:
64   vtkActorCollection* myPresent;
65   VTKViewer_Axis* myAxis[3];
66   float mySize;
67 };
68
69 #endif