]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_DeformedShape_i.hh
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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_I.hxx>
31 #include "VISU_ScalarMap_i.hh"
32
33 class VISU_DeformedShapePL;
34
35 namespace VISU
36 {
37   //----------------------------------------------------------------------------
38   class VISU_I_EXPORT DeformedShape_i : public virtual POA_VISU::DeformedShape,
39                           public virtual ScalarMap_i
40   {
41     static int myNbPresent;
42     DeformedShape_i(const DeformedShape_i&);
43
44   public:
45     //----------------------------------------------------------------------------
46     typedef ScalarMap_i TSuperClass;
47     typedef VISU::DeformedShape TInterface;
48
49     explicit
50     DeformedShape_i(EPublishInStudyMode thePublishInStudyModep);
51
52     virtual 
53     void 
54     SameAs(const Prs3d_i* theOrigin);
55
56     virtual 
57     ~DeformedShape_i();
58
59     virtual 
60     VISU::VISUType 
61     GetType() 
62     { 
63       return VISU::TDEFORMEDSHAPE;
64     }
65
66     virtual
67     void 
68     SetScale(CORBA::Double theScale);
69
70     virtual
71     CORBA::Double 
72     GetScale();
73
74     virtual 
75     CORBA::Boolean 
76     IsColored();
77
78     virtual 
79     void
80     ShowColored(CORBA::Boolean theColored);
81
82     virtual 
83     SALOMEDS::Color 
84     GetColor();
85
86     virtual
87     void
88     SetColor(const SALOMEDS::Color& theColor);
89
90     VISU_DeformedShapePL* 
91     GetSpecificPL() const
92     { 
93       return myDeformedShapePL; 
94     }
95     
96   protected:
97     //! Redefines VISU_ColoredPrs3d_i::CreatePipeLine
98     virtual 
99     void
100     CreatePipeLine(VISU_PipeLine* thePipeLine);
101
102     //! Redefines VISU_ColoredPrs3d_i::CheckIsPossible
103     virtual 
104     bool 
105     CheckIsPossible();
106
107     VISU_DeformedShapePL *myDeformedShapePL;
108     SALOMEDS::Color myColor;
109     bool myIsColored;
110
111   public:
112     static
113     size_t
114     IsPossible(Result_i* theResult, 
115                const std::string& theMeshName, 
116                VISU::Entity theEntity,
117                const std::string& theFieldName, 
118                CORBA::Long theTimeStampNumber,
119                bool theIsMemoryCheck);
120
121     virtual 
122     Storable* 
123     Create(const std::string& theMeshName, 
124            VISU::Entity theEntity,
125            const std::string& theFieldName, 
126            CORBA::Long theTimeStampNumber);
127
128     static const std::string myComment;
129
130     virtual 
131     const char* 
132     GetComment() const;
133
134     virtual
135     QString 
136     GenerateName();
137
138     virtual
139     const char* 
140     GetIconName();
141
142     virtual
143     void
144     ToStream(std::ostringstream& theStr);
145
146     virtual
147     Storable* 
148     Restore(SALOMEDS::SObject_ptr theSObject,
149             const Storable::TRestoringMap& theMap);
150
151     virtual
152     void
153     SetMapScale(double theMapScale = 1.0);
154
155     virtual 
156     VISU_Actor* 
157     CreateActor();
158
159     virtual 
160     VISU_Actor* 
161     CreateActor(bool toSupressShrinking);
162
163     virtual 
164     void
165     UpdateActor(VISU_Actor* theActor) ;
166   };
167 }
168
169 #endif