]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_CutPlanes_i.hh
Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / VISU_I / VISU_CutPlanes_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_CutPlanes_i_HeaderFile
28 #define VISU_CutPlanes_i_HeaderFile
29
30 #include "VISU_ScalarMap_i.hh"
31
32 class VISU_CutPlanesPL;
33
34 namespace VISU{
35   class CutPlanes_i : public virtual POA_VISU::CutPlanes,
36                       public virtual ScalarMap_i
37   {
38     static int myNbPresent;
39     CutPlanes_i();
40     CutPlanes_i(const CutPlanes_i&);
41
42   public:
43     typedef ScalarMap_i TSuperClass;
44
45     explicit
46     CutPlanes_i(Result_i* theResult,
47                 bool theAddToStudy);
48     explicit
49     CutPlanes_i(Result_i* theResult,
50                 SALOMEDS::SObject_ptr theSObject);
51     virtual ~CutPlanes_i();
52
53     virtual VISU::VISUType GetType() { return VISU::TCUTPLANES;};
54
55     virtual void SetOrientation(VISU::CutPlanes::Orientation theOrient,
56                                 CORBA::Double theXAngle, CORBA::Double theYAngle);
57
58     virtual VISU::CutPlanes::Orientation GetOrientationType();
59     virtual CORBA::Double GetRotateX();
60     virtual CORBA::Double GetRotateY();
61
62     virtual void SetDisplacement(CORBA::Double theDisp);
63     virtual CORBA::Double GetDisplacement();
64
65     virtual void SetPlanePosition(CORBA::Long thePlaneNumber, CORBA::Double thePlanePosition);
66     virtual CORBA::Double GetPlanePosition(CORBA::Long thePlaneNumber);
67
68     virtual void SetDefault(CORBA::Long thePlaneNumber);
69     virtual CORBA::Boolean IsDefault(CORBA::Long thePlaneNumber);
70
71     virtual void SetNbPlanes(CORBA::Long theNb);
72     virtual CORBA::Long GetNbPlanes();
73
74     typedef VISU::CutPlanes TInterface;
75     VISU_CutPlanesPL* GetCutPlanesPL(){ return myCutPlanesPL;}
76
77   protected:
78     virtual void DoHook();
79
80     VISU_CutPlanesPL *myCutPlanesPL;
81
82   public:
83     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
84                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
85     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
86                              const char* theFieldName, int theIteration);
87
88     virtual void ToStream(std::ostringstream& theStr);
89
90     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
91
92     virtual 
93     VISU_Actor* 
94     CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL);
95
96     static const std::string myComment;
97     virtual const char* GetComment() const;
98     virtual QString GenerateName();
99   };
100 }
101
102 #endif