Salome HOME
Merge from OCC_development_generic_2006
[modules/visu.git] / src / VISU_I / VISU_DeformedShape_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_DeformedShape_i_HeaderFile
28 #define VISU_DeformedShape_i_HeaderFile
29
30 #include "VISU_ScalarMap_i.hh"
31
32 class VISU_DeformedShapePL;
33
34 namespace VISU{
35   class DeformedShape_i : public virtual POA_VISU::DeformedShape,
36                           public virtual ScalarMap_i
37   {
38     static int myNbPresent;
39     DeformedShape_i();
40     DeformedShape_i(const DeformedShape_i&);
41
42   public:
43     typedef ScalarMap_i TSuperClass;
44
45     explicit
46     DeformedShape_i(Result_i* theResult,
47                     bool theAddToStudy);
48     explicit
49     DeformedShape_i(Result_i* theResult,
50                     SALOMEDS::SObject_ptr theSObject);
51     virtual void SameAs(const Prs3d_i* theOrigin);
52     virtual ~DeformedShape_i();
53
54     virtual VISU::VISUType GetType() { return VISU::TDEFORMEDSHAPE;};
55
56     virtual void SetScale(CORBA::Double theScale);
57     virtual CORBA::Double GetScale();
58
59     virtual CORBA::Boolean IsColored() { return myIsColored; }
60     virtual void ShowColored(CORBA::Boolean theColored) { myIsColored = theColored; }
61
62     virtual SALOMEDS::Color GetColor() { return myColor;}
63     virtual void SetColor(const SALOMEDS::Color& theColor) { myColor = theColor;}
64
65     typedef VISU::DeformedShape TInterface;
66     VISU_DeformedShapePL* GetDeformedShapePL(){ return myDeformedShapePL;}
67
68   protected:
69     virtual void DoHook();
70
71     VISU_DeformedShapePL *myDeformedShapePL;
72     SALOMEDS::Color myColor;
73     bool myIsColored;
74
75   public:
76     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
77                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
78     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
79                              const char* theFieldName, int theIteration);
80
81     static const std::string myComment;
82     virtual const char* GetComment() const;
83     virtual QString GenerateName();
84
85     virtual void ToStream(std::ostringstream& theStr);
86
87     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
88
89     virtual void SetMapScale(double theMapScale = 1.0);
90
91     virtual 
92     VISU_Actor* 
93     CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL);
94
95     virtual void UpdateActor(VISU_Actor* theActor) ;
96   };
97 }
98
99 #endif