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