Salome HOME
Fix pb with Animation
[modules/visu.git] / src / VISU_I / VISU_Prs3d_i.hh
1 //  VISU OBJECT : interactive object for VISU entities implementation
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 //  File   : VISU_PrsObject_i.hxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #ifndef VISU_Prs3d_i_HeaderFile
28 #define VISU_Prs3d_i_HeaderFile
29
30 #include "VISU_PrsObject_i.hh"
31 #include "SALOME_GenericObj_i.hh"
32 #include "Handle_SALOME_InteractiveObject.hxx"
33 #include "VISU_Convertor.hxx"
34
35 #include <vtkPlaneSource.h>
36
37 class VISU_PipeLine;
38 class VISU_Actor;
39
40 class vtkPlane;
41 class vtkUnstructuredGrid;
42
43 namespace VISU{
44   class Result_i;
45
46   class Prs3d_i :
47     public virtual POA_VISU::Prs3d,
48     public virtual SALOME::GenericObj_i,
49     public virtual PrsObject_i
50
51   {
52     Prs3d_i();
53     Prs3d_i(const Prs3d_i&);
54
55   public:
56     explicit
57     Prs3d_i(Result_i* theResult,
58             bool theAddToStudy);
59     explicit
60     Prs3d_i(Result_i* theResult,
61             SALOMEDS::SObject_ptr theSObject);
62     virtual void SameAs(const Prs3d_i* theOrigin);
63     virtual ~Prs3d_i();
64
65   protected:
66     bool myAddToStudy;
67     float myOffset[3];
68     Result_i *myResult;
69     VISU_PipeLine *myPipeLine;
70     SALOMEDS::SObject_var mySObject;
71     std::string myMeshName;
72
73     void CreateActor(VISU_Actor* theActor, const Handle(SALOME_InteractiveObject)& theIO = NULL);
74     virtual VISU_PipeLine* GetPipeLine();
75
76   public:
77     virtual void Update() ;
78     VISU_PipeLine* GetPL();
79
80     vtkUnstructuredGrid* GetInput();
81
82     void GetBounds(float aBounds[6]);
83
84     void SetOffset(const float* theOffsets);
85     virtual void SetOffset(float theDx, float theDy, float theDz);
86
87     void GetOffset(float* theOffsets);
88     virtual void GetOffset(float& theDx, float& theDy, float& theDz);
89
90     virtual const char* GetComment() const = 0;
91     virtual QString GenerateName() = 0;
92
93     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
94
95     virtual void ToStream(std::ostringstream& theStr);
96
97     virtual VISU_Actor* CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL) = 0;
98
99     virtual void UpdateActor(VISU_Actor* theActor) ;
100
101     Result_i* GetResult() const { return myResult;}
102     virtual SALOMEDS::SObject_var GetSObject();
103     const std::string& GetMeshName() const { return myMeshName; }
104
105     // Clipping planes
106     void RemoveAllClippingPlanes();
107     vtkIdType GetNumberOfClippingPlanes() const;
108     bool AddClippingPlane(vtkPlane* thePlane);
109     vtkPlane* GetClippingPlane(vtkIdType theID) const;
110
111     void SetPlaneParam(float theDir[3], float theDist, vtkPlane* thePlane);
112   };
113
114   Result_i* GetResult(SALOMEDS::SObject_ptr theSObject);
115
116   template<class TPrs3d>
117   Storable* Restore(SALOMEDS::SObject_ptr theSObject,
118                     const std::string& thePrefix,
119                     const Storable::TRestoringMap& theMap)
120   {
121     VISU::Result_i* pResult = GetResult(theSObject);
122     if(pResult != NULL){
123       TPrs3d* pPrs3d = new TPrs3d(pResult,theSObject);
124       return pPrs3d->Restore(theMap);
125     }
126     return NULL;
127   }
128 }
129
130 #endif