Salome HOME
Merge remote branch 'origin/V8_5_asterstudy'
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ProjectionSource1D_i.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
24 //  File   : StdMeshers_ProjectionSource1D_i.hxx
25 //  Author : Edward AGAPOV
26 //  Module : SMESH
27 //
28 #ifndef _SMESH_ProjectionSource1D_I_HXX_
29 #define _SMESH_ProjectionSource1D_I_HXX_
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
34
35 #include "SMESH_Hypothesis_i.hxx"
36 #include "StdMeshers_ProjectionSource1D.hxx"
37
38 class SMESH_Gen;
39
40 // =========================================================
41 /*!
42  * This hypothesis specifies a meshed edge to take a mesh pattern from
43  * and optionally association of vertices between the source edge and a
44  * target one (where a hipothesis is assigned to)
45  */
46 // =========================================================
47
48 class StdMeshers_ProjectionSource1D_i:
49   public virtual POA_StdMeshers::StdMeshers_ProjectionSource1D,
50   public virtual SMESH_Hypothesis_i
51 {
52 public:
53   // Constructor
54   StdMeshers_ProjectionSource1D_i( PortableServer::POA_ptr thePOA,
55                                    ::SMESH_Gen*            theGenImpl );
56   // Destructor
57   virtual ~StdMeshers_ProjectionSource1D_i();
58
59   /*!
60    * Sets source <edge> or a group containing edges to take a mesh pattern from
61    */
62   void SetSourceEdge(GEOM::GEOM_Object_ptr edge)
63     throw ( SALOME::SALOME_Exception );
64
65   /*!
66    * Returns the source edge or a group containing edges
67    */
68   GEOM::GEOM_Object_ptr GetSourceEdge();
69
70   /*!
71    * Sets source <mesh> to take a mesh pattern from
72    */
73   void SetSourceMesh(SMESH::SMESH_Mesh_ptr mesh)
74     throw ( SALOME::SALOME_Exception );
75
76   /*!
77    * Return source mesh
78    */
79   SMESH::SMESH_Mesh_ptr GetSourceMesh();
80
81   /*!
82    * Sets vertex association between the source edge and the target one.
83    * This parameter is optional
84    */
85   void SetVertexAssociation(GEOM::GEOM_Object_ptr sourceVertex,
86                             GEOM::GEOM_Object_ptr targetVertex)
87     throw ( SALOME::SALOME_Exception );
88
89   /*!
90    * Returns the vertex associated with the target vertex.
91    * Result may be nil if association not set
92    */
93   GEOM::GEOM_Object_ptr GetSourceVertex();
94
95   /*!
96    * Returns the vertex associated with the source vertex.
97    * Result may be nil if association not set
98    */
99   GEOM::GEOM_Object_ptr GetTargetVertex();
100
101   // Get implementation
102   ::StdMeshers_ProjectionSource1D* GetImpl();
103
104   // Verify whether hypothesis supports given entity type 
105   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
106
107
108   // Redefined Persistence
109   virtual char* SaveTo();
110   virtual void  LoadFrom( const char* theStream );
111
112 private:
113   // keep entries because the same shape can be published several times with
114   // different names and in this case a correct name can't be restored by a TopoDS_Shape
115   // kept by ::StdMeshers_ProjectionSource1D
116   enum { SRC_EDGE=0, SRC_VERTEX, TGT_VERTEX, NB_SHAPES };
117   std::string           myShapeEntries[NB_SHAPES];
118   SMESH::SMESH_Mesh_var myCorbaMesh;
119 };
120
121 #endif