Salome HOME
Update Help for VISU module.
[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.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_IsoSurfaces_i_HeaderFile
28 #define VISU_IsoSurfaces_i_HeaderFile
29
30 #include "VISU_ScalarMap_i.hh"
31
32 class VISU_IsoSurfacesPL;
33
34 namespace VISU{
35   class IsoSurfaces_i : public virtual POA_VISU::IsoSurfaces,
36                         public virtual ScalarMap_i
37   {
38     static int myNbPresent;
39     IsoSurfaces_i();
40     IsoSurfaces_i(const IsoSurfaces_i&);
41   public:
42     explicit
43     IsoSurfaces_i(Result_i* theResult,
44                   bool theAddToStudy);
45     explicit
46     IsoSurfaces_i(Result_i* theResult,
47                   SALOMEDS::SObject_ptr theSObject);
48     virtual void SameAs(const IsoSurfaces_i* theOrigin);
49     virtual ~IsoSurfaces_i();
50
51     virtual VISU::VISUType GetType() { return VISU::TISOSURFACE;};
52
53     virtual void SetNbSurfaces(CORBA::Long theNb);
54     virtual CORBA::Long GetNbSurfaces();
55
56     virtual void SetSubRange(CORBA::Double theMin, CORBA::Double theMax);
57     virtual CORBA::Double GetSubMin();
58     virtual CORBA::Double GetSubMax();
59
60     typedef VISU::IsoSurfaces TInterface;
61     VISU_IsoSurfacesPL* GetIsoSurfacesPL(){ return myIsoSurfacesPL;}
62
63   protected:
64     virtual void DoHook();
65     VISU_IsoSurfacesPL* myIsoSurfacesPL;
66
67   public:
68     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
69                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
70     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
71                              const char* theFieldName, int theIteration);
72
73     static const std::string myComment;
74     virtual const char* GetComment() const;
75     virtual QString GenerateName();
76
77     virtual void ToStream(std::ostringstream& theStr);
78
79     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
80
81     virtual void SetMapScale(double theMapScale = 1.0);
82   };
83 }
84
85 #endif