]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_IsoSurfaces_i.hh
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/visu.git] / src / VISU_I / VISU_IsoSurfaces_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_IsoSurfaces_i_HeaderFile
28 #define VISU_IsoSurfaces_i_HeaderFile
29
30 #include "VISU_I.hxx"
31 #include "VISU_ScalarMap_i.hh"
32
33 class VISU_IsoSurfacesPL;
34
35 namespace VISU
36 {
37   //----------------------------------------------------------------------------
38   class VISU_I_EXPORT IsoSurfaces_i : public virtual POA_VISU::IsoSurfaces,
39                         public virtual ScalarMap_i
40   {
41     static int myNbPresent;
42     IsoSurfaces_i(const IsoSurfaces_i&);
43
44   public:
45     //----------------------------------------------------------------------------
46     typedef ScalarMap_i TSuperClass;
47     typedef VISU::IsoSurfaces TInterface;
48
49     explicit
50     IsoSurfaces_i(EPublishInStudyMode thePublishInStudyModep);
51
52     virtual 
53     ~IsoSurfaces_i();
54
55     virtual
56     VISU::VISUType 
57     GetType() 
58     { 
59       return VISU::TISOSURFACES;
60     }
61
62     virtual
63     void
64     SetNbSurfaces(CORBA::Long theNb);
65
66     virtual
67     CORBA::Long 
68     GetNbSurfaces();
69
70     virtual 
71     void
72     SetSubRange(CORBA::Double theMin, CORBA::Double theMax);
73
74     virtual
75     CORBA::Double 
76     GetSubMin();
77
78     virtual
79     CORBA::Double 
80     GetSubMax();
81
82     VISU_IsoSurfacesPL* 
83     GetSpecificPL() const
84     { 
85       return myIsoSurfacesPL; 
86     }
87     
88   protected:
89     //! Redefines VISU_ColoredPrs3d_i::CreatePipeLine
90     virtual 
91     void 
92     CreatePipeLine(VISU_PipeLine* thePipeLine);
93
94     //! Redefines VISU_ScalarMap_i::DoSetInput
95     virtual 
96     void
97     DoSetInput(bool theIsInitilizePipe, bool theReInit);
98
99     //! Redefines VISU_ScalarMap_i::CheckIsPossible
100     virtual 
101     bool 
102     CheckIsPossible();
103
104     VISU_IsoSurfacesPL* myIsoSurfacesPL;
105
106   public:
107     static
108     size_t
109     IsPossible(Result_i* theResult, 
110                const std::string& theMeshName, 
111                VISU::Entity theEntity,
112                const std::string& theFieldName, 
113                CORBA::Long theTimeStampNumber,
114                bool theIsMemoryCheck);
115
116     virtual
117     Storable* 
118     Create(const std::string& theMeshName, 
119            VISU::Entity theEntity,
120            const std::string& theFieldName, 
121            CORBA::Long theTimeStampNumber);
122
123     static const std::string myComment;
124
125     virtual 
126     const char* 
127     GetComment() const;
128
129     virtual
130     QString
131     GenerateName();
132
133     virtual
134     const char* 
135     GetIconName();
136
137     virtual
138     void
139     ToStream(std::ostringstream& theStr);
140
141     virtual
142     Storable* 
143     Restore(SALOMEDS::SObject_ptr theSObject,
144             const Storable::TRestoringMap& theMap);
145
146     virtual 
147     VISU_Actor* 
148     CreateActor();
149     
150     virtual 
151     void 
152     SetMapScale(double theMapScale = 1.0);
153   };
154 }
155
156 #endif