Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ProjectionSource1D_i.hxx
1 //  Copyright (C) 2007-2010  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.
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 calsses
24 //  File   : StdMeshers_ProjectionSource1D_i.hxx
25 //  Author : Edward AGAPOV
26 //  Module : SMESH
27 //  $Header$
28 //
29 #ifndef _SMESH_ProjectionSource1D_I_HXX_
30 #define _SMESH_ProjectionSource1D_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
34 #include CORBA_SERVER_HEADER(SMESH_Mesh)
35
36 #include "SMESH_Hypothesis_i.hxx"
37 #include "StdMeshers_ProjectionSource1D.hxx"
38
39 class SMESH_Gen;
40
41 // =========================================================
42 /*!
43  * This hypothesis specifies a meshed edge to take a mesh pattern from
44  * and optionally association of vertices between the source edge and a
45  * target one (where a hipothesis is assigned to)
46  */
47 // =========================================================
48
49 class StdMeshers_ProjectionSource1D_i:
50   public virtual POA_StdMeshers::StdMeshers_ProjectionSource1D,
51   public virtual SMESH_Hypothesis_i
52 {
53 public:
54   // Constructor
55   StdMeshers_ProjectionSource1D_i( PortableServer::POA_ptr thePOA,
56                                    int                     theStudyId,
57                                    ::SMESH_Gen*            theGenImpl );
58   // Destructor
59   virtual ~StdMeshers_ProjectionSource1D_i();
60
61   /*!
62    * Sets source <edge> or a group containing edges to take a mesh pattern from
63    */
64   void SetSourceEdge(GEOM::GEOM_Object_ptr edge)
65     throw ( SALOME::SALOME_Exception );
66
67   /*!
68    * Returns the source edge or a group containing edges
69    */
70   GEOM::GEOM_Object_ptr GetSourceEdge();
71
72   /*!
73    * Sets source <mesh> to take a mesh pattern from
74    */
75   void SetSourceMesh(SMESH::SMESH_Mesh_ptr mesh)
76     throw ( SALOME::SALOME_Exception );
77
78   /*!
79    * Return source mesh
80    */
81   SMESH::SMESH_Mesh_ptr GetSourceMesh();
82
83   /*!
84    * Sets vertex association between the source edge and the target one.
85    * This parameter is optional
86    */
87   void SetVertexAssociation(GEOM::GEOM_Object_ptr sourceVertex,
88                             GEOM::GEOM_Object_ptr targetVertex)
89     throw ( SALOME::SALOME_Exception );
90
91   /*!
92    * Returns the vertex associated with the target vertex.
93    * Result may be nil if association not set
94    */
95   GEOM::GEOM_Object_ptr GetSourceVertex();
96
97   /*!
98    * Returns the vertex associated with the source vertex.
99    * Result may be nil if association not set
100    */
101   GEOM::GEOM_Object_ptr GetTargetVertex();
102
103   // Get implementation
104   ::StdMeshers_ProjectionSource1D* GetImpl();
105
106   // Verify whether hypothesis supports given entity type 
107   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
108
109
110   // Redefined Persistence
111   virtual char* SaveTo();
112   virtual void  LoadFrom( const char* theStream );
113
114 private:
115   SMESH::SMESH_Mesh_var myCorbaMesh;
116 };
117
118 #endif