Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / SMESH_I / SMESH_Group_i.hxx
1 //  Copyright (C) 2007-2008  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 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
23 //  File   : SMESH_Group_i.hxx
24 //  Author : Sergey ANIKIN, OCC
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef SMESH_Group_i_HeaderFile
29 #define SMESH_Group_i_HeaderFile
30
31 #include "SMESH.hxx"
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Group)
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36 #include CORBA_CLIENT_HEADER(GEOM_Gen)
37
38 #include "SALOME_GenericObj_i.hh"
39
40 class SMESH_Mesh_i;
41 class SMESH_Group;
42 class SMESHDS_GroupBase;
43
44 // ===========
45 // Group Base
46 // ===========
47 class SMESH_I_EXPORT SMESH_GroupBase_i:
48   public virtual POA_SMESH::SMESH_GroupBase,
49   public virtual SALOME::GenericObj_i
50 {
51  public:
52   SMESH_GroupBase_i(PortableServer::POA_ptr thePOA,
53                     SMESH_Mesh_i* theMeshServant,
54                     const int theLocalID );
55   virtual ~SMESH_GroupBase_i();
56
57   // CORBA interface implementation
58   void SetName(const char* name);
59   char* GetName();
60   SMESH::ElementType GetType();
61   CORBA::Long Size();
62   CORBA::Boolean IsEmpty();
63   CORBA::Boolean Contains(CORBA::Long elem_id);
64   CORBA::Long GetID(CORBA::Long elem_index);
65   SMESH::long_array* GetListOfID();
66   SMESH::SMESH_Mesh_ptr GetMesh();
67
68   // Inherited from SMESH_IDSource interface
69   virtual SMESH::long_array* GetIDs();
70
71   // Internal C++ interface
72   int GetLocalID() const { return myLocalID; }
73   SMESH_Mesh_i* GetMeshServant() const { return myMeshServant; }
74   SMESH_Group* GetSmeshGroup() const;
75   SMESHDS_GroupBase* GetGroupDS() const;
76
77   void SetColor(const SALOMEDS::Color& color);
78   SALOMEDS::Color GetColor();
79
80   void SetColorNumber(CORBA::Long color);
81   CORBA::Long GetColorNumber();
82
83 private:
84   SMESH_Mesh_i* myMeshServant;
85   int myLocalID;
86 };
87
88 // ======
89 // Group
90 // ======
91
92 class SMESH_I_EXPORT SMESH_Group_i:
93   public virtual POA_SMESH::SMESH_Group,
94   public SMESH_GroupBase_i
95 {
96  public:
97   SMESH_Group_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID );
98
99   // CORBA interface implementation
100   void Clear();
101   CORBA::Long Add( const SMESH::long_array& theIDs );
102   CORBA::Long Remove( const SMESH::long_array& theIDs );
103
104   CORBA::Long AddByPredicate( SMESH::Predicate_ptr thePredicate );
105   CORBA::Long RemoveByPredicate( SMESH::Predicate_ptr thePredicate );
106 };
107
108 // =========================
109 // Group linked to geometry
110 // =========================
111
112 class SMESH_I_EXPORT SMESH_GroupOnGeom_i:
113   public virtual POA_SMESH::SMESH_GroupOnGeom,
114   public SMESH_GroupBase_i
115 {
116  public:
117   SMESH_GroupOnGeom_i( PortableServer::POA_ptr thePOA, SMESH_Mesh_i* theMeshServant, const int theLocalID );
118
119   // CORBA interface implementation
120   GEOM::GEOM_Object_ptr GetShape();
121 };
122 #endif