1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
24 // File : SMESH_Group_i.hxx
25 // Author : Sergey ANIKIN, OCC
28 #ifndef SMESH_Group_i_HeaderFile
29 #define SMESH_Group_i_HeaderFile
32 #include "SMESH_Mesh_i.hxx"
33 #include "SMESH_Filter_i.hxx"
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Group)
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38 #include CORBA_CLIENT_HEADER(GEOM_Gen)
40 #include "SALOME_GenericObj_i.hh"
43 class SMESHDS_GroupBase;
44 class SMESH_PreMeshInfo;
49 class SMESH_I_EXPORT SMESH_GroupBase_i:
50 public virtual POA_SMESH::SMESH_GroupBase,
51 public virtual SALOME::GenericObj_i
54 SMESH_GroupBase_i(PortableServer::POA_ptr thePOA,
55 SMESH_Mesh_i* theMeshServant,
56 const int theLocalID );
57 virtual ~SMESH_GroupBase_i();
59 // CORBA interface implementation
60 void SetName(const char* name);
62 SMESH::ElementType GetType();
64 CORBA::Boolean IsEmpty();
65 CORBA::Boolean Contains(CORBA::Long elem_id);
66 CORBA::Long GetID(CORBA::Long elem_index);
67 SMESH::long_array* GetListOfID();
68 SMESH::long_array* GetNodeIDs();
69 CORBA::Long GetNumberOfNodes();
70 CORBA::Boolean IsNodeInfoAvailable(); // for gui
72 virtual SMESH::SMESH_Mesh_ptr GetMesh();
75 * Returns statistic of mesh elements
76 * Result array of number enityties
77 * Inherited from SMESH_IDSource
79 virtual SMESH::long_array* GetMeshInfo();
81 // Inherited from SMESH_IDSource interface
82 virtual SMESH::long_array* GetIDs();
85 * Returns types of elements it contains
86 * Inherited from SMESH_IDSource interface
88 virtual SMESH::array_of_ElementType* GetTypes();
90 * Returns false if GetMeshInfo() returns incorrect information that may
91 * happen if mesh data is not yet fully loaded from the file of study.
93 virtual bool IsMeshInfoCorrect();
95 // Internal C++ interface
96 int GetLocalID() const { return myLocalID; }
97 SMESH_Mesh_i* GetMeshServant() const { return myMeshServant; }
98 SMESH_Group* GetSmeshGroup() const;
99 SMESHDS_GroupBase* GetGroupDS() const;
101 void SetColor(const SALOMEDS::Color& color);
102 SALOMEDS::Color GetColor();
104 void SetColorNumber(CORBA::Long color);
105 CORBA::Long GetColorNumber();
109 SMESH_PreMeshInfo* & changePreMeshInfo() { return myPreMeshInfo; }
110 SMESH_PreMeshInfo* myPreMeshInfo; // mesh info before full loading from study file
111 friend class SMESH_PreMeshInfo;
114 SMESH_Mesh_i* myMeshServant;
117 void changeLocalId(int localId) { myLocalID = localId; }
118 friend class SMESH_Mesh_i;
120 int myNbNodes, myGroupDSTic;
127 class SMESH_I_EXPORT SMESH_Group_i:
128 public virtual POA_SMESH::SMESH_Group,
129 public SMESH_GroupBase_i
132 SMESH_Group_i( PortableServer::POA_ptr thePOA,
133 SMESH_Mesh_i* theMeshServant,
134 const int theLocalID );
135 // CORBA interface implementation
137 CORBA::Long Add( const SMESH::long_array& theIDs );
138 CORBA::Long Remove( const SMESH::long_array& theIDs );
140 CORBA::Long AddByPredicate( SMESH::Predicate_ptr thePredicate );
141 CORBA::Long RemoveByPredicate( SMESH::Predicate_ptr thePredicate );
143 CORBA::Long AddFrom( SMESH::SMESH_IDSource_ptr theSource );
146 // =========================
147 // Group linked to geometry
148 // =========================
150 class SMESH_I_EXPORT SMESH_GroupOnGeom_i:
151 public virtual POA_SMESH::SMESH_GroupOnGeom,
152 public SMESH_GroupBase_i
155 SMESH_GroupOnGeom_i( PortableServer::POA_ptr thePOA,
156 SMESH_Mesh_i* theMeshServant,
157 const int theLocalID );
158 // CORBA interface implementation
159 GEOM::GEOM_Object_ptr GetShape();
162 // =========================
163 // Group deined by filter
164 // =========================
166 class SMESH_I_EXPORT SMESH_GroupOnFilter_i:
167 public virtual POA_SMESH::SMESH_GroupOnFilter,
168 public SMESH_GroupBase_i,
169 public SMESH::Filter_i::TPredicateChangeWaiter
172 SMESH_GroupOnFilter_i( PortableServer::POA_ptr thePOA,
173 SMESH_Mesh_i* theMeshServant,
174 const int theLocalID );
175 ~SMESH_GroupOnFilter_i();
178 static SMESH::Filter_ptr StringToFilter(const std::string& thePersistentString );
179 std::string FilterToString() const;
181 static SMESH_PredicatePtr GetPredicate( SMESH::Filter_ptr );
183 // CORBA interface implementation
184 void SetFilter(SMESH::Filter_ptr theFilter);
185 SMESH::Filter_ptr GetFilter();
187 // method of SMESH::Filter_i::TPredicateChangeWaiter
188 virtual void PredicateChanged();
191 SMESH::Filter_var myFilter;