Salome HOME
7acb62a7474f32d541662fc4d9650d51e1c7093a
[modules/visu.git] / src / VISU_I / VISU_CutLines_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_CutLines_i_HeaderFile
28 #define VISU_CutLines_i_HeaderFile
29
30 #include "VISU_ScalarMap_i.hh"
31
32 class VISU_CutLinesPL;
33
34 namespace VISU{
35   class CutLines_i : public virtual POA_VISU::CutLines,
36                      public virtual ScalarMap_i
37   {
38     static int myNbPresent;
39     CutLines_i();
40     CutLines_i(const CutLines_i&);
41
42   public:
43     typedef ScalarMap_i TSuperClass;
44
45     explicit
46     CutLines_i(Result_i* theResult,
47                bool theAddToStudy);
48     explicit
49     CutLines_i(Result_i* theResult,
50                SALOMEDS::SObject_ptr theSObject);
51     virtual ~CutLines_i();
52
53     virtual VISU::VISUType GetType() { return VISU::TCUTLINES;};
54
55     virtual void SetOrientation(VISU::CutPlanes::Orientation theOrient,
56                                 CORBA::Double theXAngle, CORBA::Double theYAngle);
57     virtual void SetOrientation2(VISU::CutPlanes::Orientation theOrient,
58                                  CORBA::Double theXAngle, CORBA::Double theYAngle);
59
60     virtual VISU::CutPlanes::Orientation GetOrientationType();
61     virtual VISU::CutPlanes::Orientation GetOrientationType2();
62
63     virtual CORBA::Double GetRotateX();
64     virtual CORBA::Double GetRotateY();
65
66     virtual CORBA::Double GetRotateX2();
67     virtual CORBA::Double GetRotateY2();
68
69     virtual void SetDisplacement(CORBA::Double theDisp);
70     virtual CORBA::Double GetDisplacement();
71
72     virtual void SetDisplacement2(CORBA::Double theDisp);
73     virtual CORBA::Double GetDisplacement2();
74
75     virtual void SetBasePlanePosition(CORBA::Double thePlanePosition);
76     virtual CORBA::Double GetBasePlanePosition();
77
78     virtual void SetLinePosition(CORBA::Long thePlaneNumber, CORBA::Double thePlanePosition);
79     virtual CORBA::Double GetLinePosition(CORBA::Long thePlaneNumber);
80
81     virtual void SetDefault();
82     virtual CORBA::Boolean IsDefault();
83
84     virtual void SetDefaultPosition(CORBA::Long thePlaneNumber);
85     virtual CORBA::Boolean IsDefaultPosition(CORBA::Long thePlaneNumber);
86
87     virtual void SetAllCurvesInverted(CORBA::Boolean theInvert);
88     virtual CORBA::Boolean IsAllCurvesInverted();
89     virtual void SetCurveInverted(CORBA::Long theCurveNumber,CORBA::Boolean theInvert);
90     virtual CORBA::Boolean IsCurveInverted(CORBA::Long theCurveNumber);
91
92     virtual void SetNbLines(CORBA::Long theNb);
93     virtual CORBA::Long GetNbLines();
94     typedef VISU::CutLines TInterface;
95     VISU_CutLinesPL* GetCutLinesPL(){ return myCutLinesPL;}
96     
97     typedef std::map<int,bool> TCurvesInv;
98     TCurvesInv GetCurvesInverted() {return myMapCurvesInverted;}
99     void CopyCurvesInverted(const TCurvesInv& theCurves);
100
101   protected:
102     virtual void DoHook();
103
104     VISU_CutLinesPL *myCutLinesPL;
105     TCurvesInv myMapCurvesInverted;
106
107   public:
108     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
109                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
110     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
111                              const char* theFieldName, int theIteration);
112
113     virtual void ToStream(std::ostringstream& theStr);
114
115     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
116
117     virtual 
118     VISU_Actor* 
119     CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL);
120
121     void BuildTableOfReal(SALOMEDS::SObject_ptr theSObject);
122
123     static const std::string myComment;
124     virtual const char* GetComment() const;
125     virtual QString GenerateName();
126   };
127 }
128
129 #endif