]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_CutLines_i.hh
Salome HOME
Debug visu.py; add visu_split_views.py as example of view parameters management
[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 SetNbLines(CORBA::Long theNb);
86     virtual CORBA::Long GetNbLines();
87     typedef VISU::CutLines TInterface;
88     VISU_CutLinesPL* GetCutLinesPL(){ return myCutLinesPL;}
89
90   protected:
91     virtual void DoHook();
92
93     VISU_CutLinesPL *myCutLinesPL;
94
95   public:
96     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
97                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
98     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
99                              const char* theFieldName, int theIteration);
100
101     virtual void ToStream(std::ostringstream& theStr);
102
103     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
104
105     void BuildTableOfReal(SALOMEDS::SObject_ptr theSObject);
106
107     static const std::string myComment;
108     virtual const char* GetComment() const;
109     virtual QString GenerateName();
110   };
111 }
112
113 #endif