Salome HOME
93780198116665cab0b42c9073abd9730a5cf5b0
[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   public:
42     explicit
43     CutLines_i(Result_i* theResult,
44                bool theAddToStudy);
45     explicit
46     CutLines_i(Result_i* theResult,
47                SALOMEDS::SObject_ptr theSObject);
48     virtual void SameAs(const CutLines_i* theOrigin);
49     virtual ~CutLines_i();
50
51     virtual VISU::VISUType GetType() { return VISU::TCUTLINES;};
52
53     virtual void SetOrientation(VISU::CutPlanes::Orientation theOrient,
54                                 CORBA::Double theXAngle, CORBA::Double theYAngle);
55     virtual void SetOrientation2(VISU::CutPlanes::Orientation theOrient,
56                                  CORBA::Double theXAngle, CORBA::Double theYAngle);
57
58     virtual VISU::CutPlanes::Orientation GetOrientationType();
59     virtual VISU::CutPlanes::Orientation GetOrientationType2();
60
61     virtual CORBA::Double GetRotateX();
62     virtual CORBA::Double GetRotateY();
63
64     virtual CORBA::Double GetRotateX2();
65     virtual CORBA::Double GetRotateY2();
66
67     virtual void SetDisplacement(CORBA::Double theDisp);
68     virtual CORBA::Double GetDisplacement();
69
70     virtual void SetDisplacement2(CORBA::Double theDisp);
71     virtual CORBA::Double GetDisplacement2();
72
73     virtual void SetBasePlanePosition(CORBA::Double thePlanePosition);
74     virtual CORBA::Double GetBasePlanePosition();
75
76     virtual void SetLinePosition(CORBA::Long thePlaneNumber, CORBA::Double thePlanePosition);
77     virtual CORBA::Double GetLinePosition(CORBA::Long thePlaneNumber);
78
79     virtual void SetDefault();
80     virtual CORBA::Boolean IsDefault();
81
82     virtual void SetDefaultPosition(CORBA::Long thePlaneNumber);
83     virtual CORBA::Boolean IsDefaultPosition(CORBA::Long thePlaneNumber);
84
85     virtual void SetAllCurvesInverted(CORBA::Boolean theInvert);
86     virtual CORBA::Boolean IsAllCurvesInverted();
87     virtual void SetCurveInverted(CORBA::Long theCurveNumber,CORBA::Boolean theInvert);
88     virtual CORBA::Boolean IsCurveInverted(CORBA::Long theCurveNumber);
89
90     virtual void SetNbLines(CORBA::Long theNb);
91     virtual CORBA::Long GetNbLines();
92     typedef VISU::CutLines TInterface;
93     VISU_CutLinesPL* GetCutLinesPL(){ return myCutLinesPL;}
94     
95     typedef std::map<int,bool> TCurvesInv;
96     TCurvesInv GetCurvesInverted() {return myMapCurvesInverted;}
97     void CopyCurvesInverted(const TCurvesInv& theCurves);
98
99   protected:
100     virtual void DoHook();
101
102     VISU_CutLinesPL *myCutLinesPL;
103     TCurvesInv myMapCurvesInverted;
104
105   public:
106     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
107                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
108     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
109                              const char* theFieldName, int theIteration);
110
111     virtual void ToStream(std::ostringstream& theStr);
112
113     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
114
115     void BuildTableOfReal(SALOMEDS::SObject_ptr theSObject);
116
117     static const std::string myComment;
118     virtual const char* GetComment() const;
119     virtual QString GenerateName();
120   };
121 }
122
123 #endif