]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_OptionalDeformation_i.hh
Salome HOME
b7ba13f3e3d8ac495f30b90737f3cf82f5e02724
[modules/visu.git] / src / VISU_I / VISU_OptionalDeformation_i.hh
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 //  File   : VISU_Deformation_i.hxx
23 //  Author : 
24 //  Module : VISU
25 //
26 #ifndef VISU_OptionalDeformation_i_HeaderFile
27 #define VISU_OptionalDeformation_i_HeaderFile
28
29 #include "VISU_I.hxx"
30 #include "VISU_Deformation_i.hh"
31 #include "VISU_OptionalDeformationPL.hxx"
32
33 namespace VISU {
34   class VISU_I_EXPORT OptionalDeformation_i : public virtual POA_VISU::OptionalDeformation,
35                                               public virtual Deformation_i
36   {
37     OptionalDeformation_i(const OptionalDeformation_i&);
38   public:
39     typedef VISU::OptionalDeformation TInterface;
40     typedef Deformation_i TSuperClass;
41
42     OptionalDeformation_i(VISU::ColoredPrs3d_i* theModifiedEngine);
43     virtual ~OptionalDeformation_i();
44     
45     virtual void UseDeformation(CORBA::Boolean theFlag);
46     virtual CORBA::Boolean IsDeformed();
47
48
49     virtual
50     void
51     DeformationToStream(std::ostringstream& theStr);
52
53     virtual
54     void
55     RestoreDeformation(SALOMEDS::SObject_ptr theSObject,
56             const Storable::TRestoringMap& theMap);
57
58     virtual 
59     void 
60     SameAsDeformation(const Deformation_i *aDeformedPrs);
61
62   protected:
63     virtual
64     void InitDeformedPipeLine(VISU_DeformationPL* theDeformedPipeLine);
65
66     VISU_OptionalDeformationPL*
67     GetSpecificDeformedPL() const
68     { 
69       return myOptionalDeformationPL;
70     }
71     
72   private:
73     VISU_OptionalDeformationPL* myOptionalDeformationPL;
74     
75   };
76 }
77 #endif