Salome HOME
29b8fa006455e82a6f6f03a584442bd8b13290bd
[modules/gui.git] / src / SVTK / SVTK_CubeAxesActor2D.h
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.com
21 //
22
23 //  SALOME OBJECT : kernel of SALOME component
24 //  File   : SVTK_CubeAxesActor2D.h
25 //  Author : Eugeny Nikolaev
26
27 #ifndef __SVTK_CubeAxesActor2D_h
28 #define __SVTK_CubeAxesActor2D_h
29
30 #include <vtkCubeAxesActor2D.h>
31 #include <vtkSmartPointer.h>
32
33 class vtkActor;
34 class vtkAxisActor2D;
35 class vtkCamera;
36 class vtkDataSet;
37 class vtkTextProperty;
38 class vtkPolyDataMapper;
39 class vtkRectilinearGridGeometryFilter;
40 class VTKViewer_Transform;
41
42 #include "SVTK.h"
43 #include "VTKViewer.h"
44
45 #ifdef WIN32
46 #pragma warning ( disable:4251 )
47 #endif
48
49 #ifndef WIN32
50 class VTKRENDERINGANNOTATION_EXPORT SVTK_CubeAxesActor2D : public vtkCubeAxesActor2D
51 #else
52 class SVTK_EXPORT SVTK_CubeAxesActor2D : public vtkCubeAxesActor2D
53 #endif
54 {
55 public:
56   vtkTypeMacro(SVTK_CubeAxesActor2D,vtkCubeAxesActor2D)
57
58   // Description:
59   // Instantiate object with bold, italic, and shadow enabled; font family
60   // set to Arial; and label format "6.3g". The number of labels per axis
61   // is set to 3.
62   static SVTK_CubeAxesActor2D *New();
63   
64   // Description:
65   // Draw the axes as per the vtkProp superclass' API.
66   int RenderOverlay(vtkViewport*);
67   int RenderOpaqueGeometry(vtkViewport*);
68
69   // Description:
70   // Release any graphics resources that are being consumed by this actor.
71   // The parameter window could be used to determine which graphic
72   // resources to release.
73   void ReleaseGraphicsResources(vtkWindow *);
74
75   // Description:
76   
77   vtkActor* GetWireActorXY(){return this->wireActorXY;}
78   vtkActor* GetWireActorYZ(){return this->wireActorYZ;}
79   vtkActor* GetWireActorXZ(){return this->wireActorXZ;}
80
81   void SetTransform(VTKViewer_Transform* theTransform);
82   VTKViewer_Transform* GetTransform();
83   
84 protected:
85   SVTK_CubeAxesActor2D();
86   ~SVTK_CubeAxesActor2D();
87
88   vtkActor* wireActorXY;
89   vtkActor* wireActorYZ;
90   vtkActor* wireActorXZ;
91
92 private:
93   // hide the superclass' ShallowCopy() from the user and the compiler.
94   void ShallowCopy(vtkProp *prop) { this->vtkProp::ShallowCopy( prop ); };
95
96   vtkRectilinearGridGeometryFilter *planeXY; // rectilinear grid XY
97   vtkPolyDataMapper *rgridMapperXY;
98   
99   vtkRectilinearGridGeometryFilter *planeYZ; // rectilinear grid YZ
100   vtkPolyDataMapper *rgridMapperYZ;
101
102   vtkRectilinearGridGeometryFilter *planeXZ; // rectilinear grid XZ
103   vtkPolyDataMapper *rgridMapperXZ;
104   
105   vtkSmartPointer<VTKViewer_Transform> m_Transform;
106 private:
107   SVTK_CubeAxesActor2D(const SVTK_CubeAxesActor2D&);  // Not implemented.
108   void operator=(const SVTK_CubeAxesActor2D&);  // Not implemented.
109 };
110
111 #ifdef WIN32
112 #pragma warning ( default:4251 )
113 #endif
114
115 #endif