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